BAPI_ACC_INVOICE_RECEIPT_POST document posted succ but not in FB03

Hi
For the Inter-company G/L Account posting Company codes 1000 has EUR currency key & 2000 has GBP currency key. I am using the BAPI FM BAPI_ACC_INVOICE_RECEIPT_POST & BAPI_TRANSACTION_COMMIT.
I am getting the output parameters result as with message as 'Document posted successfully: BKPFF 010000061210002009 T90CLNT090'.
But when I go to BKPF table or FB03 transaction I am not able to see this document.
Regards,
Basani

Hi
For the Inter-company G/L Account posting (Company codes 1000 has EUR currency key & 2000 has GBP currency key), I am using the BAPI FM BAPI_ACC_INVOICE_RECEIPT_POST & BAPI_TRANSACTION_COMMIT.
For this, I am giving the 'DocumentHeader' structure with Company code 1000. 'Accountapayable' structure as Lineitem -0000000001 and credit Account No. & 'AccountGL' structure as Lineitem -0000000002 and Debit Account No. And in 'CurrencyAmount' strcure as with LineItem - 1, Currency - EUR, AMT-BASE as 100- & Lineitem - 2  as with Currenct key - GBP, Exchange rate as 68.36, AMT-BASE as 1.00. (Because as pee my understanding 100EUR = 68.36GBP).
Using the above test data, i am getting the output parameters result as with message as 'Document posted successfully: BKPFF 010000061210002009 T90CLNT090'.
But when I go to BKPF table or FB03 transaction I am not able to see this document.
Regards,
Basani

