‎2008 May 14 3:03 PM
Hello all,
when i call the function
call function 'WRITE_FORM'
exporting
element = 'DOKU'.
and in the form
/E DOKU
/: STYLE S_DOCUP1 DOMINANT
/: INCLUDE &T9IDO-TDOBNAME& OBJECT &T9IDO-TDOBJECT& ID &T9IDO-TDID&
/: IF &SAPSCRIPT-SUBRC& NE ' 0'
*** not found: &T9IDO-TDOBNAME& &T9IDO-TDOBJECT& &T9IDO-TDID&
/: ENDIF
this from will bring documenation for give object(table,dataelement,report .........) in the print program,
can any body iexplain me that
what include will do ? here i have to get documentation depending on the system language .
if i want to use the language field in text elment what shall i do.
‎2008 May 14 3:09 PM
In your routine you can extract the data based on sy-langu system field.
And copy your sapscript for each language you want output in.
Thanks,
FY
‎2008 May 14 3:09 PM
In your routine you can extract the data based on sy-langu system field.
And copy your sapscript for each language you want output in.
Thanks,
FY
‎2008 May 15 1:17 PM
What the includes do is basically print the content of the workarea T9IDO as a standard text. So basically in debug u can see the name of the standard text. and if you look for that in SO10 you can see the text value of the same.
Hope that helps?