Consignment not possible for company code

Hai,
When i try to create a consignment P.O ,it is throwing error as " consignment not possible for company code".
What is the solution?
Thanks

Jürgen L. wrote:
>
I had removed the vendor against my plant in the table T001W as well as in vendor master purchasing data..
> can you elaborate this a bit? you removed it 2 times?
It is like this.
First i checked in vendor master in purchase data.
here No assignment of plant to the vendor.
Now i tried to create to a consignment p.o, it is throwing the error.
Second,
I checked in table T001W ,found and removed the assignment of vendor to plant.
Now i tried to create a  consignment p.o, again it is throwing the error.
can you help me out?
thanks

Similar Messages

  • SAP Error "Trader does not exist for company code"

    Good Day,
    In SAP, we have multiple users in the role of trader. However, for one user, he keeps getting the message "Trade <name> does not exist for company code <code>" when he hits enter on the first screen of transaction TX01.
    We have copied the profile of another user who is not getting that error, but still he keeps getting the error. What else should we check apart from the profile?
    Thanks
    VC

    Thanks all, but i solved the problem.

  • Screen layout is not defined for company code ZVVV

    Hi
    I am creating CUSTOMER MASTER in XD01
    I am getting an error like "Screen layout is not defined for company code ZVVV"
    Can any one help?

    hi,
    this is to inform you that,
    check whether
    in SPRO - fin Accounting New - accounts receivable and accounts payable - customer accounts - master data - preparations for creating master data - Define Screen Layout per Company Code (Customers)
    please check whether is *  = Default field status.
    please check and update.
    balajia

  • Credit control area CCAJ not permitted for company code

    Hi All,
    We have One company code, under that we have two credit Control Areas.
    In the Config settings, we have maintained for (Assining the compnay code to Credit Control Area) to one CCA.
    Now, it is while creating the Invoice for another CCA. It is throwing the below error.
    Credit control area CCAJ not permitted for company code 1301
    Message no. F4746
    Please guide.
    Regards
    Vinay

    Hi
    Check whether u have maintained the combination in SPRO-Financial Accounting-A/c Rec and Pay-Credit Mgmt-Assign permitted Credit control areas to company code.
    regards
    vamsi Javaji

  • Credit control area CCAJ not permitted for company code 1301

    Hi All,
    We have One company code, under that we have two credit Control Areas.
    In the Config settings, we have maintained for (Assining the compnay code to Credit Control Area) to one CCA.
    Now, it is while creating the Invoice for another CCA. It is throwing the below error.
    Credit control area CCAJ not permitted for company code 1301
    Message no. F4746
    Please guide.
    Regards
    Vinay

    Hi Vinay,
                   To do this you have to go to the path SPROFINANCIAL ACCOUNTING-ACCOUNTS RECIEVABLES/PAYBLES-CREDIT MANAGEMENT-CREDIT CONTROL ACCOUNTASSIGN PERMITTED CONTROL AREAS TO COMPANY CODE.  In this activity you can enter additional credit control areas which are allowed for each company code, in addition to this default credit control area.
    You can enter these credit control areas in the line item or let the system determine them from the order data, customer data, or a user exit in the order. This way you can use the control area as a flexible internal control instrument and data which has to be posted in the same company code for accounting reasons no longer has to be managed in the same control area.
    Regards
    Ram Pedarla

  • Vendor not permitted for company code

    Dear experts,
    While raising the PO in srm I am getting the error message as 'Vendor not permitted for company code'.
    When I checked vendor details in srm and back end, vendor is exist for particular company code and purchasing ord combination. 
    What might be the reason for this error?? can you please share your thoughts about this??

    Hi. Check all the blocking and deletion flags in both systems, especially looking at the "central block" and "archiving" flags in transaction BP in SRM.
    Regards,
    Dave.

  • Number group not maintain for company code

    Hi goodmorning,
    I am doing withholding tax. after completion of configuration setting i execute remittance challana at that time system showing  NUMBER GROUP NOT MAINTAIN FOR COMPANYCODE 1001 SECTION IBT100I 194I AND BUSINESS PLACE.
    company code 1001,
    Section code 194i,
    Business place 100i
    But  i maintain number group , number range and assign nuber ranges to number grop
    please give reply
    regards
    suresh

    pls number range and group assign in sap stadared group.

  • G/L account 195800 does not exist for company code 7000

    Here is my code to create a customer.
    When I run it I get the above mentioned error.
    Ive checked the SKB1 table and these 2 entries exist. Infact i even went to the corresponding function module SD_CUSTOMER_CHECK_1 which performs the said validation.
    There is a select query on line 919 which does this. However that query is not finding the value in the table.
    Im working on SAP 4.7 system.
    Please help.
    Thanks
    REPORT  Z_SAPSWITCH_CUSTOMER_MASTER             .
    DATA:GS_RETURN LIKE BAPIRETURN1,
         GS_CUSTOMERNO LIKE BAPIKNA103-CUSTOMER,
         GS_BAPIKNA101_1 LIKE BAPIKNA101_1,
         GS_BAPIKNA105 LIKE BAPIKNA105,
         GS_BAPIKNA106 LIKE BAPIKNA106,
         GS_BAPIKNA102 LIKE BAPIKNA102.
         GS_BAPIKNA105-CONTROL_ACCOUNT = 195800.
         GS_BAPIKNA105-PMNTTRMS = '0001'.
         GS_BAPIKNA105-SHIP_COND = '01'.
         GS_BAPIKNA105-DELYG_PLNT = 7000.
         GS_BAPIKNA105-PART_DLV = '9'.
         GS_BAPIKNA101_1-FIRSTNAME = 'DEXTER'.
         GS_BAPIKNA101_1-LASTNAME = 'BHAGAT'.
         GS_BAPIKNA101_1-LANGU_P = 'I'.
         GS_BAPIKNA101_1-CURRENCY = 'INR'.
         GS_BAPIKNA101_1-COUNTRY = 'AD'.
         GS_BAPIKNA101_1-POSTL_COD1 = '400053'.
         GS_BAPIKNA101_1-CITY = 'MUMBAI'.
         GS_BAPIKNA102-SALESORG = '7003'.
         GS_BAPIKNA102-DISTR_CHAN = '07'.
         GS_BAPIKNA102-DIVISION = 'D7'.
         GS_BAPIKNA102-REF_CUSTMR = '0000000052'.
        CALL FUNCTION 'BAPI_CUSTOMER_CREATEFROMDATA1'
        EXPORTING
        PI_PERSONALDATA = GS_BAPIKNA101_1
        PI_OPT_PERSONALDATA = GS_BAPIKNA105
        PI_COPYREFERENCE = GS_BAPIKNA102
        IMPORTING
        CUSTOMERNO = GS_CUSTOMERNO
        RETURN = GS_RETURN.
    *Check the return table.
    IF gS_RETURN-type = 'S'.
    *AND gS_RETURN-number = '311'.
    *     Success message.
    WRITE: GS_RETURN-message.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    ELSEIF GS_RETURN-type = 'E' OR
    GS_RETURN-type = 'A'.
    *     Error / Abend message
    WRITE: / 'Error Message:', GS_RETURN-message.
    CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
    ENDIF.

    Hi,
    Change this piece of code. It should work fine.
    GS_BAPIKNA105-CONTROL_ACCOUNT = 195800.
    GS_BAPIKNA105-CONTROL_ACCOUNT = '195800'.
    or else.
    GS_BAPIKNA105-CONTROL_ACCOUNT = '0000195800'.
    GS_BAPIKNA105-PMNTTRMS = '0001'.
    GS_BAPIKNA105-SHIP_COND = '01'.
    GS_BAPIKNA105-DELYG_PLNT = 7000.
    GS_BAPIKNA105-PART_DLV = '9'.
    Thanks,
    Vinod.

  • While creating sales order got error version "0" is not defined for company

    Hi,
    i got a error  while creating a sales order(va01) ,i got an error
    saying that "version 0(zero) is not defined for company code
    if there is any solution please provide....
    Thanks&regards
    kishore kumar

    Go to TCODE:OKEQ
    1)select version 0 here and ext select settings for each fiscal year under controlling area settings
    2)give your controlling area XXXX and version 0 then enter
    3)select new entries maintain data for new year 2008.
    Hope this will give u
    Sri

  • Posting is not possible for the specified company code.

    Hi SRM Gurus,
      We have a four company codes in our org.structure and if we try to post manual invoice for a particular company code with its currency, we are getting this error :
    "Posting is not possible for the specified company code "
    We have all company codes defined and inherited for the particular user in BUK and we get all the company codes in the F4 help of this user in BBPIV02 -->Basic data.
    Any suggestions pl.
    I doubt this particular Cocode is deactivated for invoice posting in backend. Is it possible ?
    Kindly suggest.
    Reg.,
    Sridhar.

    Hi
    Which SRM version are you using ?
    Are you getting this error for a praticular company code only or for all the comapny codes ?
    <b>Please read this -></b>
    Since you are trying to create Invoice with PO did you check the Vendor Root there is a attribute for company code. Please maintain the same, if not maintained.
    Refer the link below for details.
    Re: Company code for system missing in user attributes
    <u>Other related links -></u>
    Try to change the chart of acct info in OBY6 for a company code that was copied from SAP template, there is no Financial posting or any other posting in this company code.
    Re: Posting Period Error in Confirmation
    Hope this will help.
    Regards
    - Atul

  • Goods receipt not possible for delivery 800015869: error code 1

    Dear friends,
    I am doing MIGO-GR for outbound delivery, but getting error once inputting outbound delivery no.
    Goods receipt not possible for delivery 800015869: error code 1
    Message no. M7865
    Diagnosis
    The goods receipt for the delivery cannot be posted.
    The error according to the error code:
    1. The delivery does not exist.
    2. The delivery type is unknown.
    3. The delivery is not goods issue posted.
    4. There are no delivery items.
    5. The receiving plant could not be determined.
    6. The delivery items have already been goods receipt posted or contain zero quantities.
    7. Goods receipt(effect)movement type to goods issue movement type could not be determined.
    8. It is not currently possible to block the delivery.
    Procedure
    Error code 1      : Check your entry.
    Error code 2,3,4,6: Check the delivery and its document flow.
    Error code 5      : The delivery must be related to a purchase order or
                        the customer must be a retail business.
    Error code 7      : Check the settins for your movement types.
    Any poniters to check the setting in PO or delivery or any setting in SPRO.
    Regards
    Ashutosh

    Hi Anupam,
    That is the requirement of my scenario
    That is happening in intercompany posting.
    I am explaining to you.
    say total stock for article AR is 1000 ( In DC --A it is 500 and in store B it is 500)
    I have two company codes X and Y
    One DC (A) belongs to X and second store (B) belongs to Y.
    I have stock available for say article ( am working here in IS Retail  instead of material ) in both DC --A and Store --B.
    Now I have created PO thru replenishment planning WRP1 , now in PO supplying plant is DC.
    Now I did delivery thru VL10B and then picking and then PGI.
    Now my stock is reduced in DC by PO quantity created.( let us assume it is 100)
    So now total stock in DC=400
    Now this stock is in transit we can check thru MB5T. so total stock in transit = 100
    Now I have to do GR against delivery , if I will do GR for 100 nos , there will be no stock in transit
    and stock of receivibg store (B) will increase by 100 nos.
    But I am not able to do GR against delivery so I did GR against PO for say 50 nos. In this case stock in store is increase by 50 nos.
    But there is another stock in transit available=50
    Now why GR is not happening against delivery but it is happening against PO???
    Any pointers

  • Fiscal year change not yet made for company code

    1. We have opened new company and enter data from FY 2009. All posting has happened properly, but when we are trying to see report S_ALR_87011963 we are facing following problem.
    We have already check everything on SDN and followed, but our problem still exists.
    Table T093C is showing as FY 2009 year and also same in OB52, OAAQ is showing 2008 as closed year. We have run AJRW for 2009 and it runs successfully.
      error -
    Fiscal year change not yet made for company code ABCD
    Message no. AB059
    Diagnosis
    You have not yet carried out a fiscal year change for company code ABCD, although the current system date is in the new fiscal year.
    Procedure
    Carry out the fiscal year change for company code ABCD.
    2. We are running AFAB in any mode we get following error.
    Only an unplanned posting run is possible in this fiscal year.
    Message no. AA693
    Diagnosis
    You have already posted in fiscal years that come after 2009.  This means that you can only post in the last posting period 012 in fiscal year 2009. Or you can post to a special period, if one is set up. Since you have not posted yet in this fiscal year, you must specify that the depreciation posting run is unplanned.
    Procedure
    Please check the fiscal year entered.  If you are certain you want to post to fiscal year 012, you must start the depreciation posting run in the last posting period (or in the special period).  Be sure to indicate that this posting run is unplanned, since it falls outside of the normal posting cycle.

    Hi Experts,
    I am not making a new post regarding this but I hope you can help me answer.
    I am experiencing the same issue as the one posted originally and here are my data.
    1. Running the same asset report
    2. System is currently in FY 2013
    3. OAAQ shows FY 2012
    4. SE16N > T03C shows FY2013
    I have tried running AJRW again but I am getting the same error in the asset report. I hope someone out there can help.
    Thanks,
    Josef

  • Accounting error : Posting not possible for profit center XYZ In company Z

    HI folks,
    Do any of you have come accross this error in passing of billing doc to accounting " Posting not possible for profit center 153 in company code Z134. Kindly let me know what could be the possiblity and the solutions
    Thanks,
    Kamal

    Hi,
    Might just be better off to take the guidance from your FI guys. Pl. check if all the assignments are made correctly, like the material is linked with a profit center and this profit center to a cost center and finally to the controlling area. Also check if the currency of the profit center is the same as the controlling area currency.
    Regards
    Sadhu Kishore

  • Goods receipt not possible for   delivery 80016425: error code 4   in MIGO

    Hi friends,
    I created STO from ME21N tr.code(document type:UB), then I created outbound delivery from VL10B tr.code based on STO.
    After that, goods issue is made by vl02n.Lastly , when I want to make  a goods receipt based on outbound delivery from MIGO
    (with mvmt type:101),it gives me error about"Goods receipt not possible for   delivery 80016425: error code 4   in MIGO tr.code" .
    Take your opinions

    Hi,
    Error 4 indicates there is/are no delivery item/items.
    Check following options:
    option-1--->Check material number extended to the both plants with storage locations
    option-2--->Check the material received already WRT  the delivery
    option-3---> Check confirmation control key in  material that needed in creation of an inbound delivery to have GR process
    option-4--->Check The latest goods receipt date in STO
    option-5--->Check(done any setting) if any billing to be done after PGI and then can do GR WRT delivery
    Regards,
    Biju K

  • Goods receipt not possible for delivery 800001597: error code 4

    Hi,
    When doing goods recipt for outbound delivery in MIGO, I am getting the below message:
    Goods receipt not possible for delivery 800001597: error code 4
    When going in details of error messgae:
    For error 4 : Check the delivery and its document .
    Document flow is as below:
    Step 1. PO Created
            2. Delivery created with ref to PO
            3.Picking
            4. Shipment Created
            5. Goods Issue complete.
    Now what i have to check.
    Thanks in advance.
    Regards

    Check the link Re: MIGO
    Also check OSS Note 458770 - GR for outbound delivery shipping units with batch split and Note 314765 - M7865 during GR f. delivery w/ default values 102 if it applies to your SAP version.
    Regards

Maybe you are looking for

  • Integrating WebLogic Server with CA SiteMinder Web Agent R6

    Hi I have searched on the topic of integrating WebLogic Server with the CA SiteMinder Web Agent R6 to provide single sign on services, and have been unable to find anything. Does anyone have any experience with this that could provide some tips, or c

  • 403 Error when accessing the server

    Hi, I have successfully installed the ABAP WebAS Preview. All the processes start but when I try to access the server on port 8000 or 8100, I got this error message : Service cannot be reached What has happened? URL http://192.168.0.2:8000/ call was

  • Is There a way to Access password to Account you cannot remember? or to somehow get information from Apple on my old Account?

    We have an old ipod Classic. It has music on it we would like to download. The problem we have, is I have a NEW apple account that does not recognize the account the Ipod classic has on it. Is there a way to A. Somehow get the account from Apple? B.

  • Bags for 17" MBP?

    Hi, I was recently had to give up my Tumi bag that I had been using for my 17" MBP (gift from family...they didn't have a laptop, didn't need it...now they bought a laptop, threw a sh*t fit to get it back), so I'm in the market for a new laptop bag.

  • Helper tables

    Hi gurus, What are helper tables in OBIEE..is it same as Bridge tables?please explain me and in which case we use this helper tables?