Hi,
After enhancing i have unhided the fields in RSA6, transfered the DS and checked in RSA3, but the Zfields are not visible.
I have enhanced the 0material_attr using the following code
<b>
Tables : MARA.
data : l_tabix like sy-tabix.
*case i_CHABASNM.
Enhancement of Material Master Record
*WHEN '0material'.
case i_DATASOURCE.
when '0material_attr'.
data : l_s_BIW_MARA_S like BIW_MARA_S.
loop at i_t_data into l_s_BIW_MARA_S.
l_tabix = sy-tabix.
select single ZZCNS ZZUSZ ZZPMG ZZPSZ ZZCCE from MARA into
(l_s_BIW_MARA_S-ZZCNS, l_s_BIW_MARA_S-ZZUSZ,l_s_BIW_MARA_S-ZZPMG,
l_s_BIW_MARA_S-ZZPSZ, l_s_BIW_MARA_S-ZZCCE)
where MATNR = l_s_BIW_MARA_S-MATNR.
MODIFY i_t_data from l_s_BIW_MARA_S index l_tabix.
endloop.
endcase.
*endcase.
</b>
This is a fresh system and there is no enhancement done prior to me. so do i need to use <b>i_chabasnm</b>?
Please let me know where i am going wrong