Application Development 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: 

F4 help not coming in Ztable

Former Member
0 Kudos

Hello friends

Am using standard Data Element which is having statndard domain inside for my Ztable but am not F4 help pop up in that field but for this field i can see F4 help in standard Table why so ?

Share your inputs on this.

Regards

Meeta.

1 ACCEPTED SOLUTION

prasanth_kasturi
Active Contributor
0 Kudos

Hi,

I think for that field the search help is assigned at field level.

so check the database table and assign the search help if any.

Also check the foreign key relationship. If any assign it and you can get the F4 help

Regards

Prasanth

3 REPLIES 3

Former Member
0 Kudos

Hi,

Check if external search help is attached to the standard table field. You can check it in SE11, under Entry help/Check again under Srch help tab.

If any, use the same in your ZTABLE.

Thanks,

Lakshmi

prasanth_kasturi
Active Contributor
0 Kudos

Hi,

I think for that field the search help is assigned at field level.

so check the database table and assign the search help if any.

Also check the foreign key relationship. If any assign it and you can get the F4 help

Regards

Prasanth

Former Member
0 Kudos

Hi,

This may be coz, sometime, F4 help is defined in the program, insted of attaching it to domain.

this the the way we do in program.

in reports.

----


data : it_ret_f4 type table of ddshretval,

wa_ret_f4 like line of it_ret_f4.

data : it_an_no type table of ty_an_no,

wa_an_no like line of it_an_no.

at selection-screen on value-request for an_no-low.

clear it_ret_f4.

perform f4_number.

read table it_ret_f4 into wa_ret_f4 index 1.

if sy-subrc = 0.

an_no-low = wa_ret_f4-fieldval.

endif.

form f4_number .

select an_no

vbeln from zprod_val into table it_an_no.

sort it_an_no ascending.

delete adjacent duplicates from it_an_no comparing an_no.

*

*

call function 'F4IF_INT_TABLE_VALUE_REQUEST'

exporting

  • DDIC_STRUCTURE = ' '

retfield = 'AN_NO'

  • PVALKEY = ' '

  • DYNPPROG = ' '

  • DYNPNR = ' '

  • DYNPROFIELD = ' '

  • STEPL = 0

  • WINDOW_TITLE =

  • VALUE = ' '

value_org = 'S'

multiple_choice = ' '

  • DISPLAY = ' '

  • CALLBACK_PROGRAM = ' '

  • CALLBACK_FORM = ' '

  • MARK_TAB =

  • IMPORTING

  • USER_RESET =

tables

value_tab = it_an_no

  • FIELD_TAB =

return_tab = it_ret_f4

  • DYNPFLD_MAPPING =

  • EXCEPTIONS

  • PARAMETER_ERROR = 1

  • NO_VALUES_FOUND = 2

  • OTHERS = 3

.

if sy-subrc <> 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

endif.

endform. " f4_number