Status In Process remains in PO SUS with POR

Hello.
We have SRM 5.0 SP12.
We have the next issue in scenario PO EBP-SUS:
In SUS, when we made a POR and we changed date u201CConfirmed foru201D (date in future), the
system does not conserve the status u201CConfirmedu201D; this status is changes
by u201CIn Processu201D.
With POR without change in dates there is no problem.
I think the POR is awaiting approval by the date change. But I do not need this.
Please we needed to solve this issue and changed the PO whit status u201CIn
processu201D to u201CConfirmedu201D in SUS.
Regards,
Raúl Hernández

Thanks Khan
Here they are the situation we have detected and that is causing us problem.
1.     When POR is created at SUS and the date from u201CCONFIRMED FORu201D is changed  (even with future dates) the status u201CConfirmedu201D change to u201CIn Processu201D.
When the date at POR is not updated or changed, the status still as u201Cconfirmedu201D
2.     At SRM transaction BBPMAININT, when the check box u201CERSu201D from the vendor record, in the tab u201CVENDOR DATAu201D is active; the status of POR at SUS change from u201CConfirmedu201D to u201CIn Processu201D. This change of status  is  causing us errors into the operation.
3.     On the other hand,  when the  check box  u201CERSu201D is inactive ; the status u201CCONFIRMEDu201D of POR  at SUS is maintained. This is the result we are expecting.
What do you suggest us to do to keep the status u201CCONFIRMEDu201D in the POR at SUS when the check box u201CERSu201D is active eventhough  the date being changed? 
We believe that Inactive the Check box u201CERSu201D is not an option due to it is required  into the process of the Purchase order  confirmation  in R/3
Regards
Raul

