Purchase Order Response Not able to do by the Supplier from SUS

Hi Experts,
During sometimes, the supplier is not in a position to make POR from SUS.
After selecting the PO from Supplier side, when they are trying to do POR they are not able to either select Confirm (tick mark) or reject (X mark) from their screen which means always those buttons are in greyed mode or no action like Green or Red respectively. What could be the reason ? However, they can see the Send button.
Please provide me the input to do investigation.
Thanks
Rajesh K

Hi Rajesh,
   If you are not able to respond for PO from SUS then you have to activate the workflow WS14500001.. Here some more workflows you can check for POR
Workflows
You can configure the following workflows for the purchase order response:
·        (WS14500001)
Automatic transfer of purchase order response data into the purchase order. The system carries out a comparison during the data transfer (background processing). If the quantity, price, and delivery date variances transmitted by the vendor are within the tolerance limits set in Customizing, and no other variances are transmitted, then the data transfer of the first inbound POR occurs automatically.
This workflow is relevant for XML receipt or manual entry with subsequent approval.
·        (WS14500019)
If POR data differs from that in the purchase order, you can be informed of this via a work item. As a purchaser, you can decide for each item whether you wish to transfer the data into the purchase order or not.
·        (WS14500007)
If POR data differs from that in the purchase order, you can be informed of this via e-mail (with the number of the purchase order).
·        (WS14500017)
Monitoring receipt of the purchase order response:
If the flag Purchase order response expected is set in the purchase order, and if by a certain time a purchase order response has not been received for all items in a purchase order, then you can be informed of this via a work item.
SAP WON'T DELIVER ANY WF TEMPLATE WITH NUMBER RANGE OF '9' BECAUSE 99% CUSTOMER USE NUMBER RANGE 9' FOR CUSTOM WORKFLOW..
Saravanan

