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: 

Function HELP_START

0 Kudos

Hello everybody,

I'm trying to use the function HELP_START to use a match code. My code is the next:


  wa_help_info-call         = 'V'.
  wa_help_info-object       = 'F'.
  wa_help_info-program      = 'ZMM_DDGS'.
  wa_help_info-dynpro       = '1001'.
  wa_help_info-tabname      = 'QALS'.
  wa_help_info-fieldname    = 'PRUEFLOS'.
  wa_help_info-fieldtype    = 'NUMC'.
  wa_help_info-keyword      = 'Lote de inspección'.
  wa_help_info-fieldlng     = '12'.
  wa_help_info-spras        = 'ES'.
  wa_help_info-menufunct    = 'HC'.
  wa_help_info-title        = 'Modificar lote insp.:'.
  wa_help_info-dynprofld    = 'QALS-PRUEFLOS'.
  wa_help_info-tcode        = 'ZPP004B'.
  wa_help_info-pfkey        = 'A200'.
  wa_help_info-docuid       = 'FE'.
  wa_help_info-pov          = 'N'.
  wa_help_info-curow        = 4.
  wa_help_info-cucol        = 22.
  wa_help_info-dynpprog     = 'ZMM_DDGS'.
  wa_help_info-selectart    = 'A'.

  CALL FUNCTION 'HELP_START'
    EXPORTING
      help_infos     = wa_help_info
    IMPORTING
      selection      = l_selection
      select_value = l_value_select
    TABLES
      dynpselect    = it_dynpselect
      dynpvaluetab = it_dynpvalue.

I can show the values correctly, but if i select one value my result is the next:

L_SECTION = 'M'

L_VALUE_SELECT = ''.

I don´t obtain any values....

Would you help me with this function please.....

THANKS

1 REPLY 1

Former Member
0 Kudos

Hi ,

I have the same problem, I have to have F4 values for fields LAUFD and LAUFI in my custom program.

I have to get the values as coming in standard tcode FPY1.

Even i could not display the values??