Iam getting PO approval status as incomplete

Hi,
Can anyone please guide me in getting po approval status as approved.Iam a beginner in oracle apps.Is there anything to be done with oracle workflow related to po approval for getting the PO status as approved. Iam getting the notification in notification summary.but the approved notification in notification summary is not changing to approved status in navigation->po/po.
Latha

Hi JayaChandra,
Even I am facing the same problem. I Created a 'PO Requsition' .It is Approved and after that I am 'Auto Creating' a PO from the 'Requisition' approved .
But I am unable to approve the PO that is created.I am approving by myself and I am not forwarding it.The Status is showing 'InComplete'. But I am Able to Approve a 'Manual PO' but unable to approve 'Auto Create PO'. I dont know the problem and the approval limits are set properly.
Thanks in Advance,
D.V.Narasimha Rao

Similar Messages

  • What's the WMI class name to get Client Approval status

    What's the WMI class name to get Client Approval status.
    Unfortunately the below example with class "SMS_R_System" does not have the approval status
    Get-WmiObject -Namespace "root\sms\site_LAB" -Class SMS_R_System | fl *
    I listed all the available classes and... yeah It's going to take along time to go though all the possibilities.
    Note: I'm running this in powershell on the primary first
    If anyone knows it... I'd appreciate your help

    This is all still in the testing phase so I'm not sure this is the best solution... but here's my problem and idea to resolve it.
    Currently in our environment OSD can only be run against unknown computers and approved clients.
    I currently automatically approve all clients in a trusted domain. So all systems that succeed OSD and auto join the domain are approved and I can always run OSD against those machines in the future.
    Problem is with the systems that fail OSD for any reason and therefore do not automatically join the domain. They end up getting a SCCM record by the name of "Unknown" and therefore cannot run OSD again until the "Unknown" record
    is deleted. "Unknown" records happen too frequently to manually delete and I'm not too comfortable with just deleting ALL of them on a scheduled basis.
    Additionally there are way too many OU's in my environment to automatically join our OSD'd systems to the domain. So I have a script that checks using a prestart command to see if the system is already in AD, and if so then OSD continues and simply
    joins the machine to the domain in it's current OU. If not the tech is given a nasty error message telling them to add the computer object in AD in the proper OU first.
    I intend to check , with a Prestart Command if the current system already has a record in SCCM and delete it if found AND is not approved yet. This should resolve the "There are no task sequences available" error I get with
    systems that have an "Unknown" SCCM record.
    In this way the system will be essentially approved if the system was already prestaged in AD manually by a technician and any "unknown" record for that system will simply be deleted at the point of OSD.
    Note: Although I can easily use the new SCCM Powershell cmdlettts and get the "Approved" status, I need to do all of this in WinPE without the cmdletts. If this property is not available via WMI, then I'm guessing this will not work.

  • Po approval status is showing as Incomplete

    Hi,
    Can anyone please guide me in getting po approval status as approved.Iam a beginner in oracle apps.Is there anything to be done with oracle workflow related to po approval for getting the PO status as approved. Iam getting the sent notification from clerk log-in in notification summary.but the approved notification in notification summary is not changing to approved status in navigation->po/po eventhough manager is approving the notification.I set the security option as public.
    Latha

    Hi JayaChandra,
    Even I am facing the same problem. I Created a 'PO Requsition' .It is Approved and after that I am 'Auto Creating' a PO from the 'Requisition' approved .
    But I am unable to approve the PO that is created.I am approving by myself and I am not forwarding it.The Status is showing 'InComplete'. But I am Able to Approve a 'Manual PO' but unable to approve 'Auto Create PO'. I dont know the problem and the approval limits are set properly.
    Thanks in Advance,
    D.V.Narasimha Rao

  • How does a Purchase Order get into 'Approved, Reserved' status?

    How does a Purchase Order get into 'Approved, Reserved' status?

    Hi,
    When an approved purchase order is unreserved and the GL date is modified and re-submitted for approval, the document (PO) gets reserved and approved status.
    I believe you put this question in a wrong thread (Financial), next time onwards, please put your question in correct thread and I am sure you will get the solution faster :).
    Regards,
    S.P DASH

  • Get approval status in edit form

    Is there an easy way to retrieve item approval status (moderationStatus) inside the edit form? During display of edit form I need to know wheather the currently edited item was approved or not. I see that the information is not reflected in a hidden column
    or else. I have the following ideas:
    Custom flag column that indicates if the item was approved.
    Get the current item via js rest call and check OData__ModerationStatus.
    I just want to know if there is an easier way to get the moderationStatus of the item I am editing.
    Thank you!

    Hi Eng,
    As we all know, the approval status column is a hidden column in SharePoint and it cannot be edited manually, so there is no OOB way to display the column value in item edit form.
    The easiest way is to use code to get the current item and then display the _ModerationStatus value in your Edit Item form.
    Here is the code example:
    <script language="javascript" type="text/javascript">
    ExecuteOrDelayUntilScriptLoaded(runCode, 'sp.js');
    function runCode() {
    var value1=window.location.href.indexOf("?")+4;
    var value2=window.location.href.indexOf("&");
    var url=window.location.href;
    var itemId=url.substring(value1,value2);
    var clientContext = new SP.ClientContext();
    var targetList = clientContext.get_web().get_lists().getByTitle('Case Date');
    targetListItem = targetList.getItemById(itemId);
    clientContext.load(targetListItem, '_ModerationStatus');
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
    function onQuerySucceeded() {
    var status=targetListItem.get_item('_ModerationStatus');
    switch(status) {
    case 0:
    alert("Approved");
    break;
    case 1:
    alert("Rejected");
    break;
    case 2:
    alert("Pending");
    break;
    case 3:
    alert("Draft");
    break;
    function onQueryFailed(sender, args) {
    alert('Request failed. \nError: ' + args.get_message() + '\nStackTrace: ' + args.get_stackTrace());
    </script>
    You can also take a look at the link below about changing the Approval Status column in Edit item form:
    http://www.codeproject.com/Articles/718575/Change-of-Approval-Status-in-SharePoint-Edit-Form
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • PO_HEADERS_INTERFACE error- approval status

    Into PO_HEADERS_INTERFACE I enter 'APPROVAL' in the APPROVAL_STATUS column and have no issue
    I enter 'CANCELED' and get the
    PO_PDOI_INVALID_STATUS error message
    Error: Approval Status specified is invalid.
    What values are valid here?

    From the code, what I can see is:
    The only values allowed as the approval_status are 'INCOMPLETE', 'APPROVED' and 'INITIATE APPROVAL'.
    If you have any issues, you may check with Oracle Support.
    By
    Vamsi

  • Approval Status Report, SBO v2007, current data or cumulative?

    I run the Approval Status Report while logged in as a superuser, selecting
    Document Status: 'Pending',
    no limits set in the To/From middle section,
    all document types ticked,
    and I get a list of document numbers.
    I immediately re-run the Approval Status Report while logged in as a superuser, selecting
    Document Status: 'Generated',
    no limits set in the To/From middle section,
    all document types ticked,
    and I get a list of document numbers that includes some of the 'Pending' status ones from the first run.
    How can the document be in both 'Pending' and 'Generated' status at the same time? Is this report supposed to show me the current status of documents, or all accumulated approval action taken on documents?

    Hi Cindy,
    Document number in approval is not unique.  Same number may refer to more than one document.  All draft documents will only be assigned a unique marketing document number until approved and created.
    That is probably you can see the same number in the 2 reports
    Thanks,
    Gordon

  • Approval status at item level

    Hi,
    I need to know whether the shopping cart item is rejected or not.(need to know the approval status at item level) and then make the rejection reason as mandatory.
    I tried to get the value of the flag DEDUCT_IND from each item,but it is never set to 'X' eventhough I reject an item.could anybody please tell me when this flag will be changed or is there any other way to find the approval status at item level.
    Regards,
    Rohini

    What is your SRM Version  ?
    If you have implemented process control workflow for Item level approval, then.
    Once the approver rejects and item, the workflow sends the workitem back to the requester to make changes are accept the rejection. If the requester accepts the rejection then the workflow continues. If the workflow does not have any more approver then the shopping cart is approved and the line item which is rejected by approver is set to DELETE. i.e. BBP_PDIGP-DEL_IND is set to 'X'.

  • Workflow Error Message: System Account - The Workflow could not set Content Approval Status

    This is the first time I try an approval workflow. I am using a template in MS Word and assigned an approval workflow to it. The approval workflow is only going to one person in this case.
    When I start the work flow the following 3 error messages show up:
    Workflow Error Message: System Account - The Workflow could not set Content Approval Status. Enable content moderation for this list and run the workflow again.
    Workflow Error Message: System Account - The e-mail message cannot be sent. Make sure the e-mail has a valid recipient.
    Workflow Error Message: System Account - The e-mail message cannot be sent. Make sure the outgoing e-mail settings for the server are configured correctly.
    Thank you for your kind guidance.

    Hi,
    For the first error: Did you set Content Approval in the workflow?  If so, see if you have it in the versioning settings of the list settings.
    For the second error: double check your recipient is set up as being valid.  Did you type in the email address or is it referring to a people picker field?  also, make sure that in the workflow for the email that you actually populated it in the
    To: field.
    for the third error: I suspect that either your farm is not configured for email.  Or, this error is a knock on from the second error.  If you get the second error rectified it may clear this error.  If not then double check the email settings
    for your farm.
    Johnathan Lightfoot

  • Possible values for AP Invoice Approval Status  in fnd_lookups

    Hi,
    I have a EBS system deployed which is currently like a black box for me and iam doing some reporting on the top of it.
    i need to find out the possible values of AP Invoice Approval Status in fnd_lookups , fnd_lookup_values or some other tables Defined in that system.
    Something like the below is use for employee expense status
    SELECT LOOKUP_CODE FROM FND_LOOKUP_VALUES WHERE FND_LOOKUP_VALUES.LOOKUP_TYPE= 'EXPENSE REPORT STATUS' AND FND_LOOKUP_VALUES.LANGUAGE = USERENV('LANG')

    Please see if Oracle Payables Guides available at http://www.oracle.com/technetwork/documentation/applications-167706.html helps.
    Thanks,
    Hussein

  • SP2010 Designer workflow "Set Content Approval Status" does not work

    Hello
    I'm having a problem with a workflow for one of my clients.It is a SharePoint 2010 environment and I can only use SharePoint 2010 designer (no visual studio).
    We have an approval workflow in place, which works great. After the document approval workflow has does its thing, a new workflow can be launged by specific users (they have writing rights and can approve content). The workflow is used to set the release
    date of the document. This can only be determined after content approval.
    However, when the release date is set, the document approval status is changed to concept. This is of course to be expected, as we changed to document metadata. That is why I wanted to add the action "Set content approval" to this workflow. I cannot
    seem to get this action to work. Right now the workflow does the following:
    check out the document (check out is obligatory in our library)
    set the release date field to the released date parameter (defined when starting the workflow)
    check in the document
    set content approval to approved.
    The release date gets set to the parameter value, but the document is not checked in and the content approval status is not set. SharePoint produces the following error message (translated from Dutch): "An error occured. Cannot edit the item, possibly
    because one or more columns require another type of content. Unknown error."
    Guided by other posts online I gathered that this might be because the actions checkin and set content approval occur to close together. I tried letting the workflow pause for the duration of 1 minute after checking in, but this pauses the workflow indefinitely.
    I then tried 5 minutes (as this is the time standard set by SP2010 designer) but this also resulted in indefinite pausing.
    Posts online lead me to believe that I'm not the only suffering from this problem, but as of yet, I haven't been able to find a solution that works for me. Hopefully someone can help me.

    Hi,
    According to your post, my understanding is that the "Set Content Approval Status" didn’t work in SharePoint 2010 Designer workflow.
    I try to reproduce the issue and the result is the same as yours.
    If I only check out and check in the item, the workflow works well.
    However, once I set Content Approval Status after checking in the item, the workflow get error.
    As a workaround, I recommend to use two workflow to achieve what you want.
    First, create the first workflow, and allow the workflow to be manually started.
    Then, create the second workflow, and
    start the workflow automatically when an item is changed.
    When you start the first workflow, the document will be set value of the release date. And then the second workflow will be started automatically to set the content approval status.
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Update Approval Status of parent Folder based on approval status of folder items

    Hi,
    I have a SharePoint list which contains folders. Each folder contains one or more items. I wish to update the folder approval status to "Approved" when all the items inside the folder are approved.
    The workflow should trigger whenever the approval status of one or more items inside the folder is changed and is expected to check the approval status of all other items inside the folder. If all the items are approved the folder's approval status should
    be set to "approved".
    I am designing the workflow via SharePoint Designer 2013 and using SharePoint Online 2013 .
    Thanks a lot in advance.

    Hi,
    According to your post, my understanding is that you wanted to update Approval Status of parent Folder based on approval status of folder items.
    Per my knowledge,
    there is no out of the box way to accomplish this with SharePoint.
    Though we can loop the
    folder items to set the content approval status, we can not get the parent folder and then set the content approval status.
    As a workaround, I recoemend to create event reciever to get set the content approval status of the folder items.
    For more information, you can refer to:
    How to: Create a remote event receiver
    How to create a simple Remote Event Receiver for a Custom List in Office 365 SharePoint 2013 site
    Regarding SharePoint Online, for quick and accurate answers to your questions, it is recommended that you initial a new thread in Office 365 forum.
    Office 365 forum
    http://community.office365.com/en-us/forums/default.aspx
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Triggering a scheduled event based on the approval status

    Hi,
    I have created schedules for my project (one task and one milestone) with three phases(draft,approval,approved). The milestone is dependent on the task.Task is created for draft phase and milastone for approval phase
    Now after creating the schedules when I have saved the project, even before i put my project in the draft phase the schedule is getting triggered and can be seen on the workbench in the events channel.
    That means the schedules are getting triggered based on the date irrespective of the task or milestone being completed and also the schedule for a task needs to be triggered each time until the task is completed.
    So now I want accomplish two things -
    1. How can I trigger the schedule only when the user puts it in the draft phase or any required phase ?
    2. How can I send a mail to the collaborator each day until he proceed the project to approved status and only on getting "approved" status the milestone schedule should be triggered.

    Both would require scripting...
    on phase change, add the required events
    build a custom class that gets called nightly via scheduled task and searches through the projects meeting your criteria and sends them an email reminder.
    -Howie Wexler
    www.craftysystems.com

  • Controlling approval status report cancel option

    Dear Experts,
            Is it possible to control the approval status report screen based on Stored Procedure?
            Im having problem with users cancelling their draft documents before any approval status is decided upon the draft. Through the images below i want to control the cancel option they have
    can the update button be controlled through store procedure? as I cant get the object type of this screen.
    thanks in advance
    Regards,
    Balwant

    Hi,
    is the approval status report which can be set as read only in SAP B1 9.0 and above?
    Cause currently im using SAP B1 8.82  Pl 13 and cant set read only
    Regards,
    Balwant

  • Timeout and PO status become Incomplete

    Hi,
    PO approval workflow has been configured according to documentation in Metalink to
    1) send reminder#1 after 2 days
    2) reminder#2 2 days after reminder#1
    3) Auto route to next approval level 2 days after reminder#2
    The problem is, point 3 will change PO status to 'Incomplete' if it is already at the highest approval level and there is no next approval level in the hierarchy. Has anyone encounter that? Is this the standard feature of timeout for PO approval?
    If it is the standard feature of timeout for workflow, is there a workaround where auto routing can be stopped 1 level before the highest approval level?
    Thank you.

    Hi Allison,
    Thanks for your reply. I've checked the web site you give, it's not the same problem I encounter.
    My PR is not in in-process status, it is in incomplete status as if it is a new PR. This happens when the PR has been auto escalated to the highest level in the hierarchy. Guess it doesn't know where to auto escalate to once it reaches the highest level so it changes to incomplete - back to PR requestor.
    Anyone encounter this problem? Or is there a workaround where we can stop auto-escalation once it reaches the highest level in the hierarchy? Appreciate any help/suggestion.
    Regards.

Maybe you are looking for