Application Development 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: 

Display text in output screen.

Former Member
0 Kudos

Hi Friends..

I need to display set of text in output window once i click the push button.

My exact requirment is..

In my output screen contain some push buttons..

once i click the push button i need to display the relevant subscreen

and information about the screen..

iam using Modulepool concept to display the subscreen.

now i want to display the text related to the screen.

how can i display the text in custom control or anyother option available to display the text..

Thanks in advance

Gowrishankar P

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Gowrishankar P,

there are some examples in transaction BIBS. I kindly suggest, for example, that you enter this transaction, choose some example, and press the "info" button at the menu bar (top of the screen). This will show you a popup with a text message, which may be helpful to you.

I hope it helps. Best regards,

Alvaro

3 REPLIES 3

Former Member
0 Kudos

Hi Gowrishankar P,

there are some examples in transaction BIBS. I kindly suggest, for example, that you enter this transaction, choose some example, and press the "info" button at the menu bar (top of the screen). This will show you a popup with a text message, which may be helpful to you.

I hope it helps. Best regards,

Alvaro

Former Member
0 Kudos

Hi,

here a short example:

  • Selection/Parameters mit variablem INPUT-Möglichkeir

PARAMETERS: P1 DEFAULT 'X' RADIOBUTTON GROUP PR1 USER-COMMAND DUMMY.

PARAMETERS: P2 RADIOBUTTON GROUP PR1.

*

SELECTION-SCREEN: SKIP 6.

SELECTION-SCREEN: COMMENT 10(79) T1 MODIF ID INT.

SELECTION-SCREEN: SKIP 1.

SELECTION-SCREEN: COMMENT 10(79) T2 MODIF ID INT.

SELECTION-SCREEN: SKIP 1.

SELECTION-SCREEN: COMMENT 10(79) T3 MODIF ID INT.

SELECTION-SCREEN: SKIP 1.

SELECTION-SCREEN: COMMENT 10(79) T4 MODIF ID INT.

SELECTION-SCREEN: SKIP 1.

SELECTION-SCREEN: COMMENT 10(79) T5 MODIF ID INT.

SELECTION-SCREEN: SKIP 1.

SELECTION-SCREEN: COMMENT 10(79) T6 MODIF ID INT.

*

AT SELECTION-SCREEN OUTPUT.

*

LOOP AT SCREEN.

IF SCREEN-GROUP1 EQ 'INT'.

SCREEN-INTENSIFIED = '1'.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

*

IF P1 = 'X'.

CLEAR: T1, T2, T3, T4, T5, T6.

ENDIF.

*

IF P2 = 'X'.

T1 = '1. Comment'.

T2 = '2. Comment'.

T3 = '3. Comment'.

T4 = '4. Comment'.

T5 = '5. Comment'.

T6 = '6. Comment'.

ENDIF.

*

Regards, Dieter

Former Member
0 Kudos

hi,

i need to display the description of the each screen using custom control. how to do it.