Similar Messages

  • PO approval process remains in "In Process" status

    hi ,
    I am using oracle applications 11.5.10,whenever any requisition or PO is created and submitted for Approval
    the status is in "In Prpcess" and its not getting approved.
    The po approval workflow is getting errored out with the following error.
    "wf_engine_util.function_call(po_approval_list_wfss.build_default_approval_list,reqapprv,56670-148783,560566,run)"
    I have logged in with "operations/welcome"@vis and submitted the po for approval as stated above.
    Please suggest me how to get the approvals done
    Thanks

    Hi ,
    The workflow activity shows "Build Default Approval List",I have checked few threads which says after doing approval hierarachy
    needs to run Concurrent Program "Fill Employee Hierarchy",but when I ran this program without modifying the default hierarchy
    what we get by default in VISION DB.The program completed with Error status '3'.
    Can u provide me with the setps how to setup the hierarchy in Purchasing and later process to resolve this issue.
    Thanks

  • Print Preview of PO with message status as "Processed"

    Hello,
    I need to make available the print preview of Purchase Order even when the Processing status of output is "Processed".
    Normally the print preview works when the status is "Processing" or when there are still print relevent changes existing in PO. When the message is output by ME9F, there are no more print relevent canges and SAP does not allow preview option in PO. I want to make this functionality available.
    Any solution?
    CMV

    Hi!
    You can check the table NAST (field VSTAT) for the statuses.
    Application 'EF' for PO.
    Objkey is the PO number.
    Regards
    Tamá

  • SRM 7.0 Purchase Order Response always in status "In process" after confirm

    Hello experts,
    this problem is similar to the thread [SRM-SUS Purchase Order Response always "In Status"; which has been not finally responded.
    My problem exists in an environment without SUS.
    When a buyer confirms a PO response (POR) without any change, the system generates a new PO response with status "In process".  This new POR has also to be confirmed or rejected but the system generates again a new PO response with status "In process".
    So we have a very nice loop for the purchaser without escape!
    We are on SRM 7.0 SP07. The other thread mentioned that SAP will create some OSS notes, but I found nothing about this problem.
    Any ideas?
    Regards
    Joe

    Hi Gurus.
    I want to share my experience with this case.
    We have the same scenario, Confirm PO, the result is PO confirmed, but we receive a response from ECC and this Confirmed PO changes its status to "In Process" / "En Tratamiento".
    The new relevant information is that we added 2 new fields to the item PO, these fields are filled ok and sent to ECC.
    In a first time these new fields were lost due to the response from ECC. To avoid this situation I implemented the BADI BBP_DOC_CHANGE_BADI for BUS2230, and method BBP_SUSPO_CHANGE to copy from the BBP_PDISC (Object BUS2230) rows the values to the new rows in the same table BBP_PDISC (Object BUS2201).
    With this change the new documents are confirmed directly and not changed to "In Process"/ "En tratamiento".
    That was my experience, now I have a question...
    In the correct business process for SAP SRM SUS  when you confirm full a PO...
    * this will be blocked or no?
    * Can be modified the confirmed items?
    * This depends of customizing?

  • How to Implement HTTP Request Status Code Processing

    I actually have two questions. First, I wondering how to add multiple status code processing to an http request. Secondly, I was wondering how to go about using alternate http requests to different servers in case the primary server is down. What kind of parameter would the program use to determine that the server is unavailable and switch to another server??
    Currently, the program I've written calls an rdf server (http://www.rdfabout.com/sparql) using a sparql query,
    the server returns an xml string, the program parses it, and calculates numbers
    from the string. The program works, but the problem is that the server is down occasionally.
    When the server is down, we need to add calls to another server to
    increase reliability. So, the next task is to call this server:
    http://www.melissadata.com/lookups/ZipDemo2000.asp
    I need to do exactly the same things I did with the rdf server. The
    difference will be constructing a request and a bit different parsing of
    the response.
    current SPARQL query is defined as follows:
    PREFIX dc:  <http://purl.org/dc/elements/1.1/>
    PREFIX census: <http://www.rdfabout.com/rdf/schema/census/>
    PREFIX census1: <tag:govshare.info,2005:rdf/census/details/100pct/>
    DESCRIBE ?table WHERE {
    <http://www.rdfabout.com/rdf/usgov/geo/census/zcta/90292> census:details
    ?details .
    ?details census1:totalPopulation ?table .
    ?table dc:title "SEX BY AGE (P012001)" .
    }current HTTP Request is defined as follows:
    import java.net.*;
    import java.net.URL;
    import java.net.URLConnection;
    import java.io.*;
    import java.io.DataOutputStream;
    import java.io.BufferedReader;
    import java.io.StringReader;
    import java.io.InputStreamReader;
    import java.io.PrintStream;
    import java.util.Scanner;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import java.util.Arrays; 
    public class MyConnection
         static Scanner sc = new Scanner(System.in);//allows user to input zipcode
        public static void main(String[] args) throws Exception
             int zip;//zipcode is declared as integer format
            //User defines zip through input
            //proceed to put SPARQL query into string, which is then used to call the server
            String requestPart1 =
            "query=PREFIX+dc%3A++%3Chttp%3A%2F%2Fpurl.org%2Fdc%2Felements%2F1.1%2F%3E+%0D%0APREFIX+census%3A+%3Chttp%3A%2F%2Fwww.rdfabout.com%2Frdf%2Fschema%2Fcensus%2F%3E+%0D%0APREFIX+census1%3A+%3Ctag%3Agovshare.info%2C2005%3Ardf%2Fcensus%2Fdetails%2F100pct%2F%3E+%0D%0A%0D%0ADESCRIBE+%3Ftable+WHERE+%7B+%0D%0A+%3Chttp%3A%2F%2Fwww.rdfabout.com%2Frdf%2Fusgov%2Fgeo%2Fcensus%2Fzcta%2F";
            String requestPart2 = "" + zip; // zipcode is transformed from int to string format and plugged into SPARQL query here
            String requestPart3 =
            "%3E+census%3Adetails+%3Fdetails+.+%0D%0A+%3Fdetails+census1%3AtotalPopulation+%3Ftable+.+%0D%0A+%3Ftable+dc%3Atitle+%22SEX+BY+AGE+%28P012001%29%22+.+%0D%0A%7D%0D%0A&outputMimeType=text%2Fxml";
            String response = "";
            URL url = new URL("http://www.rdfabout.com/sparql");//designates server to connect to
            URLConnection conn = url.openConnection();//opens connection to server
            // Set connection parameters.
            conn.setDoInput (true);
            conn.setDoOutput (true);
            conn.setUseCaches (false);
            // Make server believe we are form data…
            conn.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
            DataOutputStream out = new DataOutputStream (conn.getOutputStream ());
            // Write out the bytes of the content string to the stream.
            out.writeBytes(requestPart1 + requestPart2 + requestPart3);
            out.flush ();
            out.close ();
            // Read response from the input stream.
            BufferedReader in = new BufferedReader (new InputStreamReader(conn.getInputStream ()));
            String temp;
            while ((temp = in.readLine()) != null)
                 response += temp + "\n";
            temp = null;
            in.close ();
            //parsing stuff is taken care of after here
    }What remains now is to:
    1) add status code processing: notify if the server is not available, ect.
    2) add ability to connect to additional server if primary server is down.
    I'm thinking an if/else statement, which I've tried a few different ways,
    but I don't quite know how to implement that...Also trying to add the
    status code processing/error handling, but I'm not sure how to do that
    for multiple/different errors, such as 404, 503, 504, ect.. try/catch statements?
    So yeah, just been scratching my head on this trying to figure out how to work it..
    If you can help me out on this, I've been going nuts trying to figure this out...

    I think your issue comes form the fact that you are not casting URLConnection to HttpURLConnection.
    Doing the cast would allow you to use getResponseCode() - among other methods - and test for a response different than 200.
    Read: [http://mindprod.com/jgloss/urlconnection.html|http://mindprod.com/jgloss/urlconnection.html]

  • Status : Being Processed in Sales Order after the Delivery and Billing also

    Hi All,
    For one Sales Order........ Delivery and Billing are over but it shows
    In the Sales Order> Header level>Status bar>Overall Status>Being Processed.
    In Document Flow:
    Sales Order xxxxxxxxx  : Being Processed.
    Delivery xxxxxxxxxxxx   : Completed.
    Billing xxxxxxxxxxxxx    : Completed.
    Functionally we checked everything......but through technically we can solve the issue or not
    Pls help me with some solutions.
    Advanced Thanks.
    Diwakar Reddy.
    [email protected]

    Hi,
    This generally happens if the sales order is for a quantity greater than the quantity delivered.
    SAP treats the sales order as still open and delivery of the remaining quantity is possible through that sales order itself. So the status is shown as "Being Processed".
    If you want to see the status as "Completed" then you need to cancell the remaining open items in that sales order. Automatically the status will change to "COMPLETE"
    Hope this solves your querry.
    Regards,
    Anirban

  • Cancelamento de NF-e parado (batch status 05, process status 02)

    Bom dia pessoal,
    Ontem tivemos um problema no GRC/PI de um cliente, onde por alguma razão o certificado estava sendo rejeitado. Depois de vários problemas causados por isso, foi resetado o j2ee e o sistema voltou a operar normalmente.
    As sequelas disso foram duas notas para as quais foi solicitado o cancelamento, agora elas estão com status de processamento 02 (Sent to Signature Service) e batch status 05 (Result Received).
    Seguindo uma orientação para um caso parecido (),
    peguei os MsgIDs das mensagens dessas NFs na /xnfe/acknowledg (ambas com SIGNC), encontrei-as no SXI_MONITOR do PI, onde elas são listadas 2x cada, com os seguintes status
    1 - Status = Transfer to Process Engine (, Ack. Status = branco
    2 - Status = Processed Successfully, Ack. Status = Still awaiting acknowledgment (bola verde com interrogação)
    Ao tentar dar restart nas mensagens, recebo a seguinte mensagem de erro:
    You cannot restart XML message E07AFA5FD584CEF1B15C3C4A927627EC with this status/type
    Message no. XMS_ADM085
    Diagnosis
    You want to reschedule an XML message that has already been processed (Restart). However, the XML message status or type does not permit a restart.
    System Response
    You can only restart asynchronous XML messages.
    Furthermore, you can only reschedule XML messages with errors. You cannot restart correctly processed XML messages or XML messages with the status Being Processed.
    Tem algo que possa ser feito sem ter que alterar tabelas?
    Como a equipe responsável pelo PI/GRC fica fora do BR, é bem complicado conseguir autorização para qquer coisa nesse sentido em PRD.
    ps.: Agora cliquei no "Expand all messages", para cada um dos MsgIDs, apareceram 2 novas linhas, uma com status = Scheduled (bandeira verde) e outra com status Scheduled for Outbound Processing (seta preta), ambos com o awaiting ack.
    => SMQ1 e SMQ2 ambas sem entradas.
    Obrigado!
    Eduardo Hartmann

    Eduardo,
    O NFe type = 2 (cancelamento)?
    Se sim, me parece que o pedido de cancelamento foi enviado pra assinatura e nao teve resposta, provavelmente devido ao fato de o J2EE estar fora. Nesse caso, o batch status é irrelevante (ele só é relevante pro processo de envio de NFe, não pra cancelamento/inutilização).
    O "correto" seria vc identificar onde a mensagem de assinatura parou (i.e. se em alguma fila - SMQ1/SMQ2, se tem q restartar o BPM etc.). Mas como o passo de assinatura é stateless, diferentemente do processamento da SEFAZ, vc poderia simplesmente "marretar" um status de erro de assinatura de cancelamento na /xnfe/nfe_hist (verifique o valor apropriado do error status no domínio do campo) e restartar a assinatura do cancelamento pelo monitor de NFe do GRC, aba de erro de assinatura.
    Abs,
    Henrique.

  • Workflow step in status "In Process"

    Hi Friends,
    I am working on SAPXI support project.
    Actually i have an issue related with BPM, there is a workflow(wk) which is completed but the one of the step in this wk is status "In process", but i can see all the steps in this wk are either completed or logically deleted except one step which is called as "Main Process Block".
    Due to this there are countinues CCMS alerts genereted in TC RZ20. So kindly suggested me on how to complete this Step either i have to delete or complete or anyother solution.
    Please dont give me any blogs or links, kindly suggest with your experince in Support project.
    Regards
    Sai

    Hi Sai,
    goto tcode SWIA and enter the work Item ID and click on Complete mannually.
    Thanks!

  • Status of process chain

    hi all,
    This is the scenario. I  have  a badi in ecc in which i save the new projects and after saving a project it triggers a job in ecc ,which in turns trigger the process chain.When i try to save several projects in ecc in quick succession, say 3 projects A,B,C then there are 3 jobs which are active in ecc,which inturns triggers the process chain 3 times and hence the p.c gets locked and fails.
    In the badi, we had rfc fm which checks the status of the process chain whether its ACTIVE from rspcprocesslog table and then if the status become to G:successfully completed, the second job shold trigger.however its not working.
    in the rspcprocesslog(BI side), we find that the status field in the table is having  only two values F:completed or G:successsfully completed, whereas  other values such as ACTIVE ,cancelled are not getting stored.
    so i would like to know
    1. whether this table holds only  G or F values and why the status like Active or cancelled is not gettin g stored.?
    2. apart from these tables what is the method by which i can know the status of process chain or status of thelast process of the chain can be found.?
    3.  is there any way to check for the information we get in sm 37 job log in BI side for the last process present in the process chain? *is  the job log stored in some table ,if so what is the table name?*
    so can anyone please suggest to  make the second job in ecc to  get scheduled only when the process chain which got triggered for the first job is completed other than the two mentioned(rspcprocesslog, and job log)?

    Hi,
    You can find the necessary logs & status of the process chains in the RSPCLOGCHAIN table.
    ANALYZED_STATUS field stores the values of process status.
    G -> Completed
    R -> Ended with errors
    A -> Active
    X -> Cancelled.
    Many thanks,
    Arda.

  • WS20000075: work item of 1st release step stays in status In process

    Hi All,
    I have activated and set up standard flow WS20000075 but the work item of 1st release (PO release strategy with 3 levels) step stays in status In process. The work item for the 2nd and 3rd release step are completed as expected.
    What could cause only the work item of the 1st release step to stay In process?
    Thanks a lot in advance

    Hi,
    I cannot see in what field the release code is filled in EKKO.
    See here SWEL after 1st release:
    And SWEL after 2nd release:
    EKKO after 1st release
    EKKO after 2nd release
    release strat
    Release strategy

  • Workflow status 'in process'

    Hello All!
    I've created workflow with only task step. Workflow started and has status 'in process', then task completed but workflow still has status 'in process'. As i understand i need workflow status 'Completed' after task execution.
    Where can i set up this?
    Many thanks in advance!

    Please check SWU3 is properly configured.
    Also check for any Dump in ST22.
    Thanks
    Arghadip

  • Webutil: excel.exe process remains

    Environment: Win2000, 9ids, Webutil 1.0.2(Beta)
    Hi all,
    i am doing some testing with webutil. I found out that using the following code in a when-button-pressed trigger on a simple form, it works fine, but an excel.exe process still remains in taskmanager. It is only released/killed when I close my form.
    declare
    application client_ole2.obj_type;
    BEGIN
    application := client_ole2.create_obj('Excel.Application');
    client_ole2.set_property(application,'Visible','True');
    client_ole2.invoke(application,'Quit');
    client_ole2.release_obj(application);
    END;
    Am i doing something wrong?
    Thanks in advance
    Gerald Krieger

    Dear Gerald,
    I'm surprising that why I cannot get a functional result from generating Excel and Word reports as well as importing data from Excel spreadsheets with SAME codes as yours. I'm using Webutil(Ver 1.0.2) in form 9i (Ver 9.0.4.0.19) with JInitiator 1.3.1.13. I get WUC-20 error when open the form which contains Webutil Ole2 functions. How can I fix it? What am I miss?
    Error Description
    ERROR>WUC-20 [URLDownload.pullFile()] The stated size of the source file http://nt4_132:8889/forms90/f90servlet/webutil/jacob.dll does not match that of the downloaded file C:\PROGRA~1\Oracle\JINITI~1.13\bin\jacob.dll
    I've downloaded the d2kwut60.dll, jacob.dll & JNIsharedstubs.dll under the same directory. I also find that Jinitiator will download these DLLs when form service startup to c:\program files\oracle\jinitiator 1.3.1.13\bin, but not to \webutil. These 2 sets of DLLs are different, is it really normal and workable of calling Webutil Ole2 functions?
    I understand that WUC-20 related to the defination problem of install.syslib.location. I've tried the following settings but none go without this error. What are the settings which make the virtual directory be found and read?
    Settings I try:
    - install.syslib.location=/webutil
    - install.syslib.location=http://<server>:<port>/forms90/webutil
    - install.syslib.location=http://<server>:<port>/forms90/f90servlet/webutil
    - install.syslib.location=//../webutil
    Besides, I check the DLLs (d2kwut60.dll, jacob.dll & JNIsharedstubs.dll under JInitiator\bin) in text editor and find that there is no 404 error. And both d2kwut60.dll & JNIsharedstubs.dll are non-readable. Does this result satisify?
    What make ur code open Excel successfully while I fail to do so? How to make these downloaded DLLs workable? What are the steps I need to do in order to get no error when the form calls Webutil Ole2 functions?
    Moreover I would like to know more of the configurations and settings since I still get errors even I've done all Webutil normal and additional setup steps.
    I've tried to import data from Excel spreadsheet with Ole2 in 9i in client side. All my codings can be worked and also faced the problem of Excel.exe process remaining. ALso I cannot launch the excel spreadsheet by double-clicking the document in Windown NT Explorer after running this import function. Is there any solution to fix these cases?
    Please please help. Thank you very much.
    Steffany.

  • SWEQADM - Event hanging in status IN PROCESS

    We have activated the event queue (SWEQADM) for all our workflows. Now I have discovered that we do have a lot of events which are stuck in status IN PROCESS. When we go to the event queue browser and try to deliver the event we get the following message:
    'The event cannot be delivered in status "In Process" '
    Do any of you have experience of this? Any ideas on why they are stuck in status IN PROCESS, and how we should be able to process them.

    Hello Kicki,
    The most likely cause for events to remain in process as you describe is that something goes wrong during the receiver processing.  This could either be an error causing a short dump (ST22) or else a basis-related problem, look at SM58 for stuck RFCs or SM13 for update problems.
    More clues might be in the events themselves: is it just one event or a particular set of events or do they appear to be random? If the latter is the case, it would point to more towards a basis related problem.
    Also, you mentioned that you switched it on for ALL workflows. Any particular reason?  As you have already noticed the event queue adds an extra layer into the process which equates to an extra point of failure. Unless you are using it to direct workflows to specific servers, you are probably better off only sending high volume events to the queue.
    Hope that helps.
    Cheers,
    Mike

  • User Status for process orders

    Dear Experts,
    We are using user statuses for process orders & with this we are resricting or allowing certain business transactions.
    My question is can we automatically set the two consecutive user statuses ?
    Means when the GR for process order is done i have set the user status as GR.
    Next user status is CLSD.
    So after completing the closing of process order by settlement transactions can i set the staus as CLSD automatic?
    I am trying to do it but i am getting error as-
    "Status CLSD is not allowed (ACT 30000292 0010)"
    Your help is highly appriciated
    Regards
    Vivek

    Hi,
    1) Still your order is carrying cost, it has not settled properly
    2) you can check in CO02 itself, Go to tool bar at top
    3) here Go to > Costs > Analysis & check whether order is set to Zero
    4) you can check in KKBC_ORD also
    Also, pls refer below link
    Re: HOW automatic order status change to CLSD
    regards,
    Sankaran

  • After completion of Business rule Job Console shows status as Processing

    Hi All,
    I have installed Oracle EPM 11.1.2 .
    When I run rules through Hyperion planning the rules that go in to job console do not show a change of status even though they are completed. I checked Essbase logs which shows that the BR has completed its processing yet in Planning job Console it shows the status as "Processing" .
    Please share your thoughts on how to rectify this issue.
    Thanks
    Saurav

    Check out:
    Business Rules Jobs with Status "Processing" in Planning Web? (Doc ID 966683.1)
    Cheers..!!!

Maybe you are looking for