Deleting Alerts  - Database & Dynamic,Aggregates in MPOS

Hi Experts,
Having few doubts on alerts - can any you please help me in knowing more about alerts.
1.We can delete unwanted alerts even by using macros - so what is was the exact use of tcode - /SAPAPO/AMON_REORG.
Does this transaction delete all alerts irrespective whether dynamic or database?
2. Report /SAPAPO/AMODAL_DELETE - Does this report is to be used only for deleting database alerts?
In general we delete alerts using macros for a specific selection or a data view..(please correct me if i am wrong..am just trying get my basics straight).
So how does exactly  these transaction and report are more useful for deletion of alerts.
Can anyone please share a document or explain how to configure dynamic alerts?
For ex : In a business scenario - if we want to highlight a cell or row or column at a particular aggregation or disaggregation level i hope we can use macro elements for achieving this?But how does the configuring in dynamic alert profile helps us?
Do we need Overall alert profile in order to set up database alerts?
3.Alert Determination background
How is this different from setting up alert in macro?can anyone please explain.
Aggregates in MPOS
When we use "aggregates at MPOS"  we can access data at aggregate level faster  -  my doubt was when we open a planning book for a particular selection - we can see data at aggregated level right ?If so how does aggregates help us?
Please excuse if these were basics and request you to help me in understanding.
Regards,
KR.

Hi Karthik,
1. /SAPAPO/AMON_REORG helps to clear database alerts which are saved in system. Please note only data base alerts are saved in system and dynamic alerts are not saved in system - These are determined by system at runtime - so the name dynamic.
2. Please have a look at below two documents - Here Alert functionality along with configuration steps are explained nicely -
APO Alert Monitor
Implementing the Alert Monitor Functionality Using Macro Alerts to Highlight Custom Alert Situations in APO DP
Hope it helps.
Regards,
Alok

