on 2009 Jan 27 3:06 PM
hi,
I read that this function module "qapp_cust_ip_f4" can be used to provide f4 help for inspection point identifier fields. And there are a few more modules like this which checks entered values etc.
My question is, it says with qapp cust ip f4, i can provide a list of available values. Can i use it to get material numbers from system too? Without creating an extra list of course.
And with another function module, can i change the names of user fields (which is shown on the recording screen) for each operation in a control plan?
Thanks,
Alper,
to simplify things; for my inspection point identifiers i need to :
Provide f4 help from materials list so i wont have to update anything when new materials are created. (i somehow need to use one of the fields as material number)
Change names of the fields for each operation so i can use a field for different purposes in different operations.
Thanks,
Alper,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Use the following code in the Functional module.
IF I_QAPP_USER_FIELD = '4'.
T_TQ79_F4_VALUES-USERFIELD = '1'.
T_TQ79_F4_VALUES-SHORTTEXT = 'Stage 1'.
APPEND T_TQ79_F4_VALUES.
T_TQ79_F4_VALUES-USERFIELD = '2'.
T_TQ79_F4_VALUES-SHORTTEXT = 'Stage 2'.
APPEND T_TQ79_F4_VALUES.
T_TQ79_F4_VALUES-USERFIELD = '3'.
T_TQ79_F4_VALUES-SHORTTEXT = 'Stage 3'.
APPEND T_TQ79_F4_VALUES.
T_TQ79_F4_VALUES-USERFIELD = '4'.
T_TQ79_F4_VALUES-SHORTTEXT = 'Stage 4'.
APPEND T_TQ79_F4_VALUES.
T_TQ79_F4_VALUES-USERFIELD = 'F'.
T_TQ79_F4_VALUES-SHORTTEXT = 'Final Stage'.
APPEND T_TQ79_F4_VALUES.
ENDIF.
and activate the FM in SPRO-qm-inspection planning
U will get the values in the F4.
Change the values as per ur requirement.
Regards,
Selva..
User | Count |
---|---|
109 | |
8 | |
8 | |
6 | |
5 | |
5 | |
5 | |
5 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.