SapGuiGridGetCellData Function

Action

This function returns the value of a specified cell from a grid control.

Include file

SapGui.bdh

Syntax

SapGuiGridGetCellData( in sControlId : string; 
                       in nRow       : number;
                       in sCol       : string ) : string;
Parameter Description
sControlId The unique id of the control.
nRow The cell's row. The first row is 1.
sCol The cell's column. All valid column names of the table which can be passed as sCol parameter are recorded as comments in the script.

Return value

  • Selected entry on success.
  • Empty string otherwise.

Example

transaction TMain
  var
    sText  : string;
    sConnID : string;
  begin

    // Connecting to SAP
    sConnID := SapGuiOpenConnection( " /SAP_CODEPAGE=1100 /FULLMENU 10.5.2.132 0 /3");

    SapGuiSetActiveConnection(sConnID);

    SapGuiSetActiveSession("ses[0]");

    // SAP
    SapGuiSetActiveWindow("wnd[0]", "SAP", SAPGUI_MATCH_ExactNoCase);

    SapGuiWindowAction(SAPGUI_WND_MAXIMIZE);

    SapGuiLogon("ddic", "*******", "000", "");
    sText := SapGuiGridGetCellData("/usr/tab/grid23", 2, "OOBJW" );
  end TMain;