CJ718 - Currency in requesting company code must be company code currency

Hi Colleagues,
    I need to define in the WBS element "Requesting cost center field" in (CJ20N tcode) the cost center with different currency and controlling area, howerver the system does not allow and the follow message was showed "CJ718 - Currency in requesting company code must be company code currency".
    I would like to know,  is this possible? How can I do it?
Kind Regards,
Lima, Vanderlin.

I dont think this is possible. Read this Note 201049 - Different company code currencies in WBS element , This note doesnt solve your purpose it is to correct if system allows you to assign different company code currencies and it clearly says that if you have different company code currency in a WBSE then you will have problem in settlement, so this is not allowed.

Similar Messages

  • BAPI_ACC_DOCUMENT_POST  Tax code must be entered

    Hi all,
    I am using bapi  BAPI_ACC_DOCUMENT_POST   to post in FB01 but  i am getting a error "Tax code must be entered". The amounts are  equals in  S/H but I don´t  know what happen. Anybody  have a suggestion?
    Thanks in advance.
    Mireya

    Hi, Here is a sample code how to use this one.
    DATA: it_acc_gl LIKE bapiacgl09 OCCURS 0 WITH HEADER LINE,
    it_acc_ap LIKE bapiacap09 OCCURS 0 WITH HEADER LINE,
    it_return LIKE bapiret2 OCCURS 0 WITH HEADER LINE,
    it_curr_amt LIKE bapiaccr09 OCCURS 0 WITH HEADER LINE,
    it_doc_header LIKE bapiache09 OCCURS 0 WITH HEADER LINE,
    it_acc_tax LIKE bapiactx09 OCCURS 0 WITH HEADER LINE,
    obj_type LIKE bapiache09-obj_type,
    obj_key LIKE bapiache09-obj_key,
    obj_sys LIKE bapiache09-obj_sys,
    pstng_date LIKE it_doc_header-pstng_date,
    doc_date LIKE it_doc_header-doc_date,
    loop_cnt TYPE i VALUE 0,
    gv_vendor(10) TYPE c,
    gv_gl_acc(10) TYPE c.
    LOOP AT bdc_source.
    * First line of table is heading so don't do anything
    IF bdc_layout IS INITIAL.
    MOVE bdc_source TO bdc_layout.
    TRANSLATE bdc_layout TO UPPER CASE.
    CONTINUE.
    ENDIF.
    bdc_out = bdc_source.
    CLEAR: obj_type, obj_sys, obj_key, pstng_date, doc_date, gv_vendor, gv_gl_acc.
    * Setup the dates in correct format
    CONCATENATE bdc_source-col_c+6(4) bdc_source-col_c(2) bdc_source-col_c+3(2) INTO pstng_date.
    CONCATENATE bdc_source-col_b+6(4) bdc_source-col_b(2) bdc_source-col_b+3(2) INTO doc_date.
    * Padding zeros, very important otherwise bunch of stuff is missing
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = bdc_source-col_e
    IMPORTING
    output = gv_vendor.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = bdc_source-col_j
    IMPORTING
    output = gv_gl_acc.
    * Header
    REFRESH it_doc_header.
    it_doc_header-bus_act = 'RFBU'.
    it_doc_header-username = sy-uname.
    it_doc_header-header_txt = bdc_source-col_h. " Invoice Text
    it_doc_header-comp_code = bdc_source-col_a. " Company Code
    it_doc_header-doc_date = doc_date. " Invoice Date
    it_doc_header-pstng_date = pstng_date. " Posting Date
    it_doc_header-doc_type = 'KR'. " Return Order...?
    it_doc_header-ref_doc_no = bdc_source-col_d. " Invoice Number
    APPEND it_doc_header.
    * GL Account
    REFRESH it_acc_gl.
    it_acc_gl-itemno_acc = '1'.
    it_acc_gl-gl_account = gv_gl_acc. " GL Account
    it_acc_gl-item_text = bdc_source-col_o. " Line Item Text
    it_acc_gl-doc_type = 'KR'. " Return Order...?
    it_acc_gl-comp_code = bdc_source-col_a. " Company Code
    it_acc_gl-pstng_date = pstng_date. " Posting Date
    it_acc_gl-vendor_no = gv_vendor. " Vendor Number
    it_acc_gl-costcenter = bdc_source-col_k. " Cost Center
    it_acc_gl-wbs_element = bdc_source-col_q. " WBS Element
    "it_acc_gl-tax_code = bdc_source-col_m. " Tax Code
    it_acc_gl-network = bdc_source-col_p. " Internal Order
    conv_s_amt = bdc_source-col_f. " Invoice Amount
    REPLACE ALL OCCURRENCES OF ',' IN conv_s_amt WITH ''.
    IF conv_s_amt < 0.
    it_acc_gl-de_cre_ind = 'H'. " H-Credit
    conv_s_amt = - conv_s_amt.
    ELSE.
    it_acc_gl-de_cre_ind = 'S'. " S-Debit
    ENDIF.
    CONDENSE conv_s_amt.
    APPEND it_acc_gl.
    * AP Account
    REFRESH it_acc_ap.
    it_acc_ap-itemno_acc = '2'. " Invoice Number
    it_acc_ap-vendor_no = gv_vendor. " Vendor Number
    it_acc_ap-comp_code = bdc_source-col_a. " Company Code
    it_acc_ap-item_text = bdc_source-col_o. " Line Item Text
    APPEND it_acc_ap.
    * Currancy
    REFRESH it_curr_amt.
    it_curr_amt-itemno_acc = '1'. " Invoice Number
    it_curr_amt-curr_type = '00'.
    it_curr_amt-currency = bdc_source-col_g. " Currancy
    it_curr_amt-amt_doccur = conv_s_amt. " Line Item Amount
    APPEND it_curr_amt.
    it_curr_amt-itemno_acc = '2'. " Invoice Number
    it_curr_amt-curr_type = '00'.
    it_curr_amt-currency = bdc_source-col_g. " Currancy
    it_curr_amt-amt_doccur = conv_s_amt * -1. " Line Item Amount
    APPEND it_curr_amt.
    REFRESH it_return.
    * Do the post to GL Account and AP
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
    EXPORTING
    documentheader = it_doc_header
    IMPORTING
    obj_type = obj_type
    obj_key = obj_key
    obj_sys = obj_sys
    TABLES
    accountgl = it_acc_gl
    currencyamount = it_curr_amt
    accountpayable = it_acc_ap
    return = it_return.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    wait = 'X'.
    * Check for any errors
    loop_cnt = 0.
    LOOP AT it_return.
    IF it_return-type = 'E'.
    bdc_out-code = 'E'.
    error_count = error_count + 1.
    ELSE.
    bdc_out-code = 'S'.
    ENDIF.
    loop_cnt = loop_cnt + 1.
    IF loop_cnt = 1.
    bdc_out-mesg1 = it_return-message.
    ELSE.
    IF loop_cnt = 2.
    bdc_out-mesg2 = it_return-message.
    ENDIF.
    ENDIF.
    ENDLOOP.
    APPEND bdc_out.
    cur_line = cur_line + 1.
    ENDLOOP. 

  • Changing controlling area from single company code to cross company code

    Hi,
    Due to my client requirement, in the middle of the year, we need to change the controlling area from being same as company code to cross company code controlling area. Although the currency is same. We are going to create a new company code. Is the changing controlling area settings possible to do? what are the precautions and changes need to be taken?
    One more question, we need to change the company code when the new company code is created in the system in Cost Center Masters in the middle of the year. Is this possible after changing controlling area from single company code to cross company code. Right now company code is not appearing in the cost center master.
    Thanks & Regards,
    Saidarao

    Hi,
          If both companies having transaction data its not possible,Normally before defining Organisational Strucutre only we have to deside both companies is assigning same controlling are or have to maitain separately for this we have to compare the Fiscal year,Operating chart of accounts ,if both having same then we will assign both the company codes to one controlling area if these two companies having different currencies also its not a problem.When we creating Controlling Area we have to choose option of controlling area as same company code (if one company code one controlling Area) for example if you assigning two companies then we have to use cross company code cost accounting.If u need any further information let me know.
    Regards,
    Satya

  • Copy  company code to new company code

    Dear Experts,
    Please guide me what are all possibilities an implication,  
    1. if i copied from one existing company to new company code,  what are all  it will copy from source to traget?
    2.  it will copy configuration also ?
    3.my old company we have many plant in new plant that are all i don't need  all only  few i need.
    Please guide me
    Regards
    Chandu

    Here is the list you can choose from as per your requirement.
    FICO Config - GL     OX15     Define Internal Trading partner
    FICO Config - GL     EC01 or OX02     Copy company code / Company code Setup
    FICO Config - AP     OBBG     Assign Country to Tax Calculation Procedure
    FICO Config - GL     OX16     Assign company code to Company /Internal Trading Parnter
    FICO Config - GL     OX08     Maintain Purchase Organisation
    FICO Config - GL     OX01     Assign Purchase Organisation to Company Code
    FICO Config - GL     OB62     Assign Company code to chart of Accounts
    FICO Config - GL     OB37     Assign company code to Fiscal year variant
    FICO Config - GL     OBBP      Assign posting period Variant to Company Code
    FICO Config - GL     OBA4     FI Tolerance Group for User
    FICO Config - GL     OB72     Create Cross-System Company Codes
    FICO Config - GL     OBV7     Assign Cross-System Company Code to Chart of Accounts
    FICO Config - GL     OBB5     Assign Company Code to Cross-System Company Code
    FICO Config - AP AR     OBA3     Define Tolerance (Customer or Vendor)
    FICO Config - GL     OB57     Assign User Tolerance Group
    FICO Config - GL     OBY6      Company Code Global Parameters
    FICO Config - CO     OX19     Assign Company Code to Controlling Area
    FICO Config - GL     OBYA     Inter Company code clearing
    FICO Config - GL     SPRO or SM30 - V_T001A     Define additional currency for lead ledger
    FICO Config - GL          Check if Non-lead ledger is to be maintained if yes maintain it
    FICO Config - GL     SPRO or SM30 - V_FAGL_T882G     Define setting for Non-lead ledger
    FICO Config -AP     OBCL     Assign Tax Codes for Non-Taxable Transactions
    FICO Config -AP     SPRO or SM30 - V_T001_EXT     Enable EWT for the country to enable cross company posting
    FICO Config - AP     SPRO or SM30 - V_T001WT     Assign Withholding Tax Types to Company Codes
    FICO Config -AP     OMKN     Assignment of Tax Indicator to Plant
    FICO Config - GL     OB53     Retained earning account should have auto-post in GL master
    FICO Config - GL     OB28      Validation
    FICO Config - GL     OBBH or GGB1     Substitution
    Master Data     FS00 or FS15     Extend all GL accounts including cost element to new company code
    Master Data     KA01     Cost Element
    Master Data     OKEN     Addition of cost center/Cost Center Group in Standard Hierarchy
    Master Data     KCH2     Addition of Profit Center Group/Profit Center in Standard Hierarchy
    Master Data     XK01      Create/Extend Vendor Code to new Company Code
    Master Data     FD15 or FD01      Create/Extend Customer Code to new Company Code

  • Transaction code to find return code for transport request

    Hi,
    I want to see  the return code for transport requests after importing to QAS from DEV. What is the transaction code to find return code and can you explain in brief.
    Thx,
    Vasu

    you can check it out in STMS
    wht you can do is ,,
    Run Tcode STMS > Overview imports (F5) > you will find all import queues > then click on the import queue in which u want to see the status of transport (DEV , QAS , PRD )
    > then find out the transport no > click on that > then click on logs or press ( ctrl + f4)
    Return code
    Meaning
    0000
    Transport performed without errors
    0004
    Warnings were issued. All objects were transported successfully. There were special actions for individual objects that may not have been intentional, for example, a warning is issued during the export if the request contains an object deletion.
    Read the warnings.
    0008
    Individual objects could not be transported successfully. You must analyze and correct the errors. Examples of import errors: Original object was not overwritten, Repaired object was not overwritten
    0012 or higher
    A critical error has occurred, probably not caused by the contents of the request. You must inform your system administrator.
    http://help.sap.com/saphelp_nw70/helpdata/en/57/38e26c4eb711d182bf0000e829fbfe/content.htm
    Hope this information will help you ,,
    Cheers
    dEE

  • Copy all confiq from one company code to another company code .

    Hi Friends,
    I have created a Company code AAAA, and another company code BBBB in the same chart of acounts.
    I have configured all the FICO settings for company code AAAA only.
    My questions is : can i extend  or copy all the confiq to company code BBBB , bcs if i config all the same settings to company code BBBB, it is a time consuming job. 
    Is ther any short cut to copy all the settings from AAAA  to company code BBBB.
    Regards
    Jay

    hi
    use the trasaction code EC01..
                   or
    enterprise structure ..financial accounting..definitions...copy company code
    then go to the menu and click the organisational objects and click on the copy organisational objects..
    then give from which company code to which company code u want to copy
    if u want to use same currency ..say yes
    if  want  to  copy the gl accounts created in the AAAA.. then..    yes.....click on yes..
    then u get it is copied..
    change the description of that company code
    thanks
    vera

  • Employee data migration from one company code to another company code

    Hi Experts,
    Can some throw some light on how can we migrate employee master data from one company code to another company code in the same client and different clients. what are the other areas we need to take care  during migration like interfaces etc.,.
    secondly can we copy part of org structure or total org structcture to new org plan. if we need to create new org structure which interface is advisable and why?
    i request experts opinions on this.
    thanks in advance
    vara prasad.

    Hi have to repeat the previous Michael's post:
    <b>What made you post this question in this thread?</b>
    Please read the forum guidlines:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/fe6cf0c7-0501-0010-dda5-f3a89106ee84

  • Sys.webforms.page request manager server error exception:An unknown error occured while processing the request on server. The status code returned from the server was:0

    sys.webforms.page request manager server error exception:An unknown error occured while processing the request on server. The status code returned from the server was:0 We got this response(In firebug console) when we try to click on link (after leave webpage for 3 minuts ideal) which is AJAX based. Please reply ASAP because its urgent.

    Hi SP,
    Please check if the following web config appSettins value settings from SSRS server could fix the issue (Note, back up your original web config file before any modification).
    http://stackoverflow.com/questions/10911610/ssrs-webpage-error-status-code-500
    http://srinivasbn.blogspot.in/2013/09/syswebformspagerequestmanagerservererro.html
    http://connect.microsoft.com/SQLServer/feedback/details/782155/ssrs-2012-failed-with-win32-error-0x03e3
    If you have more questions about the SSRS error logs related to this issue, you can post in the SSRS forum for a better assistance with more experts.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlreportingservices
    Thanks
    We are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Company Code and Tax company

    Hi Experts,
                 Help me to define what's the difference between the company code and a tax company. Do we have any integration between company code and tax company. I have a scenario with a client where they have only one company code and asking me to define multiple tax companies so that the can generate the W'2 seperately based on the tax company. My concern in this was when we run the tax reporter it will look for the temse files so if we define multiple tax companies with one company code will it effect us any way when we do the w'2 from the tax reporter at the year end.
    Any help is appreciated
    Thanks in advance
    Regards,
    Raj Aitha

    Hi,
    1) Tax Cos are not assigned directly to co.Code. These are assigned to the Personnel areas (Table V_t5uop).
    2) Tax co.is assigned to a distinct Employer Identification Number (EIN) and is mapped to a BSI tax company for tax calculation purposes.
    3) You may also want to check feature UTXRP & UTXTM based on your requirement & business process.
    Hope this helps.
    Sarika

  • Company with 2 paying company codes

    We have a requirement to have company A paid by company B's bank account for the majority of AP payment methods: BACS, Cheques etc.That works.
    But company A also has it's own bank account and wishes to pay one payment type from that account.
    Although I have sent up this payment method for company B, it still want to pay via F110 from the company B's bank account.
    Has anyone been able to to configure a company with 2 paying company bank accounts?

    I am not sure if you have understood the requirements
    Company code B all payment methods is paid by company code B and B's bank account
    Company code A all payment methods except one paid by company code B ans B'sbank account
    New payment method only for company code A to be paid from company code A's bank account

  • Post down payment with different currency from request with F-48

    Hi all,
    I have a problem when I try to post a vendor down payment with the transaction F-48. The down payment request currency is EUR but I want to do the payment with USD. If I put in the field Currency/Rate USD the transaction F-48 show the message u201CNo suitable down payment request existu201D, but if I put the currency EUR the down payment request appears but I just can post it with EUR.
    Is it possible to select the down payment request in EUR and post it with USD using the F-48 transaction?
    Best regards,
    Miguel

    Hello,
    I have the same challange like Miguel in the original thread:
    "Is it possible to select the down payment request in EUR and post it with USD using the F-48 transaction?"
    Please let me know how to manage this case in SAP.
    Kind regards
    Zarko

  • Same vendor code for multiple company codes

    Can we have same vendor code for two different company codes ?

    Yes u can use same code of vendor in different company code
    only u will have to extend this vendor code to other company code in xk01
    this is possible as number range is set on vendoe Account group
    and same vendoe code and be used in 2 or many different co codes with different company code data
    hope this helps
    Edited by: Umakant Bhangale on Oct 11, 2010 5:35 PM

  • How to activate Compny code validation ( cross company code)

    *Hi ,*
    *We migrated classic GL to New GL before one month Now*
    *I am rollout new company code, after completed all configuration I found uncopmplit  configuration of company code validation is not active in  controlling area config ( Transaction Code- OKKP) , which is related to cross company code ( Indicator for company code validation )*
    *can anybody provide solution to activate company code validation*
    Thank ,
    Jeetendra

    Hi ,
    I want to activate company code validation for cross company code still it is inactive
    without  activation I can not use cross company code for costing
    Edited by: jitu konde on Jun 15, 2011 9:38 AM

  • Transfer Customer Master records from one company code to another company.

    hi ,
        working on a rollout project ,
    needed to transfer Customer Master records from one company code to another company code.
    is there any sap standard BDC/T-code as in case of Vendor Master FK15,Fk16(T-CODE) .
    thanks in advance.
    rahul
    Edited by: RAHUL SINGH on Jul 22, 2009 9:05 AM

    Hi,
    I think you should ask this question in functional consultant forum.
    Thanks,

  • HT201209 I bought a gift card from japan and when i enter the code it says the code must be redeemed in the japanese storefront

    I bought a gift card from japan and when i enter the code it says the code must be redeemed in the japanese storefront

    If your iTunes Store account is for another country, you can't redeem a card from another country even if you are currently present in that country. You would need to either move your existing account to the Netherlands or set up a new account in the Dutch iTunes Store, either of which would require you to also have a valid Dutch mailing address. Unless you're going to be in the Netherlands for quite a while, I would suggest you just give or sell that iTunes card to someone who lives in the Netherlands.
    Regards.

Maybe you are looking for