Billing documents did not post to PCA Ledger

The system did not crate did not create Profit Center Documents and CO Documens for 5 billing documents when released to Accounting.
But when the customer made payments, the payment document created a profit center document. The AR is not reconciling to GL.
The KNC1 table is not showing the Invoices but showing tha payments. So the customer cumulative balance is out of sync. This is causing our custom reports for AR Aging not reconciling to GL.
I have posted using 1KE9 the billing documents to PCA, this has not fixed the issue.
This report S_ALR_87012172 for customer balances in local currency is showing incorrect customer balance.
How can I fix the GL / AR?

Hello Geeta Gupta,
There is a SAP internal interface between SD and GL. You can check it by tcode VFX3.
If a billing is proceeded in SD succesfully it can be sent out to the customer to fix the recievable with the external customer. SAP internal account determination or other customizing mac not be complete to transfer the billing document to GL completely and successfully. So it gets stuck and can be identified using VFX3.
As it goes through to GL it is in AR in the same moment (In 20 years FI I have never seen a difference between AR od AP and GL). Only documents posted in FI-GL or CO can be transferred to PCA. There is NO link between billing documents and PCA (remember it is CO-PA which has billing as a direct source). So a billing which is not in GL cannot be in PCA.
So start VFX3, identify and comlete the missing settings and then kick off the billing to be posted.
Regrads JMy

