Account payable,account receivable, asset account

HI sir /madam
         i want to know the process of ACCOUNT RECEIVABLE, ACCOUNT PAYABLE,ASSET ACCOUNT what ficos consultancy do, what are steps in fico do other then mm and sd person do.
i want to know the only fico job in in this process AP,AR,AA.
please guide me what they role in that

Hi,
Welcome you post on the forum.
However, you need do you homework first. Your question does not belong here. Search the whole SCN site for wiki, e-learning first to find the basic info.
This forum is dedicate to SAP Business One - one package for all solution for SME customer. There is no individual module for FI CO SD MM etc.
Thanks,
Gordon

Similar Messages

  • How to change account determination in sap asset accounting when there is a

    Dear experts,
    how to change account determination in sap asset accounting when there is a posting in previous one.
    thanks in advance
    Deboleena Ganguly

    HI:
    You can easily change the account determination of asset class . There is an OSS note regarding the correction of issue which you will face while changing account determination for which there are already posted fixed assets
    Error message AC476 upon change of account in AO90  can be customized now
    via transactions OBMSG...Application Area-AC
    Note 202746
    Under certain circumstances, it may still be necessary to make a change
    to this account.By implementing this note, the above error message is
    replaced by a warning message.Following account maintenance, you may
    need to carry out manual intracompany transfers in FI in accordance with
    Note 69225.
    Regards
    Edited by: Atif Farooq on Oct 31, 2011 11:44 AM

  • Accounts payable and Receivable in same ALV report

    Hi Guru,
    I need to show Vendor number(lifnr), vendor name(name1), amount for that vendor(DMBTR),
    Customer number (kunnr), Customer Name (name1), amount for that customer (DMBTR) in ALV report (same grid)
    depending on Company code (BUKRS).
    Can you please help me what will be the sample code for that.
    Thanks, sohel

    hiiiiiiiiii
    try this two program code may you get idea
    this is for vendor details
    type-pools: slis.
    tables: bsik, lfa1.
    data : begin of it_bsik occurs 0,
          bukrs type bsik-bukrs,   "COMPANY CODE
          lifnr type bsik-lifnr,   "VENDOR no
          name1 type lfa1-name1,   "VENDOR name
          hkont type bsik-hkont,   "REFERANCE
          blart type bsik-blart,   "Document Type
          budat type bsik-budat,   "Posting Date
          bldat type bsik-bldat,   "DOCUMENT DATE
          shkzg type bsik-shkzg,   "Debit/Credit Indicator
          belnr type bsik-belnr,   "Accounting Doc no
          dmbtr type bsik-dmbtr,   "Amount in Local Currency
          sgtxt type bsik-sgtxt,   "Item text
           end of it_bsik.
    data : begin of itab occurs 0,
          bukrs type bsik-bukrs,   "COMPANY CODE
          lifnr type bsik-lifnr,   "VENDOR no
          name1 type lfa1-name1,   "VENDOR name
          hkont type bsik-hkont,   "REFERANCE
          blart type bsik-blart,   "Document Type
          budat type bsik-budat,   "Posting Date
          bldat type bsik-bldat,   "DOCUMENT DATE
          shkzg type bsik-shkzg,   "Debit/Credit Indicator
          belnr type bsik-belnr,   "Accounting Doc no
          dmbtr type bsik-dmbtr,   "Amount in Local Currency
          sgtxt type bsik-sgtxt,   "Item text
          end of itab.
    *********ALV Declaration************************************************
    data: it_fieldcatalog type  slis_t_fieldcat_alv with header line,
          wa_fieldcatalog like line of it_fieldcatalog,
          wa_layout type slis_layout_alv,
          it_rec type table of itab,
          it_rec1 type table of itab,
          wa_rec like line of itab,
          wa_itab like line of itab.
    data : it_sort type slis_t_sortinfo_alv,
           wa_sort type slis_sortinfo_alv.
    *********ALV Declaration************************************************
    selection-screen : begin of block b with frame title text-100.
    select-options:
                    company for bsik-bukrs ,
                    vendor for bsik-lifnr,
                    pos_date for bsik-budat.
    selection-screen  end of block b .
    start-of-selection.
      select  bukrs lifnr hkont blart budat bldat
          shkzg belnr dmbtr sgtxt
           from bsik into corresponding fields of table it_bsik
         where
           bukrs in company and
           lifnr in vendor and
           budat in pos_date .
      sort it_bsik by budat lifnr.
    end-of-selection.
      loop at it_bsik.
    if it_bsik-shkzg eq 'H'.
          multiply it_bsik-dmbtr by -1.
        endif.
        move: it_bsik-bukrs to itab-bukrs,   "COMPANY CODE
              it_bsik-lifnr to itab-lifnr,   "VENDOR no
              it_bsik-hkont to itab-hkont,   "G/L ACC NO
              it_bsik-blart to itab-blart,   "Document Type
              it_bsik-budat to itab-budat,   "Posting Date in the Document
              it_bsik-shkzg to itab-shkzg,   "Debit/Credit Indicator
              it_bsik-belnr to itab-belnr,   "Accounting Doc no
              it_bsik-dmbtr to itab-dmbtr,   "Amount in Local Currency
              it_bsik-sgtxt to itab-sgtxt,   "Item text
              it_bsik-bldat to itab-bldat.
        select single name1 from lfa1 into (itab-name1) where lifnr = itab-lifnr.
    append itab.
      endloop.
      if not itab[] is initial.
        perform populate_field_catalog.
        perform fill_layout.
        perform display_alv.
      else.
        write: ' NO DATA'.
      endif.
    *&      Form  populate_field_catalog
    *       text
    form populate_field_catalog .
      wa_fieldcatalog-fieldname = 'BUKRS'.
      wa_fieldcatalog-seltext_m  = 'COMPANY'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname =  'LIFNR'.
      wa_fieldcatalog-seltext_m  = 'VENDOR CODE.'.
      wa_fieldcatalog-no_zero      = 'X'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname =  'NAME1'.
      wa_fieldcatalog-seltext_m  = 'NAME'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname = 'HKONT'.
      wa_fieldcatalog-seltext_m  = 'G/L ACC NO'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname =  'BLART'.
      wa_fieldcatalog-seltext_m  = 'DOC. TYPE '.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname = 'BUDAT'.
      wa_fieldcatalog-seltext_m  = 'POSTING DATE'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname = 'BELNR'.
      wa_fieldcatalog-seltext_m  = 'DOCUMENT NO.'.
         wa_fieldcatalog-do_sum = 'X'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
    wa_fieldcatalog-fieldname = 'BLDAT'.
      wa_fieldcatalog-seltext_m  = 'DOCUMENT DATE'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname = 'DMBTR'.
      wa_fieldcatalog-seltext_m  = 'AMOUNT'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname = 'SGTXT'.
      wa_fieldcatalog-seltext_m  = 'TEXT'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname = 'HKONT'.
      wa_fieldcatalog-seltext_m  = 'G/L ACC NO'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
    endform.                    " populate_field_catalog
    *&      Form  fill_layout
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form fill_layout .
      wa_layout-no_input = 'X'.
      wa_layout-colwidth_optimize = 'X'.
      wa_layout-zebra = 'X'.
    endform.                    " fill_layout
    *&      Form  display_alv
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form display_alv .
      call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program      = sy-repid
          i_callback_user_command = 'USER_COMMAND'
          is_layout               = wa_layout
          it_fieldcat             = it_fieldcatalog[]
          i_default               = 'X'
          i_save                  = 'A'
        tables
          t_outtab                = itab
        exceptions
          program_error           = 1
          others                  = 2.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number
    sy-msgno
        with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " display_alv
    this is for customer details
    type-pools: slis.
    tables: bsid, kna1.
    data : begin of it_bsid occurs 0,
          bukrs type bsid-bukrs,   "COMPANY CODE
          kunnr type bsid-kunnr,   "Customer no
          name1 type kna1-name1,   "Customer name
          xblnr type bsid-xblnr,   "REFERANCE
          blart type bsid-blart,   "Document Type
          budat type bsid-budat,   "Posting Date in the Document
          shkzg type bsid-shkzg,   "Debit/Credit Indicator
          belnr type bsid-belnr,   "Accounting Doc no
          dmbtr type bsid-dmbtr,   "Amount in Local Currency
          sgtxt type bsid-sgtxt,   "Item text
           end of it_bsid.
    data : begin of itab occurs 0,
          bukrs type bsid-bukrs,   "COMPANY CODE
          kunnr type bsid-kunnr,   "Customer no
          name1 type kna1-name1,   "Customer name
          xblnr type bsid-xblnr,   "REFERANCE
          blart type bsid-blart,   "Document Type
          budat type bsid-budat,   "Posting Date in the Document
          shkzg type bsid-shkzg,   "Debit/Credit Indicator
          belnr type bsid-belnr,   "Accounting Doc no
          dmbtr type bsid-dmbtr,   "Amount in Local Currency
          sgtxt type bsid-sgtxt,   "Item text
          end of itab.
    ********ALV Declaration***********************************************
    data: it_fieldcatalog type  slis_t_fieldcat_alv with header line,
          wa_fieldcatalog like line of it_fieldcatalog,
          wa_layout type slis_layout_alv,
          it_rec type table of itab,
          it_rec1 type table of itab,
          wa_rec like line of itab,
          wa_itab like line of itab.
    data : it_sort type slis_t_sortinfo_alv,
           wa_sort type slis_sortinfo_alv.
    ********ALV Declaration***********************************************
    selection-screen : begin of block b with frame title text-100.
    select-options:
                    company for bsid-bukrs ,
                    customer for bsid-kunnr,
                    pos_date for bsid-budat.
    selection-screen  end of block b .
    start-of-selection.
      select bukrs kunnr xblnr blart budat
          shkzg belnr dmbtr sgtxt
           from bsid into corresponding fields of table it_bsid
         where
           bukrs in company and
           kunnr in customer and
           budat in pos_date .
      sort it_bsid by budat kunnr.
    end-of-selection.
      loop at it_bsid.
    if it_bsid-shkzg eq 'H'.
          multiply it_bsid-dmbtr by -1.
    endif.
        move: it_bsid-bukrs to itab-bukrs,   "COMPANY CODE
              it_bsid-kunnr to itab-kunnr,   "Customer no
              it_bsid-xblnr to itab-xblnr,   "REFERANCE
              it_bsid-blart to itab-blart,   "Document Type
              it_bsid-budat to itab-budat,   "Posting Date in the Document
              it_bsid-shkzg to itab-shkzg,   "Debit/Credit Indicator
              it_bsid-belnr to itab-belnr,   "Accounting Doc no
              it_bsid-dmbtr to itab-dmbtr,   "Amount in Local Currency
              it_bsid-sgtxt to itab-sgtxt.   "Item text
        select single name1 from kna1 into (itab-name1) where kunnr = itab-kunnr.
    append itab.
      endloop.
      if not itab[] is initial.
        perform populate_field_catalog.
        perform fill_layout.
        perform display_alv.
      else.
        write: ' NO DATA'.
      endif.
    *&      Form  populate_field_catalog
          text
    form populate_field_catalog .
      wa_fieldcatalog-fieldname = 'BUKRS'.
      wa_fieldcatalog-seltext_m  = 'COMPANY'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname =  'KUNNR'.
      wa_fieldcatalog-seltext_m  = 'CUSTOMER CODE.'.
      wa_fieldcatalog-no_zero      = 'X'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname =  'NAME1'.
      wa_fieldcatalog-seltext_m  = 'NAME'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname =  'BLART'.
      wa_fieldcatalog-seltext_m  = 'DOC. TYPE '.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname = 'BUDAT'.
      wa_fieldcatalog-seltext_m  = 'POSTING DATE'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname = 'BELNR'.
      wa_fieldcatalog-seltext_m  = 'DOCUMENT NO.'.
         wa_fieldcatalog-do_sum = 'X'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname = 'DMBTR'.
      wa_fieldcatalog-seltext_m  = 'AMOUNT'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname = 'SGTXT'.
      wa_fieldcatalog-seltext_m  = 'TEXT'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
      wa_fieldcatalog-fieldname = 'XBLNR'.
      wa_fieldcatalog-seltext_m  = 'REFERANCE'.
      append wa_fieldcatalog to it_fieldcatalog.
      clear wa_fieldcatalog.
    endform.                    " populate_field_catalog
    *&      Form  fill_layout
          text
    -->  p1        text
    <--  p2        text
    form fill_layout .
      wa_layout-no_input = 'X'.
      wa_layout-colwidth_optimize = 'X'.
      wa_layout-zebra = 'X'.
    endform.                    " fill_layout
    *&      Form  display_alv
          text
    -->  p1        text
    <--  p2        text
    form display_alv .
        call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program      = sy-repid
          i_callback_user_command = 'USER_COMMAND'
          is_layout               = wa_layout
          it_fieldcat             = it_fieldcatalog[]
          i_default               = 'X'
          i_save                  = 'A'
        tables
          t_outtab                = itab
        exceptions
          program_error           = 1
          others                  = 2.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number
    sy-msgno
        with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " display_alv
    merge this tow programs . fetch data in two diffrent internal tables then it move to final internal table
    i think you get your answer
    any problem reply
    regards ,
    Pranay

  • Reset recon account payable and receivable

    Hi expert
    in transaction FSS0 : an account 140000 for example is set as a recon account : the need is to reset it to non recon account.
    thanks

    Hi,
    If no postings are done to this GL account, you will be able to change the RECON ACC TYPE in FS00 without any error, provided you are switched to change mode in FS00.
    IN CHANGE MODE only you can change the settings, or else in FS00, choose menu item GL account-> CHANGE
    You need to check in OB26 also for activity CHANGE, and make sure that the field REC ACCOUTN FOR ACC TYPE is made as optional or not
    In case if you are not able to change, means there must be some documents already posted to subledger for AR.
    If this is not the case, then provide the exact errror message and its long text to us.
    Regards,
    Srinu

  • Account payable and receivable

    Hi,
    My current client took over another company and need to migrate them in to SAP existing company code. I am looking after AR, AA and AP.
    I have following concerns:
    Business need is to have historical data for last 2 years for both AR and AP and their payments details for duplicate check from others company legacy system to the parent company.
    we normally migrate only open items but here the need is to upload old cleared invoiced along with payment details.
    I need assistance for this how to proceed.
    Further there is use of some electronic media like Ariba even that invoice need to picked up for AP and Siebal CRM data for AR.
    Its very critical. Points will be awarded.
    Bay
    AC

    you can post OP's and AP's with report rfbibl00
    -> pay attenttion to its documentation in tcode se38
    A.

  • G/L account determination - purchasing tab - accounts payable window

    Dear users,
    Can any one help me by defining what is "assets account" in accounts payable window in purchasing tab of G/L account determination ?
    It shows liability control accounts while the account type is mentioned "Asset accounts" I am confused in this.
    Thanks and regards,
    Farhan Sufi

    Farhan
    Ignore the verbage.  The accounts you need to select on Accounts Payable accounts from the Liability drawer.   Please check Control Account on the AP GL account you want to use.
    Suda

  • Bill of Exchange (Account Payable)

    Hi Experts:
    I was trying to configure Bill of Exchange - For both Account payable as well as account receivable. Account Receivable Succeed. But have some problem in BOE Account Payable.
    Can any one tell me Step by Step Procedure to configure and use (User Manual) for it. (BOE Payable).
    Please help. Thanks in Advance.
    With Regards,
    Devendra Singh Chauhan

    HI
    Please find the below Config steps
    1.Define Alternative Reconcil.Acct for Bills/Exch.Receivableu201D: in OBYN
    2.Define Accounts for Bill of Exchange Transactions in OBYH
    3.Define Bill of Exchange Tax Codes in below path
    SPRO - > Financial Accounting (New) --> bank Accounting --> Business Transactions --> Bill of exchange transactions --> Post bill of exchange receivable --> Define Bill of Exchange Tax Codes
    4.Prepare Bill of Exchange Charges Statementu201D in Below path
    SPRO --> Financial Accounting (New) --> bank Accounting --> Business Transactions --> Bill of exchange transactions --> Post bill of exchange receivable --> Prepare Bill of Exchange Charges Statement
    5.Define Correspondence Types in OB77
    6.Assign Programs for Correspondence Types in OB78
    7.Define Form Names for Correspondence Print in Below path
    SPRO --> Financial Accounting (New) --> bank Accounting --> Business Transactions --> Bill of exchange transactions --> Post bill of exchange receivable --> Make and Check Settings for Correspondence --> Define Form Names for Correspondence Print
    8.Define Sender Details for Correspondence Form in below path
    SPRO --> --> Financial Accounting (New) --> bank Accounting --> Business Transactions --> Bill of exchange transactions --> Post bill of exchange receivable --> Make and Check Settings for Correspondence --> Define Sender Details for Correspondence Form
    9.Configuration Design of u201CDefine Bank Subaccounts in OBYK
    10. Define Bill of exchange types in F.39
    11.Maintain House Bank Details in F.92
    12.u201CDefine DME User IDs in OBBD
    13.Define User-Specific Settings in below path
    Financial Accounting (New) --> bank Accounting --> Business Transactions --> Bill of exchange transactions --> Present Bill of Exchange Receivable at Bank --> Define User-Specific Settings
    14.u201CDefine Sender Details for Form for Bill of Exchange Presentationu201D in blow path
    Financial Accounting (New) --> bank Accounting --> Business Transactions --> Bill of exchange transactions --> Present Bill of Exchange Receivable at Bank --> Define Sender Details for Form for Bill of Exchange Presentation
    15.Define Bill of Exchange Payment Periodu201D in below path
    SAP Customizing Implementation Guide --> Financial Accounting (New) --> bank Accounting --> Business Transactions --> Bill of exchange transactions --> Present Bill of Exchange Receivable at Bank --> Define Bill of Exchange Payment Period
    16.Set Up Paying Company Codes for Payment Transactionsu201D in below path
    SAP Customizing Implementation Guide --> Financial Accounting (New) --> Accounts Receivable and Accounts Payable > Business Transactions> Incoming Payments > Automatic Incoming Payments> Payment Method/Bank Selection for Payment Program-->Set Up Paying Company Codes for Payment Transactions
    17.Set Up Paying Company Codes for Payment Transactionsu201D in below path
    SAP Customizing Implementation Guide --> Financial Accounting (New) --> Accounts Receivable and Accounts Payable > Business Transactions> Incoming Payments > Automatic Incoming Payments> Payment Method/Bank Selection for Payment Program-->Set Up Paying Company Codes for Payment Transactions
    18.Set Up Payment Methods per Country for Payment Transactions in below path
    SAP Customizing Implementation Guide --> Financial Accounting (New) --> Accounts Receivable and Accounts Payable > Business Transactions> Incoming Payments > Automatic Incoming Payments> Payment Method/Bank Selection for Payment Program-->Set Up Payment Methods per Country for Payment Transactions
    19.Set Up Payment Methods per Company Code for Payment Transactu201D in below path
    SAP Customizing Implementation Guide --> Financial Accounting (New) --> Accounts Receivable and Accounts Payable > Business Transactions> Incoming Payments > Automatic Incoming Payments> Payment Method/Bank Selection for Payment Program--> Set Up Payment Methods per Company Code for Payment Transact
    20.Set Up Bank Determination for Payment Transactionsu201D in below path
    SAP Customizing Implementation Guide --> Financial Accounting (New) --> Accounts Receivable and Accounts Payable > Business Transactions> Incoming Payments > Automatic Incoming Payments> Payment Method/Bank Selection for Payment Program--> Set Up Bank Determination for Payment Transactions
    Hope it will be helpful
    Regards
    CA.Prasad

  • FICO: Asset Accounting : Retirement

    Dear Friends,
    Can someone share the asset disposal posting for the below scenarios.
    1 . Asset disposal end of its life with customer with gain or loss
    2 . Asset disposal mid of its life with customer with gain or loss
    3 . Asset disposal end of its life without customer with gain or loss
    4 . Asset disposal mid of its life without customer with gain or loss
    Thanks,
    Regards,
    Perumal
    help.sap.com

    Hi,
    Welcome you post on the forum.
    However this forum is not a proper one for you. You need to post on the [ERP Financials - Asset Accounting|SAP ERP Financials  - Asset Accounting; forum.
    Please close this one.
    Thanks,
    Gordon

  • No G/L account selected for Asset Account in Business Partner Master Data

    Hi All,
    When i tried to raise A/P invoice for an Asset Item the system is raised the following error"  why?
    " No G/L account is selected for Asset Account in Business Partner master data "
    thanks
    SV Reddy

    hi Giri,
    When you choose from list against the Asset Account in the business partner master data it is only displaying the Trade Creditors Account domestic and foreign acounts only.  which one to choose in this case?  i presume trade creditors account is the one to choose.  but what is the logic for asset items to choose this Trade Creditors Account?   Or  else can we create a separate control account for purchasing the Asset items?  what is the logic again here choosing a separate account through option create new ?
    thanks
    SV Reddy

  • Important global parameters from Financial Accounting are missing for Asset

    Hi friends,
    When I'm trying to assign CHN Chart of Depreciation to c.Code 0319 the below error message is giving by SAP Sytem.  This Chart of Depreciation is already 4 C.codes are using.
    Could you pleasea provide the detailed procedure...
    Error Message is:
    The result of the check of company code 0319 shows that important global parameters from Financial Accounting are missing for Asset Accounting.
    One or more of the following fields are affected:
    Currency
    Chart of accounts
    Fiscal year version
    Input tax indicator for non-taxable transactions
    Thanks,
    shafi

    Hi Shaik,
    The solution is in the error message itself i.e
    Input tax indicator for non-taxable transactions
    Firstly you have to create tax codes for non taxable transaction in TR Code FTXP for the respective company code.
    Secondly you have to assign these tax codes to your company code in TR code OBCL and save
    Then You can proceed and do the assignment of Chart of Depreciation to the Company code.
    I think this will solve the problem.
    Regards
    Pratiksha
    *Please assign points if helpful

  • Profit Center Accounting-Transfer of Accounts payable/Receivable

    Dear All,
    in our company SAP  was implemented in  2005 . Now we configurd PCA and  transfering the Ending balance of Accounts Payable/Recivable ( Transaction 1KEK). System only select the invoices which were posted in last month ( Feb,2009) and ignore all the open invoices which were posted  before Feb,2009.
    Please advise me, How I'm able to post the ending balance of Accounts payable/Recivable on respective profit center.

    Hi
    The transaction 1KEK is specific to a period. The first box that you would provide the period and then the year. Subsequently you will be providing the fiscal year. So only the entries for Feb 2009 will be going over to PCA. If there were any entries subsequent to the execution of 1KEK, you need to execute it again in order that the delta entries make it to PCA.
    You transfer payables and receivables to Profit Center Accounting in the course of normal period‑closing activities.You can transfer payables and receivables as often as you wish, since the system deletes previously transferred data before each new transfer.
    Hope this clarifies. Else please get back.
    Karthik

  • 1KEK - Transfer Payables and Receivables to Profit Center Accounting.

    Hi,
    I have an issue in in regard to 1KEK - Transfer Payables and Receivables to Profit Center Accounting.
    When a user is running 1KEK transaction, some of the open items like for customer is picking up Dummy profit Center. User wants those open items should not be posted to dummy profit center but to some other specified profit center. Profit Center will vary per company code. There will be one profit center per company code.
    I have tried with subsitutution but it doesnt work. I also looked for some user exit but didnt find any.
    Is there any way we can replace this dummy profit center with some other profit center.
    Regards,
    Harish

    You may have to customize the 1KEK by copying it to your Z program with modification around the area which may be pointed to read the company code and change course from dummy profit center to the desired profit center.
    The program that needs alteration to meet your needs would perhaps be LF048F00 as given in the correction instruction of the note number 87256.
    This however would not be supported by SAP but needs monitoring for every future patch applied.

  • Looking for Account Receivable, Account payable info cube

    i m looking for Account Receivable, Account payable info cube in business contnet.
    i search a lot on help.sap.com but could not find them.

    Hi,
    Please check the link below for AP and AR business ontent:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ee/cd143c5db89b00e10000000a114084/frameset.htm
    Thanks and Regards
    Subray Hegde

  • Sort method and adjustment account for Regrouping Receivable and Payables

    Hi Gurus,
    Kindly send to me sort method and adjustment accounts for regrouping receivables/payables paths and T-code
    Warm Regards
    Abdul

    Hi Jiger
    Thank you so much your fast reply.
    Also i have material its give configureation path but i try to go through that path but i didnt find it out right screen please let me know config path:
    IMG->FINANCIAL ACCOUNTING->AR/AP->BUSINESS TRANSCATION->CLOSOING->REGROUP->DEFINE SORT METHOD AND ADJUSTMENT ACCTS FOR REGROUPING RECEIVABLES/PAYABLES.
    But i cant see the path, Please let me know there is any mistake in path or not
    Warm Regards
    Abdul

  • Need documents on Account Payables and Account Receivables.

    Hi All,
    Can any one please send me( or tell me the path where I can find the documents on AP/AR modules) the documents
    for Account Payables and Account Receivables.
    Thank you

    Hello.
    As you did not specify the APPS version, here's the link to all documentation:
    http://www.oracle.com/technology/documentation/applications.html
    Hope this helps.
    Octavio

Maybe you are looking for

  • Installing Windows 7 one Mac Pro with SL RAID0, and 1 extra drive 4 windows

    So i have snow leopard installed on a RAID 0. I also have a single remaining hdd that has my old Leopard on it. I want to install windows 7 on that remaining internal hdd but bootcamp won't allow me to run setup because it says it doesn't support RAI

  • Dead G4

    Hello! I've got a G4 (Sawtooth) with a 1 GHz processor upgrade. It has been working fine for the last couple of years, and I've replaced the fans to quieter ones several years ago. Today I decided to replace my graphics card, so I shut my machine dow

  • An automated update has rendered my laptop Firefox browser unable to connect to any websites, how do I fix this issue?

    When the update for my browser took place, on 5/5/14 @ approximately 12:15 am, it rendered the browser unable to connect to any websites. It does work in safe mode, but not in regular mode. I am on an hp pavilion dv7, running windows 7. I need to res

  • JVM Problem under WinXP

    I've installed the JDK1.4.1(beta) a while ago and it's been working fine until I installed Hot Java. ( well I'm not sure of the real source of the mess up but I suspect Hot JAVA). Anyway since then every time I enter the commande "java someapplicatio

  • User-exit BADI for XK01/XK02

    Hi Gurus, There is a requirement that when we create and change 'PAN No' in vendor master through tcode 'XK02', we want to have some check on it. Is there any user-exit or BADI for create/change in vendor master through tcode XK01/XK02. Thanx in adva