on 2016 Aug 10 6:33 AM
Hi sai santhosh,
By default there is no search help for the VBELN.
So we need to explicitly provide the search help name or Help structure.
CALL METHOD lv_r_helper_class->add_selection_field
EXPORTING
i_id = 'VBELN'
it_result = rt_range_table
i_value_help_type = if_wd_value_help_handler=>co_prefix_none
i_value_help_structure = 'VBUK'
i_value_help_structure_field = 'VBELN'
i_read_only = abap_false.
Where vbuk is the check table for the vbeln in the VBAK.
When you create as the input field for the VBELN there will be no search help.So we need to assign the search help in the context level by selecting the INPUT HELP MODE = DICTIONARY SEARCH HELP and provide the search help name over there..
Thanks & Regards
@surendra@
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi sai..
Pass below parameters with add_selection_field method
CALL METHOD lv_r_helper_class->add_selection_field
EXPORTING
i_id = 'VBELN'
it_result = rt_range_table
i_value_help_type = if_wd_value_help_handler=>co_prefix_none
i_value_help_structure = 'VBAK'
i_value_help_structure_field = 'VBELN'
i_read_only = abap_false.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
63 | |
10 | |
7 | |
7 | |
6 | |
6 | |
6 | |
6 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.