cancel
Showing results for 
Search instead for 
Did you mean: 

qapp_cust_ip_f4 function module

Former Member
0 Kudos

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,

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

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,

Former Member
0 Kudos

any ideas or alternatives?

Former Member
0 Kudos

Hi,

I am also came through the same problem,ask ur programmer to append the F$ help values in the respective fields.

Then u can select the data frm F4 help.

Regards,

Selva,

Former Member
0 Kudos

i was looking for a way to accomplish this without modifying SAP fields. i tought this function module was made for that,

Former Member
0 Kudos

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..

Former Member
0 Kudos

i ended up doing this :

IF I_QAPP_USER_FIELD = '1'.

SELECT matnr maktx FROM MAKT INTO TABLE T_TQ79_F4_VALUES.

ENDIF.

Thanks,

Answers (0)