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

FM or report or class method

Former Member
0 Likes
1,683

Hi All,

Is there any FM or Report or Class method to get the material master fields are required,optional,display, hide.

we can see them in OMS2.

Is there any object such that i can fetch the fields and its properties such as ( required,optional,display, hide.).

Thanks

8 REPLIES 8
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,426

Take a look at table T130F (field name -> group) and T130A (Input status of the groups per Reference material type, link to actual material type thru table T134), you could also look at FM MATERIAL_FIELD_SELECTION*

For more information, read first OSS note 44410 - Integrating customer-specific fields in the material master

Regards,

Raymond

Read only

0 Likes
1,426

Hi Raymond,

Thank you for the immediate response i checked the tables T130F and T130A, there in the field FAUSW has dots(... ) & + & - but if we see in OMS9, if we provide field name it gives all the properties for the respective field ref also i checked MATERIAL_FIELD_SELECTION, i couldnt get any output, can you plz provide example for this FM.

Thanks

Read only

0 Likes
1,426

Every symbol in FAUSW field describe the input status a group number. (eg "+" mandatory, "-" forbidden, "." optional.)

Perform some where-used search on FM MATERIAL_FIELD_SELECTION_NEW  for example , you will find some call IN PBO module of MM0* transactions.

You could also analyze OMS9 (or directly execute SE54 on view V_T130A_FLREF) and look for SAP code to convert this data to be human readable. (e.g. modules liste_show_liste in include LSVIMOXX and  fill_checkbox  in include LMGFLO01)

Regards,

Raymond

Read only

0 Likes
1,426

Hi Raymond,

Thankyou for the response.

I have debugged the OMS9 before posting the message into SCN but i was not able understand the code and data in the fields FAUSW & FAUSW_F how they are representing the field selection group and screen properties.

Your statement

"Every symbol in FAUSW field describe the input status a group number. (eg "+" mandatory, "-" forbidden, "." optional."

helped me to understand & identify the field selection group number and the screen properties of the fields.

Thankyou for giving the prompt and valid response.

Read only

Former Member
0 Likes
1,426

Hi Shankar,

   

      Can you explain little more.. What is your requirement exactly....

Regards,

Mahesh R

Read only

0 Likes
1,426


Hi Mahesh,

I need to get all the material master fields screen properties such as required,optional,display, hide.

Thanks

Read only

Former Member
0 Likes
1,426

explore transaction OMS9

or find it

under the logistics general - configuring the material master in SPRO - field selection for data screens

I guess you can look at the underlying data sources if you wanted to

Read only

0 Likes
1,426

Hi Steve,

Thank you for the response, I already got the answer.