Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Table for Set (T-code: GS03).

0 Likes
32,183

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

8 REPLIES 8
Read only

Former Member
0 Likes
14,575

It should be table Table CCSS

Hope it helps

Regards

Bhanu

Read only

Former Member
14,575

Hello

SETHEADER

SETHEADERT

SETLEAF

SETLINET

SETNODE

Read only

14,575

Thanks. I also faced the same issue but now it got solved.

Regards

Megha

Read only

0 Likes
14,575

Your answer helped to resolve my issue too. Thanks

Read only

0 Likes
14,575

your asnswer helps in solvingmy issue thanks a lot

Read only

Former Member
0 Likes
14,575

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

Read only

Former Member
0 Likes
14,575

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

Read only

0 Likes
14,575

Thank You Soumya , this was helpful