‎2007 Feb 06 7:10 AM
Hi,
I need to call a function (HELP_START) in another function (Z_T_CVCLASS_VALIDATE_PRJ_NO) .i m not getting the input parameters of 'help_start' .can anybody help in this with appropriate input parameters ?
Thx in Adv.
Bapi
‎2007 Feb 06 7:25 AM
Sending you a sample of standard code used to call function module HELP_START.
form langtext using msgid type c
msgnr type c
message type c
para1 type c
para2 type c
para3 type c
para4 type c.
tables: help_info.
data: docu_object like dokhl-object.
data begin of dummy1 occurs 0.
include structure dselc.
data end of dummy1.
data begin of dummy2 occurs 0.
include structure dval.
data end of dummy2.
docu_object = msgid.
docu_object+2 = msgnr.
Langtext ausgeben
clear help_info.
help_info-call = 'D'.
help_info-spras = sy-langu.
help_info-messageid = msgid.
help_info-messagenr = msgnr.
help_info-message = message.
help_info-title = text-004. "Langtext
help_info-docuid = 'NA'. "Konstante
help_info-docuobject = docu_object.
help_info-msgv1 = para1.
help_info-msgv2 = para2.
help_info-msgv3 = para3.
help_info-msgv4 = para4.
call function 'HELP_START'
exporting
help_infos = help_info
tables
dynpselect = dummy1
dynpvaluetab = dummy2.
endform. " LANGTEXT
Hope this will help you.
Thanks.