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

XD01/XD02

Former Member
0 Likes
832

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
761

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

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

4 REPLIES 4
Read only

Former Member
0 Likes
762

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

Read only

0 Likes
761

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

Read only

0 Likes
761

loop at screen.

if screen-name = 'FLD'.

<b>screen-active = 0.</b>

modify screen.

endif.

endloop.

Read only

0 Likes
761

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