Apex calendar report url problems

Hi
im having problems with the "day link" attribute in an apex calendar report.
i have the calendar set up so that when you click the date in the calendar it sends the date formatted correctly to the date picker field in my create a new appointment page. so pre-populating the field as the page is loaded.
initially i used the standard "page in this application" function and passed the substitute string #DD# #MON# #YYYY# to the date picker item P6_APT_DATE, setting the link to go to page 6 etc....
this actually works fine but apex converts in into a URL
f?p=&FLOW_ID.:6:&SESSION.::&DEBUG.:6:P6_APT_DATE:#DD#-#MON#-#YYYY#
which does exactly the same thing. and both work perfectly
However - nether are saved by apex? if i go back to edit the report the "day link" section is blank but both continue to work even when i refresh / re-cache the page.
i have had similar happen in the past when the link isn't formatted correctly, the problem here is that it all works fine until you go back in to edit the calendar report, at which point the url / links vanish.
im just starting out with apex so my apologies if i have missed anything obvious. any help would be appreciated
regards - Solomon Hill
Message was edited by:
SolomonHill

Solomon,
I'm not sure exactly how your calendar page works, but the # character cannot appear in URLs except as an named-anchor reference.
If you can show me your app on apex.oracle.com, I'll take a closer look.
Scott

