Deleting Multiple Maintence plan which are inactive

Hi Guys
Daily morning we are running IP30 for different sort field ie WS01,WS02,WS03 etc., we enter the following in the transaction
1. Maintplant sort field      ws02 under interval for call objects 40 DAY tick Resheduling Incl box , log control -> application log ,
BDC session -> call transaction and call mode = N .
After running this transaction it will create maintenance plan for the following Sort field . The problem which i am facing is
1. It is taking around 1hr 25 min to finished the Maintenance plan for some sort field ie ws02,ws04 .
I think the system is checking the system status all the maintenance plan  which are DLFL, DLFL INAC, INSTEAD of CRTD status.
So Is there anyway to tune IP30 so that when we run the transaction it should ignore inactive maint Plans.
or is there any way to delete or archive maintenance plan which are Inactive .
Please comment
Regards
Piroz

CLOSE

Similar Messages

  • Delete records from tableA which are not in tableB

    Table A contains milions of records which is the best way to delete records from tableA which are not in tableB
    delete from tableA where empno not in (select empno from tableb)
    or
    delete from tableA where empno not exists (select empno from tableb
    where b.empno=a.empno)
    any help

    Hi
    If you can do this, do with this:
    create table tableC
    as select a.*
    from tableA a,
    (select empno from tableA
    minus
    select empno from tableB) b
    where a.empno = b.empno;
    drop table tableA;
    rename table tableC to tableA;
    Ott Karesz
    http://www.trendo-kft.hu

  • Delete Rows from T1 which are Not in T2

    Hi
    I've 2 Tables like below
    T1
    N1
    N2
    2
    11
    2
    22
    3
    33
    8
    44
    8
    88
    T2
    N1
    N2
    2
    22
    8
    88
    If I Run Delete query, I must delete Rows from T1 which are Not in T2
    For example, I must delete Rows 1,3,4 from T1
    So how to write that delete query? Please advice

    Delete from T1
    Where not Exists (select * from T2 Where t1.N1=t2.N1 and t1.N2=t2.N2)
    --or
    Delete t
    From t1 t
    left JOIN t2 m
    ON m.N1=t.N1 and m.N2=t.N2
    WHERE m.N1 is null and m.N2 is null
    --Or
    ;With mycte as
    select N1,N2 from T1
    Except
    select N1,N2 from T2
    Delete t
    From t1 t
    INNER JOIN mycte m
    ON m.N1=t.N1 and m.N2=t.N2

  • Report to see Maintenance Plans which are nearing due

    Dear Gurus,
    Is there a transaction or report which can see Maintenance Plans which are having Maintenance calls which are nearing due date?
    Please help advise.  Thanks,

    Hi,
    You can use IP24 (scheduling Overview). Instead of entering no of days you can enter the the scheduling start date.
    for example today is 21.02.2011.You want to see the schedules due till 28.02.2011
    Enter the schedule start date From 21.02.2011 to 28.02.2011. If there are pending jobs which also should be included either leave the from date blank or give the date from which pending jobs also to be listed.
    From the out put of IP24 you can see The plan , item , description ofitem/plan , Start date , End date ,completion date etc. also order number/notification number.
    IP19 can be used for simulating and viewing  plan date beyond the scheduling period you have given for each plans.
    Regards
    Kannan G

  • Getting Error - Dimension has multiple leaf levels which are not identical

    Hi All,
    While creating two hierarchies with in same dimension , i am getting error like - Dimension has multiple leaf levels which are not identical.
    Does this error mean , the number of levels in both hierarchies should be same or it has some thing else meaning.
    I was creating hierarchies like below -
    LE details
    - LRU Details
    - LRU's Registration Details
    - LE's Registration Details
    How should i create the hierarchy?
    Thanks ,Ashish

    Hi... Ashish
    Look at this... http://oraclebizint.wordpress.com/2007/11/30/oracle-bi-ee-101332-one-dimension-multiple-hierarchies/
    Thanks & Regards
    Kishore Guggilla

  • How to reduce the open time of Ms proejct 2010 plans which are taking 6 minutes to open.

    In our company there is many plans which are uploaded in Project server 2010.
    all linking to each other and in master plan all also link with master project.
    when we open any project plan in Ms Project 2010 then it is taking 5 to 7 minutes time.
    I dont know why . it's too much time.

    Is this issue specific to one master project? Do you have MS recommended db maintenance plan in place. Try updating database statics  by executing  SP_updatestats on all 4 project databases
    Hrishi Deshpande Senior Consultant

  • How to delete the versioned assets which are 2 months old?

    I have a req. to delete the versioned assets which are 3 months old.I think we have PurgingService component (OOTB component) which can be configured to achieve this particular activity.
    Any help wud be highly appreciated .
    Thanks
    Neelesh

    What I was referring, will delete the entire asset from repository based on some condition.OOTB ATG comes with profile purging function to handle deletion of profile.
    We can add other repositories too here,But it will delete data completely.It's kind of clean up required after some time for say anonymous user profiles. My Bad
    But in ur case as u need to delete only different versions stored in publishing db only, As u already pointed out at PurgingService, I think there is no need to customize, u can PurgingService Scheduler,
    But get clarification on this Purge projects and unused versions of assets older than _ days. What does this unused means.
    Logically unused should be this "It will exclude the current version, say current version is was created 30 says back and u are purging all the versions which is 30 days."
    But Please verify this before using.
    Also Please reply the correct approach once it has been implemented.  
    Thnks,
    Nitin.

  • How to delete images from folder which are not in the database

    I am created windows form
    i wont to delete images from the folder where i have stored images but i only want to delete those images which are not in the data base.
    i don't know how it is possible . i have written some code
    private void button1_Click(object sender, EventArgs e)
    string connectionString = "Data Source";
    conn = new SqlConnection(connectionString);
    DataTable dt = new DataTable();
    cmd.Connection = conn;
    cmd.CommandText = "select * from tbl_pro";
    conn.Open();
    SqlDataAdapter da = new SqlDataAdapter(cmd);
    da.Fill(dt);
    int count = Convert.ToInt32( dt.Rows.Count);
    string[] image1 = new string[count];
    for (int i = 0; i < count; i++)
    image1[i] = dt.Rows[i]["Image1"].ToString();
    string[] image2 = new string[count];
    for (int i = 0; i < count; i++)
    image2[i] = dt.Rows[i]["Image2"].ToString();
    var arr = image1.Union(image2).ToArray();
    string[] arrays;
    String dirPath = "G:\\Proj\\";
    arrays = Directory.GetFiles(dirPath, "*", SearchOption.AllDirectories).Select(x => Path.GetFileName(x)).ToArray();
    int b= arrays.Count();
    for (int j = 1; j <= b; j++)
    if (arrays[j].ToString() != arr[j].ToString())
    var del = arrays[j].ToString();
    else
    foreach (var value in del) // ERROR DEL IS NOT IN THE CURRENT CONTEXT
    string filePath = "G:\\Projects\\Images\\"+value;
    File.Delete(filePath);
    here error coming "DEL IS NOT IN THE CURRENT CONTEXT"
    I have to change anything .Will It work alright?
    pls help me
    Sms

    Hi Fresherss,
    Your del is Local Variable, it can't be accessed out of the if statement. you need to declare it as global variable like below. And if you want to collect the string, you could use the List to collect, not a string.  the string will be split to chars
    one by one.
    List<string> del=new List<string>();
    for (int j = 1; j <= b; j++)
    if (arrays[j].ToString() != arr[j].ToString())
    del.Add(arrays[j].ToString());
    else
    foreach (var value in del)
    string filePath = "G:\\Projects\\Images\\" + value;
    File.Delete(filePath);
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • [38073] dimension has multiple leaf levels which are not identical

    Hi,
    I am trying to implement a time dimension with 2 source tables.
    The time dimension is from minute to year where logical table includes 2 source tables :
    Source table#1 : Year,month,week,day
    Source table#2: hour,minute (minute is a leaf level and chronological key)
    When i try to check-in i got the following error: [38073] dimension has multiple leaf levels with are not identical.
    Thank you.
    Michael

    Hi RM
    i am able to create multiple hirerachy in time dimension and assigned time_id as chronological key which is at the dimension detail level and acting as shared child level for both of them......
    I have created AGO function for calendar year as
    AGO(Test."Fact".amount_sold, Test."Time Dim"."Calendar Year", 1)
    but when i have used AGO column in answers i am getting below mentioned error:-
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 22046] To use AGO function, the query level ('Calendar Year, Fiscal Year') must be a static level. (HY000)
    any suggestion would be appreciated to solve this.
    thanks & regards

  • Does CISCO C3560X VLAN support multiple Network segments which are further configured with HSRP function

    Hi Cisco experts,
        My name is Kumagai and I need your expert opinions below.
    I am trying to configure one VLAN1 support multiple network segments as below.
    (this should be a very straight forward configuration and should be OK, I think ? )
     interface Vlan1
     ip address 172.30.0.0 255.255.128.0
     ip address 172.30.31.253 255.255.254.0 secondary
     ip address 172.30.61.253 255.255.254.0 secondary
     ip address 172.30.71.253 255.255.254.0 secondary
     ip address 172.30.4.253 255.255.255.0 secondary
     The only issue that is eating me is the above network segments are using HSRP too
     and I am not sure is this possible with a combination of VLAN1 supporting multiples which are
     further supported with HSRP settings in Cisco environment.
    !example of HSRP:
    interface Vlan4
     ip address 172.30.4.253 255.255.255.0
     no ip redirects
     standby 4 ip 172.30.4.254
     standby 4 priority 105
     standby 4 preempt
    <<< what will happen if I add the HSRP configuration as below into the above VLAN1 with multiple Network segment ??)
     I would like to summarize my "Combined" configurations as below but I need your expert opinions on
     whether the configuration below is workable without any problem ??
     Or it is a total flop because Cisco does not support the configuration below !!!
     interface Vlan1
     ip address 172.30.0.0 255.255.128.0
     ip address 172.30.31.253 255.255.254.0 secondary
     ip address 172.30.61.253 255.255.254.0 secondary
     ip address 172.30.71.253 255.255.254.0 secondary
     ip address 172.30.4.253 255.255.255.0  secondary
     standby 30 ip 172.30.31.254
     standby 30 priority 105
     standby 30 preempt
     standby 60 ip 172.30.61.254
     standby 60 priority 105
     standby 60 preempt
     standby 70 ip 172.30.71.254
     standby 70 priority 105
     standby 70 preempt
     standby  4 ip 172.30.4.254
     standby  4 priority 105
     standby  4 preempt
    Thanking you in advance !!!!!

    Hi,
    As far as i know we dont set the ip helper address on the radio interface. It should be on the L3 interface of corresposding VLANs i.e.
    int vlan 20
    ip helper-address 192.168.33.xxx
    int vlan 60
    ip helper-address 130.20.1.xxx
    I'm assuming that your using SVI's (int Vlan 20 and int Vlan 60) rahter than physical interfaces. Also hope you have configured switch port as trunk where this AP is connected.
    Modify the AP config as below since you are using data vlan as the native vlan
    interface Dot11Radio0.20
    encapsulation dot1Q 20 native
    interface FastEthernet0.20
    encapsulation dot1Q 20 native
    Ideally your AP fastethernet configuration should looks like below and not sure how you missed this as this comes by default when you have multiple vlans for multiple ssids.
    interface FastEthernet0.20
    encapsulation dot1Q 20 native
    no ip route-cache
    bridge-group 20
    no bridge-group 20 source-learning
    bridge-group 20 spanning-disabled
    interface FastEthernet0.60
    encapsulation dot1Q 60
    no ip route-cache
    bridge-group 60
    no bridge-group 60 source-learning
    bridge-group 60 spanning-disabled
    Hope this helps.
    Regards
    Najaf

  • How to activate the queries which are inactive

    Hello All,
    1) After BW upgradation from 3.5 to 7.0 we found some of the queries are inactive. Can anyone let me know how to activate those inactive queries.
    2) How to find what all roles are inactive nd how to activate them.

    Hi,
    After upgrade or client copy you'll need to set the release indicator for queries (prog. RSAQUM40), in general it is only possible to transport those queries that are created in the global area. For conversion of queries refer OSS notes 92124/109094/119655.
    However if you wish to move queries from the standard area use program RSAQR3TR, execute the program via TX SA38 then click in the blue "i" (information button) for full details of the program.
    Best Regards,
    Chandrasekhar

  • Itunes doesn't delete my old Podcasts which are not available anymore !

    Hi,
    Here's the problem:
    We used to podcast different feeds, it was working very well, each feed was available on Itunes with its own logo/graphic.
    Then we changed URLs and re-apply on Itunes: different URLs, Different Category (government&organizations: United Nations). But everyfeed was on Itunes: The old one+logo and the new one+logo. After useless attempts, I've decided to tell Itunes to delete the old URLs (to avoid any confusion, the old one is not updated anymore), giving the right ones. I repeated my request 2 times on the form(more than one month ago). Still no change.
    I don't know if I'm clear (because of my basic english, sorry by the way). Can someone from Itunes contact me ?
    The correct URLs are all here: http://www.unmikonline.org/pio/radiopodcast/podcastmain.htm
    Thanks for your attention.
    Olivier

    Your English is fine, Oliver, better than a lot of native speakers
    Which form did you use to ask them to remove the old feed? If you just contacted iTunes Support using the website, that might not work. What you need to do is go to your old feed's page in the iTunes store, hit the "Report a Concern" button, and in the "Choose Reason" list, select the "is mine and I would like it removed from the Music Store" option.
    Then you need to describe (in the message) that you have moved URLs and have new listings in the Store, and that you would like this old listing deleted. You need to do this for each of the old feeds.
    Good luck and let us know if you encounter any more problems.
    Peach

  • How do I delete photos on iPad which are not recognised by iMac

    Have hundreds of photos on ipad which I want to delete.  connected to iMac & went through the syncing process.  IMac via iTunes does not recognise the photos are on the iPad so how do I delete them please

    Thank you for your reply.
    I have tried both iPhoto and Image Capture but they do not recognise the photos on the iPad.  how do I get them off the iPad?

  • Iphone 4 when syncing with Itunes there are 3 Apps i wish to delete from list in which are no longer on my Iphone. I can't see how to delete these 3 Apps from the list .

    How do I remove Apps from a sync in Itunes

    You want the apps deleted from your iTunes library?
    If you don't have Install selected for an app in your iTunes library, it won't be installed on your iPhone.
    If you want the apps deleted from your iTunes library, select Apps under Library in the iTunes source list. Locate the apps you want to delete, select the apps there followed by deleting the apps.

  • ODI to delete those members which are not present in the source file

    Hi John,
    Using ODI we can delete members by using delete option in the Operation column
    Fine. I would like to delete members from planning which are not there in the source file.
    For e.g if my source file has members A1,A2,A3,and A4 and Planning outline has A1,A2,A3,A4,A5 and A6. I would like to delete only A5 and A6.

    Hi John,
    Its only a one time process. The issue is, we have to concatenate two segments of the COA into one dimension in Planning. But if we concatenate it creates a cartesian product which is not the requirement. Only a particula value of segment 1 are to be joined with segment 2.
    E.g Company 1 is to be joined with Cost center 1.
    Company 2 with Cost center 2
    Company 1 should not get joined with Cost Center 2 and Company 2 with Cost Center1.
    So when we use ERPI and load the first outline it creates all the possibilities of the concatenation. So we would like to delete the unrequired members. If we have the values of the required members in a file, I would like to delete the unrequired members in the planning hierarchy.
    So would like to use the NOT IN function

Maybe you are looking for

  • How can I restrict multiple web app item submission by a user

    I have a webapp setup. I do want users to submitted web app items multiple times. How can I achieve this Kindly help. I know I only achieve this with js. Can someone kindly off.

  • Table Join in ABAP Query

    Hi, I'm new to ABAP Query. I want to include a table and join with an existing table in abap query. how to do this?

  • Please help with this pixel on my SECOND macbook!

    so after forking out 1320euro on a new macbook i found when i opened it first that it had a dead pixel so i returned it (after ALOT of hassle) and now a week and a half on into my second macbook another appears but i dont know if its stuck or what, w

  • Does iPOD default 1 year warranty cover USB cable?

    I found out that my 5G video iPOD is not able to charge with PC due to usb cable issue (another borrowed cable works). I bought my iPOD 1 month back so it is still under warranty. Does the warranty cover the faulty USB cable?

  • Multicast address problems

    In the start up scripts for my cluster nodes, I set           weblogic.system.multicastAddress=224.1.1.100, the address setup by my IT           group.           When I start the cluster node, I see the following lines in the log:           Mon May 1