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: 

Adding field to FAGLL03

Former Member
0 Kudos
5,649

Hi,

i have a requirement to add 'offset account description' to tcode FAGLL03.

i append the field to the structure FAGLPOSX.

I findout one BTE In SDN for this related to tcode 'FBL3N'.

IN the respective code instead of fbl3n i added my tcode fagll03.

it is not showing the value for that field only showling empty field.

can anyone guide me please. i searched a lot but couldn't find the proper solution.

ELSE

tell me how & where can i update the cusotm field(offset desc).

Regards

Edited by: anurag.radha on Oct 19, 2011 1:35 PM

Edited by: anurag.radha on Oct 19, 2011 1:52 PM

8 REPLIES 8

RaymondGiuseppi
Active Contributor
0 Kudos
3,315

First, read carefully [Note 984305 - Line item: Definition of special fields (T021S)|https://service.sap.com/sap/support/notes/984305]

Regards,

Raymond

0 Kudos
3,315

Dear Raymond,

i couldn't access to that note.

can u tell me the process...

3,315

- First go to Customizing : Financial Accounting (New), General Ledger Accounting (New), Master Data, G/L Accounts, Line Items, Define Special Fields for Line Item Display (standard SAP fields that you can append to line display structure)

- For fields you could not add, use add ZZfields in include CI_FAGLPOSX

- Then look via SE11 at structure FAGLPOSYEXT (don't modify/append it) if you don't find your special fields then call SE37 function module ITEM_STRUC_EXTENSION with BASIC_STRUCNAME = 'FAGLPOSY', EXT_STRUCNAME = 'FAGLPOSYEXT', EXT_FIELDS_TABNAME = 'T021S', I_LSTCL = 'D' and X_TRANSPORT = ' '.

- Then call SE19 and create and activate an implementation for the 'FAGL_ITEMS_CH_DATA' BAdI, method CHANGE_ITEMS (receive an update an internal table of structure type FAGLPOSX) (for ZZfields in CI_FAGLPOSX)

Regards,

Raymond

0 Kudos
3,315

Dear Raymond,

Clearly i am adding the field to tcode FAGLL03.

Then look via SE11 at structure FAGLPOSYEXT (don't modify/append it) if you don't find your special fields then call SE37 function module ITEM_STRUC_EXTENSION with BASIC_STRUCNAME = 'FAGLPOSY', EXT_STRUCNAME = 'FAGLPOSYEXT', EXT_FIELDS_TABNAME = 'T021S', I_LSTCL = 'D' and X_TRANSPORT = ' '.

in my fm i find the above but with different values..

BASIC_STRUCNAME = 'RFPOSX'

EXT_STRUCNAME = 'RFPOSXEXT'

I_LSTCL = '2'

X_TRANSPORT = ' x'

i added the custom to field to an append not to include CI_FAGLPOSX.

is it makes difference..?

can u plz describe what i need to do.

Edited by: anurag.radha on Oct 20, 2011 8:21 AM

Edited by: anurag.radha on Oct 20, 2011 8:36 AM

0 Kudos
3,315

Dear ones,

can anyone help me plz.. !

0 Kudos
2,729

For information

  • FBL*N    ->  RFPOSXEXT
  • FAGLL03  ->  FAGLPOSYEXT

Former Member
0 Kudos
3,315

Thnaks alot for your replies.

Issue Resolve but getting solutions through SDN.

yangshengyang
Discoverer
0 Kudos
3,315

hi,

i have a same question ,how did you solve ?

can you share the experience?