nca_button_press
| Button Object Functions |
Activates the specified push button.
int nca_button_press( LPCSTR button );
| button | The logical name of the button. |
The nca_button_press function activates the specified push button.
Return Values
Parameterization
The following variable can be parameterized using standard parameterization: button
Example
In the following Oracle NCA example, nca_button_pressfunction pushes the Find button on the toolbar to display a list of values for the General Ledger journal names.
nca_edit_click("GLXJEENT.FOLDER_QF.USER_JE_SOURCE_NAME.0");
nca_button_press("GLXJEENT.TOOLBAR.LIST.0");
nca_lov_retrieve_items("Sources",1,9);

