cancel
Showing results for 
Search instead for 
Did you mean: 

F4 Help from Data Element

farooq_basha
Active Participant
0 Kudos

Hi Expert,

In my Table i am not getting f4 help for 2 attribute1st Date and 2nd Type of Expense i have created table and bind to Table column

1st Field --Date of type Dats .....I am not getting f4 help for this

2nd FieldType Of expenseI have defined Data Element to field and binded to table column attribute ....

When i am testing application i am not getting f4 help for this field please let me knw how to do.

Regards,

Farooq

Accepted Solutions (0)

Answers (3)

Answers (3)

farooq_basha
Active Participant
0 Kudos

Sorry Guys forget to inform u i am not getting from morning only

Yesterday when i check i was getting but from morning i am not able to get .....

Former Member
0 Kudos

Hi Farooq,

Go to CONTEXT, select that attribute in properties, check which type you are using for DATE? and check Input Help Mode

and Determined Input Help any input help is there or not?

For date check Determined Input Help - CALENDAR is there or not.. if calendar is there means you will get f4 help.

if not try to use different type for date like ERDAT or DATS etc.

Cheers,

Kris.

farooq_basha
Active Participant
0 Kudos

HI kisnass,

Date ---Determine Input Help --Calender

Typeofexpense---Determine Input Help ---SH_EXPENSE_TYPE

I am displaying this 2 field in table

Its showing in context node but when i run application i am not getting f4 help

Thanks and Regards,

Farooq

Edited by: farooq basha on Jun 17, 2011 12:11 PM

Former Member
0 Kudos

Hi

Tell me what type you are using for date. ?

Cheers,

Kris.

farooq_basha
Active Participant
0 Kudos

Hi Kisnas,

Date Type is DATS

Typeofexpense type is SPKZL

Regards,

Farooq

Former Member
0 Kudos

Hi,

I am getting input help for date of type DATS, i checked now. it is working. why it is not working for you?

i am not getting.

Cheers,

Kris.

farooq_basha
Active Participant
0 Kudos

Is der any problem i am using in table.....

Regards,

Farooq

Former Member
0 Kudos

Hi,

In table also i am getting, is your table is coming in EDIT mode or not. to display table with edit mode

write this code in WDDOINIT method and try. I am having node of type RADIO and one field DATE.

DATA lo_nd_radio TYPE REF TO if_wd_context_node.
  DATA lo_el_radio TYPE REF TO if_wd_context_element.
  DATA ls_radio TYPE wd_this->Element_radio.
  DATA lt_radio TYPE wd_this->Elements_radio.

* navigate from <CONTEXT> to <RADIO> via lead selection
  lo_nd_radio = wd_context->get_child_node( name = wd_this->wdctx_radio ).

* get element via lead selection
  lo_el_radio = lo_nd_radio->get_element( ).

lo_nd_radio->get_static_attributes_table( IMPORTING table = lt_radio ).
* Append a new line
  APPEND ls_radio TO lt_radio.
  lo_nd_radio->bind_table( new_items = lt_radio set_initial_elements = abap_false ).

cheers,

Kris.

Former Member
0 Kudos

Hi farooq,

Please check with the context node property input search help is deactivated . if it is deactivated means activate to automatic.

Regards,

Basuvaraj.P

farooq_basha
Active Participant
0 Kudos

Hi,

For Date Attribute --Property -Inputhelpmode-Automatic

For Typeofexpense attribute-Property-Automatic

I have check every thing i donno but then also i am facing same problem

Define Node in Component Controller Context and Mapped in View

Regards,

Farooq