Similar Messages

  • Delete files in database dynamically

    hi,
    what is the code to be used if i want to delete records in the database after a specified time automatically?
    eg. lets say i want to clear a table in my database in 24 hours time. this should be done using the codes and not manually
    thanks.

    hi
    have u tried using servlets for this problem of ur's
    if it's a web project u could use servlets or else go for threads on a particular thread u may write the code for dynamically deleting the database files and may make this thread sleep for the duration that u might have in mind
    myself being a novice at java programming can't come up with a better solution, see to it if this could solve ur problem else we will think of something else.
    anyway what exactly are u trying to do with this
    vijay

  • Delete flashback log dynamically.

    i want to delete flashback log dynamically.
    suppose today is 1st feb while running shell script it will remove flashback log 31stjan ...
    i have set retention policy 1 days.
    following is the my sh script
    =====================
    #!/bin/sh
    # Daily Backup
    . oraenv.oratest
    export NLS_DATE_FORMAT="Dy DD-Mon-YYYY HH24:MI:SS"
    LOG_DIR="/var/log/oracle"
    LOG_FILE="$LOG_DIR/$ORACLE_SID-daily-backup.log"
    EMAIL_TO="[email protected]"
    echo -e "\nBackup Commenced: " $(date) "\n"
    pushd $HOME/rman
    rman target / cmdfile="daily-backup.rman" log="$LOG_FILE" append
    retcode=$?
    if [ "$retcode" -ne "0" ]; then
    echo -e "\n***\n*** BACKUP FAILURE: Database $ORACLE_SID on $HOSTNAME \n***"
    mail -s "BACKUP FAILURE: Database $ORACLE_SID on $HOSTNAME" $EMAIL_TO < $LOG_FILE
    exit 1
    else
    mail -s "INFO: Backup success: $ORACLE_SID on $HOSTNAME" $EMAIL_TO << EOF
    Database $ORACLE_SID on $HOSTNAME backed up successfully.
    EOF
    fi
    popd
    echo -e "\nBackup Completed: " $(date) "\n"
    rman script
    run {
    # Remove any obsolete files prior to backup
    crosscheck backupset;
    crosscheck copy;
    delete noprompt obsolete;
    delete noprompt expired backup;
    delete noprompt expired copy;
    # Incremental backup and update of current image copy
    allocate channel oem_disk_backup device type disk;
    recover copy of database with tag 'ORA\$OEM_LEVEL_0';
    delete noprompt obsolete;
    delete noprompt expired backup;
    delete noprompt expired copy;
    backup incremental level 1 cumulative copies=1 for recover of copy with tag 'ORA\$OEM_LEVEL_0' database;
    # Following backup - remove any now-obsolete files
    delete noprompt obsolete;
    delete noprompt expired backup;
    delete noprompt expired copy;

    RMAN cannot delete flashback logs, these are maintained automatically according to parameter 'db_flashback_retention_target'. Don't confuse FLASHBACK DATABASE with RMAN point-in-time recovery.
    RMAN backups become obsolete as soon as no longer needed to meet the defined retention policy, 'delete obsolete' will never delete flashback logs.

  • How to delete records from dynamic internal table.

    Hi Experts,
    Need urgent help!!!
    Issue is with Dynamic internal tables.
    Below is code written by me :
    FORM select_query USING Lw_tabnam
                      TYPE  t682i-kotabnr.
      DATA :  lw_line  TYPE REF TO data,
              lw_line1 TYPE REF TO data.
        CREATE DATA Lw_line    TYPE (lw_TABNAM).
        ASSIGN      Lw_line->* TO   <WA_tbl>.
        CREATE DATA LW_LINE    TYPE STANDARD TABLE OF (Lw_tabnam)
                               WITH NON-UNIQUE DEFAULT KEY.
        ASSIGN      Lw_line->* TO <TBL>.
        SELECT * FROM  (Lw_tabnam)
                 INTO CORRESPONDING FIELDS OF TABLE <TBL>
                 WHERE (t_keys).
    Endform.
    code is working fine.
    here even the table name and where condition are dynamic,everything is fine upto this point.
    Now i have to delete some record from <TBL> based on some conditons.
         for ex : ( here lc_fieldname is KUNNR)
          loop at t_kunnr.
              lw_tabix = sy-tabix.
            Read table <tbl>
                    with key (lc_fieldname) = t_kunnr-kunnr ASSIGNING <wa_tbl>.
            If sy-subrc = 0.
            *Delete
            delete <tbl> from <wa_tbl>
    delete <tbl> index  lw_tabix.
            Endif.
         Endloop.
    The above delete statement doesn't work ,even we can't use index as it gives a syntax error " something related to "index is not allowed in standard table or hash table.
    Can you help me ab't how to delete records in Dynamic internal table?
    Other option that i am thinking of is to create a static table of type dynamic table.
    means, data itab type standard table of <tbl> .I know the syntax is wrong ,however is there any way to do this?
    Thanks in advance ,
    If you have any suggestion ab't this then do let me know.
    bye,
    Gaurav.

    Hi
    I wrote this code and it works fine:
    DATA LW_TABNAM(10) VALUE 'LFA1'.
    DATA : LW_LINES TYPE REF TO DATA,
           LW_LINE  TYPE REF TO DATA.
    FIELD-SYMBOLS: <TABLE> TYPE TABLE,
                   <WA>    TYPE ANY.
    CREATE DATA LW_LINES TYPE TABLE OF (LW_TABNAM)
    WITH NON-UNIQUE DEFAULT KEY.
    ASSIGN LW_LINES->* TO <TABLE>.
    CREATE DATA LW_LINE TYPE (LW_TABNAM).
    ASSIGN LW_LINE->* TO <WA>.
    DO 10 TIMES.
      APPEND INITIAL LINE TO <TABLE>.
    ENDDO.
    SY-TABIX = 4.
    DELETE <TABLE> INDEX SY-TABIX.
    WRITE SY-SUBRC.
    I hope it help you
    Max

  • Delete a database in Essbase application

    I am getting the error as" Object locked by a user' when I try to delete a database in essbase application. Please advice how to delete it.

    Hello,
    You're in the wrong forum. This is the BDB JE forum. The Essbase forum is here:
    Essbase
    Please post your question there.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                       

  • "Delete on Database" in /SAPAPO/SDORDER_DEL

    Dear All,
    Can somebody help explain what happens when we execute "Delete on Database" in /SAPAPO/SDORDER_DEL? and how would the program acts for each selection parameters, if;
    - we have not put anything in the selective deletion portion of the screen for "Location", "Product", and "Last Changed Before" fields, don't tick the check box for "Without check" option; but tick the check boxes for "Adjust ATP tables with /SAPAPO/POSMAPN table" and "Delete Obsolete Records in the /SAPAPO/POSMAPN table" in the additional function, what will happen? Will it delete anything? Or will it only do as what the additional function says?
    - how about in the product allocation data portion, considering that we have specified a location, what is being deleted when the check box for "Delete Product Allocations" is ticked? and what is being done if the check box for "Check Product Allocation Assignment" is ticked?
    Thanks in advance for any response.
    Regards,
    Philip

    Dear Philip,
             Find below few points about this transaction.
    1. check is normally carried out before an order is deleted to see if this order still exists in liveCache. If this is the case, the order is not deleted.
    2. You can also print out a list of the orders that cannot be deleted if you have set the relevant indicator.
    3. In exceptional cases, you can deactivate this check and nevertheless still delete the selected orders.
    4. If you have set the Delete all orders indicator, the order data from the database is completely deleted without any check. You should take great care when using this function.
    5. A location product or a location can only be deleted if SD sales documents for this location product no longer exist in the database (that is, if, for example, no more entries exist in the tables /SAPAPO/ORDADM_I or /SAPAPO/ORDPART).
    Regards,
    Siva.

  • Single Item drop down (View, Edit, Delete, Alert) on Companyweb List (2003)

    We had a user delete an old list that was created by a previous technician. I recreated the list as best I could but I noticed the previous one had a drop down on the first column and I don't see that anymore. The drop down had (View, Edit, Delete, Alert)
    each item in the first column would have this.

    Kris,
    Go to "Modify settings and columns" 
    select the column named "Title (linked to item with edit menu)" and rank it as first column
    like below
     You will get (View, Edit, Delete, Alert)
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • How to add SYS ID to Alert message dynamically in BPM

    Hi,
        I am adding alert message dynamically in the BPM for ALM. When we get email alerts, we couldn't distinguish whether this alert is coming from DEV, QAS or PRD system. To resolve this issue I am thinking to add system ID to the alert message user knows from which systems message is coming from. I need to know is there any standard variable where we get system id from BPM so that I can add it to alert message. Otherwise let me know what the best approach is?.
    Your inputs are highly appreciated.
    Thanks,
    Venkat.

    Hello Venkat,
    Check out this Michals blog on using system variables...
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    Hope this will help.
    Nilesh

  • How to delete a database record by using EJB entity beans

    Hi, All,
    Does anyone know how to use entity bean to delete a database record? I have all the EJB entity beans created, including access beans to each. I can successfully create records, find and update records, however, I haven't find a way to delete records yet.
    Your response is appreciated.
    Cathy

    Please see EJB Forums for continue discussion on this subject.
    Reference titile: "how to delete database record by using CMP entity beans "

  • ADF delete from database.

    Hi,
    I am trying to design a page which will delete a particular row from one or more database tables. The jdeveloper version is 11.5 and the database is oracle 10.2 version.
    How can I do it?
    Thanks

    Hi all, Thanks for the reply..
    Actually I am trying to delete one record at a time, from the same table, from which m populating it on the jspx..
    That means the list source and the base source are same..which is not possible..
    What can be the solution for it ??
    I tried to create a separate view object for population on jspx and kept it in list source.. And I am using different view object in base source.. Both view objects refer to the same table..
    But it is not working out..the problems are..
    The record is getting deleted only for the first time when i run it.. Even after getting deleted from database, the record shows up in the list..
    And when i do the same operation one more time in the same session, 1st record in the table is getting updated with the value which i tried to delete..
    And I am not using managed bean..
    regards

  • DELETE FROM DATABASE + restored again?

    there is a statement
    DELETE FROM DATABASE <dbtab> (<ar>) [CLIENT <cli>]
    ID <key> .
    Suppose I have mistakenly deleted from the database
    can it be

    Hi,
    there is a syntax like DELETE FROM DATABASE as you mentioned.
    But never ever use that to delete a record in DATABASE TABLE as you cannot recover that data.
    hope this helps.

  • How to create database dynamically

    Hi,
    Some one suggest, how to create database dynamically in oracle 8.1.6.0.0 standard edition with an example.
    Thanks in advance,

    Hello,
    I'd ask in the
    Windows Presentation Foundation (WPF) forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book: Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • How to create a database dynamically

    I am trying to create mysql database dynamically through java. Also please help me how to execute *.sql file in java.

    dheerajsea123 wrote:
    I am trying to create mysql database dynamically through java. Also please help me how to execute *.sql file in java.If possible it depends on the database and driver.
    If possible the exact methodology varies by database (driver shouldn't matter.)
    Normally it is not considered a good practice for traditional server applications.

  • How to connect Access database Dynamically

    Hi,
    I want to make connection to Access database with java with dynamically. I know to make connect to database in the following way:
    This way, I go to setting->controlPanel->Administrative tools->ODBC & then i select database & i use following code"
    public void  databaseconnect(){
        try{
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
          connection =  DriverManager.getConnection("jdbc:odbc:student");
          output.append("Connection Successful\n");
        catch(ClassNotFoundException cnex){
          cnex.printStackTrace();
          output.append("Connection Unsuccessful\n"+cnex.toString());
        catch(SQLException sqlex){
          sqlex.printStackTrace();
          output.append("Connection unsuccessful\n"+sqlex.toString());
            catch(Exception ex){
              ex.printStackTrace();
              output.append(ex.toString());
    }But now i want to know the way to make connection to database dynamically. How this is possible? I want to make connection to database without selecting database from the Administrative tool? Is there anybody can help me?
    With regards
    Bina

    http://faq.javaranch.com/view?OdbcJdbcQuestions

  • Delete a database from a server in Business Process Architect

    Hi Friends,
    Does anybody know how to delete a database from a server in Business Process Architect? I don't see any option to perform delete. I am using version 10.1.3.4.
    Thanks
    Tridib

    Thanks for reply
    Actually i want to delete the jobs from the Url below
    http://xyz:7778/reports/rwservlet/showjobs?server=testreport which gives all the jobs when u click on anyone job it open the pdf file which is stored in cache i want this job to be deleted including the file.
    I think there is a target.xml file which show the job in IAS OEM for a report server if the report server is added in target.xml from oem we can delete the jobid and file.
    where should i go to see the report server in oem?
    Regards

Maybe you are looking for

  • DVI to HDMI via adapter: video hiccups

    I have a 13" MacBook (Late 2007). I connected a Belkin mini-DVI-to-HDMI cable to it, which I plugged into my Sony 32" LCD TV. When I play back TV shows that I have purchased in iTunes, the video hiccups -- that is, pauses for a fraction of a second -

  • I have 2 apple ID's can I retrieve the apps and songs from both accounts to my iphone?

    Hi, I have an ITunes log in from my ipod that is around 3 years old. Last year work bought me an ipad and I set up another apple ID account and downloaded app's for the Ipad. Yesterday I got a new Iphone 4s and logged into the app store through the s

  • Sap content in sem?

    Hey pals, how to access the business content delivered with sem bps?is it available like the business content for bw? if it is available is it for all modules in sem or just for bps? its urgent ........ ragav

  • How to restore iTunes 10?

    I have just intalled iTunes 11 and it is no good to me without DJ. Are there step by step instructions anywhere on how to go back to the last version of iTunes 10?

  • TS1292 security code on credit card will not process

    why will my credit card not prosses with the security code I am entering? I have already called the card company.