‎2007 Nov 13 10:29 AM
Hi Everybody,
I'm creating an INCLUDE that contains a selection screen . This one should be global, it means it should be called from many programs.
I'd like to have also global TEXT elements : but it seems not to be possible to have them in the include !
So what can I do ?
Christian
‎2007 Nov 13 10:32 AM
we can call the selection screen of one program in another using
export/ import
and
submit report <name> using selection screen.
or
submit......... via selection screen.
‎2007 Nov 13 10:31 AM
Hi,
you can work with you own message class SE91 or with normal texts SO10
Regards
Nicole
‎2007 Nov 13 10:55 AM
Nicole,
could you please explain me how your sintax in the INCLUDE with message class would be ?
There's no such REPORT instuction to append a MESSAGE_ID at the end...
Thanks
‎2007 Nov 14 9:54 AM
HI,
you don't need to work with an include here. You can implement each text class with:
REPORT ytest MESSAGE-ID me
MESSAGE e398(00) WITH
'your own text'(003).
++me ist your own text class.
++ Message call with e (error) w (warning) or i(information)
‎2007 Nov 14 11:31 AM
Hi Nicole,
I NEED the include to have a common selection screen to be called from n reports, and this is possible!
and also common text element,and that sounds not to be possible since you suggest me to place them in REPORT..
‎2007 Nov 15 7:36 AM
HI,
I only know this for forms:
Text module of the text node is used to refer to an existing text module in the system. The text modules can be used in two ways:
Ø Refer to the text module. The text then appears read-only in the PC editor and is included when the form is printed.
Ø Copy the text module. The system then copies the text of the module and automatically converts the text node into an editable text element.
Ø To create a text node , call the context menu for that node in the tree structure that shall contain the text and choose create->text
Ø Enter a unique name for the node and a description
Ø On the general attributes tab select the text type text module
Ø Enter the name of the text module in the text name field
‎2007 Nov 13 10:32 AM
we can call the selection screen of one program in another using
export/ import
and
submit report <name> using selection screen.
or
submit......... via selection screen.