cancel
Showing results for 
Search instead for 
Did you mean: 

How to display Supplementary Documentation of Data Element in MoreField Help in WebDynpro screen ?

Former Member
0 Kudos

Hi All,

     I have a WebDynpro Application for Vendors in which I am using many Standard Data Elements like KUNNR , RASSC, BRGRU etc. in a view . When I select right click -> More Field Help  on these fields I get the default Documentation for these Data Elements. Whereas , when I see these same Fields in  display Vendor ( XK03 ) in R3 system, I get the Supplementary Documentation. This is because in R3 its showing Supplementary Documentation . Please see below screenshots. So my question is , can we display Supplementary Documentation for Data Elements in WebDynpro ?

Accepted Solutions (0)

Answers (1)

Answers (1)

daniel_souza
Discoverer
0 Kudos

Hi

You should use the function "DOCU_OBJECT_NAME_CONCATENATE" like example down


call function 'DOCU_OBJECT_NAME_CONCATENATE'
            exporting
                 docu_id  = 'DZ'
                 element  = 'DATA_ELEMENT'
                 *addition = VERSION ( NUMC )
            importing
                 object   = object ( 'DATA_ELEMENT   VERSION' )


Get addition:



After get the return of the function above, call function "DOCU_GET_FOR_F1HELP"


call function 'DOCU_GET_FOR_F1HELP'
            exporting
                 id       = 'DZ'
                 langu    = sy-langu
                 object   = object ( return DOCU_OBJECT_NAME_CONCATENATE )
                 typ      = ' '
            importing
                 head     = header
            tables
                 line     = lines_temp2
            exceptions
                 ret_code = 0.