‎2014 May 02 10:17 AM
Hi Experts,
I am trying to add two fields in FBL3N output by using BTE .
Event 1650.
I copied function module in to zfunction module.
I enhanced RFPOS structure and appended my custom fields.
I am getting values into E_POSTAB and I_POSTAB, but not displaying in output.
I adjusted fields in Change Layout. I am unable to find the fields.
Thanks in advance.
Regards,
N. HARISH KUMAR
‎2014 May 02 10:22 AM
Try running program "RFPOSXEXTEND" and see if your fields are visible.
Regards
‎2014 May 02 10:22 AM
Hello Harish,
Please run the report RFPOSXEXTEND and check.
Thanks
‎2014 May 02 10:22 AM
Try running program "RFPOSXEXTEND" and see if your fields are visible.
Regards
‎2014 May 02 10:39 AM
Hi Mehwish,
I executed RFPOSXEXTEND. Now fields are displaying. But data is not displaying.
In debugging, I am getting data in to variable, but it is not displaying in output.
‎2014 May 02 10:51 AM
Hope you are first copying values like
e_postab = i_postab.
Try copying it back to i_postab in the end.
i_postab = e_postab.
If this does not work,Paste your code here.
Regards
‎2014 May 02 11:28 AM
e_postab = i_postab.
CALL FUNCTION 'LINE_ITEMS_GET_GKONT'
EXPORTING
i_postab = i_postab
IMPORTING
e_postab = e_postab.
SELECT SINGLE lifnr INTO e_postab-ZZV_LIFNR
FROM bseg where bukrs eq e_postab-bukrs
and belnr eq e_postab-belnr
and gjahr eq e_postab-gjahr.
SELECT SINGLE name1 INTO e_postab-ZZV_NAME
FROM lfa1 where lifnr eq e_postab-ZZV_LIFNR.
i_postab = e_postab.
I am getting an error message "the field I_POSTAB cannot be changed"
while activating
‎2014 May 02 11:44 AM
In import interface tab, please check the "pass value" checkbox and check again.
‎2014 May 03 2:41 PM
Hi Mehwish,
It is working fine. Thank you very much.
Regards,
N. Harish Kumar