sapgui_table_set_password

Table Functions

Sets a password inside a table cell.

int sapgui_table_set_password( const char *description, const char *tableID, const char *row, const char *column, const char *password, [args,] LAST );
description User entered text to aid in understanding script
tableIDObject ID Strings
row Row number. The first data row is numbered zero (0). If there is a header row it is numbered (-1).
column Column number. The first column is numbered zero (0).
password The password text
argsOptional Arguments
LAST A marker indicating the end of the argument list. Not required if Optional Arguments are used.

sapgui_table_set_password sets the password in a table cell password field.

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.

Example

In the following example, the sapgui_table_set_password function sets the password in a table cell.

sapgui_table_set_password("Set Password",
    "usr/tblRSDEMO02TC_COLS", 
    "0", 
    "15",
    "swordfish", 
    BEGIN_OPTIONAL, 
            "AdditionalInfo=info1020", 
    END_OPTIONAL);