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

fbl3n BTE

Former Member
0 Likes
1,582

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

1 ACCEPTED SOLUTION
Read only

former_member188827
Active Contributor
0 Likes
1,276

Try running program "RFPOSXEXTEND" and see if your fields are visible.

Regards

7 REPLIES 7
Read only

Mohamed_Mukhtar
Active Contributor
0 Likes
1,276

Hello Harish,

Please run the report RFPOSXEXTEND and check.

Thanks

Read only

former_member188827
Active Contributor
0 Likes
1,277

Try running program "RFPOSXEXTEND" and see if your fields are visible.

Regards

Read only

0 Likes
1,276

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.

Read only

0 Likes
1,276

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

Read only

0 Likes
1,276

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

Read only

0 Likes
1,276

In import interface tab, please check the "pass value" checkbox and check again.

Read only

0 Likes
1,276

Hi Mehwish,

It is working fine. Thank you very much.

Regards,

N. Harish Kumar