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: 

What values are possible for a specific object/field

corinne_lofts
Participant
0 Kudos

Hi everyone,

I am trying to do the following

Pull a list out of the system that would provide me with value's description for a specific authoirsation object / field

I have tried SE16 > AGR_1251 > one of my roles

I am getting the role, object, field, low and high values

for example

myrole - M_FORECAST - ACTVT - 03

What I have missing is the English description of what "03" is. for example "Display"

A 03 for a field may not always have the same meaning for different objects

Alternativly can I pull a list somewhere of the potential values and their description for a specific Authorization Object / Field combination?

Thank you

Coco

1 ACCEPTED SOLUTION

jurjen_heeck
Active Contributor
0 Kudos

Unfortunately there's no straightforward solution for this. The ACTVT field may well be the only exception as its possible values are listed in table TACT. I've been searching for this information but it has been a tedious manual job so far, with little success.

Let's hope the other forum members know some more information sources....

6 REPLIES 6

jurjen_heeck
Active Contributor
0 Kudos

Unfortunately there's no straightforward solution for this. The ACTVT field may well be the only exception as its possible values are listed in table TACT. I've been searching for this information but it has been a tedious manual job so far, with little success.

Let's hope the other forum members know some more information sources....

0 Kudos

Yes , there is no direct way for this. You need to work on two reports using table information from AGR_1251 and TACT tables.

Regards

Kantikiran

0 Kudos

> You need to work on two reports using table information from AGR_1251 and TACT tables.

This is incorrect answer. AGR_1251 only contains information about already built roles and TACT only contains the values for the ACTV field, not the other ones.

Better look at the tables Dipanjan mentioned and remember you'll never get a complete answer as not all fields have predefined values.

sdipanjan
Active Contributor
0 Kudos

Please go through the following Tables:

TACT : Contains the Text Descriptions of all Activities (for e.g. 01= Create/ Generate, 02= change etc.)

TACTZ : Contains the Authorization Object specific Activities.

TOBJ : Description of Authorization Objects

TOBJT: Text Description of Authorization Objects

AUTHX: Details of Fields

TPARA: Parameter Ids of Fields

There are many more... but these are of help as per your question.

Regards,

Dipanjan

Former Member
0 Kudos

It depends of the type of the field, and whether it is assigned to a data element or check table, and whether the data element has a domain with value range assign to it (those will be the values) or entries in the table (those will alternately be the values).

It is a good practice to use domains or check tables. Good question.

Cheers,

Julius

Edited by: Julius Bussche on Aug 2, 2009 9:40 AM

corinne_lofts
Participant
0 Kudos

Thank you everyone for your suggestions, I think I have enough info now to play around and pull the desired data out of the system.

Coco