Similar Messages

  • APP-V 5.0 Reporting URL problem

    Hi,
    I would like to pull the reports for the App V 5.0 environment. I was provided with an URL,
    http://XXXXXXXXXXXXXXXXXXXXX:.com:portnumber> . But when I launch the URL i get the message as below
    Service
    Method not allowed. Please see the service help page for constructing valid requests to the service.
    Could any one let me know how to get the reports by launching the URL.
    1. I have installed APP-V client on the Win 7 machine
    2. Ran the command
    PS P:\> Set-AppvClientConfiguration -ReportingEnabled 1 -ReportingServerURL "http://XXXXXXXXXXXXXXXXXXXXX:.com:portnumber>"
    a. The below is message is showed up
    Name                                                                     
    Value                        SetByGroupPolicy
    ReportingEnabled                                                             
    1                                   False
    ReportingServerURL                      ...:XXXXXXXXXXXXXXXXXXXXX:.com:portnumber>                                  
    False
    3. Also I ran the command
    PS P:\> Send-AppvClientReport
    a. The below is the message that showed up
    The Application Virtualization Client Report was sent successfully.
    Please let me know how to launch the reporting URL successfully

    Opening the URL in the browser does exactly nothing. It does not send any reports, it doe not enable any reporting feature.
    There is NO USE of opening the reoprting URL in a browser.
    If you want to send reporting data 'right now' for any reason (troubleshooting, intention to destry a test machine, whatever), you can use Send-AppvClientReport.
    When you configure reporting correctly, a Scheduled Task is created that automatically send reporting data in the background to an App-V Reporting Server. 
    http://technet.microsoft.com/en-us/library/jj684297.aspx and http://www.applepie.se/app-v-5-client-reportingclient-setup explain
    how to do it manually or automated using Powershell. Microsoft's ADMX  template (http://www.microsoft.com/en-us/download/details.aspx?id=41183) allows to configure
    it using GPO.
    (uhm, and I've taken all 3 links from the 'Client Configuration for App-V Reporting' section from kirxblog)
    Side-Note: you could write your own application tjhat send reporting data to the server, if the Schedule task doesn't fit your requirements... then you could tell your app to contact the URL. Again: Humans don't need that.
    Falko
    Twitter
    @kirk_tn   |   Blog
    kirxblog   |   Web
    kirx.org   |   Fireside
    appvbook.com

  • Problem with Apex layout report  XSL-FO build by bi-publisher word plug-in

    Hi all...
    this is what I should do:
    - generate a layout with bi-publisher word plug-in ---> it's ok
    - export this layout in xsl-fo stylesheet --> it's ok.
    - create an apex layout report with xsl-fo stylesheet --> it's ok.
    - create an apex query report with the above layout
    At this point when I test the report I have a corrupted pdf file....
    can you help me!!!
    Many thanks
    araf

    Hi,
    do you use BI Publisher or another XSL-FO-Engine? Is BI Publisher running? Is it configured in the instance settings?
    Regards
    Rainer

  • Interactive report performance problem over database link - Oracle Gateway

    Hello all;
    This is regarding a thread Interactive report performance problem over database link that was posted by Samo.
    The issue that I am facing is when I use Oracle function like (apex_item.check_box) the query slow down by 45 seconds.
    query like this: (due to sensitivity issue, I can not disclose real table name)
    SELECT apex_item.checkbox(1,b.col3)
    , a.col1
    , a.col2
    FROM table_one a
    , table_two b
    WHERE a.col3 = 12345
    AND a.col4 = 100
    AND b.col5 = a.col5
    table_one and table_two are remote tables (non-oracle) which are connected using Oracle Gateway.
    Now if I run above queries without apex_item.checkbox function the query return or response is less than a second but if I have apex_item.checkbox then the query run more than 30 seconds. I have resolved the issues by creating a collection but it’s not a good practice.
    I would like to get ideas from people how to resolve or speed-up the query?
    Any idea how to use sub-factoring for the above scenario? Or others method (creating view or materialized view are not an option).
    Thank you.
    Shaun S.

    Hi Shaun
    Okay, I have a million questions (could you tell me if both tables are from the same remote source, it looks like they're possibly not?), but let's just try some things first.
    By now you should understand the idea of what I termed 'sub-factoring' in a previous post. This is to do with using the WITH blah AS (SELECT... syntax. Now in most circumstances this 'materialises' the results of the inner select statement. This means that we 'get' the results then do something with them afterwards. It's a handy trick when dealing with remote sites as sometimes you want the remote database to do the work. The reason that I ask you to use the MATERIALIZE hint for testing is just to force this, in 99.99% of cases this can be removed later. Using the WITH statement is also handled differently to inline view like SELECT * FROM (SELECT... but the same result can be mimicked with a NO_MERGE hint.
    Looking at your case I would be interested to see what the explain plan and results would be for something like the following two statements (sorry - you're going have to check them, it's late!)
    WITH a AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_one),
    b AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_two),
    sourceqry AS
    (SELECT  b.col3 x
           , a.col1 y
           , a.col2 z
    FROM table_one a
        , table_two b
    WHERE a.col3 = 12345
    AND   a.col4 = 100
    AND   b.col5 = a.col5)
    SELECT apex_item.checkbox(1,x), y , z
    FROM sourceqry
    WITH a AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_one),
    b AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_two)
    SELECT  apex_item.checkbox(1,x), y , z
    FROM table_one a
        , table_two b
    WHERE a.col3 = 12345
    AND   a.col4 = 100
    AND   b.col5 = a.col5If the remote tables are at the same site, then you should have the same results. If they aren't you should get the same results but different to the original query.
    We aren't being told the real cardinality of the inners select here so the explain plan is distorted (this is normal for queries on remote and especially non-oracle sites). This hinders tuning normally but I don't think this is your problem at all. How many distinct values do you normally get of the column aliased 'x' and how many rows are normally returned in total? Also how are you testing response times, in APEX, SQL Developer, Toad SQLplus etc?
    Sorry for all the questions but it helps to answer the question, if I can.
    Cheers
    Ben
    http://www.munkyben.wordpress.com
    Don't forget to mark replies helpful or correct ;)

  • Length of a field in calendar report...

    Hi,
    I have a calendar report based on 2 columns as necessary, a date column and a varchar2 column.
    All the records for a particular date are grouped and shown under the date in the calendar report as required.
    Off late, we have faced an issue as below
    Error Error during rendering of region "Scheduled Maintenance".
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    This occurs when there are a large number of records for a single date. I.e, the field on the calendar report for a date is not able to display all the records due to length constraints.
    Could somebody pls tell me what is the length of a date field displaying data in the calendar report and also in other reports.
    Is there a way, I could change the length of this date field being displayed.
    Regards,
    Jitesh Gurnani

    Hello Jitesh,
    I don't know whats the exact limit. But when I try following queries in apex.oracle.com then..
    /*No Error*/
    SELECT 'b' name, sysdate date_col from dual connect by rownum < 32000;
    /*Error Occured in Month view, works fine in Day view*/
    SELECT 'b' name, sysdate date_col from dual connect by rownum < 33000;However I can't imagine calender with so many events and long text. It will destroy look & feel of calender regions.
    I suggest you to create some kind of filters so you only display some data at a time. That will definitely help end-users.
    Regards,
    Hari

  • I purchased an in-app component but it has not downloaded and I cannot seem to contact the seller. I've tried to report a problem but no window opens in which to report the problem. Any ideas?

    I purchased in in-app component for an email program but it has not shown up in the app on my ipad. I tried to report a problem, but no window opens in which to explain my situation. How do I get a message to the seller or to itunes? I am reluctant to re-purchase the component.

    Can you download large files from other places apart from the App store, wondering if it is the App store or your internet connection.
    If it just the app store check this url http://www.apple.com/support/mac/app-store/contact/

  • Error while opening Reports URL

    Hi,
    I'm facing problem while opening Oracle 11g Reports URL. I was able to start the WLS_REPORTS. The status of the same in Oracle EM is up. But when I try to open the reports using http://<servername:port>/reports/rwservlet
    I ensured that the port entered in the reports_install.properties file and httpd.conf is the same.
    From the URL we are getting the following error.
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.1. 500 Internal Server Error
    The server encountered an unexpected condition which prevented it from fulfilling the request.
    The following is the error description from console.
    Incident Id: 62
    Incident Source: SYSTEM
    Create Time: Fri Feb 25 11:28:52 CET 2011
    Problem Key: BEA-101020 [HTTP]
    Application Name: reports
    Error Message Id: BEA-101020
    Description
    Incident detected using watch rule "UncheckedException":
    Watch time: Feb 25, 2011 11:28:52 AM CET
    Watch ServerName: WLS_REPORTS
    Watch RuleType: Log
    Watch Rule: (SEVERITY = 'Error') AND ((MSGID = 'BEA-101020') OR (MSGID = 'BEA-101017') OR (MSGID = 'BEA-000802'))
    Watch DomainName: ClassicDomain
    Watch Data:
    DATE : Feb 25, 2011 11:28:52 AM CET
    SERVER : WLS_REPORTS
    MESSAGE : [ServletContext@1326597641[app:reports module:/reports path:/reports spec-version:2.5 version:11.1.1.2.0]] Servlet failed with Exception
    java.lang.NullPointerException
         at oracle.reports.rwclient.RWClient.doGet(RWClient.java:344)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    SUBSYSTEM : HTTP
    USERID : <WLS Kernel>
    SEVERITY : Error
    THREAD : [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'
    MSGID : BEA-101020
    MACHINE : <MachineName>
    TXID :
    CONTEXTID :
    TIMESTAMP : 1298629732845
    Stack Trace
    java.lang.Throwable
         at oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl.createIncident(DiagnosticsDataExtractorImpl.java:231)
         at oracle.dfw.spi.weblogic.JMXWatchNotificationListener.handleNotification(JMXWatchNotificationListener.java:195)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor$ListenerWrapper.handleNotification(DefaultMBeanServerInterceptor.java:1732)
         at javax.management.NotificationBroadcasterSupport.handleNotification(NotificationBroadcasterSupport.java:257)
         at javax.management.NotificationBroadcasterSupport$SendNotifJob.run(NotificationBroadcasterSupport.java:322)
         at javax.management.NotificationBroadcasterSupport$1.execute(NotificationBroadcasterSupport.java:307)
         at javax.management.NotificationBroadcasterSupport.sendNotification(NotificationBroadcasterSupport.java:229)
         at weblogic.management.jmx.modelmbean.WLSModelMBean.sendNotification(WLSModelMBean.java:824)
         at weblogic.diagnostics.watch.JMXNotificationProducer.postJMXNotification(JMXNotificationProducer.java:79)
         at weblogic.diagnostics.watch.JMXNotificationProducer.sendNotification(JMXNotificationProducer.java:104)
         at com.bea.diagnostics.notifications.JMXNotificationService.send(JMXNotificationService.java:122)
         at weblogic.diagnostics.watch.JMXNotificationListener.processWatchNotification(JMXNotificationListener.java:103)
         at weblogic.diagnostics.watch.Watch.performNotifications(Watch.java:621)
         at weblogic.diagnostics.watch.Watch.evaluateLogRuleWatch(Watch.java:546)
         at weblogic.diagnostics.watch.WatchManager.evaluateLogEventRulesAsync(WatchManager.java:765)
         at weblogic.diagnostics.watch.WatchManager.run(WatchManager.java:525)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Could you please help me in resolving the same ASAP.
    Thanks,
    Sandy.

    Have a look at https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&doctype=PROBLEM&id=1053674.1
    Also had to change the $$Instance.oracle_home$$ variable in the rwnetwork.properties file to the actual directory.
    Andre

  • Report a problem on an iPad?

    I bought an iPad because I don't have a computer and was sold by the fact that you don't have to set it up via a computer. I want to report a problem with an appbutcant unless I have iTunes on a computer. Then I found a way to do it via Apple Support but it wanted the purchase number. Ok where do I find that? iTunes on your computer. How can I report a problem that doesn't involve a computer?

    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
    Phone: 800-275-2273 How to reach a live person: Press 0 four times
    Hours of Operation: Mon-Fri: 9am-5pm ET
    Email: [email protected]
    How to report an issue with Your iTunes Store purchase
    http://support.apple.com/kb/HT1933
     Cheers, Tom

  • APEX Calendar Help - I'm stuck!

    Hello,
    First let me preface this by saying I am not an APEX expert and have been learning on the fly for the past few weeks. As a trainer for my organization it was important to have a dynamic training and events calendar with some specific features. I found a pre-packaged [Sample Calendar|http://www.oracle.com/technetwork/developer-tools/apex/application-express/packaged-apps-090453.html] application, uploaded that and have modified it to fit about 90% of my needs. Here is where I am stuck:
    1. I need to change how the events sort. I need alpha sorting, ideally.
    2. I currently have two different calendar groupings, soon to be three. Meaning, I have some events labelled as Training & Events and others labelled as Birthdays. I would like to color code these on my calendar so that it is clear to users what is what. I know how to change the highlighting color of all events, but not how to specify based on an identifiable column in my table.
    3. I created a page to reflect event details. When you click on a given event, it redirects to another page and shows the name, date, start time, web conference and dial-in details. The problem is the latter two items are showing blank when there is data in my table. Ideas?
    Any help or guidance is greatly appreciated. I am using APEX 4.2.
    Thank you,
    Christina

    Hi,
    1. I need to change how the events sort. I need alpha sorting, ideally. - The current calendar design overrides your sorting and uses the Calendar date column instead. There is a workaround for this provided your Calendar is SQL based.
    select display_column, cast(date_column as timestamp) + numtodsinterval('0.00' || rownum,'SECOND') shift_date, sort_column from
    (select display_column, date_column, sort_column
    from your_table
    order by sort_column desc)
    http://sathishkumarjs.blogspot.in/2013/05/trick-to-sort-apex-calendar-data-based.html
    2. I currently have two different calendar groupings, soon to be three. Meaning, I have some events labelled as Training & Events and others labelled as Birthdays. I would like to color code these on my calendar so that it is clear to users what is what. I know how to change the highlighting color of all events, but not how to specify based on an identifiable column in my table. -
    To acheive this yo need to modify the SQL statement with additional case statement to get the color of your choice and modify the display column as custom and add the column value as background/foreground color of your choice this needs some custom HTML / this also can be achieved by Modifying the Calendar Template. if needed will blog this with practical example.
    3. I created a page to reflect event details. When you click on a given event, it redirects to another page and shows the name, date, start time, web conference and dial-in details. The problem is the latter two items are showing blank when there is data in my table. Ideas? -
    If you mean some data columns displays correctly will others does not show data, want you to check the data source of those columns, whether it is similar to columns which work fine, if not want to know does the columns which does not display the value is in anyway related to display / date column used by calendar.
    thanks
    Sathish

  • Apex Calendar Context (right click) menu

    Hi all,
    Apex version: 4.2
    Plugin: context(rightclick) menu by Vikram
    I'm using this plugin and it works perfectly for SQL Reports and IRs. For example this function opens a new popup window with the ID selected by right clicking an entry.
    function myMenuAction(action, el, pos)
      if (action=='TEST')
          window.open('f?p=&APP_ID.:52:&SESSION.::NO::P1_ID:' + $(el).children('td[headers="ID"]').text(),'Popup','height=800,width=800,toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no ,modal=yes');
    ...I want to know if there is a way to do the same on an apex calendar entry.
    Thanks in advance.
    Matt.
    (changed 'handle')
    Edited by: 942631 on 08.04.2013 03:24
    Edited by: 942631 on 08.04.2013 03:43
    Edited by: 942631 on 08.04.2013 03:43

    Matt S. wrote:
    http://apex.oracle.com/pls/apex/f?p=62302:1
    User: demo
    PW: demo
    When i do the same on the calendar ("Home") i don't get the ID "http://apex.oracle.com/pls/apex/f?p=62302:4:111941727026117::P3_X".
    What i expect is (in this example) "http://apex.oracle.com/pls/apex/f?p=62302:4:111941727026117::P3_X:*7499*"
    This is what i wanted to do. I tried different things to achieve the same result as in "TS2".you haven't provided the workspace login details to check if this works but I managed to see that you are currently using a jquery selector *#CALENDAR_PRZ_LIST table tr*
    try this instead
    .Calendar tbody tr td div

  • Translate daynumber to date in APEX calendar

    Hello all,
    I've got a problem with a query for a calendar.
    My current customer has two tables to see wether or not an employee is available.
    One to see if an employee has parttime hours.
    EMP_CALENDAR
    - empno number
    - day_name varchar2(24)
    - day_number number
    - work_hours number
    - non_work_hours number
    Each employee gets 5 rows. One for each workday of the week showing 0 to 8 in the work_hours and non_work_hours column.
    And one to see if an employee has time-off.
    EMP_NON_AVAILABILITIES
    - empno number
    - start_date date with timestamp
    - duration number
    - description varchar2(255)
    My predicament is that I have to build screens with monthly calendars and week calendars to show both data.
    A query for the non-availabilities is easy enough, because I have a date field available. Using the timestamp I can show it correctly in a week calendar. But showing the part-time hours is a bit more challenging.
    Can anybody help me with this? I don't have a clue how to transform the EMP_CALENDAR data to integrate with the EMP_NON_AVAILABILITIES data when using an APEX calendar.
    The trouble is that I can translate a single date to a workday without a problem, but the APEX calendar only gives me 1 date; the CALENDAR_DATE. The other days of the week aren't available in an ITEM as far as I know.

    I've found a solution myself. I don't think it's very pretty, but it does the trick.
    select empno display_value
         , start_date return_value
      from emp_non_availabilities
    where empno = :APP_USER
    union all
    select empno display_value
         , dd.return_date return_value
      from emp_calendar
         , (SELECT (to_date(:P110_CALENDAR_DATE,'YYYYMMDD') + (LEVEL-7)) return_date
              FROM DUAL
           CONNECT BY LEVEL < 14) dd
    where day_number = to_char(dd.return_date,'D')
       and empno = :APP_USERI have to select 14 days from 7 days before :P110_CALENDAR_DATE until 7 days after, so I can get all data for my weekcalender. I don't know in advance which day of the week my CALENDAR DATE will be.

  • Can Oracle APEX access/report against an Oracle9i datbase?

    Can Oracle APEX access/report against an Oracle9i datbase? I know APEX has to be installed on Oracle 11g or 12c. I have a 11g environment to install it in, but I want to have ti read data from an existing 9i databasethat we are unable to upgrade at this time.

    APEX can create reports on any data that the database (which is running APEX) can access.
    This becomes a database question that is usually found in the General forum:
    How can an Oracle 11g database access data from an <place a name of a database here> database?
    One common answers:  Database Links.
    (Materialized Views and Golden Gate come to mind... but, again... these are database problems, not APEX problems.)
    I'll let others comment on the practicality of these solutions.
    MK

  • Apex in IFRAME cookie problem (P3P IE6+)

    Hi All,
    I am having a problem with IE not displaying my content within an IFrame - due to IE not trusting the Apex cookies.
    This problem was resolved on the Apex forum in 2009 - https://forums.oracle.com/thread/887792
    The solution was to set the P3P policy in the web server header response :
    For example
    1. PHP
    header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
    2. ASP.NET
    HttpContext.Current.Response.AddHeader("p3p","CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"");
    3. Apex solution
    I add this section to httpd.conf (Apache proxy)
    *<IfModule mod_headers.c>*
    Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID CUR ADM DEV OUR BUS\""
    *</IfModule>*
    Now I have the same problem but I am hosted in the cloud.
    Here is a page with my content embedded - (Bradford Uni) : test widget - SACU
    This works fine on chrome/firefox...
    Is there any other way to set P3P header in the database cloud ?
    Big thanks
    Steve

    Hi Christian,
    Thanks for looking in to this...
    This did not fix it :-(
    However, I used    to inspect the response headers and found that unless the page I was attempting to access was LOGIN_DESKTOP then the response was : 302 Moved Temporarily
    Content (encoded: 0.24 KiB / decoded: 0.37 KiB)
    <html><head><title>302 Moved Temporarily</title></head> <body bgcolor="#FFFFFF"> <p>This document you requested has moved temporarily.</p> <p>It's now at <a href="https://production001-demandanalysis.db.em1.oraclecloudapps.com/apex/f?p=20300147:111:0:::::">https://production001-demandanalysis.db.em1.oraclecloudapps.com/apex/f?p=20300147:111:0:::::</a>.</p> </body></html>
    This may have been causing the error in the iFrame...
    So I changed the Home URL and Login URL to : f?p=&APP_ID.:111:0
    and it now appears to load fine :-)
    Thanks again
    Steve

  • HT2693 Report a problem with iTunes

    I play Modern World by Gree, and the purchases with my iTunes was glitch in the game. Allot of people had this problem and the company knows this. I contacted the company's customer support and they have not responded in three day. I want to a refund of the iTunes that they consumed this weekend.

    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
    Phone: 800-275-2273 How to reach a live person: Press 0 four times
    Hours of Operation: Mon-Fri: 9am-5pm ET
    Email: [email protected]
    How to report an issue with Your iTunes Store purchase
    http://support.apple.com/kb/HT1933
    iTunes Purchase Problems: How to Report a Problem to iTunes Support
    http://tinyurl.com/7tscpa7
    How to Get a Refund from the App Store
    http://gizmodo.com/5886683/how-to-get-a-refund-from-the-app-store
    Getting Refunds for your iTunes Store Purchases
    http://www.labnol.org/software/itunes-app-store-refunds/13838/
    Canceling a Digital Subscription
    http://gadgetwise.blogs.nytimes.com/2011/10/14/qa-canceling-a-digital-subscripti on/
     Cheers, Tom

  • What grants needed to run APEX Object Reports?

    APEX 3.0
    Oracle 9.2.0.7
    Solaris 8
    The Apex workspace administrator account is unable to run the APEX Object Reports.
    The returned error states the account has no privileges on the APEX_MYAPP schema.
    What grants are needed for running the APEX Object Reports, and on what objects?
    Thank you.

    Yes, the "APEX_MYAPP" was a generic name. The error message actually mentions "APEX_IARS". I began by trying to limit the details of our installation. Just confused things.
    There are two other workspaces defined: another application-building workspace, "comres_ws", and one called "APEX_SAMPLE_APPS".
    The apex_iars workspace had two schemas assigned to it: iars and comres.
    The comres_ws workspace has just one schema assigned to it: comres.
    Thinking that for some reason the association of two schemas to the apex_iars workspace might be causing a problem -- although it has not in the past, I deleted the association of the comres schema from the apex_iars workspace so that now each workspace, the apex_iars workspace and the comres_ws workspace, just have a single schema. This did not fix anything with the apex_iars workspace. The "privileges" error still occurs.
    I logged onto the comres_ws workspace and tried to access the Utilities/Object Reports, and the SQL Commands, and all this works fine, no errors at all.
    I then logged onto the apex_iars workspace again and tried the Object Reports and SQL Commands and still get the error:
    ORA-20000: User <my_use_name> rhas no privileges on the apex_iars schema.
    Does it look like something is messed up for the apex_iars workspace? Are there APEX dictionary tables that may have incorrect or corrupt information for this workspace?

Maybe you are looking for

  • Any ideas on how to emulate this look (purposely bad looking video)?

    so i'm doing a very short sequence right now, and i thought it would be kind of interesting to have this short sequence have the same characteristics of the video quality of the old early 90s Sega CD based FMV games (for an example, i uploaded a shor

  • How to make not changeable a contract in R/3 from SRM

    Hello experts I'm developping contracts in SRM 3.0 system (Global Outline Contratcs). These contracts are transfered in R/3 (contracts type GCTR) and i want to make not possible to change contract in R/3 system. How can i make that? Which customizing

  • Java.security.AccessControlException while trying to run the server app

    ok, pretty new with java and rmi, so I wanted to run the application from the sun rmi tutorial http://java.sun.com/docs/books/tutorial/rmi/TOC.html. It all builds ok, i run the rmiregistry ,but when i try to run the server i get : java.security.Acces

  • Txt to xml. Problems with characters(&, , ',...)

    I want to generate a xml file with text from a txt file but i have problems with special characters such as &, <... I'd like to know if there�s any class or library to filter the text in order to generate my xml without problems. Thank you.

  • N95-1 V31.0.017 SMS Error

    After updating to the new firmware, i cannot read or view any messages which are and were previously stored on my memory card.  I've reinstalled the firmware twice & i've hard reset three times but i've not idea what to do next. I just can't access t