Defines a variable for use in one or more procedures, a variable data member of a class for use in a single class or class hierarchy, or by other classes and procedures, or a variable data element for use within a single class-based method.
DEFINE NEW GLOBAL SHAREDPRIVATE PROTECTED PUBLIC STATICVARIABLE variable-nameAS primitive-type-nameAS CLASS object-type-nameLIKE field EXTENT constantBGCOLOR expressionCOLUMN-LABEL labelCONTEXT-HELP-ID expressionDCOLOR expressionDECIMALS nDROP-TARGETFONT expressionFGCOLOR expressionFORMAT stringINITIALconstant [ constant , constant ]LABEL string , stringMOUSE-POINTER expressionNO-UNDONOT CASE-SENSITIVEPFCOLOR expressionview-as-phrasetrigger-phraseNEW SHARED VARIABLE variable-nameDefines and identifies a variable to be shared by a procedure called directly or indirectly by the current procedure. The called procedure must name the same variable in a DEFINE SHARED VARIABLE statement.NEW GLOBAL SHARED VARIABLE variable-nameDefines and identifies a variable that can be used by any procedure that names that variable using the DEFINE SHARED VARIABLE statement. The value of a global shared variable remains available throughout an ABL session.SHARED VARIABLE variable-nameDefines and identifies a variable that was created by another procedure that used the DEFINE NEW SHARED VARIABLE or DEFINE NEW GLOBAL SHARED VARIABLE statement.variable-namePRIVATE PROTECTED PUBLIC STATIC VARIABLEDefines and identifies a variable as a data member of a class, and optionally specifies an access mode (PRIVATE, PROTECTED, or PUBLIC) and scope (instance or STATIC) for that data member. You cannot specify these options when defining a variable as a data element of a method (including constructors, destructors, and property accessors) or procedure.
Note: The specified options are applicable only when defining a data member for a class in a class definition (.cls) file. Note also that you cannot shadow (override) the definition of a given variable data member in a class hierarchy.PRIVATE variable data members can be accessed only by the defining class. PROTECTED variable data members can be accessed by the defining class and any of its derived classes. PUBLIC variable data members can be accessed by:
![]()
Any class or procedure that has access to a class instance that defines or inherits the variable data memberAny piece of code can access a PUBLIC static variable data member. The default access mode is PRIVATE.A variable defined with the STATIC option is a static data member of the class type for which it is defined and is scoped to the ABL session where it is referenced. ABL creates one copy of the specified class static variable on first reference to the class type, and ABL creates only one such copy for any number of instances of the class that you create. You can reference an accessible static variable data member in any piece of code.Without the STATIC option, ABL creates an instance variable data member that is scoped to a single instance of the class where it is defined. ABL creates one copy of the specified instance variable for each such class instance that you create. You can reference any public instance variable in any procedure, or in any instance or static method defined inside or outside of the class where the instance variable is defined. Any static method can reference the public instance variable only using an object reference to a class instance that defines the variable as a data member. If the referencing static method is defined in the same class as the public instance variable, the class must instantiate itself in order to have access to an instance reference.You can reference a private or protected instance variable only in instance methods that are defined inside the same class or class hierarchy.
Note: You cannot use a class instance that is not equal to the THIS-OBJECT system reference to reference a private or protected instance variable that is defined in the same class, because PRIVATE and PROTECTED access modes are instance based in ABL. Thus, private and protected instance members are accessible only to other members of the same class instance, where as public instance members can be accessed from other instances of the same class, including the session “static instance” of the class.For more information on the mechanism for accessing variable data members of different access modes and scopes, see the reference entry for Class-based data member access.
Note: Members of a class are grouped into six namespaces, including buffers/temp-tables, methods, variables/properties/events, ProDataSets, queries, and data-sources. Variables, properties, and events defined as members of a class share the same namespace. There can be only one class member in this namespace with a given name (not counting abstract member overrides).If variable-name is an ABL reserved keyword, you must include an access mode of PUBLIC, PROTECTED, or PRIVATE in its definition. You must also use the THIS-OBJECT system reference or Type-name syntax to access the variable data member. For more information on referencing variable data members, see the reference entry for Class-based data member access.
Note: If the data member is defined in a class that is derived from a .NET class, other restrictions on variable-name apply. For more information, see the CLASS statement reference entry.For more information on where and how to define data members in a class, see the CLASS statement reference entry.VARIABLE variable-nameDefines and identifies a variable whose value you can access only within the current procedure, method of a class (including constructors, destructors, and property accessors), or as a PRIVATE data member of a class.AS primitive-type-nameSpecifies a built-in primitive type for the variable you are defining. The built-in data type (primitive-type-name) can be one of the following:
CHARACTER COM-HANDLE DATE DATETIME DATETIME-TZ DECIMALHANDLE INT64 INTEGER LOGICAL LONGCHAR MEMPTR RAW RECIDROWID
For more information on these primitive types, see the Data types reference entry.AS CLASS object-type-nameDefines the variable as an object reference with the data type of a class or interface. The default value of the variable is the Unknown value (?). You cannot assign an initial value using the INITIAL option.Specifies the type name of an ABL or .NET class or interface. Specify an object type name using the syntax described in the Type-name syntax reference entry. With an appropriate USING statement, you can also specify a class or interface name alone, without the qualifying package or namespace.You cannot directly specify the type name of a .NET mapped object type (such as System.Int32). To define a variable that matches a .NET mapped type, you must define it as the corresponding ABL primitive type (primitive-type-name).If the specified class or interface type name conflicts with an abbreviation for a built-in primitive type name, such as INT for INTEGER, you must specify the CLASS keyword.LIKE fieldIndicates the name of the variable, database field, temp-table field, or work table field whose characteristics you want to use for the variable you are defining. If you name a variable with this option, you must have defined that variable earlier in the procedure. You can override the format, label, initial value, decimals, and extent of the variable or database field by using the FORMAT, LABEL, COLUMN-LABEL, INITIAL, DECIMALS, EXTENT, and VIEW-AS options. If you do not use these options, the variable takes on the characteristics of the variable or database field you name.If field has help and validate options defined, the variable you are defining does not inherit those characteristics.If you reference a database field in a LIKE option in a DEFINE VARIABLE statement, DEFINE TEMP-TABLE statement, DEFINE WORK-TABLE statement, or format phrase, the database containing the referenced field must be connected at compile time but not necessarily at run time. Therefore, use the LIKE option with caution.EXTENT constantDefines the variable as an array of data elements, where the element data type is specified by the AS primitive-type-name option, the LIKE field option, or the AS object-type-name option. This option can specify an array variable as either determinate (has a defined number of elements) or indeterminate (has an undefined number of elements). To define a determinate array variable, specify the EXTENT option with the constant argument. This optional argument is an integer value that represents the number of data elements in the array variable. To define an indeterminate array variable, specify the EXTENT option without the constant argument.The EXTENT is part of the variable data type. For more information, see the Type-name syntax reference entry.An indeterminate array variable can be in one of two states: fixed or unfixed, meaning it either has a fixed dimension or it does not. An indeterminate array variable has an unfixed dimension when first defined. You can fix the dimension of an indeterminate array variable by:
![]()
Assigning a determinate array to the indeterminate array, fixing it to the dimension of the determinate array
![]()
Passing array parameters to a procedure, user-defined function, or class-based method, so that the indeterminate array variable is the target for the passing of a determinate array, fixing the indeterminate array to the dimension of the determinate arrayIf you want to define a variable that is like an array variable or field, using the LIKE option, but you do not want the variable to be an array, you can use EXTENT 0 to indicate a non-array field.If you are using the AS option and you do not use the EXTENT option (or you specify constant as 0), the variable is not an array variable. If you are using the LIKE field option and you do not use the EXTENT option, the variable uses the extent defined for the database field you name (if any).BGCOLOR expressionSpecifies a background color for the variable in graphical interfaces. This option is ignored in character interfaces.NOT CASE-SENSITIVECASE-SENSITIVE indicates that the value stored for a character variable is case sensitive, and that all comparisons operations involving the variable are case sensitive. If you do not use this option, ABL comparisons are usually case insensitive. If you define a variable LIKE another field of variable, the new variable inherits case sensitivity. Use [NOT] CASE-SENSITIVE to override this default.COLUMN-LABEL labelNames the label you want to display above the variable data in a frame that uses column labels. If you want the label to use more than one line (a stacked label), use an exclamation point (!) in the label to indicate where to break the line. For example:
DEFINE VARIABLE credit-percent AS INTEGER NO-UNDO
COLUMN-LABEL "Enter !percentage!increase ".FOR EACH Customer:DISPLAY Customer.Name Customer.CreditLimit.SET credit-percent.Customer.CreditLimit = (Customer.CreditLimit *(credit-percent / 100)) + Customer.CreditLimit.DISPLAY Customer.CreditLimit @ new-credit LIKE Customer.CreditLimitLABEL "New max cred".END.If you want to use the exclamation point (!) as one of the characters in a column label, use two exclamation points (!!).The AVM does not display column labels if you use the SIDE-LABELS or NO-LABELS options with the Frame phrase.If you define a variable to be LIKE a field, and that field has a column label in the Data Dictionary, the variable inherits that column label.CONTEXT-HELP-ID expressionAn integer value that specifies the identifier of the help topic for this variable in a help file specified at the session, window or dialog box level using the CONTEXT-HELP-FILE attribute.DCOLOR expressionSpecifies the display color for the variable in character interfaces. This option is ignored in graphical interfaces.DECIMALS nSpecifies the number of decimal places to store for a DECIMAL variable, where n is an integer constant. When you define a variable AS DECIMAL, ABL automatically stores up to 10 decimal places for the value of that variable. Use the DECIMALS option to store a smaller number of decimal places. The DECIMALS option has nothing to do with the display format of the variable, just the storage format.If you use the LIKE option to name a field whose definition you want to use to define a variable, ABL uses the number of decimals in the field definition to determine how many decimal places to store for the variable.
Note: The XML-WRITE() method on a temp-table, temp-table buffer, or ProDataSet object also uses the DECIMALS attribute to determine the number of decimal places to export to the XML Document.
DEFINE VARIABLE fill-in-1 AS CHARACTER DROP-TARGET.FGCOLOR expressionSpecifies a foreground color for the variable in graphical interfaces. This option is ignored in character interfaces.FONT expressionFORMAT stringThe data format of the variable you define. If you use the AS primitive-type-name option and you do not use FORMAT string, the variable uses the default format for its data type. Table 35 lists the default data formats for the data types.
Table 35:
You cannot display a BLOB, CLOB, MEMPTR, RAW, or ROWID value directly. However, you can convert a MEMPTR, RAW, or ROWID value to a character string representation using the STRING function and display the result. You can also convert a BLOB to a MEMPTR, and then use the STRING function. A MEMPTR or RAW value converts to decimal integer string. A ROWID value converts to a hexadecimal string, "0xhexdigits", where hexdigits is any number of characters "0" through "9" and "A" through "F". You can display a CLOB field by converting it to a LONGCHAR, and displaying the LONGCHAR using the VIEW-AS EDITOR LARGE phrase only.
If you display a class instance using the MESSAGE statement, ABL automatically invokes the ToString( ) method (provided by the Progress.Lang.Object class) on the object reference. To display a class instance in a frame (for example, using the DISPLAY statement), you must first explicitly convert the object reference to a displayable type using the INT64 function, the INTEGER function, the STRING function, or the ToString( ) method.
See OpenEdge Getting Started: ABL Essentials for more information on data formatting.If you use the LIKE field option and you do not use the FORMAT string option, the variable uses the format defined for the database field you name. You must enclose the string in quotes.The initial value of the variable you want to define. If you use the AS primitive-type-name option and you do not use the INITIAL constant option, the default is the initial value for the data type of the variable or array element.When you define an array variable, you can supply initial values for each element in the array. For example:
DEFINE VARIABLE array-var AS CHARACTER NO-UNDO EXTENT 3INITIAL ["Add","Delete","Update"].If you do not supply enough values to fill up the elements of the array, the AVM puts the last value you named into the remaining elements of the array. If you supply too many values, the AVM raises an error.If you define a variable as an indeterminate array, and you supply initial values for elements in the array, the AVM fixes the number of elements in the array and treats the fixed indeterminate array as a determinate array. For example, the arrays defined by the following statements are equivalent:
DEFINE VARIABLE x AS INTEGER NO-UNDO EXTENT INITIAL [1,2,3].DEFINE VARIABLE x1 AS INTEGER NO-UNDO EXTENT 3 INITIAL [1,2,3].You can also use the EXTENT statement to fix the number of elements in an unfixed indeterminate array variable. For more information, see the EXTENT statement reference entry.Table 36 lists the default initial values for the various variable data types.
Table 36: Unknown value (?) Unknown value (?) Unknown value (?) (displays as blanks) Unknown value (?) Unknown value (?) Unknown value (?) Unknown value (?) Unknown value (?) Unknown value (?)
If you display a class instance using the MESSAGE statement, ABL automatically invokes the ToString( ) method (provided by the Progress.Lang.Object class) on the object reference. To display a class instance in a frame (for example, using the DISPLAY statement), you must first explicitly convert the object reference to a displayable type using the INT64 function, the INTEGER function, the STRING function, or the ToString( ) method.
You cannot use the INITIAL option to specify an initial value for this data type as part of the variable definition.
If you are using the LIKE field option and you do not use the INITIAL constant option, the variable uses the initial value of the field or variable. In the DEFINE SHARED VARIABLE statement, the INITIAL option has no effect. However, the DEFINE NEW SHARED VARIABLE, the DEFINE NEW SHARED TEMP-TABLE, and the DEFINE NEW WORK-TABLE statements work with the INITIAL option.The label you want to use when the variable is displayed. If you use the AS primitive-type-name option and you do not use the LABEL string option, the default label is the variable name. If you use the LIKE field option and you do not use the LABEL string option, the variable uses the label of the field or variable you name. You must enclose the string in quotes.You can specify a label for each element in a determinate array variable. You cannot specify a label for elements in an indeterminate array variable.In MS-Windows, you can designate a character within each label as a navigation mnemonic. Precede the character with an ampersand (&). When the variable is displayed with side labels, the mnemonic is underlined. The user can move focus to the variable by pressing ALT and the underlined letter. Navigation mnemonics operate only when you use side labels. If you specify more than one widget with the same mnemonic, the AVM transfers focus to each of these in tab order when you make a selection.Ending a label with an ampersand might produce unwanted behavior. To include a literal ampersand within a label, specify a double ampersand (&&).MOUSE-POINTER expressionWhen the value of a variable is changed during a transaction and the transaction is undone, the AVM restores the value of the variable to its prior value. If you do not want, or if you do not need, the value of a variable to be undone even when it has been changed during a transaction, use the NO-UNDO option with the DEFINE VARIABLE statement. NO-UNDO variables are more efficient; use this option whenever possible.Specifying NO-UNDO for a variable is especially useful if you want to indicate an error condition as the value of the variable, perform an UNDO, and later take some action based on that error condition. If one variable is defined LIKE another that is NO-UNDO, the second variable will be NO-UNDO only if you specify NO-UNDO in the definition of the second variable.PFCOLOR expressionSpecifies the prompt-for color for the variable in character interfaces. This option is ignored in graphical interfaces.Specifies the default data representation widget for this variable. Following is the syntax for the view-as-phrase:
VIEW-AScombo-box-phraseeditor-phraseFILL-INNATIVEsize-phraseTOOLTIP tooltipradio-set-phraseselection-list-phraseslider-phraseTEXTsize-phraseTOOLTIP tooltipTOGGLE-BOXsize-phraseTOOLTIP tooltipDefines triggers for the data representation widget specified in the view-as-phrase. Following is the syntax for the trigger-phrase:
TRIGGERS:ON event-list ANYWHEREtrigger-blockPERSISTENT RUN proc-nameIN handle( input-parameters )END TRIGGERSFor more information on triggers, see the Trigger phrase reference entry.The r-dfvar.p procedure defines two variables, del and nrecs to be shared with procedure r-dfvar2.p. The del variable passes information to r-dfvar2.p, while nrecs passes information back to r-dfvar.p from r-dfvar2.p.
DEFINE NEW SHARED VARIABLE del AS LOGICAL NO-UNDO.DEFINE NEW SHARED VARIABLE nrecs AS INTEGER NO-UNDO.
MESSAGE "Do you want to delete the orders being printed (y/n)?" UPDATE del.RUN r-dfvar2.p.IF del THENMESSAGE nrecs "orders have been shipped and were deleted".ELSEMESSAGE nrecs "orders have been shipped".
DEFINE SHARED VARIABLE del AS LOGICAL NO-UNDO.DEFINE SHARED VARIABLE nrecs AS INTEGER NO-UNDO.
OUTPUT TO PRINTER.FOR EACH Order WHERE Order.ShipDate <> ?:nrecs = nrecs + 1.FOR EACH OrderLine OF Order:DISPLAY OrderLine.OrderNum OrderLine.LineNum OrderLine.QtyOrderLine.Price.IF del THEN DELETE OrderLine.END.IF del THEN DELETE Order.END.OUTPUT CLOSE.The following example is a startup procedure. It defines a new global variable with the initial value TRUE and uses that variable to determine whether to run an initialization procedure, r-init.p, that displays sign-on messages. Then the global variable first-time is set to FALSE. If you restart this procedure during the same session (pressed STOP), r-init.p does not run again.
DEFINE NEW GLOBAL SHARED VARIABLE first-time AS LOGICAL NO-UNDO INITIAL TRUE.
DEFINE VARIABLE selection AS INTEGER NO-UNDO FORMAT "9" LABEL "Selection".
IF first-time THEN DO:RUN r-init.p.first-time = FALSE.END.FORM" MAIN MENU " SKIP(1)"1 - Accounts Payable " SKIP"2 - Accounts Receivable"WITH CENTERED ROW 5 FRAME menu.REPEAT:VIEW FRAME menu.UPDATE selection AUTO-RETURN WITH FRAME sel CENTERED ROW 12 SIDE-LABELS.IF selection = 1 THEN DO:HIDE FRAME menu.HIDE FRAME sel.RUN apmenu.p.END.ELSE IF selection = 2 THEN DO:HIDE FRAME menu.HIDE FRAME sel.RUN armenu.p.END.ELSE DO:MESSAGE "Invalid selection. Try again".UNDO, RETRY.END.END.The following procedure finds the day of the week of a date the user enters. The procedure defines an array with seven elements and uses the INITIAL option to define the initial value of each element in the array.
DEFINE VARIABLE dow AS CHARACTER NO-UNDO FORMAT "x(9)" EXTENT 7
INITIAL ["Sunday", "Monday", "Tuesday", "Wednesday","Thursday", "Friday", "Saturday"].DEFINE VARIABLE dob AS DATE NO-UNDO INITIAL TODAY.REPEAT WITH SIDE-LABELS 1 DOWN CENTERED ROW 10 TITLE "Date of Birth":DISPLAY SKIP(1).UPDATE dob LABEL "Enter date of birth".DISPLAY dow[WEEKDAY(dob)] LABEL "It was a".END.
DEFINE VARIABLE ix AS INTEGER NO-UNDO.DEFINE VARIABLE clubs AS CHARACTER NO-UNDO
VIEW-AS SELECTION-LIST SIZE 20 BY 5 MULTIPLE SCROLLBAR-VERTICAL NO-DRAGLIST-ITEMS "One Iron", "Two Iron", "Three Iron", "Four Iron","Five Iron", "Six Iron", "Seven Iron", "Eight Iron","Nine Iron", "Pitching Wedge"LABEL "Golf Clubs Available"TRIGGERS:ON GO DO:IF SELF:SCREEN-VALUE <> "" THENDO ix = 1 TO NUM-ENTRIES(SELF:SCREEN-VALUE) :DISPLAY ENTRY(ix, SELF:SCREEN-VALUE) FORMAT "X(16)"WITH FRAME clubs-sel CENTEREDNUM-ENTRIES(SELF:SCREEN-VALUE) + 1 DOWNTITLE "Clubs Selected" USE-TEXT.DOWN 1 WITH FRAME clubs-sel.END.END.END TRIGGERS.ENABLE clubs WITH FRAME get-info TITLE "Select the Desired Club(s)".WAIT-FOR WINDOW-CLOSE OF CURRENT-WINDOW.For examples of instance and static variable data member definitions, see the descriptions of r-CustObj.cls, r-CustObjStatic.cls, and r-CustObjAbstract.cls in the CLASS statement reference entry.
![]()
You can use the DEFINE VARIABLE statement anywhere. However, all references to the variable must appear after the DEFINE VARIABLE statement that defines it.
![]()
You cannot define a variable as a BLOB or CLOB field. You can define a variable using their MEMPTR and LONGCHAR counterparts, respectively.
![]()
A HANDLE variable defined as a static data member can reference the handle of any compile-time defined (static) or run-time defined (dynamic) handle-based object, such as a button, temp-table, or ProDataSet.
![]()
Defining a LONGCHAR variable supports the same options as a CHARACTER variable, except for the FORMAT option and all VIEW-AS options except VIEW-AS EDITOR LARGE.
![]()
You should use the CASE-SENSITIVE option only when it is important to distinguish between uppercase and lowercase values entered for a character variable. For example, use CASE-SENSITIVE to define a variable for a part number that contains mixed uppercase and lowercase characters.
![]()
After you use the DEFINE NEW GLOBAL SHARED VARIABLE statement to create a global shared variable, use the DEFINE SHARED VARIABLE statements in other procedures to access that variable.
![]()
You cannot define the same global variable twice in the same ABL session. If you try, and the definitions of the two variables do not match, the AVM raises an error. If the definitions of the two variables match, the AVM disregards the second variable you tried to define (if you are rerunning a startup procedure).
![]()
Changes made to variables when there is no active transaction are not undone when a block is undone.
![]()
The AVM searches through the calling chain of procedures looking for the most recent DEFINE NEW SHARED VARIABLE statement that created that shared variable.
![]()
If no DEFINE NEW SHARED VARIABLE statement is found, the AVM searches for a DEFINE NEW GLOBAL SHARED VARIABLE statement that created the shared variable.
![]()
If the procedure that names the shared variable is called from a trigger or internal procedure that is part of a persistent procedure context, the persistent context is also checked for the most recent DEFINE NEW SHARED VARIABLE or DEFINE NEW GLOBAL SHARED VARIABLE statement at the point in the calling chain where the trigger or internal procedure is executed.
![]()
If the AVM finds one of these statements, it does not search any further for other statements that might have defined the same variable as NEW or NEW GLOBAL.
![]()
The AVM checks the definition of a SHARED variable against that of the corresponding NEW SHARED or NEW GLOBAL SHARED variable. The data types and array extents must match. If the FORMAT, LABEL and DECIMALS specifications are not the same, each procedure uses its individual specification. The DEFINE NEW SHARED statement determines if a shared variable is NO-UNDO.
![]()
A SHARED variable remains in scope for an instance of a persistent procedure until the instance is deleted. This is true even if the original procedure that defined the variable as NEW SHARED goes out of scope while the procedure instance remains persistent.If a trigger or internal procedure of a persistent procedure executes an external subprocedure that defines a SHARED variable, the AVM includes the persistent procedure in the resolution of the corresponding NEW SHARED variable as though the procedure were on the procedure call stack.
![]()
If an application with several procedures defines a NEW SHARED variable with the same name in each procedure, the AVM creates a different instance of the NEW SHARED variable in each procedure. This behavior supports recursive procedures and bill-of-materials applications.
![]()
You can neither define a SHARED or NEW SHARED variable, nor access such a variable defined in a procedure file, from within a class definition (.cls) file. If you do, ABL generates a compilation error. However, multiple procedure (.p) files can define and access an object reference variable for a class instance as a NEW SHARED or NEW GLOBAL SHARED variable. In this case, the object reference variables must be defined for the same class (not a subclass or a super class) in all procedures that use them.
![]()
For SpeedScript, the following options are invalid: BGCOLOR, CONTEXT-HELP-ID, DCOLOR, FONT, FGCOLOR, MOUSE-POINTER, PFCOLOR, and view-as-phrase.
© 2012 Progress Software Corporation and/or its subsidiaries or affiliates. |