sapgui_call_method_ex

Example: sapgui_call_method_exMethod and Property Functions

Invokes a method of a SAP object and saves the return value as a parameter.

int sapgui_call_method_ex( const char *control_id, const char *method_name, const char *outputParamName, void *arg1, ..., void *argn, [optionalArguments] LAST);
control_idObject ID Strings
method_nameThe name of the SAP function to invoke
outputParamNameThe parameter in which to store the return value of the call.
arg1...argnArguments to the method
optionalArgumentsOptional Arguments
LAST A marker indicating the end of the argument list. Not required if Optional Arguments are used.

The sapgui_call_method_ex function identifies the SAP object with the SAP identifier control_id, and calls the object's method method_name. It passes to the method the actual arguments arg1...argn. The return value of the invoked method is stored in parameter outputParamName.

The return value can be a simple value or a GuiCollection Array.

In some cases, VuGen generates an additional argument, AdditionalInfo.

Return Values

This function returns LR_PASS (0) on success or LR_FAIL (1) on failure.

Parameterization

You can parameterize all string (char type) arguments.

Concept Link IconSee Also