Similar Messages

  • BAPI_ACC_INVOICE_RECEIPT_POST document posted succ but not in FB03 -urg

    Hi
    For the Inter-company G/L Account posting (Company codes 1000 has EUR currency key & 2000 has GBP currency key), I am using the BAPI FM BAPI_ACC_INVOICE_RECEIPT_POST & BAPI_TRANSACTION_COMMIT.
    For this, I am giving the 'DocumentHeader' structure with Company code 1000. 'Accountapayable' structure as Lineitem -0000000001 and credit Account No. & 'AccountGL' structure as Lineitem -0000000002 and Debit Account No. And in 'CurrencyAmount' strcure as with LineItem - 1, Currency - EUR, AMT-BASE as 100- & Lineitem - 2 as with Currenct key - GBP, Exchange rate as 68.36, AMT-BASE as 1.00. (Because as pee my understanding 100EUR = 68.36GBP).
    Using the above test data, i am getting the output parameters result as with message as 'Document posted successfully: BKPFF 010000061210002009 T90CLNT090'.
    But when I go to BKPF table or FB03 transaction I am not able to see this document.
    Regards,
    Basani

    Hi,
    search BAPI for FB03 transaction in SDN..
    try this link.
    RFC or BAPI  for fb03 transaction call
    regards,
    nazeer

  • Document in BSEG but not in BKPF. Message displays Document not in Database

    Good day!
    We are using SAP 4.6C.
    Our client wants to display a document posted some time ago using FB03.
    The message displayed, "Document not in database. Search Document archive?"
    I looked for the document in BSEG and found that the document exists there.
    However, the document header data are missing in BKPF.
    Is there a transaction code that could have archived/removed the data in BKPF while
    not changing anything in BSEG?
    Could there be a way to retrieve these data?
    Thank you!

    Good Day !
    For your information, the pop up message prompting for archived mesages "Document is not in database. Search document archive? " is not present anymore in the release ECC 6.0. This pop existed in your release  and this has been phased out as part of continuous product improvement after inputs from various customers.
    In the newer releases instead of this pop up we have the message
    "Document XXXX XXXXXXXXX XXXX is already archived" being displayed at the lower bottom of the screen. This helps you identify that the document was archived. This is the standard SAP behaviour.
    Therefore, your document is archived. To able to retrieve this document again you can use Tcode FBL3N and change the Data source option (there is a button for that) to Archived Data.
    The same you achieve in FB03 when you select Document List button and then Data Sources Button, mark the option Archive.
    I hope this helps.
    Best Regards,
    Vanessa.

  • Why can't I save text I've entered into a PDF file?  When I hit "Save As", only the PDF document is saved, but not the text i typed into the document.  I'm using Windows 8.

    Why can't I save text I've entered into a PDF file?  When I hit "Save As", only the PDF document is saved, but not the text i typed into the document.  I'm using Windows 8.

    THANK YOU!
    Jan Whitfield
    The College Planning Center
    250 Palladio Parkway, Suite 1311
    Folsom, CA 95630
    (916) 985-0453
    www.TheCollegePlanningCenter.com

  • New Document Type Created but not allowing posting under that Document type

    Hi Gurus,
    I have created new document type 'JV' & assigned number ranges to that document type. But when I started posting the entries under this document type, system has thrown one error 'NO ACCOUNTING TRANSACTION VARIANT ASSIGNED TO FB01/JV'
    Now after assigning transaction 000 (unspecified posting) & varaint 0001 to document type JV I can able to post the entry under this document type. (Classify document type for document spitting)
    But I am not still sure whether my assignment to this particular document type is correct or not?
    What is the basic criteria on the basis of which we have to select this assignment to particular document type?
    Thanks
    Sonal

    What you have defined is correct. Since you are defining the document type jv meant for any type of posting and not restriciting like payments/receipts/vendors/customers.

  • How to Delete document from Item but not Item itself

    Hello
    I'm working on Oracle Portal (10g)
    I'm thinking about one problem:
    - how to physically remove document form the Oralce repository using PL/SQL
    Does removing row from WWDOC_DOCUMENT$ remove file from hard disk (some
    trigers on Delete?).
    BTW:
    There is one strange (for me ;) ) behavior: I create an item with atached
    file (file item) what happent:
    - in table WWDOC_DOCUMENT$ is new row for new file created.
    - in table WWV_THINGS$ is new row for new item created
    Now I would like to remove file but not item (still using PL/SQL).
    I use function for example:
    PORTAL.Wwdoc_Api.remove_document('101801.BMP');
    This function remove path id and filename but not whole file row itself (but
    this is less problem). And othere more important problem: after
    PORTAL.Wwdoc_Api.remove_document called there is still in item rows pointer
    to just deleted file in fields: FILENAME and VALUE.
    I would like to set this fileds to null. - in othere way there is exception
    durring page deletion (no document found).
    I use:
    update portal.wwv_things p1
    set
    p1.FILENAME = null,
    p1.VALUE = null
    where p1.ITEMTYPE like 'basetext'
    and p1.LANGUAGE = wwctx_api.get_nls_language
    and p1.SITEID = pagegroupID
    and p1.CORNERID = pageID
    and p1.filename like '101801.BMP' ;
    But this seems to not work at all.
    Any body else had some problems like me?
    How it was solved.
    BTW: I work with item versioning.
    BIG THANKS YOU FOR ANY HELP

    You can try my new DeDupe script. It should be able to get rid of the redundant copies while keeping one copy of each track in each format. See this thread for background.
    I've not used the feature, but iTunes can downsample to 128k AAC on the fly as it syncs your devices. Of course you might find the process is too slow for your needs or find that 128k is too much compression.
    tt2

  • How do I delete document from ipad but not iCloud?

    I looked at the help on the iCloud page where I can log in from my mac. It says I can delete a document off my ipad but not the cloud by going in to settings and selecting the file in there. All I can find is a toggle switch to turn iCloud on/off for pages. I can't find access to individual documents there.

    Ok tried again, figured it out.
    Apple, wouldn't it be easier for the user to have a check box in pages/numbers/keynote on the thumbnail of each document for
    Store local only
    Store iCloud only

  • User needs parking and posting facility but not to post doc parked by him

    Hi All,
    Please Let Me know whether it is possible or not
    Requirement : For Instance, we have two users user1 and user2.
    Both the users should have posting and parking facility. But they should not have the authorization of posting a document which was parked by them.
    i.e. If user 1 is parking a document he should not be able to post that particular document but he should be able to post the document which was parked by user2 and vice versa.
    Regards
    Karthik

    It was possible... take your basis people help... you can authorisation of parking document tcodes to one person and you can give authorisation for chaging, posting, deleting or rejecting parked document to another one...
    for document parking --> f-02, fb50, f-65  : only give authorisation to this tcodes the person for parking
    for parked document changes --> fv50, fbv0 to fbv6   only give authorisation to this tcodes the person for changing parked documents

  • Document in Process but not found in the workflow

    Hi,
    we have a document entered in purchasing and still in process but it is not found in the workflow, then it can't be approved by users.
    help please, thanks.

    You can try in test instance it first;
    Run this script for your PO number, it will change the status from In Process to incomplete or Required reapproval,
    then the PO need to be approved again, and you will be able to see it in the workflow
    UPDATE apps.po_headers_all SET authorization_status = decode(approved_date, NULL, 'INCOMPLETE',
    'REQUIRES REAPPROVAL'), wf_item_type = NULL, wf_item_key = NULL, approved_flag = decode(approved_date, NULL, 'N', 'R')
    WHERE po_header_id= -Po header ID-
    Hope it work

  • ERS posting reversal, but not payment

    Hello
    I am having an issue with ERS PO's in our system.
    Scenario is as follows -
    ERS flag isn't initially set on the PO. Then, a GR posted is from SES release, however because ERS flag isn't turned on EKRS table wasn't populated. Thus ERS would not create IR for the GR.
    ERS flag was then set for the PO.
    User reversed the GR. Reverse GR posted to EKRS therefore ERS batch picked up the reverse GR to post a reverse IR.
    ERS will still not pick up the original GR to create a IR doc.
    As a result, vendor account is incorrect and also the GR/IR is incorrect.
    Any possible solutions to make correct the PO history?
    Due to user error, we will always have cases where ERS flag is turned on after GR.
    What is the best way to avoid this imbalanced PO scenario in the future? Should user first reverse GR prior to setting ERS fla

    You should do the GR reversal BEFORE you change the PO to ERS.  
    After you reverse the GR you then
    -  change the PO to ERS
    -  do the GR (receipt which is the "original" receipt of the product that you had to reverse because the ERS flag was not set)
    If you see this happening alot then I'd suggest looking at your processes and improve the process to make sure this does not happen.   For example - it sounds like you are taking existing suppliers with existing POs and converting them to ERS.  This would result in POs not being checked for ERS because they were created before the supplier was an ERS supplier.   As part of the process to convert the supplier to ERS you need to add a few steps such as:
    1)  identify open POs/SAs and either close them and create new ones OR convert all of them to ERS.
    2)  you would also need to identify what POs/SAs have pending invoices and communicate with the supplier what paper invoices they need to send and when they should stop sending the paper invoices.
    Sandra

  • After migrating to a new MBP, when saving or opening documents, I sometimes (but not always) get a warning such as: "Word cannot save this document due to a naming or permissions error on the destination volume." Can someone please explain?

    I recently migrated from a MBP with OS 10.6 to a MCB with OS 10.8. Some glitches are popping up. Here's the one on my mind at the moment:
    When saving or opening documents, I get a warning such as: "Word cannot save this document due to a naming or permissions error on the destination volume." Can someone please explain?

    Since this is isolated to a single file, try exporting it to Interchange Format (.inx), then open and save the resulting file as a new InDesign file.
    Since the problem occurs during export, that may not be possible. Another option to try would be to copy all elements, page by page, and "paste in place" into a new document the same size. If you used layers, be sure to enable "paste remembers layers" in the layers panel menu.
    This kind of problem is often indicative of an underlying font issue. You said there are only three fonts, and you should verify that in Type > Find Font... Try replacing, at least temporarily the fonts in use with something else that you know to be reliable from other documents. You might want to do this before the other steps.
    Peter

  • BSEG Update during accounting document post

    Hello ALL,
    Need an idea to update a custom field in BSEG. The field should get updated once the A/C document gets generated but not yet saved in database. The BTEs are not helpful as its NOT allowing to change the T_BSEG entries. Substitution also not helpful as its gets triggered quite prior to the actual generation of accounting document in the system. The important part is the updation shouldn't be transaction specific. Means whenever an accounting document gets generated that exit/badi/bte should trigger to update that custom entry.
    Many Thanks for the suggestion.
    Somnath

    Hello Ankur Agrawal,
    Thanks a lot for your help.
    I got the item text from the mentioned BADI.  I will get back to this post if it works.
    Thank again for your quick reply.
    Kind Regards,
    Bryan

  • In PP PDC Interface IDOC Message 53 , But Not Confirmed

    In PP / PDC Interface is to update confirmation to the SAP system that were entered in the subsystem by IDOC.
    In the incomming message status "53 Application document posted".
    But the confirmation has not came.
    Kind Advice .
    Prasanna

    Hi,
       As you are saying that, status is 53 and conformation is not coming. Actually, there will be some table , which will be updating the conformation to SAP. First check that table. status doesnot depend whether your conformation is there are not. it purely, related , how you have written your code and updating the status.
    thanks
    manju.

  • Invoice cancelled but not closed

    Hi there,
    I canceled an invoice using vf11. The S1  canceling document was created but not released to finance. The next day when I tried to release into FI using vf02 I encountered the below message: "Post.Date is infer.to the date of the last posted doc. with same n° range". Can you please advice what should I do to create the accounting document and match it with the invoice?
    Thank you,
    Silvia

    This is not the standard error but due to customized process.  Check with your technical team as to why and what validation is there preventing the process.
    G. Lakshmipathi

  • IDoc Error IDocs showing the status 53 "Application Document Posted".

    Hi All
    IDocs showing the status 53 "Application Document Posted". But values are not updated in SAP.
    Plaese sugggest on this,
    Thanks
    Ajit K Barik

    Ajit, there might have been a dump--check in ST22 or a update termination error, check in SM13.
    Either of these you'll have to take help of your ABAP consultant to analyse.
    Regards,
    Raghu.

