2014 Apr 30 11:25 PM
Hello gurus,
Someone knows if there is a way to know which fields are hidden in the screen of the transaction ie01, ie02, ie03
I want to reuse some fields or perhaps is it possible to add more fields only for a specific country?
thanks gurus
2014 May 01 2:18 AM
Hi Enrique,
1. To find out which fields are hidden in your Equipment Master run Transaction OIAD or OIAF as the case may be. OIAD id for Equipment specific fields and OIAF is for fields which appear in both Equip and FLocn. These are customising Tcodes. Now let's suppose you want to enquire about hidden fields in a particular Equipment Category (in your picture it is L), then:
Run OIAD / OIAF --> Click on Influencing as shown in the picture --> Double click on Equipment Category --> Put L in the field and press Enter. Now you will be presented the Equipment category specific settings. Scroll down the fields to find out which are selected Hide Radio Button.
2. To have Additional fields in Equipment Master, go through this document To have the visibility of these custom fields as per Country, you can have your code in the PBO module of the sub-screen, like:
IF ....... = 'X'. "country condition
LOOP AT SCREEN.
IF SCREEN-GROUP1 = '001'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDLOOP.
ENDIF.
The code suggested above might not be that simple for your requirement. It is just a sample. You need to develop the same. Hope this post helps you.
Jogeswara Rao K
2014 May 01 1:57 AM
Enriuqe,
Open the program/screen thru SE51 and check the list of fields and its properties. You should be able to check what you need from there.
Thanks,
Vikram.M
2014 May 01 2:18 AM
Hi Enrique,
1. To find out which fields are hidden in your Equipment Master run Transaction OIAD or OIAF as the case may be. OIAD id for Equipment specific fields and OIAF is for fields which appear in both Equip and FLocn. These are customising Tcodes. Now let's suppose you want to enquire about hidden fields in a particular Equipment Category (in your picture it is L), then:
Run OIAD / OIAF --> Click on Influencing as shown in the picture --> Double click on Equipment Category --> Put L in the field and press Enter. Now you will be presented the Equipment category specific settings. Scroll down the fields to find out which are selected Hide Radio Button.
2. To have Additional fields in Equipment Master, go through this document To have the visibility of these custom fields as per Country, you can have your code in the PBO module of the sub-screen, like:
IF ....... = 'X'. "country condition
LOOP AT SCREEN.
IF SCREEN-GROUP1 = '001'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDLOOP.
ENDIF.
The code suggested above might not be that simple for your requirement. It is just a sample. You need to develop the same. Hope this post helps you.
Jogeswara Rao K
2014 May 05 4:37 PM
Hello Jogeswara ,
Thanks for your answer, in your text what does FLocn mean? sorry.
Thanks
2014 May 05 4:47 PM
Functional Location, This is also Equipment like thing in Plant Maintenance Module. (Tcodes IL01, IL02, IL03). You may ignore this if not relevant to you and take the Equipment for your case.
2014 May 05 5:51 PM
Hi Jogeswara ,
A question, They are not all the fields in the screen, ¿true? for example i dont see the field EQART
thanks
2014 May 05 7:22 PM
Hi,
This can be done using tcode OAID, also you can add customer fields to IE01 using exits.
check how it looks our IE10 in our system, we added customer fields and we unhide some fields using tcode OAID.
Tienes 2 posibilidades, ya sea por customizing o por uso de una exit, todo depende del requerimiento.
Saludos
Regards
Miguel