2007 Jan 03 11:33 AM
Hi Experts,
I am working on upgradation project from 4.6c to 4.7EE version
In Transaction <b>XD01/XD02</b> under the Address tab, the <b>Name3</b> and <b>Name4</b> fields are filled with asteriks. Could anyone help me in solving this.
Thanks in advance
Message was edited by:
venkat g
2007 Jan 04 5:22 AM
Hi Venkat
Please check the attributes of the fields if the INVISIBLE field is set.
To do so:
1. Get the screen number and program name from XD01: System->Status.
2. Goto SE51.
3. Enter details for Program name and screen number.
4. Select the Layout Editor option.
5. Double click on field NAME3, which will open a window for attributes.
6. Bottom of window will be a partition for Attributes.
7. Under tab "Display", see if the checkbox for INVISIBLE is set.
If this is set, by default you will be seeing as '*'.
The same we can do by changing the screen attributes through program with code:
loop at screen.
if screen-name = 'FLD'.
screen-invisible = 1.
modify screen.
endif.
endloop.Hope this info helps you.
Kind Regards
Eswar
2007 Jan 04 5:22 AM
Hi Venkat
Please check the attributes of the fields if the INVISIBLE field is set.
To do so:
1. Get the screen number and program name from XD01: System->Status.
2. Goto SE51.
3. Enter details for Program name and screen number.
4. Select the Layout Editor option.
5. Double click on field NAME3, which will open a window for attributes.
6. Bottom of window will be a partition for Attributes.
7. Under tab "Display", see if the checkbox for INVISIBLE is set.
If this is set, by default you will be seeing as '*'.
The same we can do by changing the screen attributes through program with code:
loop at screen.
if screen-name = 'FLD'.
screen-invisible = 1.
modify screen.
endif.
endloop.Hope this info helps you.
Kind Regards
Eswar
2007 Jan 04 7:34 AM
Hi Eswar,
I saw the Display tab for that field. But it was not in the invisible mode. still it is displayed like this only ******************
Thanks
venkat
2007 Jan 04 7:44 AM
loop at screen.
if screen-name = 'FLD'.
<b>screen-active = 0.</b>
modify screen.
endif.
endloop.
2007 Jan 04 9:29 AM
Maybe you can try doing a where-used list check to find if there are any screen manipulations in the main program of customer master...
Maybe that can help...
Regards
Eswar