2009 Oct 27 8:47 AM
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
2009 Oct 27 9:15 AM
Hi,
maybe these OSS Notes can help:
https://service.sap.com/sap/support/notes/453997
https://service.sap.com/sap/support/notes/752240
Best regards.
2009 Oct 27 9:53 AM
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
2009 Oct 27 10:02 AM
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.
2009 Oct 28 7:53 AM
HI
i am getting ***'s in these fields.there is some problem with variant activation or table control
SAP Note 634409