Similar Messages

  • Not Able to get to the values from applet while designing from xml

    Hi All,
    I have a new problem, and i am new to this one.
    Like I have an XML file.Where in i am able to design the applet while getting the values from the xml and i am able to store also.
    But the problem comes over here.I have given out a type field in xml.By validating the type field i am able to get Label(),TextField(),etc.,( whatever it is).While displaying i am giving only one single TextField in the init method and i am looping it up.so that i can get the no of text fields ,labels,text areas,etc.,
    so problem comes here.I am not able to get the values from those text fields.(only i am getting the last value.Last value is overwriting the old values.Now i am able to get the last value that i am giving it lastly.)
    So please can anyone give me some idea.As it is urgent to me and i have to submit urgently.
    Please help me out.And Thanks In Advance.

    Here is the sample code while designing the applet:
    String type = (String) typeList.get(j);
                             String option = (String) optionList.get(j);                                   
                             if(type.equals("text")){
                                  txtdisp = new TextField(15);
                                  leadcomp.add(txtdisp);     
    //                              txtdisp.addMouseMotionListener(this);}

  • Not able to copy all the record from the table?

    Hi All,
    I have a table Table_1 with 5 crores of data. I have created the same table structure Table_2 like Table_1 and trying to insert the entire data from Table_1 to Table_2 by use of the below code:
    CREATE OR REPLACE PROCEDURE insert_prc (limit_in IN PLS_INTEGER)
    IS
        cursor cur_insert
        IS
        SELECT  *
        FROM    Table_1;
        type tabtype_insert IS TABLE OF cur_insert%ROWTYPE INDEX BY PLS_INTEGER;
        v_tabtype_insert   tabtype_insert;
        v_limit_rows    NUMBER := 1000;
        v_start    PLS_INTEGER;
        v_end      PLS_INTEGER;
        v_update_count  NUMBER;
        v_bulk_errors   NUMBER;   
    begin
        DBMS_SESSION.free_unused_user_memory;
        show_pga_memory (limit_in || ' - BEFORE');
        v_start := DBMS_UTILITY.get_cpu_time;
        BEGIN
            open cur_insert;
            LOOP
                FETCH cur_insert BULK COLLECT INTO v_tabtype_insert LIMIT v_limit_rows;
                FORALL i IN 1..v_tabtype_insert.COUNT SAVE EXCEPTIONS
                INSERT INTO  Table_2
                VALUES v_tabtype_insert(i);
                EXIT WHEN v_tabtype_insert.COUNT < v_limit_rows;
                COMMIT;
            END LOOP;
            CLOSE cur_insert;
        EXCEPTION
        WHEN OTHERS
        THEN
            v_update_count := 0;
            v_bulk_errors := SQL%BULK_EXCEPTIONS.COUNT;
            dbms_output.put_line('Number of INSERT statements that failed : ' ||v_bulk_errors);
            dbms_output.put_line('*******************************************************************************************************************');
            /*FOR i IN 1..v_bulk_errors
            LOOP
                dbms_output.put_line('An Error ' || i || ' was occured '|| SQL%BULK_EXCEPTIONS(i).ERROR_INDEX ||
                                    ' during update of Actuator Model: '|| v_tabtype_mtl_items(SQL%BULK_EXCEPTIONS(i).ERROR_INDEX) ||
                                    ' . Oracle error : '|| SQLERRM(-SQL%BULK_EXCEPTIONS(i).ERROR_CODE));
            END LOOP;   */
            dbms_output.put_line('*******************************************************************************************************************');
        END; 
          v_end := DBMS_UTILITY.get_cpu_time;
          DBMS_OUTPUT.put_line (   'Elapsed CPU time for limit of '
                                || limit_in
                                || ' = '
                                || TO_CHAR (v_end - v_start)/100
          show_pga_memory (limit_in || ' - AFTER');
    end insert_prc;
    CREATE OR REPLACE PROCEDURE APPS.show_pga_memory (
       context_in   IN   VARCHAR2 DEFAULT NULL
    SELECT privileges required on:
       SYS.v_$session
       SYS.v_$sesstat
       SYS.v_$statname
    Here are the statements you should run:
    GRANT SELECT ON SYS.v_$session TO schema;
    GRANT SELECT ON SYS.v_$sesstat TO schema;
    GRANT SELECT ON SYS.v_$statname TO schema;
    IS
       l_memory   NUMBER;
    BEGIN
       SELECT st.VALUE
         INTO l_memory
         FROM SYS.v_$session se, SYS.v_$sesstat st, SYS.v_$statname nm
        WHERE se.audsid = USERENV ('SESSIONID')
          AND st.statistic# = nm.statistic#
          AND se.SID = st.SID
          AND nm.NAME = 'session pga memory';
       dbms_output.put_line(CASE
                                   WHEN context_in IS NULL
                                      THEN NULL
                                   ELSE context_in || ' - '
                                END
                             || 'PGA memory used in session = '
                             || TO_CHAR (l_memory)
    END show_pga_memory;
    /From the above procedure i am able to insert only some 5000000 data. Remaining 4 crores data is not inserted. But the program says it is completed sucessfully.
    Note: Table_2 is the partitioned table and Table_1 is non partitioned table.
    Can anyone please what is the problem on above code?
    Thanks

    user212310 wrote:
    -- Using BULK COLLECTS and FORALL's will consume more resources.Ya i will agree that. That's what i am using LIMIT clause passing value as 1000. It means PL/SQL will reuse the same 1000 elements in the collection each time the data is fetched and thus also reuse the same memory. Even if my table grows in size, the PGA consumption will remain stable.Limit or not, your process will consume more resources (and take longer) than the one i showed you. AND it's many many many more lines of code (harder to maintain, etc...).
    user212310 wrote:
    -- If you don't have a reason (aside from misguided understandings as to which is more performant) to use BULK COLLECTS and FORALL's then you should go with the direct INSERT INTO SELECT * method.The reason i am using BULK COLLECT is to reduce the execution time of the procedure.
    Please let me know if i misunderstood something.
    ThanksYes, you have.
    Please read this
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:760210800346068768

  • Why am I not able to download all the messages from the email server, only few are downloaded, the rest are not? Things were fine until last week.

    I've tried all the suggestions including deleting the inbox.msf etc. I have also tried uninstalling and reinstalling Thunderbird, but none of them seem to work.

    Is it hanging on the same message each time? If so go to your email providers web mail site and log into your account there. Read and delete the problem message and see if the remaining messages download.

  • PCO (Purchase Order Response) Print

    Hi guys
    Is there a standard way to print a PCO (Purchase Order Response) created directly in the SRM system?
    I have tried to print it but i could not find the place to do this task...
    As far i know we have just two transactions related to PCO only for creation....
    Enter Purchase Order Response ->BBPPCO02
    Process Purchase Order Response -> BBPPCO01
    1 - How to check the details of a PCO? Is there a standard way to do it? (similar to BBPSC04)
    2 - How to print an individual PCO or generate a list of PCO?
    (E.g with SC if you go to  BBPSC04  you can perform a SC print preview by clicking on the print icon.)
    Any doubts just let me know.
    Your help or suggestion is highly appreciated.
    Thanks & regards
    Alvaro

    Hi
    Ddi you check any  standards SMATFORMS for this POR. i aware it is available for SC,PO.
    If you get smart form, you can print them right.
    regards
    Muthu
    Edited by: Muthuraman Govindasamy on Sep 5, 2008 7:35 AM

  • Not able to download all the stubs using the WSDL provided for Contact.

    Hi All,
    I am using wsdl2java to download stubs from the wsdl for contact using axis.
    But i am not able to download all the files from the wsdl.
    I am not able to see ListofContactData.java file in the stubs created,but i a can see in the that in wsdl.
    Anybody can help me in this issue.
    Thanks & Regards
    Amith B N

    Hi Guys..
    please post the solution clearly. I have the same problem and have to complete the development in short span..
    Please mates.. Hope u ppl will help on time.. if possible.. send me the document.
    refer my build.xml which i used for Version 1.0 in the below link.
    Re: wsdl v2.0 vs V1.0
    My mail id : [email protected]
    Regards
    Balaji Tr.

  • Not able to see all the SAP tables from CR 2008

    Hi All,
    1)I am not able to see all the SAP database tables(DEV server) from Database expert menu in CR 2008. Only tables those start with alphabet letters upto A & B are visible. I checked the database connection>right click>options> found no filters as well.
    We are using the CR 2008 trial version with SAP ECC.
    2) When i am trying with Production Server of SAP ECC, I am not able to logon to the SAP from CR 2008. It is giving error message
    as : LOGON FAILED : User USER1 has no RFC AUTHORIZATION for function group SYST
    Please help me to resolve these. Thanks in advance.

    Thank you very much ingo.
    You helped me a lot.
    One more question, when I am trying for SAP database connections say for ex: 10.57.410.70, again and again some times the connection is getting saved in my connections with as new versions/variants like
    10.57.410.70_1 or so. How to overcome this.
    Thanks in advance ingo
    Badari

  • Process button in purchase order response SUS not present

    Hi all.
    We have SRM 7 and ECC 6.4. Scenario MM-SUS Purchase Order Response.
    We can transfer purchase orders from MM to SUS. Purchase Order SUS are generate correctly In SUS system.
    However. When a Vendor user enters in the SUS system  to create the POR, we can not create it  because the Process button is not present.
    The user was create by process of Creating Buyer Data (BBP_SUS_BP_ADM) and  rols SAP_EC_SUS_BIDDER and SAP_EC_SUS_ORDER_PROCESSOR in trx SU01
    I appreciate a tip to solve this issue.
    Regards
    Raul.

    Hi,
    You can do what Sam has suggested in vendor master too so that everytime a PO for that vendor is issued, you do not have to manually maintain these settings in the PO.
    Regards,
    Nikhil

  • Suppress PO output in case a PO is updated by a purchase order response

    Experts,
    we are in SRM 5.0. We are trying to suppress any PO output when a PO is updated by purchase order response. We are experimenting with PO output start conditions (Customizing). No succes until now. We tried to check whether the object status table has status 'Variance in PO response' (I1352). No effect.
    Does anybody have a clue or even better, an example, how to achieve this without the use of BADI's or defining any customer fields?
    Apparantly when a purchase order is updated via the purchase order response the BBP_DOC_CHANGE_BADI is not triggered, or at least we were not able to debug it, so it looks like this is no option either.
    Any suggestions?
    Thanks for your help, Maurice de Feijter

    Hello Jay, thanks for your suggestion. We are currently implementing SP 14 to 17 in which the note you mentioned is included. Unfortunately PO output is still not suppressed automatically when a PO response is accepted and copied to the PO, even if no content is changed (price, quantity, delivery date ....) .
    That is the reason why we were looking for the possibility to use start conditions in customizing. The main problem there it that we do not know how to recognize that a PO change is triggered by the PO response, and how to configure that in a condition. SAP docu does not give any clue.
    So, any other suggestion is welcome

  • SRM-SUS Purchase Order Response always "In Status"

    Hi Gurus,
    When a buyer confirms a PO response without any change, the system generates a new PO response with status "In process". And so, when the buyer views the new PO response, the "Confirm Response" and "Reject Response" buttons are still active and the buyer can still confirm the response. When the buyer confirms the new PO response, the system will again generate a new PO response with status "In process".
    We are on SRM 7.0 SP05. We did not activate the following workflows:
    WS14500001  Auto Transfer of PCO
    WS14500019 Transfer PCO Data to PO
    Would really appreciate any help.
    Regards,
    Kezia

    Hi
    XI Seems to be good as the XML message is getting processed in SRM and is creating a POR Document. Here are the steps for configuring POR:
    1. Define NUmber Ranges
    2. Activate Event Linkages and Start Conditions for WS14500001.(this is predelivered in standard system)
    3. Configurations for Tolerances for qty and date...
    Did you process the POR from PO?
    You need to go to Process Purchase Order Response , searched for PORs and then take action on the PORs in pending statuses.....
    POR functionality is pretty much straightforward feature which works smoothly.....If you are not able to sort it out using this forum, write detaisl to SAP, they can look into your system
    Regards
    Virender Singh

  • POR: Changes on Purchase Order Response after saving

    Hi SRM Gurus,
    I'm currently working with SRM_SERVER 500(SAPKIBKS09) release, I'm not able to change(or delete) an POR once it has been saved. Normaly as an Purchaser I should be able to do that. Is that a std system behavior.
    FYI - The following POR has been created without any variances (that means PO and POR data are identical.)
    Thx
    Raf

    if the purchase order response has come from SUS , then it means that it has come from the supplier system.
    this means that buyer will be able to compare purchase order and purchase order response , to see wether there are any differences..
    system will not allow you to change purchase order response as this has come from different system and this is the system standard behaviour..

  • Purchase order yet not released

    Hi sap gurus,
    i have done purchse order .then i am creating goods receipt for that purchase order but i am getting these error purchase order yet not released.plz tell me how can i solve these problem

    Hi Prasad
    Its simple prasad ur PO is suject to release strategy (Approval process) so the authorized person has to release the PO through the following process -
    Just go to Transaction ME29N or ME28, enter ur PO no.
    If u follow ME28 give ur release grp / code enetr PO no. and execute ur PO will be reflected in the list put the cursor there and press Release+Save Iconit will release the PO and then u will able make the GR.
    If u follow ME29N then give ur PO no. and go to release tab at the header level and press release icon.
    Best regards
    Vineet Baweja

  • Purchase Order Response in SRM from R/3 through XI

    Hello friends,
    While sending Purchase Order Response from R/3 to SRm through XI Iam getting this error in SXMB_MONI of XI and also in SRM:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!-- Response
    -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
    <SAP:Category>Application</SAP:Category>
    <SAP:Code area="ABAP">APPLICATION_ERROR</SAP:Code>
    <SAP:P1 />
    <SAP:P2 />
    <SAP:P3 />
    <SAP:P4 />
    <SAP:AdditionalText><?xml version="1.0" encoding="utf-8"?><nr1:StandardMessageFault xmlns:nr1="http://sap.com/xi/SRM/Basis/Global"><standard><faultText>An error occured within an XI interface: Exception occurredE:BBP_PD:069 -Product data could not be intepreted E:BS:013 -System status INCM is active (Purchase Order Response 1000000037) Programm: CX_BBP_BD_ERROR===============CP; Include: CX_BBP_BD_ERROR===============CM002; Line: 57</faultText></standard></nr1:StandardMessageFault></SAP:AdditionalText>
    <SAP:ApplicationFaultMessage namespace="http://sap.com/xi/SRM/Basis/Global">StandardMessageFault</SAP:ApplicationFaultMessage>
    <SAP:Stack>The application triggered an exception</SAP:Stack>
    <SAP:Retry>M</SAP:Retry>
    </SAP:Error>
    can anyone please help me out in this...........
    Thanks in Advance...

    Dear Friends,
    I am SAP MM Certified Consultant & did my training for MM Module from Siemens ( Sapient College )& paid 2.5 lac for that and Since then I am working as a SAP MM consultant in an MNC since past 2 years, done 2 implementations  and had a functional experience of 4  years in purchasing .
    Had work for MNC’s only & having good expertise in Domain area .Total Experience 5 years out of that 2 years SAP MM experience .
    Dear all can you tell me what should i do so as to make a successful career in SRM.? How long should i stay in MM and what should I learn besides MM.I have already started working on SRM .
    I wish to do SRM training again from Siemens  but this point of time , I don’t have enough money to do SRM training from Siemens . Could anyone suggest , where I can learn SRM in Bangalore  & get trained in this New thing and do i need some programming knowledge in it.
    Could anybody send me some SRM documentation on my mail id [email protected]
    Thanks in advance.
    Regards,
    Savita Munshi

  • Purchase order response(POR) in SRM

    Hello SRM Experts,
    We would like to implement Purchase order response(POR) functionality of SRM 5.0. The client requirement is to set POR flag at PO item level, expect POR from the vendor and no GR/IV should be allowed either in SRM or ECC until POR is provided by the vendor.
    We have the following questions.
    1. If POR flag is set, does it stop GR/IV either in SRM or ECC?
    2. When POR is posted in SRM does POR flag is re-set in SRM?
    3. When POR is created in SRM, does it create any follow-on docs in ECC.
    Looking forward to hear from you all soon.
    Regards,
    Sasikala

    Hi Sasikala.
    Referring to your questions:
    PO Response is just an acknowledgement document by the vendor to state that he is in agreement with the conditions set in the Purchase Order.
    1) No GR/IV will not be stopped in SRM or ECC. If the client wants it that ways then I believe custom code needs to be written.
    2) No...reason being you can create as many PO Responses as want for a given PO...the latest will be active and all the responses created before that are obsolete.
    3) No follow on documents are created in ECC while creation of PO Response as after the PO Response changes are accepted in PO, only then the PO is replicated to ECC again with change version.
    Regards,
    Abhilash

  • Document is in transfer for purchase order.Creation not possible

    Dear All,
    We did partial confirmation in EBP and later when trying to do confiramtion for the remaining quantiy getting the message"document is in transfer for purchase order.Creation not possible"
    We are taking this problem in production as well as in quality systems also.
    What are possible reason and how to solve it.
    kindly share your views.
    Thank you.

    Hi yshu,
    use tcode bd87 in SRM to check for failed confirmation IDOC (type MBGMCR).
    The double click the status record to see the exact cause of the failure.
    Rectify the error. Then try to execute the IDOC from BD87 tcode.
    For a few errors you may not be able to execute the IDOC but to create a new confirmation in SRM. In such cases, follow the below procedure..
    There should be an entry for the confirmation in the transfer table BBP_DOCUMENT_TAB in SRM. Display the details.
    Then run FM "BBP_DELETE_FROM_DOCUMENT_TAB" to delete the entry from the doc tab table.
    Then post a new confirmation in SRM.
    There is also a FM in SRM using which you can change the status of thefailed IDOC from 51 to 68 or 31.
    Rgds,
    MJ

Maybe you are looking for

  • Finance report

    hi guys, i need to come out a finance Aging report, where the open item amount for a vendor yet to be pay. however, there are so many condition to retrieve the details, can any one please advice what i need to get on the condition? thanks

  • PS and AI trouble verifying account-paid in full and seems active under managment

    how come no matter how many times I quit my browser and clear my data will adobe not let me chat for support? I have paid in full for a PS and AI membership and keep getting warnings that there trouble verifying my account and it will stop working in

  • Groupon App

    After loading the Groupon App to my Storm 9550,  I keep getting the message "No network connections is available.  Please turn on the mobile or wifi connections."  I have checked the connections...they're on.  Uninstalled and reinstalled...no help. 

  • Multiple source files to 1 source structure

    Hi Gurus, Is grouping of multiple souce files to create one source structure possible? EX. AAA.csv BBB.csv CCC.csv Then the contents of these files will be merged into one source structure. Can this be done without BPM? Thanks!

  • Safari 3.1 won't open new windows or tabs from a hyperlink

    what in the heck has gone wrong here? Something I did? I use Saft and Stand updated as well in the case of Saft.