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

Selection Screen called from different programs

Former Member
0 Likes
724

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

1 ACCEPTED SOLUTION
Read only

hymavathi_oruganti
Active Contributor
0 Likes
703

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.

6 REPLIES 6
Read only

Former Member
0 Likes
703

Hi,

you can work with you own message class SE91 or with normal texts SO10

Regards

Nicole

Read only

0 Likes
703

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

Read only

0 Likes
703

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)

Read only

0 Likes
703

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..

Read only

0 Likes
703

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

Read only

hymavathi_oruganti
Active Contributor
0 Likes
704

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.