DoCancel

Mon 01 January 2018

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 ...

read more

DoesTableExist

Mon 01 January 2018

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.

read more

DoModal

Mon 01 January 2018

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 ...

read more

DoModalComponent

Mon 01 January 2018

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 ...

read more

DoModalComponentPopup

Mon 01 January 2018

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 ...

read more

DoModalPanelGroup

Mon 01 January 2018

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.

read more

DoModalPopup

Mon 01 January 2018

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 ...

read more

DoModalX

Mon 01 January 2018

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 ...

read more

DoModalXComponent

Mon 01 January 2018

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 ...

read more

DoSave

Mon 01 January 2018

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 ...

read more