[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference iosg::all-in-1_v30

Title:*OLD* ALL-IN-1 (tm) Support Conference
Notice:Closed - See Note 4331.l to move to IOSG::ALL-IN-1
Moderator:IOSG::PYE
Created:Thu Jan 30 1992
Last Modified:Tue Jan 23 1996
Last Successful Update:Fri Jun 06 1997
Number of topics:4343
Total number of notes:18308

2067.0. "ALL-IN-1 V3.0-1 and the CART Solution" by VNABRW::EHRLICH_K (Screaming for vengeance) Tue Jan 12 1993 10:40

Hi,

	after installing the A1_ECO001030 Patch for ALL-IN-1 V3.0-1
	I've encountered a problem with CM, esp. with the AM CC EP Menu.

	I've run the CART, read all Reports, then I wanted to run the
	Solution Script. But it doesn't, only the error message
        "You can only run this procedure using ALL-IN-1 V3.0" appears on screen.

	Shouldn't this be changed?

	Best Regards and Greetings from Vienna

	Charly

	Here it is:

ALLIN1$DISK:<ALLIN1.SITE.DEV_GERMAN>CM_CART_SCRIPT_V301$PRIMARY.SCP
!+
!       CART Element processing procedure
!-
.LABEL START

        GET #CM_VERSION = OA$VERSION \-
         GET_TOKEN #CM_VERSION,#CM_DUMMY,"." \-
         GET #CM_DUMMY = #CM_DUMMY:H \-
         GET_TOKEN #CM_DUMMY,#CM_FIRST,"V" \-
         GET_TOKEN #CM_VERSION,#CM_SECOND," " \-
         GET #CM_VERSION = #CM_FIRST #CM_SECOND
        .IF #CM_VERSION GE 30 THEN .GOTO CONTINUE

        DISPLAY You can only run this procedure using ALL-IN-1 V3.0
        .EXIT

.LABEL CONTINUE
    
T.RTitleUserPersonal
Name
DateLines
2067.2Here's a fix...CSC32::M_ROSSMon Jan 18 1993 20:3523
    We ran into this on our system after installing the patch.  I made the
    following change - I don't know if it is the RIGHT fix but it seems to
    work:
    
    !+
    !       CART Element processing procedure
    !-
    .LABEL START
    
            GET #CM_VERSION = OA$VERSION \-
             GET_TOKEN #CM_VERSION,#CM_DUMMY,"." \-
             GET #CM_DUMMY = #CM_DUMMY:H \-
             GET_TOKEN #CM_DUMMY,#CM_FIRST,"V" \-
             GET_TOKEN #CM_VERSION,#CM_SECOND," " \-
             GET #CM_VERSION = #CM_FIRST #CM_SECOND
!           .IF #CM_VERSION GE "30" THEN .GOTO CONTINUE
!********
            .IF #CM_VERSION:4 GE "30":4 THEN .GOTO CONTINUE
!********
    
            DISPLAY You can only run this procedure using ALL-IN-1 V3.0
            .EXIT