Similar Messages

  • Block cancellation/creation of billing document on CLOSED posting period

    Hi Experts,
    Currently, user is allowed to cancel/create backdated billing document where period already closed, but it does not release to accounting automatically, due to the period has been closed.
    When account user found out that the accounting document is missing for the billing document, they have to re-open the period and manual release it to accounting, in order to generate the accounting document.
    Therefore, we need the billing document to be blocked for cancellation/creation on CLOSED posting period.
      Is there any settings in stardard SAP to block cancellation/creation of billing document on CLOSED posting period?
    would appreciate your inputs.
    Thanks and Regards,
    N.C.Reddy

    Hi ,
    We have blocked cancellation/ creation of billing document through below  user exit. Below is the progran code also.
    ***INCLUDE RV60AFZC.
    FORM USEREXIT_NUMBER_RANGE_INV_DATE USING US_RANGE_INTERN.
    Example: Number range from TVFK like in standard
    US_RANGE_INTERN = TVFK-NUMKI.
    *{   INSERT         KPDK904773                                        1
    *Block creation or cancellation of billing doc in closed period
    DATA : gv_gjahr TYPE bkpf-gjahr,
           gv_monat TYPE bkpf-monat,
           gv_poper TYPE t009b-poper,
           gv_bukrs TYPE t001-bukrs,
           lv_gjahr TYPE t001b-frye1,
           lv_monat TYPE t001b-frpe1,
           gv_oper  TYPE t001b-frpe1.
      CLEAR : gv_gjahr, gv_monat, gv_poper, gv_bukrs.
      gv_bukrs = vbrk-bukrs.
    IF NOT likp-wadat_ist IS INITIAL.
    *- First determine the Period of the Actual GI date.
      CALL FUNCTION 'FI_PERIOD_DETERMINE'
        EXPORTING
          i_budat              = likp-wadat_ist
          i_bukrs              = gv_bukrs
       IMPORTING
         E_GJAHR              = gv_gjahr
         E_MONAT              = gv_monat
         E_POPER              = gv_poper
       EXCEPTIONS
         FISCAL_YEAR          = 1
         PERIOD               = 2
         PERIOD_VERSION       = 3
         POSTING_PERIOD       = 4
         SPECIAL_PERIOD       = 5
         VERSION              = 6
         POSTING_DATE         = 7
         OTHERS               = 8.
          IF sy-subrc <> 0.
           MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ELSE.
            CLEAR : lv_gjahr, lv_monat.
            lv_gjahr = gv_gjahr.
            lv_monat = gv_monat.
    *- Once period is determine check whether Period is open or not for 'D' - Customer Account
            CALL FUNCTION 'FI_PERIOD_CHECK'
              EXPORTING
                I_BUKRS                = gv_bukrs
                i_gjahr                = lv_gjahr
                i_koart                = 'D'
                i_monat                = lv_monat
             IMPORTING
               E_OPER                 = gv_oper
             EXCEPTIONS
               ERROR_PERIOD           = 1
               ERROR_PERIOD_ACC       = 2
               INVALID_INPUT          = 3
               OTHERS                 = 4.
              IF sy-subrc <> 0.
               MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                       WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
              ELSE.
    *- Once period is determine check whether Period is open or not for 'S' - All G/L Accounts
                CALL FUNCTION 'FI_PERIOD_CHECK'
                EXPORTING
                  I_BUKRS                = gv_bukrs
                  i_gjahr                = lv_gjahr
                  i_koart                = 'S'
                  i_monat                = lv_monat
               IMPORTING
                 E_OPER                 = gv_oper
               EXCEPTIONS
                 ERROR_PERIOD           = 1
                 ERROR_PERIOD_ACC       = 2
                 INVALID_INPUT          = 3
                 OTHERS                 = 4.
                IF sy-subrc <> 0.
                  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                     WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
               ENDIF.
             ENDIF.
         ENDIF.
    ENDIF.
    *- Check Billing Date period is closed or not
    IF kom-fkdat is not initial.
      clear : gv_gjahr, gv_monat, gv_poper.
    *- First determine the Period of the Actual GI date.
      CALL FUNCTION 'FI_PERIOD_DETERMINE'
        EXPORTING
          i_budat              = kom-fkdat
          i_bukrs              = gv_bukrs
       IMPORTING
         E_GJAHR              = gv_gjahr
         E_MONAT              = gv_monat
         E_POPER              = gv_poper
       EXCEPTIONS
         FISCAL_YEAR          = 1
         PERIOD               = 2
         PERIOD_VERSION       = 3
         POSTING_PERIOD       = 4
         SPECIAL_PERIOD       = 5
         VERSION              = 6
         POSTING_DATE         = 7
         OTHERS               = 8.
          IF sy-subrc <> 0.
           MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ELSE.
            CLEAR : lv_gjahr, lv_monat.
            lv_gjahr = gv_gjahr.
            lv_monat = gv_monat.
    *- Once period is determine check whether Period is open or not for 'D' - Customer Account
            CALL FUNCTION 'FI_PERIOD_CHECK'
              EXPORTING
                I_BUKRS                = gv_bukrs
                i_gjahr                = lv_gjahr
                i_koart                = 'D'
                i_monat                = lv_monat
             IMPORTING
               E_OPER                 = gv_oper
             EXCEPTIONS
               ERROR_PERIOD           = 1
               ERROR_PERIOD_ACC       = 2
               INVALID_INPUT          = 3
               OTHERS                 = 4.
              IF sy-subrc <> 0.
               MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                       WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
              ELSE.
    *- Once period is determine check whether Period is open or not for 'S' - All G/L Accounts
                CALL FUNCTION 'FI_PERIOD_CHECK'
                EXPORTING
                  I_BUKRS                = gv_bukrs
                  i_gjahr                = lv_gjahr
                  i_koart                = 'S'
                  i_monat                = lv_monat
               IMPORTING
                 E_OPER                 = gv_oper
               EXCEPTIONS
                 ERROR_PERIOD           = 1
                 ERROR_PERIOD_ACC       = 2
                 INVALID_INPUT          = 3
                 OTHERS                 = 4.
                IF sy-subrc <> 0.
                  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                     WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
               ELSE.
                IF kom-fkdat4(2) <> likp-wadat_ist4(2).
                ENDIF.
               ENDIF.
             ENDIF.
         ENDIF.
    ENDIF.
    *}   INSERT
    ENDFORM.
          FORM USEREXIT_FILL_VBRK_VBRP                                  *
          This userexit can be used to fill fields in VBRK and VBRP     *
          Be aware, that at this time the work areas KUAGV KURGV        *
          KUWEV and KUREV are not filled.                               *
          This form is called from FORM VBRK_VBRP_FUELLEN.              *
    FORM USEREXIT_FILL_VBRK_VBRP.
    Example: change Tax country
    VBRK-LANDTX = T001-LAND1.
    ENDFORM.
    *eject

  • Posting run is successful but document is not posted

    Hi Experts,
    I am able to run the Payroll results posting run (PC00_M99_CIPE) successfully and released. But when I check the status im getting the below Error.
    "Document was not posted to accounting.
    Message No 3G098."
    Kindly let me know, what is the required configuration to post the document to accounting.
    Regards
    Raveendra.

    Hi Ravendra,
    You might have forgot to post the document...
    First Document has to be released (Which you did)
    Next you have to post the document...  (Which is pending from your side)...
    Tcode :- PCP0
    look out for your document which is released .. You need to post it ...
    Regards,
    Veeram

  • Material Documents did not capture cost centre

    Hi,
    There are some PGI / Material documents did not capture cost center.These vehicles are missing cost center in the PGI/Material  document and i am unable to figure out why is it happening.
    Can u please help me understand why the cost centre is missing ?
    Would you clarify that issue.
    Thanks and best regards,
    pragya

    if your material GL account (P&L) account are created as cost elements, you cannot post any document with out cost object. If you GR is through production order, need not assign any cost center, as production order itself is cost object. For other cost elements you can assign cost center in OKB9.
    regs,
    ramesh b

  • MSI Big Bang Xpower II did not post - Debug LED Code #67

        
    I need HELP...!
    I have a problem my board did not post , did not start and i have the DEBUG LED CODE # 67 displayed.
    There is my build
    MSI Big Bang Xpower II X79 LGA2011
    Intel Core i7 3820 LGA2011 Processor
    Corsair Cooling Hydro Series H100 CPU Cooler System LGA2011
    G.SKILL Ripjaws Z Series memory (F3-12800CL-32GBZL) DDR3 1600 PC3-12800 - CL10-10-10-30 (8192MB X 4) - 32GIG located in DIMM 1-3-5-7
    Gigabyte GTX570 OC Edition video card in slot PCI-E2
    Western Digital Velociraptor 300GB 2.5" SATA 3.0Gb/s 10,000 RPM
    LG BH12LS35 Blu-Ray Writer 12X BD-R 16X
    Ultra LSP-750 Power Supply
    Cooler Master HAF X EATX Tower Case
    When I put the power on, the power supply activated fans and drives spin, all the LEDs on the motherboard light up but nothing appears on the screen.
    No video signal at all and the computer stop and restrart every 15 seconds. When these reset occurs there is no beep on the speaker , nothing at all, no flashing screen either, nothing.
    The DEBUG LED display a sequence of flashing numbers 19 - 60 - 19- 60 - 67 and stop showing still the number # 67 for about ten seconds and then he reset again.
    I carefully followed the instruction manual for the installation, I installed the memory modules in slots 1 3 5 7, i put my video card in slot PCI-E2. all the power wire are connected correctly 1 x 24 pins ATX, 2 x 8 pins ATX, 1 X 6 pins , all the wire from the front panel are correctly connected to the m-connector in JFP1 & 2.
    Did i forget something, I don’t know what the debug led code # 67 exactly mean and what i have to do to fix-it
    Someone has an idea what is wrong or have any suggestion to solve this issue.
     Thank's all for your help.

     
    I followed some advice to remove the memory modules and this is actually caused by the use of memory but you will see I still have a curious bug.
    I referred to the instructions manual to the letter for the choice of DIMM SLOT to put the memory module in single, double, triple and quad channels.
    If I install 1 memory module in the DIMM SLOT  1 to operate in single channel, everything is normal and the motherboard  POST normally and show  the SETUP SCREEN.
    If I install 2 memory modules in  DIMM SLOT  1 & 3 to run in dual channel, everything is normal and the motherboard  POST normally and show  the SETUP SCREEN.
    If I install three memory modules in DIMM SLOT 1 - 3 - 5 to run in triple channel, everything is normal and the motherboard POST normally and show  the SETUP SCREEN.
    As soon as I install four DIMMs modules mémoiredans SLOT 1 - 3 - 5 - 7 to run in quad channel, the motherboard  freezes and does NOT POST and show  code 67 on the debug led and has reset itself every 20 seconds.
    I tried all my RAM modules alternately in both single channel and everything works normally.
    I did the same thing in rotation for both dual and triple channel and everything is still normal with all fourth memory modules individually.
     As soon as I put a fourth memory module it freezes and displays the code 67 or L9 dependent side as you look. 
    So my bug is my motherboard MSI Big Bang Xpower II do  not want  to work in quad channel.
    Do you have any idea where I should look for, is a setting in the BIOS  , I have flashed the bios to the latest version V1.5
    I included the screenshot of the BIOS to see if you can  notice something wrong. 
    Thank you

  • Billing document should not be cancelled after creating return sales order

    Hi All,
    Billing document should not be cancelled after creating return sales order with reference to billing document. Please suggest configuration settings on the same.
    Sudheer.

    Hi,
    In SAP, when the sub-sequent document is existing , we can not cancel the preceeding document. Therefore if you want to cancel the billing document you need to calcel the documents which are created with reference to that.
    Check and confirm.
    Regards,
    Ravi Duggirala

  • Excise Invoice creation error -Billing document does not exists

    Dear Experts,
    I have created supplementary sales order, billing with refernece through sales order by VF01.
    Now I want to create Excise Invoice but system gives error Billing Document does not exists
    I have checked billing document in VBRK table & it is showing in table.
    My item categroy is L2N -and set it to C
    I have assigned Billing type under Outgoing excise invoice ->Assign billing type to delivery type still my excise invoice is not generating.
    Pl. guide me.
    Thanks
    Trupti

    Resolved my problem.
    Actually in Billing item categroy if you put SD Doc. Catg. as M you can do excise invoice even if you have not created the
    outbound delivery.
    So cycle will be Supplementary Sales Order->VF01 with ref. to SO->J1IIN -Excise invoice creation.
    Thanks to all.
    Trupti.

  • Accounting documents are not posted for Excise invoice

    Hi,
    1. The Excise invoice has been created with reference to F2 invoice but the accounting documents is not posted for excise invoice, what is the settings needs tobe maintained to post the accounting entries to excise invoice..?
    2. where we will maintain number ranges for excise invoice..?
    Thanks
    Rao..

    hi
    1. The Excise invoice has been created with reference to F2 invoice but the accounting documents is not posted for excise invoice, what is the settings needs tobe maintained to post the accounting entries to excise invoice..?
    Not sure but can u try to relese this to accounting
    2. where we will maintain number ranges for excise invoice..?
    Excise invoice number range is depend on Excise series group.
    T-Code : SNRO
    Following is the No. Range Objects related to Excise, select the proper no. range object as per your requirement.
    J_1I57FC - 57FC Number Range
    J_1IARE1 - ARE1 Doc No object based on Series Group
    J_1IARE3 - ARE3 Doc No object based on Series Group
    J_1IBOND - Excise Bonding: Bond number object
    J_1ICERT - Withholding Tax Certificates (India)
    J_1ICHLNNO - Internal number range for challans
    J_1ICONPLA - Consolidated PLA serial no. generation
    J_1IDEPINV - Excise Invoice Number for Depot Invoices
    J_1IEXCEXP - Export excise invoice number range
    J_1IEXCINV - Excise invoice number
    J_1IEXCLOC - Local excise invoice numebr range
    J_1IEXCTST - Excise invoice with intervals
    J_1IEXINEX - Excise invoice number for export
    J_1IINTNUM - Internally document number to be generated
    J_1IINTPR2 - Despatch serial number
    J_1ILIC - Excise Bonding: License number object
    J_1IPLA2 - PLA part II number range object
    J_1IRG1 - RG1 Number range object
    J_1IRG1_T - No. Range for RG1 - Excise group / Material
    J_1IRG23A1 - RG23A part 1 no. range object
    J_1IRG23A2 - RG23A part II number range object
    J_1IRG23C1 - RG23C part I number range object
    J_1IRG23C2 - RG23C part II number range object
    J_1IRG23D - Folio Numbers for RG 23D
    Check the link
    Re: Excise Invoice Number Range
    excise invoice and domestic invoice sharing same number range

  • The cost of billing document is not the same as GI cost

    Dear Expert,
    Condition EK02 in the billing document is not picking up the Cost of Goods sold at the time of goods issue.
    We have a Made-to-Order Sales Order with a production order. The cost condition EK02 on the billing document is picking up the EK02 from the sales order. We would like it to pick up the actual cist of goods sold (cost on the goods issue).
    Any help would be appreciated.
    Many thanks!
    Raymond

    Hi Raymond,
    My proposal: insted the condition type EK02 - Calculated Costs choose the condition type VPRS - costs.
    I guess you want to transfer the costs into CO-PA ... if yes, don't forget to assign the condition type to a value field (KE41).
    Have a nice day

  • My document did not convert correctly.  Can I fix it in the PDF version?

    My document did not save as it was originally written.  Can I fix it once it has been changed to a PDF?

    Hi iamreadytoscream,
    Did you use PDF Pack to convert a file to PDF? What was the original file format? And, can you provide a little detail about what didn't convert correctly?
    I think the best approach is to figure out why the file didn't convert correctly. You would need Acrobat to edit the PDF once it's created. And, as Acrobat isn't a word processor, it really isn't meant for major editing or formatting.
    Please tell me a bit more about the file that you converted and we'll go from there.
    Best,
    Sara

  • Billing document are not flowing into FI and COPA

    Hello SAP CO gurus,
    please help me out by giving possible reasons why Billing document are not flowing into FI and COPA.
    what are the settings need to check?
    is there any option to get release by manual?
    Initiatives rewards with points........
    Regards
    Chandra.

    Hello Chandra,
    Check whether any standard cost estimate is existing for that material for which your billing. If it is there then check whether costing key from COPA is able to access the cost estimate.
    I am also working on the same issue but not solved yet.
    regards
    Nivas

  • Billing documents should not be created when it is not released to accounti

    Hi SD gurus,
    In some situation, billing documents are generated but it is not released to accounting which results in mismatch between FI value and SD value. We go to VFX3 and see the list of billing documents and take corrective action.
    Our requirement is that the billing document should not be generated when system is not releasing this billing document to accounting.
    Please suggest a solution for this.
    Regards,
    Senthil.

    Thanks giri.
    For the following reasons, the billing documents are not released to accounting.
    1. If the user wrongly chosen the billing type for the delivery.
    2. After creating condition type, it has to be assigned in COPA. If we forgot to do it, billing doc will not released.
    Our requirement is that if the billing document is not able create accounting document, the billing document itself should not be generated.
    Hope this will be suffice to understand my issue and suggest a suitable solution.
    Points will be rewarded.
    Regards,
    Kumar.

  • Output to be blocked for Billing documents, if not released to Accounting

    Hi SAP Gurus,
    We have a requirement, where the Billing documents should not be issued output, if they are not released to accounting.
    The system should not allow the user to issue output for billing documents, if not released to accounting.
    Regards,
    sree.

    Standard routine 62 should be able to suffice your requirement.
    Provided output determination in billing doc should happen from output condition record (VV31).
    If you manaully assign assign output type in billing doc, then system will overlook the requirement.
    In addition to that if your output type is assigned with requiremrnt routine 62 in your output procedure.
    Then till your release tke billing doc to accounting, you will not be able see output type determine in billing doc.
    If you have doubt, whether the output type is getting determined properly or not.
    Then output(header/item) screen in your billing doc(VF02), in menubar select Goto - then choose  Determin. Analysis.
    It will show message that due requirement 62, output determination didn't too place.
    Regards
    JP

  • Document parked not posting, approved by manager not posting

    Hi experts,
    Document parked not posting, approved by manager not posting.Could you please assist us ASAP.
    Thanks & Best regards
    Sreenivas

    Hi Srini,
    To post the parked document you can use the Transaction FBV0. If workflow is involved in the process check with your workflow consultant to know the status and rerun/trigger the workflow manually according to your requirement.
    Warm regards,
    Murukan Arunachalam

  • Billing document does not capturing basic amt. capture only duty part

    Hi
    while doing billing on customer
    the billing document does not capturing the basic amt on , it only capture only duty part.
    pl suggest , how resolve the prob.
    Regard
    R.Sharma

    HI,
    Check the pricing procedure, in that remove the statistic for the pricing condition then try,
    i think will resolve the issue, pricing should not activate the statistic
    Thanks & Regards
    Rajasekhar

Maybe you are looking for

  • Issue with 900 screen of PNP logical database.

    Hi Experts, I am using 900 screen in PNP logical database and assigned the default report catagory. But in the selection screen when I click on further selection and select any of the parameter like company code/cost center, nothing comes in to the s

  • Powerpoint to SWF with Charts

    When using FlashPaper to convert a Powerpoint presentation to Flash, I am getting vertical lines down the middle on the slides that have charts. Any help would be greatly appreciated.

  • Value mapping replication - What happens to the cache at restart?

    Hi! Does anybody know what happens with the value mapping infos in the runtime cache of the integration server after a restart of XI? Are the mapping infos still available or do we need to send mapping values via outbound interface ValueMappingReplic

  • IPhoto open, but won't appear

    I switched users from my wife's account back to my account.  Once I returned to her account to work on an iPhoto calendar I received a "resolution" issue on the desktop screen, but and now I can't open the appilcation.  It still shows as open on the

  • Combined code and design view broken

    I use Dreamweaver MX 2004 and normally work in the "split" (code and design) view. I just opened a site to work on it and that mode does not work - I click on the link in the toolbar, but it does not take effect. I also cannot make it work from View-