PO amendment after creating / adding in system

Hello Experts,
I have noticed a purchase order whose Vendor chagned after creation. I have tested Vendor BP can't be changed in PO after adding it in system.
There is a case in which Vendor has been changed. How I found out is : We saw a printout from file which shows another Vendor and in the system same PO number shows some different Vendor.
Help Required,
Thanks & Regards,

Hi Nazir,
You cannot amend the PO once it is created. so there is no ways to change the Vendor name after the posting is done. As a workaround what you can do is maintain the PO as draft till the time it is placed to the actual vendor.
Regards,
Reno

Similar Messages

  • Create sap-source system in netweaver

    Hello,
    i want to create a R/3-(4.6c)-source system in my Netweaver-BI (2004s), but I have problems with the connection.
    For the connection i created in the Netweaver a new destination and a user "User_A" with the profile "S_BI-WX_RFC / Business Information Warehouse: RFC-User in Warehouse.
    In the R/3 I created a user "User_B" with the profile "S_BI-WX_RFC / Business Information Warehouse, RFC-User Extraction"
    After creating the Source-System in the AWB with the destination and the 2 Users, I have to Log-On as an administrator in the R/3. After Log-In comes the message "User already exists in source system. Only continue if Profile and Password Are Correct."
    Then I have to create the Destination in the R/3. There I fill in the "Logon"-Part my "User_A", but then I get the alert:
    RFC user logon failed. Check the connection. Message no. R3 077.
    Diagnosis: You tried to logon using the RFC user. This action failed.
    System response: Name or Password not correct
    But I'm sure that I made no mistake with the password.
    Has anyone an idea what I did wrong?
    Thanks
    Malte

    Hi,
    Generally we maintain the Destinations and userids in both systems first, and then create the source sytem in AWB of BIW.
    Have you created the Logical system names in both the systems ?
    Have assigned the client to the logical system name to client in both systems?
    Have you mentioned correct client in the destinations?
    With rgds,
    Anil Kumar Sharma .P

  • No PO Created in backend system after Bid is accepted

    We are on SRM 4.0. using Classic Scenario
    We can create a bid invitation in SRM and we have used the BADI - BBP_DETERMINE_LOGSYS to indicate to the system to create a purchase order in the backend system after the bid is accepted. We keep getting the following error in SM21: Purchase orders cannot be created without IPC pricing
    Did you have to turn on the IPC in order to create the purchase order in R/3? Also, if you have used the BBP_DETEMINE_LOGSYS Badi and have example code that might be helpful as well.
    If anyone has some useful BID INVITATION configuration document or tips that will be appreciated. email id is [email protected]
    Thanks,
    Ashwani

    Hi,
    The BADI  is used in case of Backend contract creation.Please read the documentaion of the BADI carefully.
    You can use the Business Add-In BBP_DETERMINE_LOGSYS to define your own
    criteria for determining the backend system / company code. You use thi
    BAdI to determine the source system for
    o   Shopping cart items
        In the standard system, the backend system is determined using the
        product category Define Backend Systems. The backend System is
        placed in the field ITEM_DATA-LOGICAL_SYSTEM. Then the system calls
        the Business Add-In BBP_DETERMINE_LOGSYS.
        The company code is put in the field ITEM_DATA-BC_CO_CODE. Then the
        system calls the Business Add-In BBP_DETERMINE_LOGSYS.
    o   Contracts
        In the standard system, the system creates contracts locally from
        Sourcing and SAP Bidding Engine You can use this BAdI to determine
        backend system.
    Example
    Shopping Cart:
    Backend system A is determined for product category OFFICEMATERIAL. You
    also want to consider the vendor and purchasing organization fields
    during determination of the backend system. The purchase order is to be
    created in backend system B for the vendor OFFICE1 and purchasing
    organization 0001. You overwrite the field ITEM_DATA-LOGICAL_SYSTEM wit
    B.
    Contract:
    The local system used by the standard system to create contracts is
    XYZ4711. In the field CV_LOGSYS, you enter the logical system ABC0815
    that links to a backend system. In this way, contracts are created in
    the backend system.
    Sample codes for the BADI:
    method IF_EX_BBP_DETERMINE_LOGSYS~DETERMINE_LOGSYS.
    data: w_acct_data type enriched_acct_data.
    data: w_acct_icom type BBP_PDS_ACC_ICOM.
    data: w_et_messages type BBP_TMESSAGES_BADI.
    data: re_obj(40).
    data: imkey(8).
    field-symbols: <waItem> type bbp_oci_enritem.
    field-symbols: <waAcct> type bbp_oci_enracct.
    field-symbols: <f1> type any.
    if not acct_data[] is initial.
    loop at item_data assigning <waItem>.
    loop at acct_data assigning <waAcct> where line = <waitem>-line.
    check <waAcct>-acc_cat = 'RE'.
    if not <waAcct>-acc_str is initial.
    CALL FUNCTION 'Z_RE_ACCT_ASSGN'
    EXPORTING
    ACC_STR = <waAcct>-ACC_STR
    BUKRS = <waItem>-BE_CO_CODE
    IMPORTING
    RE_OBJ = RE_OBJ
    IMKEY = IMKEY
    TABLES
    BBP_RETURN = w_et_messages.
    endif.
    if not imkey is initial and w_et_messages[] is initial.
    move imkey to <waAcct>-rl_esk_key.
    move re_obj to <waAcct>-acc_str.
    modify acct_data from <waAcct>.
    endif.
    endloop.
    endloop.
    endif.
    endmethod.
    OR
    method IF_EX_BBP_DETERMINE_LOGSYS~DETERMINE_LOGSYS.
    data: ztprod  type zprod1.
    data result(4).
    data tline TYPE LINE OF bbpt_detlogsys_item.
    loop at item_data into tline.
       case sy-uname.
          when 'BUYER3'.
             if tline-product eq '69E2D3C8AF4B5C4CBDCC73A50C58EFA2' or
               tline-product eq '6BB856ADA25D584FA0B5A2FDCDA27766' or
               tline-product eq 'F31AD68E8EDCE646A9C7ECC4F24CE464' or
               tline-product eq 'ABC0320E1A37E743B75406DF0B7C53BF' or
               tline-product eq '3C0665006B2D2A43B3A1CC74B560E8A9' or
               tline-product eq '8F97635441496647A69CD021A5FFF4D2'.
               tline-be_co_code = '1000'.
               tline-logical_system = 'F47CLNT800'.
               tline-BE_PUR_ORG = 'O 50000660'.
               tline-BE_PUR_GROUP = 'O 50000662'.
               modify item_data from tline.
             endif.
          when others.
               select single * from zprod1 into ztprod where product eq tline-product.
               if sy-subrc eq 0.
                 tline-be_co_code = '3000'.
                 tline-logical_system = 'F47CLNT800'.
                 modify item_data from tline.
               elseif tline-product is initial.
                 tline-be_co_code = '3000'.
                 tline-logical_system = 'F47CLNT800'.
                 tline-BE_PUR_ORG = 'O 50000612'.
                 tline-BE_PUR_GROUP = 'O 50000614'.
                 modify item_data from tline.
               endif.
       endcase.
    endloop.
    endmethod.
    Also if you have activated  "EXTENDED CLASSIC SCENARIO"( SPRO>Supplier Relationship Management>SRM Server>Cross-Application Basic Settings>Activate Extended Classic Scenario),then IPC is mandatory for ECS .
    BR,
    Disha.
    Do reward points for useful answers.

  • System not allow to change PR  QTY after create PO

    Dear Experts,
    I have one scenario after create RFQ & PO no body can change the PR qty.
    How can i restrict please guide me.
    Regards
    Aamir

    Use BADI :ME_PROCESS_REQ_CUST
    Here with the help of the ABAP person write a code like while saving the PR in me52n system will check in the background if there is any entry against filed EBAN-EBELN...if found then system will throw a customized error.
    you can also try out by making message 06-152 as error message.
    Regards,
    Indranil

  • Database tab is not filled in SLD after I create a technical system abap

    Hi guys,
    why is it? what do I have to set up to have this tab filled with valid values?
    Thank you
    Olian

    Hi,
    For technical system of type WebAS ABAP, you do not create it manually in SLD......instead its process is to log into R/3 system and run transaction RZ70 and from this transaction technical details of R/3 system are published to SLD of XI..........this is a basis activity and so you can ask your basis guys to do it for you...........then when it is done, then your Web AS system will be created in technical system in SLD with all the data filled properly.
    Regards,
    Rajeev Gupta

  • EREC: Multipal IDOC are getting created in receiver system for one IDOC

    Hello Experts,
    I ran in to one wearied issue in IDOC creation in Receiver system. I am running PFAL in sender system for only Person but 10 IDOC are getting created in receiver system. I don't know why is this happening.
    This issue started popping up after we ran RBDAPP01-Inbound Processing of IDocs Ready for Transfer. We ran this to change IDOC to 53 status. Now I don't know what went wrong but Perner distribution is behaving
    Appreciate your help.
    Regards,
    Krishna Bidwai
    Losangeles USA.
    818 527 0204.

    Yes, employee is getting created after adding 0003 into the filter, but can u please answer my another question, i.e. PERNR in sender and receiver system should be same.
    So in Receiver system (ECC) do i need to maintain external number range for PERNR?
    Thanks

  • ABAP-Workflow : which way to send email after creating Purchase Order ?

    Hi expert,
    I'm a new workflow so I have not  understood about workflow . Please help me ...
    Today, I have recieved a request from client as below:
       +    SAP system auto send a email to USER B after  creating Purchase Orders by User A.
       *++.  USer B open email and click on the link in his/her email and open new transaction to Release this Purchase Order.*
    Could you please help me how to do that?
    Thank you so much all.

    Hi ,
    Thank you so much for your quick response.
    I found in SAP system  2 workflows:
                WS20000075 : Release of purchase order
                WS11000013 : Complete Purchase Order
    Open  transaction "SWDD" I have added the step  "Send Email" --> Active and Excute  --> enter PO number --> system auto send email to USER B.
    But I want the system auto semd email after clicking SAVE in  transaction"ME21N" , No need enter PO number in SWDD .
    How to integrate between ME21N and Workflow? Could you please helpme step by step or sample to do that.?
    Thank you so much .

  • Problems with creating web service system

    Hello,
    I seem to have made some changes that made my unable to create web service systems for EP or Visual Composer.
    The change I made is in NetWeaver Administration > Configuration > Application Resources > WebServicesFactory, I added the Configuration Property "UseCacheByDefault" with Boolean value = true.
    After this, if I create a web service system in Enterprise Portal, the Connection Tests fail. In Visual Composer when I define a web service system, the error I am getting is: "Connector Factory not found for value WebServicesFactory".
    I have tried to delete the UseCacheByDefault property I added as well as restart the server but I am still getting the error.
    However when I test my web service using the Web Services Navigator, I am not getting any problems. So my guess is the problem lies with the connection factory.
    Can anyone help me with this issue?
    Thanks.

    Hello,
    Since creating WS system in the portal resulted with failed connection test, the issue has nothing to do with VC.
    I'm just guessing, but try to configure proxy in the J2EE engine.
    If that doesn't help I suggest you raise this question in the portal forum.
    Best regards,
    Shay

  • Creating web service system for Visual Composer

    Hello,
    I seem to have made some changes that made my unable to create web service systems for Visual Composer. 
    The change I made is in NetWeaver Administration > Configuration > Application Resources > WebServicesFactory, I added the Configuration Property "UseCacheByDefault" with Boolean value = true. 
    After this, if I create a web service system in Enterprise Portal, the Connection Tests fail.  In Visual Composer when I define a web service system, the error I am getting is: "Connector Factory not found for value WebServicesFactory".
    I have tried to delete the UseCacheByDefault property I added as well as restart the server but I am still getting the error.
    However when I test my web service using the Web Services Navigator, I am not getting any problems.  So my guess is the problem lies with the connection factory.
    Can anyone help me with this issue?
    Thanks.

    Hello,
    Since creating WS system in the portal resulted with failed connection test, the issue has nothing to do with VC.
    I'm just guessing, but try to configure proxy in the J2EE engine.
    If that doesn't help I suggest you raise this question in the portal forum.
    Best regards,
    Shay

  • Bug report: Naming a Bin after creating it with drag'n'drop

    There seems to be a small bug when giving a newly created bin a name after creating it by drag'n'drop of several clips onto the "New Bin" icon. 
    To reproduce:
    Select some clips in your project browser
    Drag them onto the New Bin button
    A new bin is created with the clips in it
    - the bin name for it appears to be selected, and editable - just as if you had created a new empty bin by clicking the New Bin button
    - type in a new name - it accepts the name fine, now press enter.
    - your new name disappears, and *now* you are really in the mode to edit the bin name
    - type your name again, and it works.
    Work around:
    When creating new bins by using drag'n'drop of clips onto the New Bin button, first press enter once to enter into the proper edit mode before giving the bin a new name.
    (is there a better place to file bug reports?)
    Version 6.0.1 (014 (MC: 264587))
    Hardware Overview:
      Model Name:          Mac Pro
      Model Identifier:          MacPro5,1
      Processor Name:          Quad-Core Intel Xeon
      Processor Speed:          2.8 GHz
      Number Of Processors:          1
      Total Number Of Cores:          4
      L2 Cache (per core):          256 KB
      L3 Cache:          8 MB
      Memory:          8 GB
      Processor Interconnect Speed:          4.8 GT/s
      Boot ROM Version:          MP51.007F.B03
      SMC Version (system):          1.39f11
      SMC Version (processor tray):          1.39f11
    OS X 10.6.8

    Er, just answered my question about bug reports by reading the "read this before posting" link above
    But I'll leave this here for the work-around in case anyone else needs it.

  • After creating a new user account, how do I move my files into the new user?

    I have an issue where my 'Desktop/Screensaver' prefs seem to be corrupt somehow. When I click on that icon in System Preferences, it stalls and I get the spinning ball, thus resulting in a force quit. After reading a Mac Format magazine where someone wrote in with a similar issue, they said to trash various prefs (did that and made no difference) and if that didn't work, try creating a New User account (therefore creating brand new system prefs) and move your stuff over.
    Well, I've created the New User account, but I can't figure out how to move/copy my stuff into the user folders. After copying and attempting to move stuff in, I see folders with a red circle with a white line through it (like a 'no entry' sign).
    Any clue as to how this can be done? All I'm trying to do is to reinstate the system prefs so they are not corrupt anymore on my log-in.

    No. Not the main Library folder. Make absolutely sure you are in the Home Library folder and not the main Library folder.
    Your Home Library folder is hidden in Lion. To get to it, in the Finder menu, select GO and hold the option key down. Select Library in the submenu. The Finder window will open in your Home Library. This is where your user prefs are stored.
    Once there, you will see the Preferences folder. Open it up, select all items within it and move them to the trash. You will need to restart in order for the new Finder preferences to be recreated.
    Once you restart, then you will be back to the default preferences to the system and all applications. And yes, it will affect all settings including your Dock, just as logging into a new user. You will have to reset everything there also.
    If you wish to do a selective method, instead of deleting all preferences, try deleting the one associated with your problem. Screen saver problems should be affected by the system preferences, so try deleting this:
    com.apple.systempreferences.plist
    com.apple.systempreferences.plist.lockfile
    Note that when you delete system file preferences, a restart will be required. For applications, just quit the application before trashing preference files.

  • Need help in creating webas abap system

    hi
    new to create jco and techinical system need help
    experts  i have few faqs on creating techinical system plz help me
    i have 4.7ee r/3  and portal 2004s  sp9
    wer can i find these values plz give me navigation
    SID ==  ?
    MESG SEVER PORT ===?
    to add application server
    application host name ==?
    application instance number ==?
    client number ==?
    logical client name ==?
    it is asking to select a software component wat we have to select to finish
    wen i gave some dummy values
    i get an error
    CIM_ERR_ALREADY_EXISTS: Instance already exists: SAP_BCApplicationServer.CreationClassName="SAP_BCApplicationServer",Name="C11.Number.00.HostName.rama"
    is it necessary to have WAS in r/3 to connect to portal plz explain

    i want to use jco
    but for that we need to create a techinical system
    i followed these steps for techinical system
    1 Step
    selected web as abap
    2nd step
    sid = PRD
    installation number== INITIAL
    database host name== super
    3rd step
    message server name = 3600+instance
    i took system number from sap gui(21)
    so i gave 3600+21=3621
    central application sever
    instance number ==21
    next pressed button -->add new logon group
    entered longon group == entered value
    which i found in t-code -smlg
    4th Step
    Add application server
    host == gave r/3 ip 198.168.0.2
    instance==21
    client number = 800
    logical client = left it empty
    5 th step
    selected one componenet and finished
    after this i created the jco
    1st Step general data
    name =test1
    client=800
    2nd step  j2ee cluster
    checked the box
    use local j2ee engine
    3rd step
    selected dictionary meta data
    4 th
    selected the techinical system
    5th
    user name -->sapuser
    pasww-->india
    pressed finish
    now i found the jco in green color
    but i pinged it 
    i got mesg
    ping failed

  • Discrete production process after creating sales order with raw materials

    Dear all,
    I need your support on a specific solution related to discrete production process.
                                After creating a sales order where the materials are marked as raw materials (ROH), with reference to the sales order the production order is created and the store issues the material for assembly process and is sent for assembly of materials. After assembly of the materials the inventory is added to the sales order stock as same as raw material and after PGI the billing is done for raw material only.
    Please let me know the process of raw material to raw material scenario.
    Thanks
    Seshi

    Hi Seshi,
    This question seems to be related to ERP rather than to SAP ME. You'd better post it to ERP-related forum. Please use these instructions to find a proper space.
    Regards,
    Sergiy

  • Need to change status of incident after creating CR

    Hi Experts ,
    I am creating a CR from my incident as folloow up document  from CRMD_ORDER tcode. That is working fine .
    After creating CR i need to change the status of incindent to 'CR created" .
    Means at the time of creating CR i need to change the status of incident .
    1 .Please suggest me where to add code related to update incdent ?
    2 . Can i use ORDER_SAVE badi or any other BADI existed for that ?
    Thanks in advance ,
    Vijay vorsu

    Hi Rajiv ,
    Thnx for quick reply. I am new to CRM .I understood whats to be done.
    I  am following these steps :
    In my CR action profile i am creating a new action called Z_status_change.
    In process type- "permitted process type of action "  i am selecting as ' METHOD CALL" .
    Next i am clicking on "SET PROCESS' .
    Here i am getting problem . When i click on help for on METHOD system is showing existing methods .Here Which method i need to select to change the status .so i thought to create a custom method .
    So i created a BADI Z_STATUS_CHANGE and in attributes of BADI i have given filter type as PPFDFLTVAL .
    I created implementation for this BADI  Z_STATUS_CHANGE_IMP and in attributes in method i have given Z_STATUS_CHANGE .
    But if i search in method in process type of action defination i could not see the method.
    Is the process i am following is right or wrong ?
    If i miss any thing to do pl guide me .
    Thanks in advance ,
    Vijay Vorsu

  • CX_SY_MOVE_CAST_ERROR in SPROXY Class after creating fault messages in PI ?

    Hi All,
    We created a SOAP to Proxy synchronous scenario and everthing works fine.
    Now we have created a fault message in PI and regenerated the proxy in ECC, after regenerating the proxy, if i debug the proxy from service registry, breakpoint gets triggered in proxy class and iam getting an exception "CX_SY_MOVE_CAST_ERROR" at the status bar (but not dump). After executing the proxy class i could get the required response in service registry but with the exception ( Connection IO Exception. Check nested exception for details. (Invalid SOAP Response. Runtime can not find return parameter <(http://hostname.com/soaptoproxy)MT_Soap_Response>.). In MONI i could see this as a successful message. Can anyone tell me reason for this exception both in proxy class and in Service registry ? I also regenerated the proxy class after creating fault message in PI.
    Thanks,
    Sivakumar.C

    Hi,
    Thanks. I have tested in locally in SPROXY and i found that exception occurs in the constructor method of exception class, which was created by adding Fault Messages in PI.  Any Suggestions ? 
    Thanks,
    Sivakumar.C
    Edited by: kumar.sappi on Feb 6, 2012 12:19 PM
    Edited by: kumar.sappi on Feb 6, 2012 1:49 PM

Maybe you are looking for

  • Different between Oracle 8.1.7.0.0 and Oracle 8.1.7.2 ?

    1) Hi all, i have some doubt about the oracle versioning technique. For example, i had installed oracle 8.1.7 release 3 in a SUN Solaris version 8 and the database character set is in UTF-8. Then i select sql : "Select * from product_component_versio

  • How to update adobe player on ipad, how to update adobe player on ipad

    there is a pop up message to update my adobe player, whenever i go on you tube but when i press the icon, it says that i can't have this player on my device. because of this I can't use you tube at all. how should i update my player???????

  • Audio not working in FCP 7 viewer

    I was working on a project on FCP 7 and everything is fine. I stepped away from my computer for a few minutes and now the audio on the viewer doesn't work! The audio on the sequence works fine. But the audio from a clip on the viewer isn't working. C

  • Problems with ipsec on pix 501

    I have been running a 501 for a few years with several site to site vpns with no problems. At first there was 1 vpn and it has slowly grown to 4. They are all the same 501's with the latest software. The first few years were problem free but as more

  • Could not connect to iphone timed out

    I am trying to sync my iphone 4 and i keep getting an error saying itunes could not connect to the iphone because it timed out.  Help??