cancel
Showing results for 
Search instead for 
Did you mean: 

Get Requestoner attribute from PPOMA_BBP

Former Member
0 Kudos

Hi Gurus,

Our requirement is to output the list of default attributes of a user which are maintained in transaction PPOMA_BBP as a report program.

For that we have used the FM - BBP_READ_ATTRIBUTES to get the all the attributes,

But the problem here is we were unable to retrieve the Requisitioner attribute alone, we have appended the REQUESTER as attribute ID to table IT_ATTR_LIST,

But no values are getting populated for the Requestoner attribute. Kindly help us how to overcome this.

Suggest any other FM

Regards

Paul

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Use function module BBP_READ_ATTRIBUTES in SE37 Execute

IV_USER -- user name

IV_ATTR_SINGLE -- right side click on small box enter ATTR_ID -- REQUESTER and G -- X

Come back

Execute -- > will find the details EV_ATTR_DFT_SINGLE click on small box right will find the all the requesters details

menu bar system --> list --> save --> local file --> spread sheet

You can save the list in xls file

Thanks

prasad.s

Answers (1)

Answers (1)

former_member195032
Active Contributor
0 Kudos

Hi Paul,

This is easy to do with same function module

BBP_READ_ATTRIBUTES

IV_USER should be populated with User id ,you can use sy-uname for this or requestor id if you have.

Populated IT_ATTR_LIST with attribute list which you want like

ATTR_ID G

CAT X

COMPANY X

CUR X

and execute this function module and you will get the list populated with these attribute.

Regards.Nishant

Former Member
0 Kudos

Hi .Nishant,

We need Requestioner attribute (In the Trans PPOMA_BBP - Attribute tab if you select the attribute Requestioner it will list the Requester assigned to the User) for the user. We need to get that attribute using any FM, Kindly help us.

FYI - We tried using the BBP_READ_ATTRIBUTES but it is not listing the Requestioner attribute alone, all other attributes are listed.

Regards

Paul

former_member195032
Active Contributor
0 Kudos

Hi Paul,

Using this function module I am in position to extract value of requester

for import parameter,I maintained

IV_ATTR_SINGLE

ATTR_ID G

REQUESTER X

and it worked.

regards,Nishant