Application Development 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: 

FAGLL03 BTE 1650

vidyasagarc
Explorer
0 Kudos

hi gurus,

i have implemented bte 1650 for FBL3N by using the document provided in sdn.

when i tried to implement it for FAGLL03, it says that, there is no field zzgkont_ltxt in faglposx table.

i have appended to faglposx table.

but my badi is not implement,

it says badi is not implemented.

regards,

vidya

4 REPLIES 4

Former Member
0 Kudos

This message was moderated.

raymond_giuseppi
Active Contributor
0 Kudos

Don't append fields manually to display structure but to basic structures RFPOSX and FAGLPOSE.

So, add your fields to structure FAGLPOSE and then execute FM ITEM_STRUC_EXTENSION.

(ref Note 984305 - Line item: Definition of special fields (T021S))

Regards,

Raymond

panchanan_sahu2
Explorer
0 Kudos

Hi Vidyasagar,

Raymond is correct.

U may check with the report RFPOSEXTEND ( Execute - SE38/SA38)

Regards,

Panchanan

0 Kudos

Actually Report RFPOSXEXTEND calls Function module ITEM_STRUC_EXTENSION which can generate multiple structuer RFPOSXEXT as well as FAGLPOSYEXT

Try

  call function 'ITEM_STRUC_EXTENSION'

       exporting

            basic_strucname    = 'RFPOSX'

            ext_strucname      = 'RFPOSXEXT'

            ext_fields_tabname = 'T021S'

            i_lstcl            = '2'...

and

  call function 'ITEM_STRUC_EXTENSION'

       exporting

            basic_strucname    = 'FAGLPOSY'

            ext_strucname      = 'FAGLPOSYEXT'

            ext_fields_tabname = 'T021S'

            i_lstcl            = 'D'...

Regards,

Raymond