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

SCREEN-COLOR and REQUEST

Former Member
0 Likes
8,861

hi,all.

in'

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF SCREEN-NAME = 'FILENM'.

SCREEN-COLOR = ?.

SCREEN-REQUEST = ?.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

'

can anyone tell me how to user SCREEN-COLOR and REQUEST, or what the valuse fill in SCREEN-COLOR and REQUEST.and the result.

Regards,

ali

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
4,310

Hi Alicicie,

If you are looking for the coloring of the screen, then go for the below option.


SCREEN-INTENSIFIED = 1.

&*******Reward Point if helpful***********&

hi,all.

in'

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF SCREEN-NAME = 'FILENM'.

SCREEN-COLOR = ?.

SCREEN-REQUEST = ?.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

'

can anyone tell me how to user SCREEN-COLOR and REQUEST, or what the valuse fill in SCREEN-COLOR and REQUEST.and the result.

Regards,

ali

6 REPLIES 6
Read only

Former Member
0 Likes
4,310

Hi Alicice,

The Screen table has a field called Request but i couldn't find the field Color. Anyways About the field REQUEST :

Setting REQUEST = 1 for a field that is ready for input has the same effect in the PAI event as if the user had changed the field contents. This means that a conditional module call using ON REQUEST or ON CHAIN-REQUEST would be executed regardless of whether the user really changed the field. REQUEST is automatically reset to 0.

Regards,

Swapna.

Read only

Former Member
0 Likes
4,310

Hi Alicice,

I dont think we have an option SCREEN-COLOR in the SCREEN TABLE. But we have option of INTENSIFIED.

If you are looking for Intensified, then its purpose is:

SCREEN-INTENSIFIED:

If you set INTENSIFIED = 1, the field contents of input fields are changed from black to red. The contents of output fields are changed from black to blue.

Screen-Request:

Setting REQUEST = 1 for a field that is ready for input has the same effect in the PAI event as if the user had changed the field contents. This means that a conditional module call using ON REQUEST or ON CHAIN-REQUEST would be executed regardless of whether the user really changed the field. REQUEST is automatically reset to 0.

Hope this helps you.

Any queries, get back to me.

Regards,

Chandra Sekhar

Read only

Former Member
0 Likes
4,311

Hi Alicicie,

If you are looking for the coloring of the screen, then go for the below option.


SCREEN-INTENSIFIED = 1.

&*******Reward Point if helpful***********&

Read only

Former Member
0 Likes
4,310

Hi,

SCREEN internal table does not have COLOR .

If you want to change font color of the text you can use

LOOP AT SCREEN.

IF SCREEN-NAME = 'FILENM'.

SCREEN-INTENSIFIED = '1'.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

If you set INTENSIFIED = 1, the field contents of input fields are changed from black to red. The contents of output fields are changed from black to blue.

Regards,

Rajitha.

Read only

0 Likes
4,310

In SAP ECC 6.0 there is a COLOR fieldname in the bottom of the SCREEN structure when doing LOOP AT SCREEN .. ENDLOOP.

I haven't been able to locate any SAP documentation on this field and its use.

Read only

Former Member
0 Likes
4,310

ths all help i know the SCREEN-REQUEST. >_<

in my SCREEN structure had 'color'.

my sap is ecc6.0.