2008 Jun 30 9:59 AM
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
2008 Jun 30 10:14 AM
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
2008 Jun 30 10:08 AM
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.
2008 Jun 30 10:10 AM
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
2008 Jun 30 10:14 AM
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***********&
2008 Jun 30 10:17 AM
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.
2012 Jul 05 8:37 AM
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.
2008 Jun 30 10:29 AM
ths all help i know the SCREEN-REQUEST. >_<
in my SCREEN structure had 'color'.
my sap is ecc6.0.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |