Deleting websheet Primary and Alternative reports

hi,
I saved the primary report and it actually created another primary report, i am actually up to having 3 primary reports. for example when I want to add a new section to a page that includes a chart, it ask what data grid and report to base it off of, when i select the report it list 3 "primary Reports". all 3 are slightly different. how do I delete 2 of them? the checkbox for deleting them does not appear when I go admin -->manage services -->interactive report settings --> saved reports --> web application reports . it is intended behavior to be able to have multiple primary reports .
next, i created an alternative report, deleted by using the steps above....but the report still shows as am option on the data grid page, the select list for reports still includes the alternative report even though I deleted. this is a real problem as the alternative report is wrong and end users keep using it.
Thanks,
--Kevin                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

OK I think I figured it out. Clearing out the user preference (in the post-login block in the authentication scheme) seems to make it pick the Primary report (APXWS_DEFAULT) every time a new session is created.
Not sure I understand the syntax behind the various values I see in the preference so I didn't mess with setting the value but clearing it out seems to work fine.
DECLARE
    l_ir_pref VARCHAR2(500);
BEGIN
    -- Clear preference so that IR defaults to Primary Report
    select 'FSP_IR_'||application_id||'_P'||page_id||'_W'||interactive_report_id
    INTO l_ir_pref
    from  apex_application_page_ir
    where 1=1
    and application_id = nv('APP_ID')
    AND page_id = 10 -- Change as needed
    AND ROWNUM = 1;
    apex_util.remove_preference(l_ir_pref);
END;Is any of this documented?

Similar Messages

  • ARCHIVELOG deletion on primary and physical standby

    Hi,
    We have a primary and a physical standby database running Oracle 11.1.0.7.0 software on Red Hat Enterprise Linux x-64 bit OS. I will be using backup software
    to only backup the primary database and do not have the backup software for the standby server and database.
    We need to backup archived redo log files from primary site and delete the ones which are more than one month old. These archived redo log files will be applied from primary to standby database as and when the log switch occurs.
    Can anybody please let me know if the following steps can be used:
    Details are:
    primary database name - sun (machine name is node1)
    standby database name - drsun (machine name is node2)
    On node1 as oracle user:
    $ cat /export/home/oracle/rman/scripts/cleanup_rman_arch_sun.sh
    #!/bin/sh
    ORACLE_SID=sun; export ORACLE_SID
    ORACLE_HOME=/u01/app/oracle/product/11.1.0/db_1; export ORACLE_HOME
    PATH=$ORACLE_HOME/bin; export PATH
    $ORACLE_HOME/bin/rman target sys/oracle@sun nocatalog log=/export/home/oracle/rman/log/cleanup_rman_arch_sun.log
    @/export/home/oracle/rman/scripts/cleanup_rman_arch_sun.rcv
    exit
    $ cat /export/home/oracle/rman/scripts/cleanup_rman_arch_sun.rcv
    allocate channel for delete type disk;
    crosscheck archivelog all;
    sql "alter system switch logfile";
    delete noprompt expired archivelog all;
    change archivelog until time 'SYSDATE-1' delete;
    release channel;
    $ crontab -l
    # Delete the archived redo log files at 11:00 PM on the first day of every month
    00 23 1 * * /export/home/oracle/rman/scripts/cleanup_rman_arch_sun.sh
    On node2 as oracle user:
    $ cat /export/home/oracle/rman/scripts/cleanup_rman_arch_drsun.sh
    #!/bin/sh
    ORACLE_SID=drsun; export ORACLE_SID
    ORACLE_HOME=/u01/app/oracle/product/11.1.0/db_1; export ORACLE_HOME
    PATH=$ORACLE_HOME/bin; export PATH
    $ORACLE_HOME/bin/rman target sys/oracle@drsun nocatalog log=/export/home/oracle/rman/log/cleanup_rman_arch_drsun.log
    @/export/home/oracle/rman/scripts/cleanup_rman_arch_drsun.rcv
    exit
    $ cat /export/home/oracle/rman/scripts/cleanup_rman_arch_drsun.rcv
    allocate channel for delete type disk;
    crosscheck archivelog all;
    sql "alter system switch logfile";
    delete noprompt expired archivelog all;
    change archivelog until time 'SYSDATE-1' delete;
    release channel;
    $ crontab -l
    # Delete the archived redo log files at 11:00 PM on the first day of every month
    00 23 1 * * /export/home/oracle/rman/scripts/cleanup_rman_arch_drsun.sh
    Regards

    Hello;
    Welcome to the forums. ( By physical Standby I assume Data Guard )
    The short answer is it should work. I noticed this :
    /cleanup_rman_arch_drsun.rcv
    crosscheck archivelog all;
    sql "alter system switch logfile";
    delete noprompt expired archivelog all;
    change archivelog until time 'SYSDATE-1' delete;I see no reason for the "alter system switch logfile". In fact you can do something very simple on the Standby :
    $ORACLE_HOME/bin/rman target / catalog <user>/<password>@<catalog> << EOF
    delete noprompt ARCHIVELOG UNTIL TIME 'SYSDATE-1';
    exit
    EOFThis assumes you have doing a backup with RMAN on the Primary ( tested on 11.2.0.2 ) and have this set on the Primary :
    CONFIGURE ARCHIVELOG DELETEION POLICY TO APPLIED ON ALL STANDBY;
    If you are deleting Archive without using RMAN first then yes something like this ( But I would try to use RMAN and not delete using another method )
    echo `date`
    echo "Runnung RMAN archive crosscheck"
    $ORACLE_HOME/bin/rman <<EOF   
    connect target /
    crosscheck archivelog all; 
    delete noprompt expired archivelog all;
    exit
    EOF
    echo `date`
    Best Regards
    mseberg
    h2. Another Standby Option
    /u01/app/oracle/dba_tool/bin/removestandbyarch.sql
    SET echo off
    SET feedback off
    SET term off
    SET pagesize 0
    SET linesize 200
    SET newpage 0
    SET space 0
    col name format a120
    spool /u01/app/oracle/dba_tool/bin/rm_arch_standby.sh
    select 'rm '||NAME from v$archived_log 
    where REGISTRAR='RFS'
    and APPLIED='YES'
    and DELETED='NO' 
    and COMPLETION_TIME < (SYSDATE-10);  
    SPOOL OFFMain shell script
    /u01/app/oracle/dba_tool/bin/removestandbyarch.sh
    #!/bin/bash
    if [ "$1" ]
    then DBNAME=$1
    else
    echo "basename $0 : Syntax error : use . removestandbyarch <DBNAME> "
    exit 1
    fi
    # Set the Environmental variable for input instance ( ORACLE_SID, ORACLE_HOME path etc )
    . /u01/app/oracle/dba_tool/env/${DBNAME}.env
    $ORACLE_HOME/bin/sqlplus /nolog <<EOF
       connect / as sysdba
      -- spool /u01/app/oracle/dba_tool/bin/rm_arch_${ORACLE_SID}.sh
       @/u01/app/oracle/dba_tool/bin/removestandbyarch.sql
       SPOOL OFF
    EOF
    echo `date`
    # Now run the generated  script 
    echo "Setting permissions and running script"
    chmod 740 /u01/app/oracle/dba_tool/bin/rm_arch_standby.sh
    . /u01/app/oracle/dba_tool/bin/rm_arch_standby.sh
    # Use RMAN to update V$ARCHIVED_LOG.DELETED 
    echo `date`
    echo "Runnung RMAN archive crosscheck"
    $ORACLE_HOME/bin/rman <<EOF   
    connect target /
    crosscheck archivelog all; 
    delete noprompt expired archivelog all;
    exit
    EOF
    echo `date`Edited by: mseberg on Apr 30, 2012 8:40 AM

  • Deleting Inplace discovery and hold report audit data

    I need to remove the auditing data for the
    discovery and hold report.  Is this possible in exchange online?

    This is how to delete a datasource from a custom report in Analyzer 6.5.- Open the custom report, on the Main Toolbar menu, go to Tools and Select Design Report.- On the Design Report page, highlight the data source (spreadsheet or chart), right click & select Properties, the Data Object Properties box will pop-up, highlight the "ReportDataSrc1" and hit "Delete" on your keyboard(if this is the data source you want to delete). It will give you a "Yes and No" option. Click Yes, it will delete the data source out of your custom report forever and remember to save the report.If you have any question, feel free to email me [email protected]

  • Swapping Primary and alternative apple id

    I have registered one of my email id as my primary apple id and another one email id as my alternative email id. Now depending upon the primary one, all the contacts and messaged and calender got synced. but i want to use all the information from my alternative email id for the sync purpose. how to do that?

    Once you have created an iCloud account and chosen an @icloud.com address to go with it you can't change the address (short of creating an entirely new account). The 'alternative' IDs are variants of the same address - @mac.com, @me.com, @icloud.com, depending on how long you've had the ID.
    However, all is not lost. You can add up to three 'email aliases' - these are additional addresses (not accounts) which deliver into the same inbox as the main account. (In fact it's a good idea to give out alias addresses, rather than the main address, because if they attract spam you can easily change them.) (New aliases can only be @icloud.com ones; @me.com addresses cannot now be created.)
    You should be aware before you start that once you've created an alias you cannot turn that address into a full iCloud account or move it to another account.
    More information on aliases here: http://help.apple.com/icloud/#mm6b1a490a

  • Hi i forgot my answers to the security questions and i wanted to mail them but it is being mailed to a email address different from my primary and alternative email addresses. how do i solve this?

    please help me!!

    Apple ID security issues -
    Call Apple Care and ask for the Account Security Team. They can assist you with your issue.

  • Interactive Report - Alternative Report Title!

    Hello,
    I have a tricky requirement. I created an interative report and saved as primary report. then I created several alternative reports with different selection criteria. Now, I want to have a report title depending on the report the user selects, it may be primary and alternative 1, alternative 2 etc.,
    Can anybody suggest how to change the report title name dynamically?
    Appreciate your help.
    Thanks --

    What type of region type are you using for your interactive report?  Maybe the region type does NOT support a title..
    Thank you,
    Tony Miller
    LuvMuffin Software
    Blog: http://glassfish1.revion.com/apex/f?p=BLOG:HOME:0:::::

  • Report for material and alternative UOM

    Hi Guru's
    is there ant transaction/standard report where i can see the list of materials and alternative UOM
    Thankyou

    Hi,
    No such standard report available in SAP to see for many materials. in MM03 under Additional Data, you can see but material wise.
    Better use table MARM to see the same and create an ABAP Query of Report using this table.

  • Data deletion on primary index and secondary index

    Hello, I have a question regarding data deletion in BDB-JE.
    Suppose I have an Entity class which has a primary index and a secondary index, the secondary key does not have outer related entity. So when I want to delete this entity, is it correct we only need to remove the entity from primary index? or I also need to do it for secondary index or just remove it from secondary index and internally BDB_JE will remove it from primary index?
    Thanks
    Anfernee

    You can delete an Entity using the delete method for primary index or the secondary index. When an entity is deleted, secondary index records are automatically deleted. The primary and secondary indices are always kept in sync.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Unable to configure Reporting Services 2012 after using 'netsh http delete urlacl' command and .EXE file also.

    One of my servers quit responding during some troubleshooting of another issue and when I try
    to reconfigure it I am receiving Results as follows:
    Reserving url http://+:80
    The URL has already been reserved.
    It appears to me that there is something with the Virtual Directory that is not allowing me to use it or
    overwrite it.  If I change the name or the port the new configuration works fine, however this is part of a scale-out test environment and I need to keep the virutal directory names the same.
    I have uninstalled and reinstalled SSRS in an attempt to resolve, but that did nothing to this issue.
    I have used 'netsh http delete  urlacl' command and deleted saved urls also but still am facing issue.
    How can I manually list, delete, or edit  Virtual Directories in SSRS 2012? 

    Hi Syed,
    Based on my research, the issue can be caused by the default values for Report Server Web Service and Report Manager has already been reserved. In order to trouble shoot this issue, please refer to the following steps:
    To check this issue, we can run the following command in the command windows:
    netsh http show urlacl | find "Report"
    It should returns the reserved URL as below:
    Reserved URL            :
    http://+:80/ReportServer/
    User:
    Reserved URL            :
    http://+:80/Reports/
    User:
    Then we can delete the reserved URLs with the command below and recreate them to fix this issue:
    netsh http delete urlacl http://+:80/ReportServer/
    netsh http delete urlacl http://+:80/Reports/
    Reference:
    http://fix.lazyjeff.com/2011/12/sql-server-2008-r2-report-server-web.html
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • HT5621 how can I delete a primary e-mail addresse and replace it with a excisting Apple ID?

    How can I delete a primary e-mail address and replace it with a excisting Apple ID?

    An email address can only be used one account at a time, so if you want to replace it with an email address that is currently being used on another account then you will need to remove it from that account first before trying to put it on that account. You should be able to change the email address either by logging into your account on your computer's iTunes via the Store > View Account menu option, or via http://appleid.apple.com

  • Tcode or report  to delete conf,invoices and po?

    hi friends
    Tcode or report  to delete conf,invoices and po.
    Regards
    Vinny

    Hi Vinny,
    Please go to Confirm goods/services tab then selct the GR which you want to delete then click on delete button ..so system will post the revere GR with movement type 101...
    Please go to "enter invoces and credit memos tab then select the invocie which you want cancel and then clcik on cancel button so ssytem will post the credit memo ..
    We can not delete PO in SRM where in classic scenario....
    Thanks
    Ravi

  • Emails are "stuck" in my Apple Mail Outbox. I have deleted the account and reinstalled but still have the problem. Apple's "Network Diagnostics" report that it cannot connect to the SMPT server.

    Emails are l "stuck" in my Apple Mail Outbox. I have deleted the account and reinstalled but still have the problem. Apple's "Network Diagnostics" report that it cannot connect to the SMPT server. TalkTalk (Tiscali) say there is no problem with their server because I have checked and can send emails with their webmail.

    No that is not it:
    Open Mail>Preferences>Accounts, the first page has this on it
    If you click on the server name in the box (gmail in your case I assume) it opens and reveals this:
    If you select Edit SMTP Server list you get this:
    Post it here and, select the Advanced Tab (which looks like this)
    Post this page as well.

  • How do i delete my primary email address and use one of my alternate email adresses as my primary email address

    how do i delete my primary email address and use one of my alternate email adresses as my primary email address

    Hey freightguy,
    It sounds like you want to change your Apple ID. Follow the steps in this link to do so:
    Before you change your Apple ID:
    Sign out of all Apple features and services that you use with your current Apple ID.
    Make sure that the email address you want to use for your Apple ID meets these conditions:
    The email address is one that you use regularly, because it will be the primary email address for your Apple ID.
    The email address is not associated with any other Apple ID.
    The email address is not an iCloud email address, which is already an Apple ID. iCloud email addresses end with @icloud.com, @me.com, or @mac.com.
    To change your Apple ID, follow these steps:
    Go to My Apple ID (appleid.apple.com), click "Manage your Apple ID", and sign in.
    If you have two-step verification turned on, you'll be asked to send a verification code to the trusted device associated with your Apple ID. If you are unable to receive messages at your trusted device, follow the guidelines for what to do if you can't sign in with two-step verification.
    In the "Apple ID and Primary Email Address section," click Edit.
    Enter the email address you want to use, then click Save Changes. Apple will send a verification email to that address.
    Open the email from Apple, then click Verify Now in the email.
    When the My Apple ID page opens, sign in with your renamed Apple ID.
    If you have two-step verification turned on, you'll be asked to send a verification code to the trusted device associated with your Apple ID.
    After you see a message indicating that verification is complete, remember to update all of the stores and services that you use with your Apple ID.
    from:
    Apple ID: Changing your Apple ID
    http://support.apple.com/kb/HT5621
    If you're instead talking about changing the signed in email address you're using for the Mail app on your iPhone, check out the steps in here:
    iOS: Adding an email account
    http://support.apple.com/kb/HT4810
    Have a great day,
    Delgadoh

  • Mofcomp.exe failed, delete the classes and retry compiling, 0x8004400a unexpected token at file scope, Primary DP will not validate

    I have SCCM 2012 R2 CU3. Before when I've had DP problems it was always with secondary DPs. Now I've got an issue with my primary DP. Content will not validate on the main DP, called DP1. In Monitoring Distribution Point Configuration Status there are repeated
    errors about "Failed to validate package ABC12345\\fqdn". On the site server in distmgr.log this entry repeats over and over:
    "Mofcomp.exe failed, delete the classes and retry compiling E:\program files\microsoft configuration manager\bin\64\smsdpprov.mof
    Failed to compile MOF file. Error code 2."
    The problem is I don't know what classes it's talking about, nor how to delete them, nor can I find anything directly applicable about this error. I did run "mofcomp.exe smsdpprov.mof" anyway but I get the error "error syntax 0x8004400a: unexpected
    token at file scope. Compiler returned error 0x8004400a."
    This DP1 was working fine until a few days ago. We haven't made any upgrades/changes to the server either.
    We sent a package just to DP1 and it did deploy the content, so it appears that it just can't validate.
    Thanks for any help.
    Ben JohnsonWY

    Hi,
    About the error in Mpcontrol.log, you could try to uninstall the MP, reinstall IIS components, then install MP to see if it can resolve this issue.
    If not, please have a look at the following blogs.
    Support Tip: ConfigMgr 2012 Management Point fails
    with a 500 error after working fine for a short period of time
    SCCM MP Internal Server Error ISS Call to HttpSendRequestSync
    failed for port 80 with status code 500
    From you description above, you reinstalled the DP. Did you reinstall the IIS components during the DP reinstallation? If not, please try to reinstall the IIS components.
    Best Regards,
    Joyce
    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.

  • UCCX 7.0.1SR5 to 8.0 upgrade while also adding LDAP integration for CUCM - what happens to agents and Historical Reporting data?

    Current State:
    •    I have a customer running CUCM 6.1 and UCCX 7.01SR5.  Currently their CUCM is *NOT* LDAP integrated and using local accounts only.  UCCX is AXL integrated to CUCM as usual and is pulling users from CUCM and using CUCM for login validation for CAD.
    •    The local user accounts in CUCM currently match the naming format in active directory (John Smith in CUCM is jsmith and John Smith is jsmith in AD)
    Goal:
    •    Upgrade software versions and migrate to new hardware for UCCX
    •    LDAP integrate the CUCM users
    Desired Future State and Proposed Upgrade Method
    Using the UCCX Pre Upgrade Tool (PUT), backup the current UCCX 7.01 server. 
    Then during a weekend maintenance window……
    •    Upgrade the CUCM cluster from 6.1 to 8.0 in 2 step process
    •    Integrate the CUCM cluster to corporate active directory (LDAP) - sync the same users that were present before, associate with physical phones, select the same ACD/UCCX line under the users settings as before
    •    Then build UCCX 8.0 server on new hardware and stop at the initial setup stage
    •    Restore the data from the UCCX PUT tool
    •    Continue setup per documentation
    At this point does UCCX see these agents as the same as they were before?
    Is the historical reporting data the same with regards to agent John Smith (local CUCM user) from last week and agent John Smith (LDAP imported CUCM user) from this week ?
    I have the feeling that UCCX will see the agents as different almost as if there is a unique identifier that's used in addition to the simple user name.
    We can simplify this question along these lines
    Starting at the beginning with CUCM 6.1 (local users) and UCCX 7.01.  Let's say the customer decided to LDAP integrate the CUCM users and not upgrade any software. 
    If I follow the same steps with re-associating the users to devices and selecting the ACD/UCCX extension, what happens? 
    I would guess that UCCX would see all the users it knew about get deleted (making them inactive agents) and the see a whole group of new agents get created.
    What would historical reporting show in this case?  A set of old agents and a set of new agents treated differently?
    Has anyone run into this before?
    Is my goal possible while keeping the agent configuration and HR data as it was before?

    I was doing some more research looking at the DB schema for UCCX 8.
    Looking at the Resource table in UCCX, it looks like there is primary key that represents each user.
    My question, is this key replicated from CUCM or created locally when the user is imported into UCCX?
    How does UCCX determine if user account jsmith in CUCM, when it’s a local account, is different than user account jsmith in CUCM that is LDAP imported?
    Would it be possible (with TAC's help most likely) to edit this field back to the previous values so that AQM and historical reporting would think the user accounts are the same?
    Database table name: Resource
    The Unified CCX system creates a new record in the Resource table when the Unified CCX system retrieves agent information from the Unified CM.
    A Resource record contains information about the resource (agent). One such record exists for each active and inactive resource. When a resource is deleted, the old record is flagged as inactive; when a resource is updated, a new record is created and the old one is flagged as inactive.

Maybe you are looking for

  • ABOUT OPEN ITEM, MANAGEMENT

    hai What is the open item management and which basis it is created .is the all balance items are open item .and .if GR/IR account also open item .why should we maintain both accounts .why dont use only one account for this . please give clear underst

  • How do I sync the music from my iphone to my macbook pro?

    How do I sync the music from my iphone to my macbook pro?

  • Changing size of books (from Large to Medium) ?

    Hi all, I've made my first Book in Aperture. Theme: Modern lines; Size: 44 pages, Large Softcover (11"x 8 1/2") I want to buy a large version of this book for myself and some medium version of the same book for my friends, but I don't understand how

  • How to avoid redo/rollback?

    Hi Alls, I want to delete some data in a table without rollback? How can I do? Thanks. Witchuda.

  • Transitions will not load - PLEASE HELP!!

    I've been dealing with this for some time ... when I'm in the edit window and click on transitions, they will not load. I've spent a lot of time online with support and got only temporary use of transitions. The first time I visited support, the tech