Maybe you are looking for

  • How do I get a membership to Creative Cloud after my free trial?

    I just finished my free trial for Adobe Creative Cloud. I was using Illustrator, InDesign, Bridge, Lightroom, Photoshop and more. Now, when I try to join, it asks me for my serial number. I don't have a serial number, so it asks me for my registratio

  • IOS 8.1, Airplay on iPad Mini and Apple TV

    Just to add to all the 8.1 issues on my iPad, has anyone tried using Airplay to screen share to Apple TV?  It doesn't works at all.  Its completely jumpy, it stalls and you simply can't use it.  It worked fine on IOS 7.x with no problems. Shut the iP

  • IE issue with unrequired fields in FormsCentral

    Hi there, I have a web form set up with FormsCentral which allows users to upload multiple files for a photo contest. Though only the first upload field is marked as "Required," users in IE 9 and 10 are getting an error telling them to fill in the ot

  • Need Mac to automatically boot as first partition (HELP)

    hi guys, i have windows and mac on a different partition and i use Alt button to select, How do i automatically make MAC my first partition to boot any advice would be great!! I should probs state that i am running on a Imac27" running on the I3 proc

  • Procedure call

    I want to call an existing function returning string_rtn. Would I be able to call this function in an update statement as is without rewriting the function to return just the a_string. I am using  Oracle 10.2.0.4.0 . Basically i want to call this fun