App done selectors reference non-public in viewer.app/viewer: consume:

Hello

I note a previously answered question on this subject further to the bottom, but I wanted to check again in the light of the recent updates.

We have re-built the app again (today), according to the instructions and now run into this error only (previously two) under the present through Application Loader.

Is it still safe ignore this error (according to the instructions of Neil) and submit if it's the only indicator, given the update to cover the iOS 8?

Thanks in advance.

You can ignore this warning.

Neil

Tags: Digital Publishing Suite

Similar Questions

  • to access the "non-public" folders on my laptop wireless

    I can't access "non-public" folders on my laptop wireless even though I can access its public folders.  Specifically, I chose the folder music on my laptop to be shared, but I still don't see it.  I use Windows 7 on the desktop and the laptop.

    Ah well, I struggled with myself before.  There are a few things that you may want to check. There are share permissions, there is also the folder permissions. They are separated, but both must be opened for the part to work.

    So the first place is under the sharing tab/Advanced Sharing / permissions.  The other is on the Security tab.  In both cases, you want to allow 'all' to 'read '.
    Here is the share permissions...
    And here is the folder permissions...
  • Applications that use the non-public API will be rejected

    Hi guys

    Just read the iOS guidelines before getting too deep into the manufacturing of the native version of a web application.

    I was wondering what:

    Applications that use the non-public API will be rejected

    We hear when to submit an application in AIR - does that mean that you can not use your own custom classes?

    See you soon

    If you mean custom AS3 classes, Yes, you can use those. What you can't do, is create a DONKEY who calls in the frames of the iOS itself.

  • The reference to the table, view, or the sequence is not allowed in this context

    Hello

    I am triying to run the SP that I describe below and the OS gives me an error:
    CREATE OR REPLACE PROCEDURE DWARE.P_CSCV_AGR_MONTH_REVENUE
    (
        TBL_NAME VARCHAR2,
        START_DATE DATE,
        RESULT_ OUT NUMBER
      ) AS
      BEGIN
      
      DECLARE 
      
        v_tbl_name VARCHAR2(30);
        v_start_date DATE;
        v_result NUMBER := 0;
        
        v_select_aux VARCHAR2(32767) := ' ';
        v_temp_table VARCHAR2(30);
        v_exists NUMBER;
    
      BEGIN
        v_tbl_name := TBL_NAME;
        v_start_date := START_DATE;
      
        v_temp_table := 'temp_' || v_tbl_name;
        
        SELECT count(*) INTO v_exists FROM tab WHERE lower(tname) = lower(v_temp_table);
        IF (v_exists = 1) THEN
          v_select_aux := '
            DROP TABLE ' || v_temp_table || ' CASCADE CONSTRAINTS PURGE
          ';
          EXECUTE IMMEDIATE (v_select_aux);
          COMMIT;
        END IF;
        
        v_select_aux := 'CREATE TABLE ' || v_temp_table || ' AS 
                                  SELECT ch.date_ month_revenue,
                                       s.date_sub month_sub,
                                       s.codpromoter,
                                       u.OPERATOR,
                                       SUM (ch.total) AS TOTAL_OK
                                       FROM cscv_sub_charges_' || to_char(v_start_date, 'YYYY_MM')|| ' ch
                                       INNER JOIN cscv_subs s
                                       ON ch.id_sub = s.ID
                                       INNER JOIN cscv_users u
                                       ON s.id_user    = u.ID
                                WHERE ch.STATUS = 0
                                GROUP BY ch.date_, s.date_sub, s.codpromoter, u.OPERATOR';
                                
        EXECUTE IMMEDIATE (v_select_aux);
        COMMIT;  
         v_select_aux := '
     INSERT INTO ' || v_tbl_name || ' (
             month_revenue,
             month_sub,
             codpromoter,
             operator,
             TOTAL_0,
             TOTAL_1,
             TOTAL_2,
             TOTAL_3,
             TOTAL_4,
             TOTAL_5,
             TOTAL_6,
             TOTAL_7,
             TOTAL_8,
             TOTAL_9,
             TOTAL_10,
             TOTAL_11
          )
            SELECT 
             month_revenue,
             month_sub,
             codpromoter,
             operator,
             TOTAL_0,
             TOTAL_1,
             TOTAL_2,
             TOTAL_3,
             TOTAL_4,
             TOTAL_5,
             TOTAL_6,
             TOTAL_7,
             TOTAL_8,
             TOTAL_9,
             TOTAL_10,
             TOTAL_11
            FROM 
            (
               SELECT 
                  month_revenue,
                  month_sub,
                  codpromoter,
                  operator,
                  sum(total_ok) total_0,
                  0 total_1,
                  0 total_2,
                  0 total_3,
                  0 total_4,
                  0 total_5,
                  0 total_6,
                  0 total_7,
                  0 total_8,
                  0 total_9,
                  0 total_10,
                  0 total_11
                 FROM '|| v_temp_table ||'
              WHERE to_char(month_sub,''mm/yyyy'') = to_char(sysdate,''mm/yyyy'')
              GROUP BY month_revenue,month_sub,codpromoter, operator
              UNION ALL
              SELECT 
                  month_revenue,
                  month_sub,
                  codpromoter,
                  operator,
                  0,
                  sum(total_ok),
                  0,
                  0,
                  0,
                  0,
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                 FROM '|| v_temp_table ||'
              WHERE to_char(month_sub,''mm/yyyy'') = to_char((to_date(sysdate,''dd/mm/yy'') - INTERVAL ''1'' MONTH),''mm/yyyy'')
              GROUP BY month_revenue,month_sub,codpromoter, operator
              ) 
            GROUP BY month_revenue,
             month_sub,
             codpromoter,
             operator
               ';    
        
        EXECUTE IMMEDIATE (v_select_aux);
        v_result := v_result + SQL%ROWCOUNT;
        COMMIT;
        
        v_select_aux := '
          DROP TABLE ' || v_temp_table || ' CASCADE CONSTRAINTS PURGE
        ';
        EXECUTE IMMEDIATE (v_select_aux);
        COMMIT;
        
        RESULT_ := v_result;
      END;
      END P_CSCV_AGR_MONTH_REVENUE;
    /
    ------------------------------
    BEGIN
    DWARE.P_CSCV_AGR_MONTH_REVENUE(CSCV_AGR_MONTH_REVENUE,'01/01/2010');
    END;
    /
    and the output is:
    Error at line 1
    ORA-06550: líne 2, column 32:
    PLS-00357: The reference to the table, view or sequence 'CSCV_AGR_MONTH_REVENUE'  is not allowed in this context
    ORA-06550: líne 2, column 1:
    PL/SQL: Statement ignored
    What could I do to fix the problem?

    Thanks in advance...

    Hello

    Signature of the procedure is

    CREATE OR REPLACE PROCEDURE DWARE.P_CSCV_AGR_MONTH_REVENUE
    (
    TBL_NAME VARCHAR2,
    START_DATE DATE,
    RESULT_ OUT NUMBER
    ) 
    

    either he's expecting two input parameters, tbl_name in VARCHAR2 and the other START_DATE date format format. Also you need a variable with the number data type to store the value of the PARAMETER RESULT_

    Now, look at the way you call this procedure

     BEGIN
    DWARE.P_CSCV_AGR_MONTH_REVENUE(CSCV_AGR_MONTH_REVENUE,'01/01/2010');
    END;
    /
    

    first parameter must be a VARCHAR2, so place CSCV_AGR_MONTH_REVENUE in single quotes.
    second parameter must be a date, so use to_date() function.
    Finally declare a variable with the data type of number to maintain the value of the parameter RESULT_

    Something like this:

    declare
    t_num number;
    begin
    a('CSCV_AGR_MONTH_REVENUE',to_date('01/01/2010','MM/DD/YYYY'),t_num);
    dbms_output.put_line(t_num);
    end;
    

    Vivek L

  • The web content viewer consumes well DPS downloads?

    If you enable the social sharing through the web content viewer, each person sharing (or views) an article uses a download folio of your DPS account credit?

    Each view consumes 1 / (number of items in your folio) a download. So if your folio has 10 articles, every article you read will consume 1/10th of a download. If your folio has 100 articles, every article you read will consume 1/100th of a download.

    Joe

  • accept guests of Java security in Firefox on non-persistent desktops view

    Hi all

    Here's our environment...

    1. view 6.1

    2. a pool Nopersistent offices Windows 7 Enterprise

    3 Java 32 bits version 8 day 72

    4 Firefox 34.0.5

    Run us a Java Application (banner) and when you fire in Firefox it shows 2 application prompt, both applications are trusted publishers is not a matter of trust. Because they are non-persistent desktops that our end users bring each time that they restart it. Whats odd is that we have been able to ignore these warnings with IE using strategies of group two, one to be saved in the "trusted publishers" request certificates store and another to add the URL of the application to IE Trusted Sites. I'm not sure how to work around this problem in Firefox

    I enable the Java Console and turned on a high level of forest exploitation, and when I got one of these application guests I clicked on the option "don't show this new editor applications and the location above. When I did that the Java console displays the following...

    Security: the user granted the privileges to the code forever

    Security: deployment of C:\Users\deptsfs\AppData\LocalLow\Sun\Java\Deployment\security\trusted.certs loading certificates

    Security: responsible for deployment from C:\Users\deptsfs\AppData\LocalLow\Sun\Java\Deployment\security\trusted.certs certificates

    Security: registration of certificates of deployment in C:\Users\deptsfs\AppData\LocalLow\Sun\Java\Deployment\security\trusted.certs

    Security: safe deployment in C:\Users\deptsfs\AppData\LocalLow\Sun\Java\Deployment\security\trusted.certs certificates

    I know I'm grabbing at straws here but y at - he called a way to manipulate the contents of the file "trusted.certs" to the user with a logon script via group policy so that Publisher/App/location is always approved?

    Thank you

    So... my grad last idea is to deploy the trusted.certs file in the default profile on your master image and test to see if this file is available in-house for new users. Do you know how to copy a user profile in the default user profile in Windows 7?

  • Widgets and non-public web servers

    I read through the new documentation of widget at a high level and I have a persistent question.  The doc seems to assume that your application/widget is interfacing with a fixed know URL.  For example, you have a public website called mybowlingleagues.com and your ap/widget is a mini version of this site with some cool integration with the Blackberry GPS.  Okay, all right.

    But what about when the app or widget deliver you needs an interface with a unknown URL to your customer's business?  Web server a client can be www.mybusinessA.com and an another www.mybusinessB.com, etc.  You get the picture.

    How the user can enter in their Web to interact with server when they are installing the app or the first time they run the application, and then have the app store this URL and interact with the URL then?

    For security reasons, JavaScript code within the widget can't change what are the places or API, it is possible to access... If this type of functionality have been made available it could allow a few red script could open full access to the API of the device to an arbitrary URL and pump with the data on your device.  Obviously not a good scenario

    The white list follows the same origin policy when you allow access... So you can do this specific field by doing something like

    subdomains of http://mydomain.com' = "true" / >

    If you are looking at a company facility where the data, you have access to are internal to the company behind their BES, you can create the domain name standard of your own application such as 'http://www.myappdomain.com' and then add the domain name to the DNS servers of the company and/or the BES configuration files.

    The possibility of open access to "all" areas in your widget should be in a beta where we also added structure around how properly secure these monitoring scenarios.

  • I don't want Windows Live photo viewer. How can I change back to The Original Windows Picture Viewer?

    My default Picture Viewer changed default Windows Live Photo Viewer. I have nothing to cause this change.  How to get back to the original Windows image viewer?

    Hello

    I suggest to associate as the default Windows Photo Viewer to display photo files and try to view the image files directly.

    (a) open default programs by clicking the Start button, and then click default programs.

    (b) click on associate a type of file or Protocol with a program.

    (c) click on Protocol or file type that you want the program to act as the default value.

    (d) click the program of change.

    (e) click the program that you want to use by default for the selected file type, or click the arrow next to other programs to show other programs. (If you don't see other programs or your program is not listed, click Browse to find the program you want to use, and then click Open. If no other programs are installed that are able to open the type of file or Protocol, your choice will be limited.)

    Check out the link:

    Change the programs that Windows uses by default
    http://Windows.Microsoft.com/en-us/Windows7/change-which-programs-Windows-uses-by-default

    If you want to uninstall Windows Live Photo Gallery, you can follow these steps.

    To uninstall a program, follow these steps.

    (a) click Start, and then click in the Start Search box.

    (b) type appwiz.cpl , and then press ENTER.

    (c) in the list change or remove programs , click Windows Live Photo Gallery , and then click Uninstall.

    (d) follow the on-screen instructions.

    Hope this information helps. If you need additional help or information on Windows, I'll be happy to help you.

  • Hi, I don't see the option to view previous versions of Adobe products through the Creative 3.5.1.209 cloud

    Hi, I am looking into getting a previous installation of CC but I don't see the option to display or filter the previous versions through the app tab.

    No matter who else you see is not this option?

    His creative cloud 3.5.1.209

    Thank you very much

    Download previous versions of Adobe Creative applications-

    http://helpx.Adobe.com/creative-cloud/kb/download-previous-versions-creative-applications. HTML

  • Adobe CS4 Don licensing question non-profit

    I work for an organization not-for-profit 501 c 3 and someone gave a copy of CS4 we. The problem is that it is a copy of the student.  It is not open, never used.  We would like to be able to use this software but don't want to face legal challenges. Is it possible for us to use it? Can I get a license non-profit organization for him if a non-profit license is different from the license of the educator? What are our options?

    Ways, we would like to use this software: create graphics for newsletters and social media with photoshop.  We would like to use indesign for the layout of our newsletter.

    Adobe creative suite has been on our wish list for YEARS.  Because it's so expensive, nobody never gave us there.  We finally this copy has been given, but it is a copy of student. We would really like to be able to use it, because any buying creative suite in our budget.  It is an older version of CS, but would not be appropriate for our purposes.

    In the hope that we can get an answer and/or work with Adobe to find a way for us to use this software (have 501 c 3 documentation and tax identification that can be provided to prove our status).

    Thanks for any help (tried the cat and has been mentioned here).

    Adobe decides who qualifies as a student - people don't get to do that themselves.  If you really want to be on top and to the top with this, then sign up for an account and see what you qualify for - contact Adobe directly and see what arrangements they have for you are.  These are forums of users to anyone here will be able to give you anything in the way of approval to use a license that you do not own.  Since CS4 is no longer sold, I'm next to positive, that you are not eligible to get a license for it.

    Phone support | Orders, returns, exchanges

    http://helpx.Adobe.com/x-productkb/global/phone-support-orders.html

    To the link below, click on the still need help? the option in the blue box below and choose the option to chat...

    Get help from cat with orders, refunds and exchanges (non - CC)
    http://helpx.Adobe.com/x-productkb/global/service-b.html ( http://adobe.ly/1d3k3a5 )

  • Public Vmware View

    Hi guys

    We are supplier of Vmware services and want to do some testing to provide virtual desktops, but I have a big doubt on how to provide

    This virtual desktops because if I'm not wrong this requieres a public IP address of my server connection...

    I mean my question is

    is this the only option to provide a public IP address and compromise security in my data center?

    or my client must use a VPN as cisco client? (the bad thing about VPN is that you hace the session active, otherwise it will disconnect... and I know that people hate logging in and out all day)

    y at - it another option? that the two above?

    How do you provide virtual office as infrastructure for external customer, because for me, there are many risks for security

    Thank you very much

    You place a security server in the DMZ, and yes there is still people can connect to an external address.   Traffic is then sent by tunnel via the appropriate desktop to view security server.

  • How to reference APP_ID in a view

    Hello
    How to make reference to APP_ID in a view outside the apex?

    User name, I found an api function 'APEX_CUSTOM_AUTH. GET_USERNAME ". The corresponding function for G_FLOW_ID I'm looking for.

    Probably a simple question, but I have not found an answer until now.

    Thank you
    Armin

    using the function v() , as

    V ('APP_ID')

    The v() function allows to access session variables outside of the apex, but always in a session of apex as packages, views and triggers mentioned in the pages/process.

  • What can I do for the creation of a public synonym view?

    Hi people,
    I create a public synonym of another object to users

    SQL > create public synonym PAPD for scott.dept;


    The synonym is created.

    so I tend to create a view of this public syn

    SQL > create view vpdep in select * from PAPD.
    Create view vpdep in select * from PAPD
    *
    ERROR on line 1:
    ORA-01031: insufficient privileges

    I have the privilege to create view.also, I can create views of a public synonym for my own ex objects.for,

    SQL > create public synonym cdep for dept.

    The synonym is created.

    SQL > create view vcdep in select * from cdep;

    Created view.

    What could be the reason behind this? is there any privilege required to me.pls suggest me.

    Concerning
    VIDS

    Hi vidusnat!

    It is onlinedocumentation to Oracle:
    >
    Privileges required to create views

    To create a view, you must meet the following requirements:

    You must have been granted one of the following system privileges, either explicitly, or by a role:
    o CREATE The VIEW system privilege (to create views in your schema)
    o The CREATE ANY VIEW system privilege (to create a view of another user schema)
    You must explicitly obtained one of the following privileges:
    o the SELECT, INSERT, UPDATE, or DELETE object privileges on all objects in the view's underlying base
    o SELECT it ANY TABLE, INSERT a WHOLE TABLE, UPDATE ANY TABLE or DELETE ANY TABLE access privileges

    In addition, in order to grant access to your display of other users, you must have privileges to object to the base with the OPTION GIVING clause objects or system privileges with ADMIN OPTION clause. If you do not, users cannot access your view.
    >

    I hope that this will bring a little light in the darkness!

    Yours sincerely

    Florian W.

  • I don't want the tabs to view, but they do when even (have not selected options n tabs).

    When I downloaded the update of security today tabs began to appear and I don't want to do. I don't have that set in options, but he does it anyway. How can I fix it?

    In Firefox 22 and earlier versions, you can remove the tab bar when he was only an open page in the window, that is only one tab. Developers are gearing up for a new interface, so deleted this option. However, at least for now, you can restore it with an add-on:

    https://addons.Mozilla.org/firefox/addon/Hide-tab-bar-with-one-tab/

    Note: I have not tried myself.

    If you have noticed other changes on the tab bar, you could list those out?

  • 907 invalid JAR: class non-public Midlet: gui

    Hello

    I had no problem with the installation of the application OTA or Desktop Manager before, but all of a sudden, the OTA stopped working with the above error. (I have also see the message "this application does not contain a signature. (It is not a reliable source"when I already signed the request)

    'mistletoe' is the argument that was passed to the other entry point (a graphical interface, of course). I read the developer articles and tried to change the MIDlet-Jar-Size 0, removing all the project files and build a new one, etc etc, but I don't know how this has suddenly stopped working.

    Anyway, how is 'gui' a midlet then class is only the alternative input for CLDC application argument? This disturbs me. Help, please!

    Manifest-Version: 1.0
    MIDlet-Version: 1.0.1.8822
    MIDlet-Jar-Size: 140053
    Microedition-Configuration: CLDC-1. 1
    MIDlet-Jar-URL: SyncMy.jar
    RIM-COD-Module-dependencies: net_rim_cldc, net_rim_xml_org, net_rim_xml, net_rim_locationapi, net_rim_bbapi_options
    RIM-MIDlet-flags-2: 0
    RIM-MIDlet-flags-1: 3
    RIM-COD-Module-name: SyncMy
    MIDlet-name: SyncMy
    RIM-COD-size: 60576
    RIM-COD-creation-Time: 1239491930
    MIDlet-2: syncmygui, icon.png, gui
    MIDlet-1: SyncMy.net
    RIM-COD-URL: SyncMy.cod
    RIM-COD-SHA1: 1st ab 41 4 d f8 bc d6 7B 5f d4 be cb 9 a 09 ca 12 a6 94 99 db
    Microedition-profile: MIDP-2. 0
    MIDlet - Publisher: SyncMy Ltd.

    Oh, it was a CLDC application

    It happened because I used the wrong file when loading OTA - it should be instead of .jar .jad

    On the issue of 'half of the lost functions', it's because one of my sons would not start until the powerUp() method has been discharged - it wouldn't happen because the unit will not restart when installing OTA.

    I made the false assumption that everyone settle down with Desktop Manager and the device would always restart - which is not true.

Maybe you are looking for