cancel
Showing results for 
Search instead for 
Did you mean: 

Get Node ID of PFCG tx., which table stores it? I tried F1 help but no use!

former_member194142
Participant
0 Kudos

Hello,

Pls. let me know how to get / read the node ID's value of PFCG tx, which table stores this value?

Thank you

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

what kind of PFCG is this?

former_member194142
Participant
0 Kudos

Thank you, its normal PFCG transaction code, for security Role maintenance

former_member194142
Participant
0 Kudos

Any help pls.?

Thank you

ramakrishnappa
Active Contributor
0 Kudos

Hi,

Use the table AGR_HIER to get the node id of all WD applications of a  ROLE.

Sample Code:


select single *

               from AGR_HIER

               into ls_agr_hier

               where  agr_name = 'ROLE_NAME'

                        and reporttype = 'OT'

                       and REPORT = 'WDY_APPLICATION'.

Now, you get all wd applications attached to that node.

               ls_agr_hier-OBJECT_ID ..... is the node id

Check tables with AGR_*  to find out the exact match against your application name

Hope this helps you.

Regards,

Rama

former_member194142
Participant
0 Kudos

Awesome!!

Just curious in which module you are worked, I mean, CRM / SOLMAN / SRM / PLM / PPM in WD perspective?

Many Thanx

Answers (1)

Answers (1)

former_member194142
Participant
0 Kudos

Any help pls.?

Thank you