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: 

FICO-Accounts Receivable / Payable.

Former Member
0 Kudos
207

Hello every one...i am totally new to FICO abap...to say i dont no anything abt FICO...but i have a develop below said requirement....can anyone please help me with the procedure( the code, if possible, to understand better)and the related transaction codes for FICO..

Here is the requirement...

'To develop a program to read open transactions posted to Accounts Receivable / Payable and to derive the correct PRofit centre from the line item master records (WBS, cost Centres etc.). Then to produce a report analysing the spend by derived profit centre'.

3 REPLIES 3

Former Member
0 Kudos
71

The main tables for A/R and A/P open documents are BSIK and BSID. Each of them have the customer or vendor number as well as the FI and CO document numbers and the cost center and profit center. These are index tables for BSEG and BKPF where you will find more data.

Rob

0 Kudos
71

Hi everybody,

you should perform a query similar to this:


data: begin of t_data occurs 0 with header line,
        lifnr like bsik-lifnr,
        kunnr like bsid-kunnr,
        prctr like bseg-prctr,
        wrbtr like bseg-wrbtr,
        waers like bseg-waers,
      end of t_data.

select * from bsik...
  select *
    from bseg
    where bukrs = bsik-bukrs
      and belnr = bsik-belnr
      and gjahr = bsik-gjahr
      and koart = 'S'.

    t_data-lifnr = bsik-lifnr.
    t_data-prctr = bseg-prctr.
    t_data-wrbtr = bseg-wrbtr.
    t_data-waers = bseg-waers.
    collect t_data.

  endselect.
endselect.

...this could be a start.

I hope it helps. BR,

Alvaro

andreas_mann3
Active Contributor
0 Kudos
71

Hi Madhu,

important table in CÓ:

-COSP :CO Object: Cost Totals for External Postings

-GLPCA: EC-PCA: Actual Line Items

*WBS

-PROJ: Project definition

-PRPS : WBS (Work Breakdown Structure) Element Master Data

*standard report

-RCOPCA02

regards Andreas