Create account document  with AC_DOCUMENT_CREATE. How?

Hello,
I am trying to create an accountdocument with FM AC_DOCUMENT_CREATE and get as far as creating it and it shows up in the account document list (FB03). But there is a problem:
The value only shows up in field DMBTR (amount in own currency) instead of WRBTR (amount in document currency).
Entering the entries in fields ACCIT-KRBTR, ACCCR-WRBTR, ACCCR-WMWST or ACCCR-PYAMT either creates no document or a document as described above.
Does anybody have any idea in what field(s) I need to enter the amount that I want to be booked?
Best regard,
Tim van Steenbergen

Resolved to doing transfer to billing action into status tab

Similar Messages

  • How to create shipment document with out inbound delivery document

    Dear Friends
    How to create shipment document with out outbound/inbound delivery document.
    In my client scenario, there is no inbound delivery for normal purchases.
    Just there are raising the PO to vendor, then they are doing MIGO for goods receipt.
    Can we do shipment creation with reference to PO?
    If it is possible, how it will be?
    Please let it solve
    With regards
    Lakshmikanth

    Dear Sameer,
    Please go to transaction VT01N here you enter Transportation planning point and shipment type then press enter.
    Now system will take you to the shipment document creation screen here you click on Select deliveries or press F6 now system will take you to the select outbound deliveries screen in this screen you enter selection data then execute, now deliveries will get assigned to that shipment.
    After assigning the deliveries enter the remaining data then complete the shipment finally save the shipment document.
    For more information please go through this SAP help link
    Note:- Shipment process need to be carry out for the deliveries before PGI.
    http://help.sap.com/saphelp_47x200/helpdata/en/f5/04898047bd11d2bf750000e8a7386f/frameset.htm
    I hope this will help you,
    Regards,
    Murali.

  • How create account document from Sales Document?

    Hi.
    I hope you are doing well. The scenario is:
    1.- Create Lead (Sucessfully)
    2.- Create Quotation wrt Lead ((Sucessfully)
    3.- Create Sales Order wrt Quotation (Sucessfully), into status tab I have add Transferred to bill. document status
    4.- The billing document was created sucessfully, however  The account document doesn't exist.
    How create account  document?
    Note:
    assign revenue account was configurated into spro
    What about BP , I guest , need to create a Billing organization.
    Regards.

    Resolved to doing transfer to billing action into status tab

  • Help! How do I create a document with an imported PDF in 300dpi using a FOGRA27 colour profile?

    I am a new Indesign user and I have been working with GIMP for the last year creating single colour print-ready PDFs. But now I need to create a document with a FOGRA27 CMYK colour profile and a resolution of at least
    How do I create a document with an imported PDF in 300dpi using a FOGRA27 colour profile?
    I can import the PDF by creating a new document and finding the PDF in places, but it's bad quality.
    The only colour profile I can find under View - Proof Setup is FOGRA39, but I need FOGRA27!
    Help help help, I need to get these files printed in two days!
    Thanks so much..
    xx

    Proof Colors doesn't change the file's color management, it just lets you see what the color values would look like if they are printed unchanged on different output devices. If you want to actually convert the color from one CMYK space to another, it's probably better to do that in Acrobat—Tools>Print Production>Convert Colors.
    There's very little difference between Fogra27 and Fogra39—Fogra27 allows more total ink 350 vs. 330.
    There's nothing you can do to improve the quality of low res images

  • How to create accounting document in customer consignment process?

    Hi,
        We have one kind of business like customer consignment process. We want to use sales document KB + KE to achieve. But we need to create one accounting document like below when we transfer goods from our stock to customer consignment stock, i.e. movement type 631
    Dr: Consigned finished goods
        Cr: Goods sold in stock
    and when using movement type 633, we want to create accounting document like below,
    Dr: Operation costs
        Cr: Consigned finished goods
        How can i manage to configure it?
    Thanks,
    Wesley

    Hi Wesley
    Consignment having 4 steps which includes
    Consignment Fill up - Order , Delivery Only
    Consignment Issue - Order , Delivery , Billing & Accounting Document
    Consignment Pickup - Order , Delivery only
    Consignment Return - Return Order , Return Delivery & P.G.R., Credit Memo Request, Credit Note & A/C Doc.
    So in Consignment Issue & Consignment Returns Accounting document are generated.
    When you transfer the goods it comes in Consignment Issue so accounting documents are also been generated.
    I thik so it will be helpful for you.
    Thanks
    Shobhit Gautam

  • Can someone tell me how to create accounting entries with the account status as error

    Hi,
    Can someone tell me how to create accounting entries with the
    account status as error?
    Thanks!!
    Danny

    It's call fixed/static background, and it is NOT directly support by iweb, you will need post processing either in html or javascript.
    Varkgirl (you need to search the previous forum) and I did it since iweb1:
    try Safari, and scroll: http://www.geocities.com/[email protected]/Links.html
    invisible link? roddy, fishing for info again?

  • How to create the document with originals and checkin that document

    I am using this 2 bapi for creating DMS ,
    BAPI_DOCUMENT_CREATE2
    BAPI_TRANSACTION_COMMIT
    BAPI_DOCUMENT_CHECKIN2
    BAPI_TRANSACTION_COMMIT
    at last we want to c in DRAO table the created doc no should be updated here.
    But it not updating.how can i update in the table..
    Please tell via code..

    How do you call BAPI_DOCUMENT_CREATE2?
    I just tried with the example given in the documentation and with a little adjustment I created a document with an original which appears in the DMS_DOC_FILES table.
      DATA: ls_doc    LIKE bapi_doc_draw2,
            ls_return LIKE bapiret2.
      DATA: lf_doctype    LIKE bapi_doc_draw2-documenttype,
            lf_docnumber  LIKE bapi_doc_draw2-documentnumber,
            lf_docpart    LIKE bapi_doc_draw2-documentpart,
            lf_docversion LIKE bapi_doc_draw2-documentversion.
      DATA: lt_files LIKE bapi_doc_files2 OCCURS 0 WITH HEADER LINE,
            lt_drat  LIKE bapi_doc_drat OCCURS 0 WITH HEADER LINE.
      ls_doc-documenttype    = 'Z01'.
      ls_doc-documentversion = '01'.
      ls_doc-documentpart    = '000'.
      ls_doc-statusextern   = 'DR'.
      ls_doc-laboratory     = '001'.
      REFRESH lt_files.
      CLEAR lt_files.
      lt_files-docfile      = 'c:\BP\test.docx'.
      APPEND lt_files.
      CLEAR lt_drat.
      REFRESH lt_drat.
      lt_drat-language    = 'EN'.
      lt_drat-description = 'Info Rec Description'.
      APPEND lt_drat.
      CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
            EXPORTING: documentdata         = ls_doc
            IMPORTING: documenttype         = lf_doctype
                       documentnumber       = lf_docnumber
                       documentpart         = lf_docpart
                       documentversion      = lf_docversion
                       return               = ls_return
           TABLES: documentdescriptions = lt_drat
                   documentfiles        = lt_files.
      IF ls_return-type CA 'EA'.
        ROLLBACK WORK.
        MESSAGE ID '26' TYPE 'I' NUMBER '000'
                WITH ls_return-message.
      ELSE.
        COMMIT WORK.
      ENDIF.
    Best Regards,
    Martin

  • Intercompany stock transfer: IV billing documents creates FI document with

    Hi,
    Intercompany stock transfer: IV billing documents creates FI document with wrong vendor.
    How can I make sure that the correct vendor is posted in the selling company code?
    Best regards,
    Eric.

    Hi Jürgen,
    I also tried this option but then the following error appeared:
    "Message no. F5598: Posting keys for account determination for transaction BUV do not exist".
    Some point is forcing the PGI to ask for BUV operation (Tx. OBYA).
    Thank you for your contribution.

  • Error creating accounting document for a credit note

    Hi All,
    I am facing an issue while creating an accounting document for the credit note created.
    The scenario is as follows:
    Created a credit memo --> created credit note --> create accounting document
    While creating accounting document, i'm getting an error message as 'The G/L account XXXXXXXX requires an assignement to CO object'.
    Please let me know why i'm getting this error and how to overcome this issue.
    Thanks,
    Anil Kumar

    While creating accounting document,
      i'm getting an error message
    First of all, I am not clear on your above statement as in normal circumstances, once you generate a credit memo, in bacground an accounting document will also be generated.
    In your case, I believe while saving the credit memo, system throws the error to maintain CO object in which case, do the following:-
    Go to TCode KA02 enter the controlling area, give the G/L acoount No and click on Master data tab.  There  select  "Default Acc Assgmnt" tab  and enter Cost centr and save.
    Next Go to FS00, input the G/L Account and click on Edit Cost Element on top.  There click on Basic Data and for the field CElem category, maintain the required numeric value.  Now select the tab Default Acct Assgnmt and there maintain the required cost center and save.
    thanks
    G. Lakshmipathi

  • Cancel billing doc (S1) is not creating Accounting document

    Hi,
    I have cancelled F2 billing document with cancel billing type S1. But for that cancel billign doc S1 is still in open status only and it is not creating accounting document..
    I tried to release to accounting but it is showing error like " Document type is not defined"..
    Please any guess on this..
    regards
    sankar

    Hi sankar
    I am sure you might be aware of this but just to reiterate
    When you cancel documents in Logistics Invoice Verification, the document line items are not automatically cleared in Financial Accounting. We recommend that you periodically clear such items (using daily background jobs, for example).
    Kalpesh

  • Unable to create Accounting document for my Outgoing excise Invoice

    Dear All,
    I am implementing sales from Factory. I am unable to creat accounting document for my Outgoing excise invoice.  When I click the Utilization button, The excise invoice type is selected Deemed.
    1. How to control which Which Excise invoice type should be selected in J1IIN.
    2. For Deemed exports will system not genererate Accounting document for Excise Invoice?
    3. Where to view the excise invoice document types (Like Billing and order types)
    Thanks & Regards

    For deemed export sales,
    -Accounting documents will not get generated. (ref: Excise Acct Determination in CIN settings, you will not find Excise Tranraction type:ARE3 for which G/L account will not be assigned)
    -Excise Invoice type will be automatically triggered based on configuration : Excise Group / Series Group detetermination.
    - For Deemed Exports , only Quantity will get updated in RG1, but not the value. thats the reason, accounting document will not get generated.
    - This excise invoice is created, for - to update the RG1 registry / ARE3 creation.
    hope it clears
    regards,

  • Create custom document with wrong size

    Hi,
    I have a problem (on Sun Solaris 5.8) when I create custom document with more than 10MB size.
    I've created an agent which detects the events on a custom data type
    MYDOCUMENT (extension .mydoc).
    When I put a new document test1.mydoc (size of 10MB for example), my agent detects the new document, creates a copy, sets the class object to
    MYDOCUMENT , removes the original document and puts the copy into the same folder.
    But sometimes, the copy created has a wrong size (less then 10MB).
    How can I configure the nfs server to be sure that the agent waits for the complete size of the added document.
    I need HELP !!!!
    Thanks

    Hi Pavithra,
                    yeah you can create your custom table by entering fields in Standard.  for more details
    refer below screen shots
    Regards,
      Thangam.P

  • CREATE SD document with characteristics - BAPICUVAL / E1CUVAL problem

    Hello there,
    I am trying to create SD document with material characteristic. I can create single value characteristic, but when I am trying to post interval characteristic, just lower interval is saved and upper one is ignored.
    I use BAPI_SALESORDER_CREATEFROMDAT2. For example:
    DATA: tab_order_value TYPE TABLE OF bapicuval,
          wa_order_value LIKE LINE OF tab_order_value.
    wa_order_value-config_id = '000001'.
    wa_order_value-inst_id = '00000001'.
    wa_order_value-charc = 'OUTER_DIAMETER'.
    wa_order_value-value = '510'.
    wa_order_value-valcode = '3'.
    wa_order_value-value_to = '2100'.
    wa_order_value-author = '8'.
    INSERT wa_order_value INTO TABLE tab_order_value.
    Characteristic is not set properly (510-2100mm), just 510mm is set. How should I call it properly? Should I fill also some another tables? Is there some documentation? Can be there some bug in SAP standard?
    Any response is highly appricieted.

    Hi Maggie,
    my values are definitely ok. When you post 100 its same as 100,00 :).
    When I want to post just one value, for example 100 it works well. When you want to post interval values, for example 100 u2013 500, its just post the first one.
    I debug standard code behind this and its look like, that there is no way to write interval and this "bug" is standard feature - the upper level of interval is cut by ABAP code.
    In past I also checked how is system filling BAPICUVAL structure. When I fill this structure with same values and run it in my BAPI its doesnu2019t work, because its processed like iDoc.
    So the conclusion is, that it is not possible to write intervals right now from external source, just from the inside of SAP standard transactions.
    So, I decided to close this thread.

  • Proforma invoice (F5) creates accounting document

    We have an issue with Proforma invoices creating accounting documents. I did some research here and it seems that it is an unexpected behavior for a proforma invoice, but I couldn't find any information about what exactly is preventing them from creating accounting documents.
    Could anyone point me in the right direction where this might be configured? Unfortunately, I'm mostly an ABAPer and am not that familiar with SD config. I did find the transaction VOFA though and checked the settings for F5 there. It seems odd that 'Posting block' checkbox is unchecked. Is it supposed to be checked or are there any other fields that would influence the creation for accounting documents?
    Thank you.

    I checked the fileds, as suggested. F5 has the following settings:
    SD document category = 'U'
    Transaction group = 8
    all the fields in Cancellation and Account Assignment are blank
    some fields are set up in Output parameters (I don't think they have anything to do with this)
    both Posting Block and Statistics are currently not checked
    It seems that Statistics checkbox only influences the creation of statistical records (i.e. population of LIS/SIS structures).
    What is interesting though is that Document Type field is blank for F5 and for other invoice types (e.g. F2 or FV, which we are also using)...
    Is there another area in SPRO where the connection between SD and FI could be configured? I've also looked at the Copying Requirements, but there is nothing for Billing to Accounting...

  • Creating a document with hyperlinks to a glossary

    I am creating a document with hyperlinks to a glossary. How can I permit my reader to return to the page that the hyperlink originated on? Thanks!

    The last time I did this I put each glossary term on its own (much smaller) page, then created a link to return to previous view that covered the entire page so no matter where they clicked they would go back to where they came from. Or you could create a button that jumps to previous view. Of course this only works when each glossary term is linked just once. If the same term is used on different pages you link them all to the glossary but the link on the glossary page will only return to the first instance.

Maybe you are looking for

  • Error: RFC connection host not found

    Dear all, I have configured the SLD and JCO destinations also. But when i test connection system throws the error. <b>com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect to message server host failed Connect_PM  TYPE=B MSHOST=thr3dev

  • Changing the location of the Flash Recovery Area

    My flash recovery area is currently on the same disk as the database. The recovery area also has all out backups for the past month. What's steps should I take to change location of the flash recovery area? Do I have to do anything besides changing d

  • Unable to load one script (Iphone revision issue)

    Hi, I'm unable to load one of my scripts through any browser or the desktop app, although I still can through the Iphone app. I believe it stopped working correctly after I made a comment on my Iphone. I was logged in on my comp and tried to make a c

  • Problem to playback 16/9on DVD Player...original export HD to SD 16/9

    Hi, I need some serious help on that one ( need to complete the project for this Friday..) Basically I created an edit on FCP on a timeline with the following settings: -aspect ratio:HDTV 720p (16/9). As it has been shot with a JVC camera(GY-HD111)on

  • Decode and Date

    Dear All, Does decode check the date in the table and returns some value from the same table? For example; Select decode(original_date,1, (select new_date from ABC_Calendar) from ORG_Calendar;It should be like above. Thanks