Application Development and Automation 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: 
Read only

Search Help for field knowing Dataelement Only

Former Member
0 Likes
2,377

I know only the Data element , how can i provide search help for that one .please give me the solution as early as possible .

Regards,

Pradeep

I know only the Data element , how can i provide search help for that one .please give me the solution as early as possible .

Regards,

Pradeep

11 REPLIES 11
Read only

former_member188827
Active Contributor
0 Likes
1,547

go to se11,type your data element against data type and choose display..in the tab further characteristics you will find any attached search helps

Read only

0 Likes
1,547

Hi ,

Thanx for ur reply but not sufficent .I am generating dynamic Selection fields with list of DataElements , and i dont know the tablename , fieldaname . so i have to get the fieldcatlog for that one with field help information .

Regards,

pradeep .

Read only

Former Member
0 Likes
1,547

If there is no domain for data element, create an elementary search help and add it to data element (further characteristics tab).

Read only

0 Likes
1,547

Hi ,

Thanx for ur reply but not sufficent .I am generating dynamic Selection fields with list of DataElements , and i dont know the tablename , fieldaname . so i have to get the fieldcatlog for that one with field help information .

Regards,

pradeep .

Read only

Former Member
0 Likes
1,547

hii pradeep,

Try creating custom data element referring to standard one and give disciption as required. Use this data element in elementary search help while specifying parameters for required field

this is quite elaborated

you have to create a Data element...using matnr(eg)

goto se11 -> select data type : enter a name for the data element say 'BOMCOMP ..-> create -> now select Data Elemnt ->give discription -.> enter Domain name as MATNR -> give any one of the fild label..(can be same as disription).

now you use this data elent to define your internal table like:

types : begin of itab,

matnr type BOMCOMP,

-


-


end of itab.

data: gt_itab type standard table of itab

rgrds,

Shweta

Read only

0 Likes
1,547

Hi Swetha ,

Thanx for ur reply but not sufficent .I am generating dynamic Selection fields with list of DataElements , and i dont know the tablename , fieldaname . so i have to get the fieldcatlog for that one with field help information .

Read only

Former Member
0 Likes
1,547

Hi,

If u reffereing a field through data element....Create a search help either elementary or collective

and add that to u'r data element..

Regards,

Naveen M.

Read only

0 Likes
1,547

Hi ,

Thanx for ur reply but not sufficent .I am generating dynamic Selection fields with list of DataElements , and i dont know the tablename , fieldaname . so i have to get the fieldcatlog for that one with field help information .

Regards,

pradeep .

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,547

Usually, i use F4IF_FIELD_VALUE_REQUEST (or F4IF_DETERMINE_SEARCHHELP) to find search help from the couple table-field,

If you start from data element use DD_DTEL_GET to get search help and parameter names, and use those in F4IF_FIELD_VALUE_REQUEST.

Regards,

Raymond

Read only

0 Likes
1,547

Hi ,

I used that one but no use it's its not giving field help information . for field help if i use f4if_fieldvalue_request i get the F4 but i cant provide f4 for each field, I want the standard Search help or field help values existed at DataElement Level .

Regards,

Pradeep .

Read only

0 Likes
1,547

Fields SHLPNAME and SHLPFIELD are returned in DD04L_TAB_A exported parameter of DD_DTEL_SET_GET, if initial look a fields VALEXI and ENTITYTAB.

Don't forget that by using data elements, you and your report wont find the search helps generated by foreign keys relation, for data element which do not carry a search help or a domain with values or value table you MUST provide a table with foreign keys.

You may find search help attached to a table, view or field of any of those two.

e.g. : MEINS - domain as value table T006 (ENTITY TABLE) and table T006 has search help H_T006.

Regards,

Raymond