Friday, 18 December 2015
Sunday, 13 December 2015
Thursday, 3 December 2015
How to create dynamic internal table.and dynamic work area .
REPORT YBTEST.
PARAMETER : var1 type c LENGTH 20 value scmg_t_case_attr.
DATA: ref1 TYPE ref TO data , " this if for internal table
ref2 TYPE ref TO data. " this is for work area
*variable1 = variable .
CREATE DATA ref1 TYPE TABLE OF (VAR1).
CREATE DATA ref2 TYPE (var1) .
FIELD-SYMBOLS : <fs_internal_table> TYPE STANDARD TABLE . "this is for internal table
FIELD-SYMBOLS : <fs_work_area> . "this is for work area
*below statement creates the structure or table as required
ASSIGN ref1->* to <fs_internal_table>.
ASSIGN ref2->* to <fs_work_area>.
*data : lt_tab TYPE STANDARD TABLE OF <fs_internal_table> .
WRITE : 'BHARAT'.
Wednesday, 30 September 2015
Friday, 7 August 2015
Transaction to get the list of details based on Conponent
Transaction to get the list of details based on Conponent
SE84 is the tcode to get the list based on component
SE84 is the tcode to get the list based on component
Transaction to get the list of programs in SAP Patch or Upgrade Patch
Transaction to get the list of programs in SAP Patch or Upgrade Patch
SSDA is the Tcode , give the patch id here.
SSDA is the Tcode , give the patch id here.
Thursday, 2 July 2015
Standard Table which contains all Tables and their Description
DD02L - SAP TABLES
DD02T - SAP TABLE TEXTS
Subscribe to:
Posts (Atom)