2007 Jun 07 6:58 AM
in screenpainter, we have textbox when we open its properties we have options such as (visible,nonvisible,possible and notpossible) what is the difference.
and how it can be used in our forms.
in screenpainter, we have textbox when we open its properties we have options such as (visible,nonvisible,possible and notpossible) what is the difference.
and how it can be used in our forms.
2007 Jun 07 7:02 AM
Hi Babu,
Visible - It displays the Text Box at the output.
nonvisible - It doesn't displays the Text Box at the output. it hides the text Box.
possible - User can enter the values in text box.
notpossible - User can't enter the values in text box. The text box is in display mode.
Required - It tell that the text box is a Mandatory field. user should enter the Values.
Thanks,
Reward If Helpful.
2007 Jun 07 7:03 AM
Hi,
visible and non-visible are useful to make the complete text box appear or disappear.
possible and not possible are useful for making fields available for input or not.
see this example below.
loop at screen.
if screen-name = <ur field name>.
screen-invisible = '1'.
endif.
endloop.
rgds,
bharat.
2007 Jun 07 7:04 AM
Hi,
Visible means it will be visible and u cannot enter the data..But can see the data
Invisible:Not visible to the user
Possible:visible to the user a well as we can enter the data
Not possbible:not able to enter the data
2007 Jun 07 7:08 AM
hi,
go through this link
http://help.sap.com/saphelp_nw04s/helpdata/en/e2/a5eb41c2d16430e10000000a1550b0/frameset.htm
2007 Jun 07 7:10 AM
the properties of text box can be changed dnamacilly.for this we should assign a group for the text box in the group field.
2007 Jun 07 7:37 AM
Hi Dhamodharan babu,
In Screen Painter put the textbox and double click on that u will get the ATTRIBUTES window for that text box , in this window in the bottom u will get 3 tabs like DICT , PROGRAM, DISPLAY .
click on PROGRAM in this go to INPUT OPTION in this selct the option as notpossible the it will not allow u to edit the value.
Then if u want to change it when u press the BUTTON .
for this BUTTON Write PAI logic as
case ok_code.
when 'BUTTON'.
SCREEN-INPUT = 0.
ENDCASE.
2007 Jun 07 12:22 PM
Hi,
The properties have the following meaning:-
1) Visiable:- It is visiable.i.e you can see the text box on the screen
during output/input.
2) Invisiable:- It is presnt on the screen but it is not viviable to the end user.
3) Possible:- It is used to enter / modify values in text box by the end user.
4) Not Possible :- It is not possible to enter any value/data in the text box.
In this it is only for output purpose.
Reward Points if helpful.....
Regards
Jitendra
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |