‎2009 Apr 24 9:27 AM
Hi abapers:
I am facing a problem. I want to know the table name for set data are stored (T-code: GS03).
My FICO consultant has created a set ZBank and entered some data. I want to know in which table the data is stored.
Your help would be highly appreciated.
Regards,
Shegar
‎2009 Apr 24 9:31 AM
‎2009 Apr 24 9:47 AM
‎2010 May 06 10:37 AM
Thanks. I also faced the same issue but now it got solved.
Regards
Megha
‎2021 Sep 23 8:26 AM
‎2022 Mar 28 10:49 AM
‎2009 Apr 24 9:59 AM
Hi,
Tables:
SETCLS Set Classes
SETCLS_CD Change document indicator per set class
SETCLST Set Class Descriptions
SETDATA Sets - Contents (before Release 4.0)
SETDTEL Sets: Representative data elements
SETEXITS Exits for Formula Variables
SETEXITST Description of Exits for Formula Variables
SETHEADER Set Header and Directory
SETHEADERT Short Description of Sets
SETHEADERTRANS Changes Made to Sets by Transports
SETLEAF Values in Sets
SETLINET Short Description of Set Line
SETNODE Lower-level sets in sets
SETO2N Tables and Set Names for Sets in New Stora
SETS Sets - Contents (before Release 2.2)
SETUSE_BER Set Use in Authorizations (Area of Respons
SETUSE_REP Set Use in Reports and Libraries
T800S FI-SL Set Table (before Release 4.0)
T802G Sets: Variables
T802GU_SET Use of Variables in Sets
T802GU_VAR Use of Variables in Formula Variables
T802T Sets: Short Descriptions of Variables
‎2009 Apr 24 10:00 AM
CALL FUNCTION 'G_SET_GET_ID_FROM_NAME'
EXPORTING
shortname = w_setname
IMPORTING
new_setid = w_newsetid.
Give the Set name to this Function module and get the set id.
Now , pass this set id, to another FM 'G_SET_GET_ALL_VALUES' to get the values in the set.
CALL FUNCTION 'G_SET_GET_ALL_VALUES'
EXPORTING
setnr = w_newsetid
TABLES
set_values = gt_setvalues.
Thanks,
Sowmya
‎2022 Apr 05 10:40 PM