Application Development 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: 

How to use SET-ID(GS01) in a user exit?

Former Member
0 Kudos

Hi,

I have a new set-id created through GS01 which has a list of account numbers.

I need to use these account numbers in an user exit. How to extract the values from a SET using the set-id?

Thanks in advance

Vinoth

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Look at sample program RGSEX001 (or similar name RSEX) - these show use of function modules to read set values and also to get pointers for hierarchy of sets.

Andrew

3 REPLIES 3

Former Member
0 Kudos

u can call like this

select * from table

where accounts in zset.

or these is one FM which can fetch the data from SET Ids.

Regards

Peram

Former Member
0 Kudos

Look at sample program RGSEX001 (or similar name RSEX) - these show use of function modules to read set values and also to get pointers for hierarchy of sets.

Andrew

0 Kudos

Thanks Andrew, I found the function module that will solve my problem - G_SET_TREE_IMPORT from program RGSEX001.