Application Development and Automation 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: 
Read only

form

Former Member
0 Likes
397

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.

1 ACCEPTED SOLUTION
Read only

former_member226999
Contributor
0 Likes
377

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

2 REPLIES 2
Read only

former_member226999
Contributor
0 Likes
378

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

Read only

former_member226999
Contributor
0 Likes
377

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?