Collective Deletion of P.O.

Hi Gurus,
I am a PP Consultant.  How do I delete Purchase Orders Collectively?  I need to give restriction on the Date and the Doc Type.  Thanks in advance!
Regards,
Kumar

Hi,
Even if you delete these POs these PO Numbers can not be used further .For deletion of POs enmass use the T Code MEMASSPO and select the field MASSEKKO-LOEKZ and enter the PO Numbers you want to delete and execute and save.
Edited by: DADA on Dec 2, 2008 10:49 AM

Similar Messages

  • Lightroom 4 collections deleted - photo dupes remain

    Hi chaps - I have been messing around with the web module and have created several 'collections' to test out several ideas, LR has created duplicates for all of the separate collections, I have now got to the stage where I have decided what to do so want to delete all of the duplications in "All Photographs" but I thought if I deleted the 'collection' the associated duplicates would be removed but they are still there, I would prefer not to have to go through them all manually .... any advice please ?
    Regards Roger

    Thanks Jon ... here's a link to a screen grab:
    https://dl.dropboxusercontent.com/u/12879319/Screen%20Shot%202013-08-26%20at%2013.23.09.jp g
    As you can see the first image is associated with 'Chistchurch' the second 'Christchurch View' the third and fourth have had the'r 'collections' deleted though these dupes remain ?
    Or am I being stupid.
    Roger

  • Collections - Delete Entry Throws Error

    I'm using four collections on a form. When the user updates the form by selecting the "blank" at the top of the select list one entry in one of the collections, the user gets an integrity constraint error - parent key not found. The collection uses a select list from an LOV. I suspect the item in the collection is displaying the blank but not really getting dropped? When I created these collections EONS ago, I created '-None-' as an item in the LOV as a work-around so the user could choose when deleting the item. We are now finally going live and I want to clean this up.
    Any ideas?
    Thanks and have a great weekend!
    Alexandra

    Sorry - don't know why 'code' '/code' didn't work...
    Hi Peter - I get an integrity constraint error, I think because though I'm deleting the display of the item in the collection, it's not really being deleted???
    code
    ORA-02291: integrity constraint (SPICE_HUNTER1.DOC_SUBJECT_REF_FK1) violated - parent key not found
    /code
    First of all, I have a getID process setup Before Header to dump the parent ID into the form so that the collections have an ID on which to link to the main form. The form has a bunch of fields above the collections and there are four collections at the bottom of the page, and is used to catalog documents. Sooooo the main part of the form above has fields for the form number, title, type, etc. and then each collection at the bottom of the form holds specfic references. The example below holds subject references. The other three hold lists of who's responsible, associated documents to the main form, and to whom the document is distributed. The collections work beautifully except when the user needs to delete one of the items. I set these up a long time ago and I'm now sure for the reason of this error, I just added 'None' to LOV's of each collection so that if the user needed to delete an entry, '-None-' could be selected. I tried using '%'||'null' in the LOV when creating the form, but couldn't get it to work, but I'm thinking this may be close to what I need to do?
    And now that I think about it, if there are five items in the list and the user deletes the third item, it would be great if the list could refresh so there's not a hole in the list, i.e., One, Two, BLANK, Four, Five.
    Thanks for your help!
    code
    ORA-02291: integrity constraint (SPICE_HUNTER1.DOC_SUBJECT_REF_FK1) violated - parent key not found
    /code
    Here's how I have each collection set up:
    Create the Dataset Process - After Header
    code
    apex_collection.create_or_truncate_collection
    (p_collection_name => 'MY_SUBJECT_COLL');
    DECLARE
    v_id NUMBER;
    var1 NUMBER;
    var2 NUMBER;
    var3 NUMBER;
    rw_ct INTEGER;
    cursor c_prepop is
    select subject_ref_id, doc_info_id, docno_id, subject_id
    from DOC_SUBJECT_REF
    where DOCNO_ID = :P3_DOCNO_ID
    ORDER BY 1;
    i NUMBER;
    cntr NUMBER := 15;
    BEGIN
    select COUNT(*) into rw_ct from DOC_SUBJECT_REF
    where DOCNO_ID = :P3_DOCNO_ID
    ORDER BY 1;
    cntr := cntr - rw_ct;
    OPEN c_prepop;
    LOOP
    FETCH c_prepop into v_id, var1, var2, var3;
    EXIT WHEN c_prepop%NOTFOUND;
    APEX_COLLECTION.ADD_MEMBER(
    p_collection_name => 'MY_SUBJECT_COLL',
    p_c001 => v_id,
    p_c002 => var1,
    p_c003 => var2,
    p_c004 => var3
    END LOOP;
    CLOSE c_prepop;
    for i in 1..cntr loop
    APEX_COLLECTION.ADD_MEMBER(
    p_collection_name => 'MY_SUBJECT_COLL',
    p_c001 => 0, --subject_ref_id
    p_c002 => :P3_DOC_INFO_ID,
    p_c003 => :P3_DOCNO_ID,
    p_c004 => 0
    end loop;
    END;
    /code
    Create the Form
    code
    SELECT APEX_ITEM.SELECT_LIST_FROM_LOV(4, c004,'SUBJECT', NULL,'YES', 0, '') SUBJECT
    FROM APEX_COLLECTIONS
    WHERE COLLECTION_NAME = 'MY_SUBJECT_COLL'
    /code
    Capture the Data
    code
    declare
    j pls_integer :=0;
    begin
    for j1 in(
    select seq_id from apex_collections
    where collection_name = 'MY_SUBJECT_COLL'
    order by seq_id)loop
    j:=j+1;
    apex_collection.update_member_attribute(p_collection_name=>'MY_SUBJECT_COLL', p_seq=>j1.seq_id,p_attr_number=>4,p_attr_value=>wwv_flow.g_f04(j));
    end loop;
    end;
    /code
    Write data to the DB
    code
    declare
    begin
    for y in (select TO_NUMBER(c001) x_key, TO_NUMBER(c002) x_1, TO_NUMBER(c003) x_2, TO_NUMBER(c004) x_3
    FROM APEX_COLLECTIONS
    WHERE COLLECTION_NAME = 'MY_SUBJECT_COLL' AND c004 IS NOT NULL ORDER BY x_key) loop -- Updated
    --WHERE COLLECTION_NAME = 'MY_SUBJECT_COLL' ORDER BY x_key) loop
    if y.x_key = 0 and y.x_3 > 0
    THEN
    insert into DOC_SUBJECT_REF(subject_ref_id, doc_info_id, docno_id, subject_id)
    values(DOC_SUBJECT_REF_SEQ.nextval, y.x_1, y.x_2, y.x_3);
    elsif y.x_key > 0 then
    update DOC_SUBJECT_REF
    set
    doc_info_id = y.x_1,
    docno_id = y.x_2,
    subject_id = y.x_3
    where subject_ref_id = y.x_key;
    else
    DBMS_OUTPUT.PUT_LINE ('There’s an error.');
    end if;
    end loop;
    end;
    /code
    Edited by: userRRRYB on Apr 11, 2011 3:03 PM

  • Utility to collect/delete unused links?

    [INDD CC]  I inherited a very long do and have to update all links. Is there a way to collect and delete all unused links from the links palette and the links folder once they've been replaced? Kind of like how the swatch palette has a "select all unused" swatches and you can delete them?
    thnx ~~carol

    I must have read that one too quickly, because I didn't notice that he said "links palette." I thought he was only talking about unused links in a folder. If there are extra items in the links panel, they could be on the pasteboard, but there is a page indicator in the window, so I'm guessing he didn't miss that. May be they are hidden objects (try Object>Show All On Spread) or on a hidden layer (check the layers panel). If they are on the pasteboard but you can't see them, they could have been pushed nearly off the edge. If you select all and deselect the visible items with the shift key, you will see the frame handles of anything that is mostly off of the pasteboard and into never-never land.

  • Collection Deleted, CA Still Seeks Money, Apartment BACK on Friend's Credit Report

    Hi there. Thank you to everyone who posts here regularly! You all have helped me a lot! Let me start by saying, this week my wife and I were preapproved for 250k for our mortgage! We have both been working hard to improve scores. This situation is wrecking my brain. I will keep the story as short as possible... In College (back in 2009-2010) , my best friend and I had an apartment. We resigned to stay another year, but ended up breaking the lease before that year started. Apartment told us then, we would be responsible for rent until it was rented. We never heard from them, until about a year ago when a collection company began calling us both saying we owe $2,000 (collectively). Early this year I disputed with the 3 CRAs as I was never given any time of validation. The account was deleted from all 3 reports. A month later, my friend also disputed... and account was deleted from his reports. The calls, however, NEVER stopped. They continued to call us both. We ignored the calls. My friend is also getting a mortgage with his wife... to his surprise, the account has been back added to his experian report. It is not on his other 2. It currently is not on ANY of mine. His bank says he must take care of the collection. He has since called the company and they told him the following:- pay 1500 and they will report as setted/paid in full- pay the entire 2000 and they will delete So here are the questions... First, I do not want this collection on my credit, as it will for sure lower my scores and put me at risk of no longer qualifying for the loan So... Do I/wea) offer to pay the 1500 (with my friend)? My fear however, is that they report it as a paid collection to the 3 CRAs and the CRAs add it as a collection that has been closed. CAN THIS HAPPEN? DO YOU THINK THIS WOULD HAPPEN? WHAT IMPACT DO YOU THINK THIS WOULD HAVE ON MY SCORES? OR ON MY MORTGAGE? b) Do I offer to pay half of the 2000 to get the account "deleted" even though it is not on any of my reports? c) Do I do nothing since it has not been added to my reports by now? aka... should I take the approach that if is hasnt been added by now, do not fear it being added in the future?  PLEASE PLEASE help and offer any insight you may have. I am leaning towards paying the 1500 with my friend but I DO NOT want any trace of this account reappearing on my credit report. What to do????  Thanks in advance for your help 

    youngc wrote:
    Hi there. Thank you to everyone who posts here regularly! You all have helped me a lot! Let me start by saying, this week my wife and I were preapproved for 250k for our mortgage! We have both been working hard to improve scores. This situation is wrecking my brain. I will keep the story as short as possible... In College (back in 2009-2010) , my best friend and I had an apartment. We resigned to stay another year, but ended up breaking the lease before that year started. Apartment told us then, we would be responsible for rent until it was rented. We never heard from them, until about a year ago when a collection company began calling us both saying we owe $2,000 (collectively). Early this year I disputed with the 3 CRAs as I was never given any time of validation. The account was deleted from all 3 reports. A month later, my friend also disputed... and account was deleted from his reports. The calls, however, NEVER stopped. They continued to call us both. We ignored the calls. My friend is also getting a mortgage with his wife... to his surprise, the account has been back added to his experian report. It is not on his other 2. It currently is not on ANY of mine. His bank says he must take care of the collection. He has since called the company and they told him the following:- pay 1500 and they will report as setted/paid in full- pay the entire 2000 and they will delete So here are the questions... First, I do not want this collection on my credit, as it will for sure lower my scores and put me at risk of no longer qualifying for the loan So... Do I/wea) offer to pay the 1500 (with my friend)? My fear however, is that they report it as a paid collection to the 3 CRAs and the CRAs add it as a collection that has been closed. CAN THIS HAPPEN? DO YOU THINK THIS WOULD HAPPEN? WHAT IMPACT DO YOU THINK THIS WOULD HAVE ON MY SCORES? OR ON MY MORTGAGE? b) Do I offer to pay half of the 2000 to get the account "deleted" even though it is not on any of my reports? c) Do I do nothing since it has not been added to my reports by now? aka... should I take the approach that if is hasnt been added by now, do not fear it being added in the future?  PLEASE PLEASE help and offer any insight you may have. I am leaning towards paying the 1500 with my friend but I DO NOT want any trace of this account reappearing on my credit report. What to do????  Thanks in advance for your help I would do option 2. You both were responsible for it, so its only fair to split it, and try and keep it off your buddies reports.

  • Want to collect deletion of query in request

    Hi,
    i want to delete a query form the P, for that need to collet the deletion of a query in a request how can i do that????
    Regards
    Kiran
    Edited by: kiran kumar on Jan 21, 2009 9:48 PM

    hi kiran
    if you want to delete the query while doing the deletion it will ask you the request....tag into some request and send it to QA..
    Regards
    Srini
    Edited by: Srinivas Gogineni on Jan 21, 2009 5:21 PM

  • Collective deletion of Planned Orders

    Hi,
    We want to delete MRP generated planned orders collectivily. However we are using MD16 for it, but it is very slow process to get rid of unwanted planned orders. Our limitation is we can't go for re-generative planning.
    Please help with any BAPI, function module or transaction code.
    Regards,
    Amol

    Dear Amol,
    Check this BAPI BAPI_PLANNEDORDER_DELETE in SE37.
    Regards
    Mangalraj.S

  • How to delete firmed schedule line collectively.

    Dear All,
    Greetings...
    Please give your valuable input to carry out the collective deletion of firmed schedule lines.
    Thanks in advanc,
    VIjay

    please check this link..
    [https://forums.sdn.sap.com/click.jspa?searchID=25906013&messageID=4862339]
    karthick

  • I cannot delete chrome bookmark collection in Safari

    I had Google Chrome installed but deleted it. I also imported a bunch of bookmarks long ago. Anyway there is a collection called Chrome that I want to delete but cannot. Everytime I try it causes Safari to crash with the spinning multicolored pinwheel and I have to force quit.
    I had the collection deleted yesterday after many crashes and forced reboots but today it had reappeared. I can turn the Chrome collection off in preferences but I want to delete them from my HD.
    Please help, this is really frustrating since all I should have to do is highlight the collection and select DELETE. I also tried going to the library folder and deleting the bookmarks.plist but the Chrome collection is still there. I do not have a google account - I deleted it two weeks ago - so it should not be syncing from anywhere to make the bookmarks reappear.
    I thought everything was suppose to be easy with a Mac!

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software — potentially for the worse. The following procedure will help identify which such modifications you've installed. Don’t be alarmed by the complexity of these instructions — they’re easy to carry out and won’t change anything on your Mac. 
    These steps are to be taken while booted in “normal” mode, not in safe mode. If you’re now running in safe mode, reboot as usual before continuing. 
    Below are instructions to enter some UNIX shell commands. The commands are harmless, but they must be entered exactly as given in order to work. If you have doubts about the safety of the procedure suggested here, search this site for other discussions in which it’s been followed without any report of ill effects. 
    Some of the commands will line-wrap or scroll in your browser, but each one is really just a single line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then copy it. The headings “Step 1” and so on are not part of the commands. 
    Note: If you have more than one user account, Step 2 must be taken as an administrator. Ordinarily that would be the user created automatically when you booted the system for the first time. The other steps should be taken as the user who has the problem, if different. Most personal Macs have only one user, and in that case this paragraph doesn’t apply. 
    Launch the Terminal application in any of the following ways: 
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.) 
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens. 
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid. 
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign (“$”) or a percent sign (“%”). If you get the percent sign, enter “sh” and press return. You should then get a new line ending in a dollar sign. 
    Step 1 
    Triple-click the line of text below to select it:
    kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}' | open -f -a TextEdit 
    Copy the selected text to the Clipboard by pressing the key combination command-C. Then click anywhere in the Terminal window and paste (command-V). A TextEdit window will open with the output of the command. If the command produced no output, the window will be empty. Post the contents of the TextEdit window (not the Terminal window), if any — the text, please, not a screenshot. You can then close the TextEdit window. The title of the window doesn't matter, and you don't need to post that. No typing is involved in this step.
    Step 2 
    Repeat with this line:
    { sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|org\.(amav|apac|cups|isc|ntp|postf|x)/{print $3}'; sudo defaults read com.apple.loginwindow LoginHook 2> /dev/null; } | open -f -a TextEdit 
    This time you'll be prompted for your login password, which you do have to type. Nothing will be displayed when you type it. Type it carefully and then press return. You may get a one-time warning to be careful. Heed that warning, but don't post it. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. 
    Note: If you don’t have a login password, you’ll need to set one before taking this step. If that’s not possible, skip to the next step. 
    Step 3
    launchctl list | sed 1d | awk '!/0x|com\.apple|org\.(x|openbsd)/{print $3}' | open -f -a TextEdit 
    Step 4
    ls -1A /e*/{la,mach}* {,/}L*/{Ad,Compon,Ex,Fram,In,Keyb,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Spo,Sta}* L*/Fonts .la* 2> /dev/null | open -f -a TextEdit  
    Important: If you formerly synchronized with a MobileMe account, your me.com email address may appear in the output of the above command. If so, anonymize it before posting. 
    Step 5
    osascript -e 'tell application "System Events" to get name of every login item' | open -f -a TextEdit 
    Remember, steps 1-5 are all copy-and-paste — no typing, except your password. Also remember to post the output. 
    You can then quit Terminal.

  • Overwrite existing collection field:: shouldn't it delete old elements

    I call a setter method and wholly replace a collection field of a
    persistent object with an entirely new collection. (the collection is
    made up of other persistence-capable objects).
    I'm not seeing the old collection contents removed from the DB, infact,
    they remain and the collection just grows.
    I've marked the collection as "element-dependent" and that didn't work
    either.
    How is this supposed to work?
    david

    Sorry, I did not read enough to realize that "dependent" says that if the
    field in the parent class is nulled, then the object is deleted. So I
    think I have my answer.
    Thank you for your help.
    -Chris
    Chris West wrote:
    I may not have asked my question correctly. Element-dependent means that
    the child object will be deleted when the parent is deleted. But what I'm
    looking for is a feature to delete the children objects when they are
    removed from the parent collection. Is that available in 3.0?
    -Chris
    Marc Prud'hommeaux wrote:
    Chris-
    Yes, this is availabe in 3.0. See:
    http://docs.solarmetric.com/manual.html#element-dependent
    In article <[email protected]>, Chris West wrote:
    Is this feature available in 3.0.1?
    If not, why? Seems like a simple enough thing to implement.
    -Chris
    Marc Prud'hommeaux wrote:
    Chris-
    Is there any way to set up Kodo (2.5.4) to delete "child" objects when
    they are removed from a collection in a "parent" persistent object?
    No. Your best bet is to mediate access to the Collection that will also
    delete the instance when the element is removed. E.g.,
    public void deleteElementFromMyCollection (Object ob)
    myCollection.remove (ob);
    JDOHelper.getPersistenceManager (ob).deletePersistent (ob);
    In article <[email protected]>, Chris West wrote:
    I'm having a similar problem where I remove objects from a collection
    and
    expect them to be deleted, but they don't. So I set the back pointer
    in
    the child object to null, and now they get removed from the collection
    permanently, but they are left in the database as orphans.
    Is there any way to set up Kodo (2.5.4) to delete "child" objects when
    they are removed from a collection in a "parent" persistent object?
    -Chris
    Stephen Kim wrote:
    Element-dependent is for cascade delete, not collection deletion.
    My
    guess is that you are not setting both sides of the relation. I.e.if
    you have a collection of people, each of whom have a reference totheir
    company, you should also set the people's company to null as well as
    removing the set.
    David Michaels wrote:
    just a polite ping to see if anyone knows the answer to this
    question?
    David Michaels wrote:
    I call a setter method and wholly replace a collection field of a
    persistent object with an entirely new collection. (the
    collection
    is
    made up of other persistence-capable objects).
    I'm not seeing the old collection contents removed from the DB,
    infact, they remain and the collection just grows.
    I've marked the collection as "element-dependent" and that didn'twork
    either.
    How is this supposed to work?
    david
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Delete Outbound deliveries at a mass level

    Dear  Friend,
    Is there any transaction code where i can collectively delete 30 to 40  Outbound deliveries in
    one go.
    Best Regards,
    Gurpreet Singh Saini.

    Hi,
    Check the forum link
    [Mass Deletion of deliveries|Re: Collective deletion of Outbound deliveries (PGI not done)]
    Regards,

  • Planned order deletion in mass

    Hi,
    I want to delete all palnned orders in the plant.
    Planned order can be deleted using MD16. In MD16, MRP controller is the mandatory field. We can't delete all the planned orders in one stretch in a plant. We can delete the planned orders in a plant MRP controller by MRP controller only. My requirement is without giving MRP controller, the system has to delete all the planned orders in the given plant.
    Is there anyother way to delete all the planned orders in a plant.
    Regards,
    V. Suresh

    Dear Suresh,
    Check whether T code MDBA,can help you.
    Also refer this thread.
    Re: Collective deletion of Planned Orders
    Regards
    Mangalraj.S

  • Turn on editing fields for collections

    created the following collection(TEST_EMP), had no problems to delete rows. But if I turn on any editing fields ( eg. ename,com by changing the field to TEXT under report column), I will always get the error msg: "invalid number" when attempt to delete any row .
    Can you help ?
    Following is my process for creating collection, delete row and query on creating report screen with check box
    Thanks
    Zeng
    --create the collection
    if apex_collection.collection_exists(p_collection_name => 'TEST_EMP')
    then apex_collection.delete_collection (p_collection_name => 'TEST_EMP');
    end if;
    -- create new collection
    apex_collection.create_collection_from_query (p_collection_name => 'TEST_EMP',
    p_query => 'select EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO from test_emp
    order by empno' );
    -- show edit screen
    select
    APEX_ITEM.CHECKBOX(1,seq_id) SEQ_ID,
    seq_id as seq_id_display
    ,C001 empno
    ,c002 ename
    ,c003 job
    ,c004 manager
    ,to_date(c005,'DD-MON-YY') hiredate
    ,c006 SAl
    ,c007 com
    ,c008 dept
    from apex_collections
    where collection_name='TEST_EMP'
    and C008='20'
    order by c001
    ------- delete selected row
    FOR r in 1..APEX_APPLICATION.G_F01.COUNT
    LOOP
    apex_collection.delete_member
    (p_collection_name =>'TEST_EMP',p_seq => apex_application.G_F01(r));
    end loop;

    You need to call 'becomeFirstResponder' on the text field. Typically done in your view controller's 'viewWillAppear' method.

  • Moving a site collection to be a sub site of the same site collection

    Currently I have a publishing site collection of type enterprise wiki, that stores wikis for our HR department. And I added all the current wiki pages to it. But in the future we might need to create another sites for different departments suh as; finance,
    technical, etc.
    So I might need to have the departments represented as subsites of the same site collection.and in this situation I will need to move the current HR site collection to be a sub site of the current site collection. I know that I can move a site collection
    to be a sub site by doing:-
    Export the Site Collection
    Create the New Subsite
    Import the Exported Site Collection
    Delete the Old Site Collection
    But I have the following questions:-
    Is it possible to move a site collection to be a sub site of the same site collection in SP2013, baring in mind that i am using a publishing site. and on this link it is mentioned that it is not possible in SP2010 http://blogs.technet.com/b/stefan_gossner/archive/2009/05/27/limitations-of-stsadm-o-export-import-related-to-publishing-sites.aspx?
    Can I continue with my current approach of having my HR wiki inside the site collection (not as a sub site). And in the future if I need to have the departments as sub sites , I can move the current site collection to be a sub site ?
    Currently I have created new page layouts for the current site collection, so will moving my site collection to be a sub site moves the page layouts using the export/import approach ?
    What are the things I will lose when I move a site collection to be a subsite , in respect to data, page layouts, web parts, etc.
    Thanks in advance for any help.
    Regards

    It is not possible to export the site collection to a sub site irrespective of what  type of site template you are using. You can only export a sub site and import it to a sub site not site collection to a sub site. If you import a publishing site,
    the pages do not have the correct link to the page layout. The the page is hard-coded to the page layout from the original site. You can use the powershell specified in the below link to fix them
    https://donalconlon.wordpress.com/2011/01/21/fixing-pages-and-their-layouts-after-importing-a-published-site/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Is there an option to mass delete outbound deliveries?

    hello
    Is there any standard SAP transaction to MASS delete outbound deliveries? We need to delete a bunch of deliveries and wanted to check if there is any std sap transaction?
    Cheers
    VJ

    Hi,
    I assume no subsequent documents are created for the deliveries and PGI is NOT done. If this assumption is correct, then check the below forum link;
    [collective deletion of deliveries|Re: Collective deletion of Outbound deliveries (PGI not done)]
    Regards,

Maybe you are looking for

  • Help needed in web service example. Thank!!!

    Hi, I tested WebLogic 6.1 message-style web service example. For the ProducerClient.java example, I tested successfully. But for the ConsumerClient.java example, I kept getting error messages. Can any expert offers some explanation or advice? Need to

  • Can I use anonymous access for XDB webfolders?

    Version info: Oracle 11.1 running on Windows 2008 server. Clients are still on Windows XP. Q1: Is it possible to create a webfolder into XDB on the client in such a way that you need not supply a database username and password? Using the anonymous us

  • Creative Cloud is blank every time i open it and i can't log in!

    I have installed Creative Cloud because I want to try out Photoshop CC to see if i want to buy it! But every time i open creative cloud, its just blank and i can't log in or do anything. I have tried uninstalling it, deleting cookies and reinstalling

  • Problem with cursors in JDBC

    Hi, I'm new to JDBC. I'm trying to insert data into an Oracle database. I'm using the prepare statement and the update to commit the transaction. But after inserting about a 100 rows into the database, it gives an exception that the max limit on curs

  • **Proxy creation in sproxy tcode

    Hi all, I am trying to create client(sender)proxy. 1)Created the message interfaces in the scenario,In the sproxy Tcode created the Proxy by right clicking the message interface and after creating the proxy,activated the same. When I bouble clicked o