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

hidden fields in MIRO

Former Member
0 Likes
1,131

Hi all

In MIRO t-code in G/L account tab i am using Standard 1as std variant.

for this screen variant ebeln n ebelp fields are not marked as invisible (invisible not checked),

but these fields are hidden and if we expand the adjacent fields these fields are displayed but the data in these fiels

data is comming as *** by default

can any one pls help me out in removing these **'s and making the fields as visible

thanks & regards

laxmikanth

Hi all

In MIRO t-code in G/L account tab i am using Standard 1as std variant.

for this screen variant ebeln n ebelp fields are not marked as invisible (invisible not checked),

but these fields are hidden and if we expand the adjacent fields these fields are displayed but the data in these fiels

data is comming as *** by default

can any one pls help me out in removing these **'s and making the fields as visible

thanks & regards

laxmikanth

4 REPLIES 4
Read only

former_member182371
Active Contributor
0 Likes
820
Read only

0 Likes
820

hi Pablo Casamayor ,

thanks for the timly response.

sap notes says that these fields are hidden agreed to that.

but when i am opening these fields they are appearing as *** 's

regards

laxmikanth

Read only

0 Likes
820

Hi,

have a look at:

include LFSKBO01

module set_colums (PBO)

here you have:


      WHEN 'ACGL_ITEM-LONGNUM' OR
           'ACGL_ITEM-EBELN'.
* Addition of data statements used to check status of LPN         ERP05
        CLEAR lf_active.
        CREATE OBJECT cl_change.
        CALL METHOD cl_change->is_active
          RECEIVING
            rv_active = lf_active.
* display only long POR number if DLA is active
        IF lf_active NE 'X'
        AND wa_table-screen-name = 'ACGL_ITEM-LONGNUM'.
          wa_table-screen-input = 0.
          wa_table-screen-output = 1.
          wa_table-vislength = 0.
        ELSEIF lf_active EQ 'X'
        AND wa_table-screen-name <> 'ACGL_ITEM-LONGNUM'.
          wa_table-screen-input = 0.
          wa_table-screen-output = 1.
          wa_table-vislength = 0.
        ENDIF.

Best regards.

Read only

0 Likes
820

HI

i am getting ***'s in these fields.there is some problem with variant activation or table control

SAP Note 634409