How to re-submit a blanket release

Hi All,
The BPA header was in requires re-approval status and during that time frame some releases got created .
Now we brought the Blanket po back into Approved status .Now wanted to know how to make the releases into APPROVED status from Incomplete status ...we have very huge blankets and release count in > 80 K so cannot open it manually .Is there a way to do this programatically ?
--Chandra                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Hi Roger,
Thank you for your reply. The podcast has been gone for over a week. I was able to resubmit it by slightly changing the title, but now the podcast id is different and it's basically like a new podcast. All the hard work that I have put in this podcast and over a hundred 5 star reviews are all gone.
Contacted iTunes support, but takes too long for them to get back to me with the fix. They say they want me to have the most enjoyable experience with iTunes, but I'm just getting more frustrated.
Best,
Serge
Message was edited by: podcasting

Similar Messages

  • How to create a Blanket Release in iProc from a approved requistion

    Hi Gurus,
    How to create a blanket Release in iProcurement from a approved requisition. I have followed the below steps.
    1. Created a BPA from Front end.
    2. Run Loader Data program.
    3. Above program reflected the BPA in iProc.
    4. Created requisition from BPA.
    5. Requisition has been approved.
    After this i am stuck. How to proceed ahead. I want to create a Blanket Release from approved PR and then receive in iProcurement.
    please help me on this. We are using 11.5.10.2
    Regards,
    john

    911765 wrote:
    Hi Mahendra,
    Thank you so much for your reply.
    So you mean to say that it all depends upon the Sourcing Rule and ASL based upon that system would automatically create a Blanket Release or If its Automatic Release/Review then we have to manually create release through autocreate.
    The reason why i am asking this query is now when i tested it, system is automatically creating release and starngely there is no Sourcing Rule and ASL has been defined.
    But we are looking for a Manual Release through autocreate window.
    It would be great if you could please suggest.
    Regards,
    JohnJohn,
    When you say system is automatically creating release..as far as i know...it should be referencing a PO..correct...in the releases window..
    can you pull that up..and see if you can get any clue..bcz that PO would BPA...
    Also I am not that much into Iproc...I don't know...whether Iproc has some other setups
    HTH
    Mahendra

  • BLANKET RELEASE가 INPROCESS 상태에서 더 이상 진행되지 않을 경우 해결 방법

    제품: MFG_PO
    작성날짜 : 2006-05-11
    BLANKET RELEASE가 INPROCESS 상태에서 더 이상 진행되지 않을 경우 해결법
    ======================================================================
    PURPOSE
    승인을 위해 Blanket Release가 submit 되었으나,어떤 이유로 인해
    'INPROCESS' 상태로 되는 경우가 있다.
    'INPROCESS' 상태가 된 그 원인 진단을 위란 workflow가 없는경우(workflow
    purge process에 의해 purge 되는 경우 등...) 아래의 방법으로 해결한다.
    Explanation
    Original workflow activities가 더 이상 존재하지 않아서,
    workflow activity를 종결하거나 document 진행을 시도하면 workflow는 fail
    되며 document는 'INPROCESS' 상태로 fail 된다.
    이를 해결하기 위한 solution을 아래의 steps에 따라 작업한다.
    1.아래 sql을 실행하여 Requires Reapproval로 release를 update 한다.
    Update가 성공적으로 끝나면 commit을 한다.
    Script 실행시 Org_id가 prompt 되므로 document가 존재하는 org id를 입력
    한다.
    -- START OF RESET SCRIPT
    set serveroutput on size 100000
    DECLARE
    CURSOR reltoreset is
    SELECT por.wf_item_type, por.wf_item_key, por.po_release_id, por.release_num,
    por.release_type, por.revision_num, poh.segment1
    FROM po_headers_all poh, po_releases_all por
    WHERE poh.segment1 = ' &PO_NUMBER
    and por.release_num = to_number('&REL_NUM')
    and por.org_id = to_number('&org_id')
    and por.org_id = poh.org_id
    and por.po_header_id = poh.po_header_id
    and por.authorization_status IN ('IN PROCESS', 'PRE-APPROVED')
    and NVL(por.cancel_flag, 'N') = 'N'
    and NVL(por.closed_code, 'OPEN') != 'FINALLY_CLOSED';
    CURSOR errwf(pitem varchar2, pkey varchar2) is
    SELECT ITEM_TYPE, ITEM_KEY
    FROM wf_items
    WHERE PARENT_ITEM_TYPE = pitem
    AND PARENT_ITEM_KEY = pkey
    AND END_DATE is NOT NULL;
    CURSOR maxseq(id number, subtype po_action_history.object_sub_type_code%type) is
    SELECT nvl(max(sequence_num), 0)
    FROM po_action_history
    WHERE object_type_code = 'RELEASE'
    AND object_sub_type_code = subtype
    AND object_id = id
    AND action_code is NULL;
    CURSOR poaction(id number, subtype po_action_history.object_sub_type_code%type) is
    SELECT nvl(max(sequence_num), 0)
    FROM po_action_history
    WHERE object_type_code = 'RELEASE'
    AND object_sub_type_code = subtype
    AND object_id = id
    AND action_code = 'SUBMIT';
    submitseq po_action_history.sequence_num%type;
    nullseq po_action_history.sequence_num%type;
    BEGIN
    dbms_output.put_line('------------------------------------');
    dbms_output.put_line('Data Manipulation Scripts Disclaimer');
    dbms_output.put_line('------------------------------------');
    dbms_output.put_line('As always please ask customer to run the scripts on their test instance
    first ');
    dbms_output.put_line('before applying it on production. Make sure the data is validated for ');
    dbms_output.put_line('correctness and related functionality is verified after the script has been
    dbms_output.put_line('run on a test instance. Customer is responsible to authenticate and verify ');
    dbms_output.put_line('correctness of data manipulation scripts.');
    FOR pos in reltoreset LOOP
    dbms_output.put_line('Processing '||pos.release_type
    ||' Release Number: '
    ||pos.segment1||'-'||to_char(pos.release_num));
    dbms_output.put_line('......................................');
    dbms_output.put_line('Closing Notifications...');
    BEGIN
    UPDATE wf_notifications set status = 'CANCELED'
    WHERE notification_id in (
    select ias.notification_id
    from wf_item_activity_statuses ias,
    wf_notifications ntf
    where ias.item_type = pos.wf_item_type
    and ias.item_key = pos.wf_item_key
    and ntf.notification_id = ias.notification_id)
    AND NVL(status, 'OPEN') = 'OPEN';
    EXCEPTION
    WHEN OTHERS THEN
    null;
    END;
    dbms_output.put_line('Aborting Workflow...');
    BEGIN
    WF_Engine.AbortProcess(pos.wf_item_type, pos.wf_item_key);
    EXCEPTION
    WHEN OTHERS THEN
    null;
    END;
    FOR wf in errwf(pos.wf_item_type, pos.wf_item_key) LOOP
    BEGIN
    dbms_output.put_line('Closing Error Notifications ...');
    UPDATE wf_notifications set status = 'CANCELED'
    WHERE notification_id in (
    select ias.notification_id
    from wf_item_activity_statuses ias,
    wf_notifications ntf
    where ias.item_type = wf.ITEM_TYPE
    and ias.item_key = wf.ITEM_KEY
    and ntf.notification_id = ias.notification_id)
    AND NVL(status, 'OPEN') = 'OPEN';
    dbms_output.put_line('Aborting Error Workflow...');
    UPDATE WF_ITEMS SET
    END_DATE = sysdate
    WHERE ITEM_TYPE = wf.item_type
    AND ITEM_KEY = wf.item_key;
    EXCEPTION
    WHEN OTHERS THEN
    null;
    END;
    END LOOP;
    dbms_output.put_line('Updating Release Status...');
    UPDATE po_releases_all
    set authorization_status = decode(pos.revision_num, 0, 'INCOMPLETE',
    'REQUIRES REAPPROVAL'),
    approved_flag = decode(pos.revision_num, 0, 'N', 'R'),
    wf_item_type = NULL,
    wf_item_key = NULL
    where po_release_id = pos.po_release_id;
    OPEN maxseq(pos.po_release_id, pos.release_type);
    FETCH maxseq into nullseq;
    CLOSE maxseq;
    OPEN poaction(pos.po_release_id, pos.release_type);
    FETCH poaction into submitseq;
    CLOSE poaction;
    IF nullseq > submitseq THEN
    dbms_output.put_line('Deleting PO Action History...');
    DELETE FROM po_action_history
    WHERE object_id = pos.po_release_id
    AND object_type_code = 'RELEASE'
    AND object_sub_type_code = pos.release_type
    AND sequence_num >= submitseq;
    END IF;
    dbms_output.put_line('Done Processing.');
    dbms_output.put_line('................');
    dbms_output.put_line('Please issue commit, if no errors found.');
    END LOOP;
    END;
    -- END OF RESET SCRIPT
    2.Script가 error 없이 끝나면 'Commit;'을 실행한다.
    3.Enter Release form에서 문제의 document를 조회하고, 승인을 위해 submit
    한다.
    Reference Documents
    Note 296458.1

  • Open Interface or Public/Private API for Blanket Release

    Hi All,
    I am on Oracle Apps 11.5.10.2
    Is there any open interface available to import the blanket releases in Oracle system. I have searched the meta link and found the doc 160781.1. According to the document there has been a future enhancement request logged by Oracle for this functionality but I am interest if any one know about some private API available to do same job. I will also appreciate if someone can share his project experience in migrating the blanket release to the Oracle.
    Thanks
    Vishalaksha

    I do not think it is available in 11i -- Please see (HOW TO IMPORT BLANKET SALES AGREEMENT AND BLANKET RELEASE. (Doc ID 336086.1)) for details.
    You may log a SR and confirm this with Oracle support.
    Thanks,
    Hussein

  • Default different blanket release buyer via PR interface

    Hi,
    My scenario:
    blanket agreement set buyer A, and all the sourcing funtion have been set (ASL, assignment set, sourcing rule..),
    I want to customize a program to insert PR interface, then create new blanket release automatically, but the new blanket release's buyer is B,
    how to do that? I suppose the PR interface column suggested_buyer_id could achieve this function, but it's not workable

    PR interface suggested_buyer_id column won't work.
    It just puts the buyer name on the requisition; not on the release.
    Sandeep Gandhi

  • Unable to Cancel approved blanket release. system gettinghanged.

    Hi ,
    I have a blanket release and when I try to cancel the release wither at header or line or shipment level, it gets hanged...
    Any idea, why it is getting hanged and how to cancel this release ?
    Thanks
    Anil

    you can use V$LOCKED_OBJECT table to find out the locked objects and then kill that session using ALTER SYSTEM KILL SESSION '< sid>,<serial#>';
    you can get the serial# from V$SESSION corresponding to the session_id from V$LOCKED_OBJECT
    also you can use UTLLOCKT.SQL provided by oracle to get a report of locked objects.
    Thanks
    Tapash

  • Not getting Email notification upon blanket release was created

    Hi,
    We are on Oracle EBS 11.5.10 and we have blanket release created by importing PO requisition, and ASL Supplier-Item's Release Method is "Automatic Release". Once the blanket release is created, there is no email notification sent out based on Supplier notification method?
    Now the notification is working for items with release method set to "Release Using AutoCreate" and for regular POs. But we need the "Automatic Release" items to create notification to send to suppliers as well. Anyone has experience to get that to work?
    Thanks!
    Mike.

    All the regular communication methods (print, fax, email) are spawned from the Approval workflow process.
    If the requisition line is sourced to a local BPA and if the ASL release generation option is set to "Automatic Release" then the concurrent request to create the release. This concurrent request will always create the approved releases; the system does not even launch the approval process. So none of the communication methods are triggered. Usually this option is used with batch communication methods like EDI or daily scheduled printed reports (Printed PO Report with NEW documents option).
    If the ASL option is set to "Automatic Release/Review" option then the concurrent request "Create Releases" creates releases in incomplete status. The buyers can then review them and manually submit it for approval. As part of this approval, the communication options can be selected.
    if the ASL option is set to "Release using Autocreate" then the requisition should be either manually created into a release. Optionally if the "Create Documents" workflow is setup that workflow can also create the releases. In the "Create Documents" workflow there is an option to launch the Release approval process. The "Create Documents" workflow never sets the documents to approved status automatically. So the releases created using "Create Documents" workflow will go through Release approval workflow and can leverage the communication methods.
    If you "have to" use the "Automatic Release" then you might need to leverage the standard batch communication methods / provide your own batch communication methods. When the document is communicated (Printed PO Report or EDI and etc), system updates the print count (increment) and print_date (sysdate) in the po_headers / po_release table. Thus when it is scheduled in a batch, it can determine the NEW documents (no print count at-all) and CHANGED documents (print count is one more from archive, but the revision number is same as the one in archive). If you are providing your own communication method, you can also try using similar model.
    Regards, Shiva

  • With a contract number, how to know the total PO release value against it?

    Usually one contract corresponds to multiple PO records, now we know the contract number, then how to know the total PO release value against this contract.  In other word, we would like to know the total release value of all the POs with the same contract number.  To just input the contract number in EKPO table? but then look for which field in this table to add these PO release values up?
    We will give you reward points!
    Thanks!

    hi Mohammad,
    By following your instruction, input the contract number 4800000112 into Document number field, then hit Enter, get the following (only copy two records here for example), but kind of a mess.  Could you let us know which one is the PO release value for this contract?
    Contract   Type Vendor     Name                                 PGp Agmt. date
      Item  Material           Short text                               Mat. group
      D I A Plnt SLoc                 Targ.qty. Un       Net price  Curr.   per Un
    4800000112 WK   2000012012 GULF INTERSTATE FIELD SERVICES       QBH 06/20/2006
    Agreement start06/20/2006 Agreement end 12/31/2007
    Tgt. val.        1,000,000.00  USD   Open          1,000,000.00 USD   100.00 %
      00001                    Inspection Svcs, Construction            R3VNI
      L   U                                  0  UL            0.00  USD       1 EA
      00002                    Chief Inspector                          R3VNI
      L   U                                  0  DAY         390.00  USD       1 DAY

  • My 9 year old somehow ran up $99.00 while playing games on my iPad. How do I submit for a refund?

    My 9 year old son somehow ran up $99.00 in app purchases on my iPad. How do I submit for a refund? I have been all over the website but of course, this is the ONE thing I can't find.

    There are no refunds.
    You can try contacting itunes support and asking for an exception.
    Click "Support" at the top of this page, then click the link under "Contact Us"

  • How to find out who has released the purchase order?

    Hi All,
    I have a PR number lets say 10231322 and somebody has release it. Could any one please tell me how to find out who has release it?
    Waiting for your kind replies......
    Thanks in advance.
    Regards,
    Faisal

    Hi,
    When you are in tr ME23N, use the menu: environment > header changes.
    Rgds,
    Suzy

  • How do I submit a bug to microsoft for TEE

    I'm not sure but I think I may have found a bug in TEE on Linux.  The
    question on stackoverflow was answered but I've just run into the same problem when trying to merge our trunk to my branch.  In short, the root of the problem is that was a directory named
    Directory.  Over the course of time, our naming conventions changed and this directory became named
    directory (the case change).  Interestingly, two files (a *.cpp and *.h) somehow were still associated with the first directory name though the directory named was changed and preserved the new case.  The problems should be apparent for Linux
    users.
    Now, as the link I provided mentions, I did try to fix this by using the tf rename command, but after the command was executed to rename the first file, I could do nothing more using TEE because of this error:
    java.io.FileNotFoundException: /home/andy/devel/project/directory/code.cpp (No such file or directory).  Ok, I just moved on.  A coworker executed the very same command from a Visual Studio Command Prompt and it worked and he was
    able to check in the named files.  "Great," I thought, I'll merge with main and continue.  I did so using the
    tf merge -recursive <source_branch> <dest_branch> and promptly ran into the same problem when trying to do
    tf status and any other tf command. 
    It seems that there might be a bug in how metadata is handled in this case when using TEE in Linux.  How can I submit this to Microsoft?

    http://www.apple.com/feedback/itunesapp.html
    https://discussions.apple.com/thread/4553482 - "Many albums' artwork doesn't display in my Library.  However once I pull up the info window for one track, and return to the album list, the artwork magically appears."
    "...some album covers were missing in album view. Apple says this is a rare bug, but one it has solved and will fix in a minor update soon." - http://allthingsd.com/20121204/itunes-gets-an-upgrade-without-missing-a-beat/

  • I want to connect a FLIR camera to my iPad. How can I submit a PAL signal to my iPad?

    I want to connect a FLIR camera to my iPad. How can I submit a PAL signal to my iPad?

    Thanks, too bad. Now I have to get a different tablet, ****.

  • How Can I Submit A Concurrent Program Using Form Personalizaton?

    How can I submit a concurrent program? Please help!
    Thanks in advance
    PhuTri

    I think the problem in your case coould be that the Concurrent Program you are trying to run has not been registered in the responsibility from which you are runnig it.
    For eg. You are trying to run a program from Inventory Super User responsibility and the request group attached to the responsibility is say 'RG Inventory', but the concurrent program which you are trying to run from your inventory super user responsibility is registered under some other request group say 'RG Order Mangement' which is not attached to the nventory responsibility.
    So register the program under correct request group and see if this helps you.
    Other possibility is that check if you have permission to submit request from that responsibility. You can check this by going to the Menu ->View If the Request menu is disabled then you cannot submit the request.

  • How can i submit form-data with acrobat pocket pc

    how can i submit form-data (http-post) on a PPC?
    how can i store the data offline?
    which submit-functions are availabe for the pocket pc reader?
    do i need ARES?
    where can i find a documentation of of the available functions for the ppc version?
    where can i fond form-samples for ppc?
    from the docu on my pocket pc:
    Submit form data using handheld devices over a wireless connection. If you are working offline, the data is temporarily stored, then submitted once a connection is established. Send forms by e-mail or directly to the destination server using a cradle or cable

    To your question regarding the Pocket PC version of Reader, I downloaded Adobe Reader for Pocket Pc 2 and installed it on my HP iPAQ . I then loaded my test PDF file onto the iPAQ. The Reader for Pocket PC preformed an email submission fine. However, I received no indication that anything happened when I tried an HTTP Post. So I think you can only do an email submission.
    In general, I have been testing to see how much I can do without the Live Cycle Reader Extensions, since for sure I will never be able to purchase them. What I have found is that for Acrobat Reader 7, the email submission works for all of the people I have asked to test it, but the HTTP Post has worked for only one of the two people who have tested it so far with Reader 7 (the one for which it worked claims that he only has Reader 7 on his computernot Acrobat).

  • But how to use submit??

    but how to use submit?? i mean how to generate an event thru submit and how to receive these values in the next page

    but how to use submit??You can do it by using Simple HTML Code
    <INPUT TYPE="SUMBIT" VALUE="SUBMIT">
    i mean how to generate an event thru submit and how to receive these values in the next pageTo generate an event through Submit! You need to do this using java script.
    I think you are talking about assingning some values on the click of submit and collecting those values in the next page!
    To do that
    keep some input fields in page1. Then try to assign the values to those input fileds using javascript through onclick event.
    <INPUT TYPE="SUMBIT" VALUE="SUBMIT" onclick="javascript:callSomeFunc()">
    In
    callSomeFunc() {
    //Assign values to the hidden fields
    In next page say page2 collect those values using request.getAttribute(" InputHiddenFieldsName);
    That's it.

Maybe you are looking for

  • Which team can help if the name of iView is not translated in other languag

    Hi All, Do you know which team can help if the name of iView is not translated in other language such as Portuguese? Thanks, Eda

  • AX does not creat new network?

    Trying to set up 2 AX to extend an existing wireless network (created by an modem/router), I instead chose to have one AX create a new network and have the second AX extend the one created by AX 1. Ax #1 - BASE - is connected to the router by cable,

  • Merging Parties with Extensible Attributes

    Hi, I am using a number of extensible attributes in the Data Hub and would like to merge two companies (with multiple Party Sites which have extensible attributes). Now when I run the simple Merge the extensible attributes are not carried over to the

  • Jakarta file Upload

    I am trying to find commons-fileupload-1.0.jar from here: http://jakarta.apache.org/site/downloads/downloads_commons-fileupload.cgi 1.) Do I download the binary or source? 2.) Do I change .zip to .jar 3.) Do I stick this jar in ..\Tomcat\common\lib o

  • What's up with CUPS?

    i am trying to set some defaults (print at actual size and don't rotate) which /seem/ like they should be defaults but aren't. and between the printer interface and my various OS's and my brain being filled with other stuff i have had a hard time wit