Posting Customer Document.

Hi,
When we post the document using FB01, i am getting an error message stating.
FIELD BSEG-MWSKZ does not exist in the screen SAPMF050301.
It's regarding tax code.. Please help me in rectifying this error.. and let us knowwhy we are getting this error..
Regards,

Hi Raghavendra,
Thanks for the answer,
Under which tab, the tax code comes for example is it under General data,Additional account assignments,Payment transactions.Taxes
Please assist.
Thanks,

Similar Messages

  • Post Customs Document via /SAPSLL/API_CUSTOMS_DOC_CREATE

    Hi Gurus,
    We are trying to post Customs document Via FM /SAPSLL/API_CUSTOMS_DOC_CREATE. Is there a better way to post Customs document via program/manually?
    can any one provide a sample program to create/change Customs document via program?
    Regards,
    Abhi.

    HI Abhshk Bhatta,
    do you have any experience with the connection of a non sap system to sap gts?
    my idea is to use to call this function module e.g. via a web-service and post the customs declaration into gts....
    what do you think - may that be possible?
    regards,
    Ralf

  • PARK & POST BILLING DOCUMENT FOR CUSTOMER.

    Hello Gurus,
    I am asked to set a Park & Post option for Billing Document for Customer i.e. outgoing invoice to customer.
    how can i do this??
    Kindly guide.
    Regards
    Swati Bhatt

    Hello
    Park & Post Billing Document
    This functionality is available in MM/FI.
    You can use Billing Block functionality in Billing Doc type (Tcode VOFA) by activating Posting Block indicator.
    To release them to accounting, either you can individually or you can use VFX3 for collective release of billing doc to accounting.
    Thanks & Regards
    JP

  • Clear Withholding tax data while posting customer invoice

    Gurus,
    I am trying to post Customer invoice document using FB01 transaction.
    If the customer has with holding tax information available in Customer Master the corresponding information is getting posted into invoice document.
    Is there any user exit, enhancement or substitution available to clear this with holding tax data.
    Please do share if any code examples on this issue.
    Appreciate your quick response.
    Thanks,
    Suneel

    Dear AMD008
    were you maintain properly in OB40 MWS (out put tax) relevant GL Account
    Note: are you using NEW GL please conform me
    Regards
    shankar

  • Problem in posting multiple documents in FB70 through BDC...

    Hi,
       I am facing a problem while posting multiple documents from a flat file in FB70 thourgh BDC batch input by using session method. However, the session is getting terminated after posting the first document. Please clarify my problem.
    Below is a sample of the data in my flat file -
    Customer,Invoice Date,Posting Date,Amount,G/L Account,Amount in doc. Curr.
    34,03.06.2009,03.06.2009,100,211000,100
    34,03.06.2009,03.06.2009,200,211000,200
    34,03.06.2009,03.06.2009,300,211000,300
    And below is the sample code of my program.
    REPORT ZANI2_BDC_FB70
           NO STANDARD PAGE HEADING LINE-SIZE 255.
    TYPES: BEGIN OF TY_STR_FB70,
             ACCNT(20)      TYPE C,     "Customer
             BLDAT(20)      TYPE C,     "Invoice Date
             BUDAT(20)      TYPE C,     "Posting Date
             WRBTR(20)      TYPE C,     "Basic Data - Amount
             HKONT(20)      TYPE C,     "G/L Account
             ITEM_WRBTR(20) TYPE C,
             "Line Item Amount In Document Currency
           END OF TY_STR_FB70,
          BEGIN OF TY_STR_FILEDATA,
             FIELDS TYPE STRING,
          END OF TY_STR_FILEDATA.
    *   data definition
    *       Batchinputdata of single transaction
    DATA:   BDCDATA LIKE BDCDATA    OCCURS 0 WITH HEADER LINE,
    *       messages of call transaction
            MESSTAB LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    DATA: IT_STR_FILEDATA TYPE STANDARD TABLE OF TY_STR_FILEDATA,
          WA_STR_FILEDATA TYPE TY_STR_FILEDATA,
          IT_STR_FB70 TYPE STANDARD TABLE OF TY_STR_FB70,
          WA_STR_FB70 TYPE TY_STR_FB70,
          G_STR_FILENAME TYPE STRING,
          G_FLG_ERROR TYPE I,
          G_INDEX TYPE I,
          G_STR_INDEX TYPE STRING,
          G_STR_FIELDNAME TYPE STRING.
    SELECTION-SCREEN BEGIN OF BLOCK INPUT.
    PARAMETERS: P_FILE TYPE IBIPPARMS-PATH,
                P_SES  TYPE APQI-GROUPID.
    SELECTION-SCREEN END OF BLOCK INPUT.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          PROGRAM_NAME  = SYST-CPROG
          DYNPRO_NUMBER = SYST-DYNNR
          FIELD_NAME    = 'P_FILE'
        IMPORTING
          FILE_NAME     = P_FILE.
    Continued in the next thread..

    ...Continued from the previous thread.
    PERFORM OPEN_GROUP.
        G_INDEX = 1.  
        LOOP AT IT_STR_FB70 INTO WA_STR_FB70.
           PERFORM BDC_DYNPRO      USING 'SAPMF05A' '1200'.
          PERFORM BDC_FIELD       USING 'RF05A-BUSCS'
                                         'R'.
         "Customer
          PERFORM BDC_FIELD       USING 'INVFO-ACCNT'
                                         WA_STR_FB70-ACCNT.  
          "Invoice Date
          PERFORM BDC_FIELD       USING 'INVFO-BLDAT'
                                        WA_STR_FB70-BLDAT.                               
          "Posting Date
          PERFORM BDC_FIELD       USING 'INVFO-BUDAT'
                                        WA_STR_FB70-BUDAT.                                
         "Basic data - Amount
          PERFORM BDC_FIELD       USING 'INVFO-WRBTR'
                                        WA_STR_FB70-WRBTR.     
          PERFORM BDC_FIELD       USING 'INVFO-WAERS'
                                        'EUR'.
          G_STR_INDEX = G_INDEX.
          IF G_INDEX < 10.
            CONCATENATE '0' G_STR_INDEX INTO G_STR_INDEX.
          ENDIF.
          CONDENSE G_STR_INDEX NO-GAPS.
          CLEAR G_STR_FIELDNAME.
          CONCATENATE  'ACGL_ITEM-WRBTR(' G_STR_INDEX ')' INTO
          G_STR_FIELDNAME.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        G_STR_FIELDNAME.
                                        "'ACGL_ITEM-WRBTR(01)'.
          "G/L Acct
          CONCATENATE  'ACGL_ITEM-HKONT(' G_STR_INDEX ')' INTO
          G_STR_FIELDNAME.
          PERFORM BDC_FIELD       USING  G_STR_FIELDNAME       
                                         WA_STR_FB70-HKONT.    
            "Amount .
          CONCATENATE  'ACGL_ITEM-WRBTR(' G_STR_INDEX ')' INTO
          G_STR_FIELDNAME.
          PERFORM BDC_FIELD       USING G_STR_FIELDNAME   
                                        WA_STR_FB70-ITEM_WRBTR.
          "PERFORM BDC_DYNPRO      USING 'SAPMF05A' '1200'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '=BU'.
          CLEAR WA_STR_FB70.
        ENDLOOP.
        IF G_FLG_ERROR IS INITIAL.
          PERFORM BDC_TRANSACTION USING 'FB70'.
        ENDIF.
        IF G_FLG_ERROR IS INITIAL.
          PERFORM CLOSE_GROUP.
          MESSAGE 'Session created successfully.' TYPE 'I'.
        ENDIF.
      ENDIF.
    Continued in the next thread..

  • Movement type 941 is not posting accounting document

    While postig post goods issue for replacement order no accounting document is being created, only PCA document is being created. Numbers are zero on PCAdocument, thats probably the reson whuy accounting document is not being generated. Is there any configuration that drives the passing of cost to FI?  I see that material is valued at 100 ncurrency units.

    Hello Pankaj,
    In OMJJ transaction, you can set customizing for movement type 941.
    If you want to create FI document when you post metarial document, you must set valuation update check in Account Grouping node on OMJJ customizing.
    Regards,
    Burak

  • B2B Custom Document Type not getting identified

    Hello,
    I have installed Oracle Fusion Middleware 11g on my local machine and created a custom document type with proper .xsd definition and XPath Expression Identifier in Oracle B2B interface and configured its trading partners ( Host & Remote ) along with an agreement between the partners.
    I have also configured the host listening channel of Generic-File type which picks xml files from my c:\orclsrvs_in folder.
    My problem is that the moment I drop any sample file in the expected directory, it gets picked up from B2B , but there isn't any record of the same under Reports and Metrics links.
    The Business message, Application message and Conversation message tabs are also not showing any information about the record picked, but in wire message tab, the record is shown in PROCESSING state.
    I am not able to conclude whats wrong behind this.. where can i track the logs for the same ??
    kindly help to resolve this issue.
    Thanks & Regards
    Hiteshkumar Chaudhary

    Hi Hitesh,
    i came to know that B2B extracts the TP name from the filename itselfYes, in case of Generic File, Generic SFTP and Generic FTP, file name provides the necessary values to Oracle B2B to identify the Trading Partner. You can define your own file name format in the Delivery Channel under Transport Protocol Parameters in field "Filename format" (It's an optional field but it is always good to define your own format, otherwise B2B will take it's default format - TradingPartner_DocumentType_Revision_msgType_msgId_replytoMsgID_extension.xml ). Following Filename formats can be used -
    %FROM_PARTY%
    %TO_PARTY%
    %DOCTYPE_NAME%
    %DOCTYPE_REVISION%
    %MSG_ID%
    %TIMESTAMP%
    These file name formats can be used in any combination; for example,
    %TO_PARTY%_%DOCTYPE_NAME%_%DOCTYPE_REVISION%.dat
    Note - Any file extension is allowed.
    what are the system parameters to be set in weblogic console and how?? This activity is part of the pre and post installation steps. If you have done those without getting any errors then nothing else is required.
    how shall I reinstall XEngine properly ??XEngine is part of B2B installation. If B2B gets installed without flashing any errors then we assume that other components of this part has installed properly.
    Regards,
    Anuj
    Edited by: Anuj Dwivedi, Infosys on Aug 28, 2009 5:51 PM

  • BAPI_ACC_DOCUMENT_POST how to post a document relate with assets

    Hello all,
    I'm using this BAPI to replicate the financial accounting flow. I've achieved to post almost of document types but asset documents. I've got the following error:
    "Account 'Contra account: Acquisition value' could not be found for area 01"
    For example i'm trying with a document like this:
    U100     1     70          17000000     000002000000 0000     1,000.00     USD     
    U100     2     31          00403201     adasdasdad                          1,000.00-     USD     
    I don't have any trouble when posting from FB01, but when i try to post the document across this BAPI i got the previous error. I'm pretty sure that the problem is because the bapi (i don't know what i'm doing wrong) is trying to retrieve the contra account: acquisition value), this account is not customized (because is not necessary for our requirements). When i post from FB01 the acount retrieved is: Acquisition:Acquis. and production costs.
    Has anybody tried to post an assets document with this BAPI?
    Thank you very much!

    Hello
    Offsetting Account Number
    In this field the R/3 System determines the offsetting account for the
    item, as long as the account is maintained in the corresponding account
    assignment.
    It's a clearing account or another name used in this connection is
    contra account. The defintion for the contra account is:
    The contra account is for an asset acquisition posting, provided
    the posting was not an integrated posting with Financial Accounting.
    Another example is the offsetting account for revaluation:
    Reconciliation account for appreciation to the acquisition and
    production costs of assets.
    Information:
    the offsetting account is triggered in ABZON
    for the depreciation areas that post to GL in real time.
    Also, any acquisition done by ABZON gets updated to all ledgers
    within the same ledger group.
    Unfortunately you cannot limit the posting of the APC to some
    ledgers only.
    If you put an offsetting account in ABZON, system will post the
    acquisition to the leading and the non-leading ledgers too: the
    problem is that it will post into the countra account defined for the
    area 01 (leading ledger) because it is the only one that post to GL in
    real time.
    The other area will get the posting to the other account because it is
    not in real time the posting.
    Hope this helps
    Ray

  • ADRNR number in BSEC table ( One time customer document )

    Hi
    We are printing the customer master address details on AR forms with ADRNR field but this logic is not working for one time customer documents in BSEC if ADRNR filed is not available ( BLANK )
    The ADRNR filed for one time customers documents in BSEC is not updating always but the same table  is getting updated with ADRNR some of the one tim customer document.
    I think that the ADRNR filed getting updated if one time customer document are generated from SD & Idoc posting and the ADRBR field not getting updated if one time customer document directly generated from FI side...  but i m not 100% clear of ADRNR update in BSEC table for one time customer document
    Please help me on this if any body facing some problem earlier.
    Thanks
    Risha

    done

  • FI,Post Customer Down Payment

    can any one give me the BAPI for POST CUSTOMER DOWN PAYMENT : HEADER DATA transaction F-29 and BDC program for poasting the same?

    These might be of some help too :-
    f-29 document header
    Down payment request: posting using BAPI_ACC_DOCUMENT_POST

  • Posting Customer Invoice using FB70

    Hi Experts,
    While posting customer invoice (FB70) for the customer having withholding tax information defined, I am able to simulate the transaction successfully but not able to post it.I can see the TDS transaction executed.But, the post icon symbol is inactive. It displays " error messages still exist" . When i checked the error log it displayed Message number 047 in the application area F5A.
    Please help me
    Regards,
    Sasidhar

    Hi
    In accounting document posting - system not shows any specific error log.
    In your case, the error might be any of the below :
    - check whether the balance of the all line items is zero
    - check whether the WHT calculation is correct
    - check whether the customer invioce amount is entered
    VVR

  • Contract Number in Post clearing document

    Hi,
    I have open item in customer account as 15000 and after clearing the full amount in document number Contract number is not displaying but when I do partial payment (like 500) Contract number is appearing in clearing document.
    Anybody can help me out how I can get Contract number in post clearing document (Full amount clearing).
    Br,
    CM

    Hi CM,
    please refer to the information in SAP note [151867|https://service.sap.com/sap/support/notes/151867] which explains the necessary configuration (in module FI).
    Hope this helps.
    Regards, Franz

  • Posting a document by using function Module POSTING_INTERFACE_CLEARING

    Hi Gurus,
    I have a problem while using the function module POSTING_INTERFACE_CLEARING.
    My custom code is using the FM POSTING_INTERFACE_CLEARING to clear a document form one GL account and post a document in another GL account.
    after the document is posted 2 line items will created in the 2 GL accounts.
    But some of the fields are not being populated in the one of the line item for the document created (Reference fields) but the other line item has the reference fields has values being populated.
    I am passing the required values in the custom code to this FM.
    Please help me in this.
    Edited by: Anand Sirgapuram on Jun 3, 2009 2:34 PM

    Hi Anand,
    Could you please specify which reference fields are not getting populated?
    I think this is the standard behaviour of POSTING_INTERFACE_CLEARING. All the values in the first line item are populated, while in second line item only some of the fields like posting key, account number, account currency, amount, company code and business partner are populated.
    If you need to populate other values, I guess you will have to search for some enhancement points inside the FM POSTING_INTERFACE_CLEARING after the 'call transaction' statement.
    Regards
    Radhika

  • Idoc FIDCCP02 posting skipping document number

    I am using Idoc FIDCCP02 to post FI document. I have to enter value in field E1FIKPF-AWORG, otherwise it does not allow tax code to be used in certain conditions. Filling up filed E1FIKPF-AWORG is working fine and document is being posted. But the issue is that system is skipping one document number for each posting. If field E1FIKPF-AWORG is left blank, than this does not happen.
    Any help please!

    HI Dehra,
        YOu can check if any customizing is done within the IDOC processing function module.
    Or you can to analyse if populating the E1FIKPF-AWORG value creates any extra documents, which are consuming the number range.
    Suggestion: You may get better responses in either FI Forums or ABAP forum.
    Best Regards,
    Ravikanth Talagana

  • Avoiding DUMMY value for profit center while posting COPA document

    Hi All,
    I have a requirement where I post a document using BAPI_COPAACTUALS_POSTCOSTDATA using a Z Program.
    Everything works fine , but if we do not mention the profit center explicitly, it takes the value as "DUMMY". Same happens with KE21N.
    I want to find a user exit where I can change this dummy value to blank again. I do not want posts with DUMMY profit center values.
    Can you please suggest where can add my custom code. I think this should happen just before the document is posted.
    Kindly suggest where should I add my code.
    Regards,
    Barkha

    Hi Gangadhar,
    Thanks for the input.
    But for now our requirement is still the same.
    So what can be the other way round for this?
    Anyone, any more inputs pls.

Maybe you are looking for

  • Having Kernel Panics on my 27" Mid 2010

    Been having issues with my iMac lately.  I am thinking it may be ram, but I am unsure Anonymous UUID:       A3721DDB-593D-8968-60F5-96D2A5BE2F02 Thu Aug 14 11:20:14 2014 panic(cpu 2 caller 0xffffff8012cdc24e): Kernel trap at 0xffffff7f94a33f74, type

  • Closing Stock/stock value field name in MB5B

    Dear Expert, I want to create a report on closing stock and closing stock value monthwise. Please suggest the field name in which i will get the data monthwise. Regards

  • Ipad disable question please help

    I am having an annoying problem. I am from Vietnam but currently staying in Australia.  My girlfriend bought an iPad 4 in Vietnam from a mobile phone retail store (not sure if it is official retail or not) and she had never used any smartphone or eve

  • I cleard all history, how do i get it back

    i was trying to delete my history it asked for what days, then clear all history thats what i did, but now all my facebook friends have lost there facebook names is there a way of getting them back

  • How To Configure RTSP Protocol to play with vlc or some other player

    i am unable to play any online file with rtsp protocol plz help as the url is also not visible on site only a error msg shown that firefox doesn't understand.......................................