DoCancel
Syntax
DoCancel( )
Description
Use the DoCancel function to cancel the current page.
-
In the page, the DoCancel function terminates the current component and returns the user to the search dialog box.
-
In the menu, the DoCancel function terminates the current component and returns the user to the current menu with ...
DoesTableExist
Syntax
DoesTableExist(DB_tbl_name)
Description
Use the DoesTableExist function to return a boolean value indicating whether the database table exists.
Parameters
Field or Control |
Definition |
---|---|
DB_tbl_name |
Specifies the name of the database table as a string value. |
Returns
A boolean value.
DoModal
Syntax
DoModal(Page.pagename, title, xpos, ypos, [level, scrollpath, target_row])
In which scrollpath is:
[Record.level1_recname, level1_row, [Record.level2_recname, level2_row, ]] Record.target_recname
To prevent ambiguous references, you can also use Scroll. scrollname , in which scrollname is the same as the scroll levelâs primary record name.
Description
Use the DoModal ...
DoModalComponent
Syntax
DoModalComponent(MenuName.MENU_NAME, BarName.BAR_NAME, ItemName.MENU_ITEM_NAME, Page.COMPONENT_ITEM_NAME, action, Record.SHARED_RECORD_NAME [, keylist])
In which keylist is a list of field references in the form:
[recordname.]field1 [, [recordname.]field2]. . .
Or in which keylist is a list of field references in the form:
&RecordObject1 [, &RecordObject2]. . .
Description
Use the DoModalComponent function ...
DoModalComponentPopup
Syntax
DoModalComponentPopup(modal_options, Cancel_button_ID, title, MenuName.menuname, BarName.BARNAME, ItemName.MENUITEM_NAME, Page.COMPONENT_ITEM_NAME, action, Record.SHARED_RECORD_NAME [, keylist])
In which keylist is a list of field references in the form:
[RECORD_NAME.]field1 [, [recordname.]field2]. . .
Or in which keylist is a list of field references in the form:
&RecordObject1 [, &RecordObject2]. . .
Description
Use ...
DoModalPanelGroup
Syntax
DoModalPanelGroup(MENUNAME.menuname, BARNAME.barname, ITEMNAME.menuitem_name, PANEL.panel_group_item_name, action, RECORD.shared_record_name)
Description
Use the DoModalPanelGroup function to launch a secondary component.
Note: The DoModalPanelGroup function is supported for compatibility with previous releases of PeopleTools. Future applications should use DoModalComponent instead.
DoModalPopup
Syntax
DoModalPopup(modal_options, Cancel_button_ID, display_only, cached, Page.PAGE_NAME, title, xpos, ypos[, level, scrollpath, target_row])
In which scrollpath is:
[Record.level1_recname, level1_row, [Record.level2_recname, level2_row, ]] Record.target_recname
To prevent ambiguous references, you can also use Scroll. scrollname , in which scrollname is the same as the scroll levelâs primary record name ...
DoModalX
Syntax
DoModalX(showInModal, cancelButtonName, PAGE.pagename, title, xpos, ypos, [level, scrollpath, target_row])
In which scrollpath is:
[RECORD.level1_recname, level1_row, [RECORD.level2_recname, level2_row, ]] RECORD.target_recname
To prevent ambiguous references, you can also use SCROLL. scrollname , in which scrollname is the same as the scroll levelâs primary record name.
Description
Use ...
DoModalXComponent
Syntax
DoModalXComponent(showInModal, cancelButtonName, MENUNAME.menuname, BARNAME.barname, ITEMNAME.menuitem_name, PAGE.component_item_name, action, RECORD.shared_record_name [, keylist])
In which keylist is a list of field references in the form:
[recordname.]field1 [, [recordname.]field2]. . .
Or in which keylist is a list of field references in the form:
&RecordObject1 [, &RecordObject2]. . .
Description
Use the ...
DoSave
Syntax
DoSave()
Description
Use the DoSave function to save the current page. DoSave defers processing to the end of the current PeopleCode program event, as distinct from DoSaveNow, which causes save processing (including SaveEdit, SavePreChange, SavePostChange, and Workflow PeopleCode) to be executed immediately.
DoSave can be used in the following ...