Does DPS Analytics show the folio type?

With DPS Analytics is there anyway to tell which folio type has been downloaded, an iPhone or an iPad folio?
If not is there any other way to compare iPhone DPS usage versus iPAD DPS usage?

You can create Issue Name reports and find out how many Issues got downloaded on each device type (iPad 1, iPad 3, iPhone 4S, iPhone 5 etc.).

Similar Messages

  • In the attached VI why does one loop coerce the data type while the other doesn't?

    In the attached VI why does one loop coerce  the data type while the other doesn't?
    Solved!
    Go to Solution.
    Attachments:
    AAA.vi ‏8 KB

    I'm guessing you created the Enum on the front panel.  If you right-click it and create an indicator, it will match the type, and be an enum.  LabVIEW represents enums as U16, but because the types aren't identical (for example, your enum has 3 values, but a U16 has 65,536 values), LabVIEW automatically coerces (or converts) the smaller (enum) representation into the larger (U16) value.

  • How do i show the filename.type instead of the entire file path?

    How do i show the filename.type instead of the entire file path?
    I want it to show "ProgramSetup.exe" instead of "C:/Program Files/Oracle/JavaFX/ProgramSetup.exe"
    I have created a JavaFX program with the help of my manager
    below are the code
                   File file = fileChooser.showOpenDialog(Admin.mainStage);
                   if (file != null) {
                        textFiles.setText(file.getAbsolutePath());
                        String absolutePath = file.getAbsolutePath();
                        //String fileName = new File(absolutePath).getName();the reason i put the last line as // because it has error on that line....
    if i remove the last line, it will display but with the full path....
    i search through google and the guide on many forums aren't clear to me.....some said there are 2 ways but i tried and it is not working, atleast for me...maybe i left out something or what....can anyone help me on this?

    You don’t need the absolutePath:
    File file = fileChooser.showOpenDialog(Admin.mainStage);
                   if (file != null) {
                        textFiles.setText(file.getName());
                               }

  • For iOS the ipad version shows the folio that has been published, but the iPhone app is not.

    I am responsible for handling the apps and not at all involved with or know how the folio creation process works.
    When I build the app for iOS the iPad version shows the folio that has been published, but the iPhone app is not showing the folio.
    Is this something related to the build process or how the folio was created?
    The folio also shows up in the Android app (at least the phone I have tested with).
    Thanks,

    "Android and iOS viewers have different requirements for displaying folios. Any folio size you create can appear in an Android viewer. The articles are scaled and letterboxed as needed. However, on the iPad, the viewer displays only folios with a 4:3 aspect ratio. The iPhone viewer displays only folios with a 3:2 or 16:9 (1136x640) aspect ratio."
    Here is the entire post if you'd like to read more: Digital Publishing Suite Help | Creating documents for multiple devices

  • Can you create an app using Adobe DPS, then pass the Folio to a programmer to add interactivity?

    I'd like to know if I can create an app using Adobe DPS, then pass the folio to a programmer to add advanced interactivity that DPS doesn't provide. I would like the programmer to use either XCode or Android SDK because it is a standard, but they can also use C#, JavaScript, and several other coding languages. The folio would serve the purpose of a tight digital comp for the programmer.

    Thanks for your help Bob! I found this article on the Adobe site. Figured I'd share it. http://helpx.adobe.com/digital-publishing-suite/help/import-html-articles.html

  • My iPad and iPhone have the same syncing calendar but my Windows 7 PC with iCloud does not sync/show the same calendar...please help!

    My iPad and iPhone have the same syncing calendar but my Windows 7 PC with iCloud does not sync/show the same calendar...please help!

    iCloud will not sycn a calendar from an external source.  In order to use iCloud to sync it, you would have to move it to iCloud and stop using Google.  I know how to do that on a Mac, but I'm not sure how to do it on a PC.  If you're using Outlook, I suspect you export it as an .ics file to your desktop, then import it to the iCloud account in Outlook.  I'm sure you could use Google to find the specific steps.
    However, there's really no reason not to just use Google to sync your calendar across your devices.  Instead, just continue to use Goole calendar on all your devices and they should stay in sync.  Take a look at this video: http://www.youtube.com/watch?v=C0Jj0KFgbYI.

  • Why does my ipad show the usb cord and itunes?

    why does my ipad show the usb cord and itunes?

    It needs to be Connected to iTunes on your Computer.

  • When I copy/paste text to an ipages empty document can does it only show the first page of what I copied?

    When I copy/paste text to an ipages empty document can does it only show the first page of what I copied?

    You want to use word processing mode. I suggest you ask your question in the Pages forum and include information about what you are copying. Off the top of my head I can't come up with any reason you'd see this in WP mode.   https://discussions.apple.com/community/iwork/pages

  • How does Analytics count the folio downloads?

    I'm trying to set a price for our paid folios, based on how many times the free ones were downloaded. But we had to do some updates to the folios, so when the folio is downloaded again does it count as a new download?
    Thanks,

    Ask for it here:
    Adobe - Feature Request/Bug Report Form

  • In vendor payment advice to show the document type

    Hi
    Our customised vendor payment advice is designed in smartforms, we need to include document types for e.g. if Down paymentu2013KA, Invoice-RE to easy understand. From where can I call this document types? Because in our payment advice for FI we only have the table BSAK cleared items. Here BKPF always KZ and I didnu2019t get the origin document type. In automatic payment program after payment run, in payment list here we can see the document type KA or RE. Like same we need to show in our payment advice.
    Please suggest.

    I suppose based on the same ZUONR and AUGBL, you could find the related BSEG entries and from there, BKPF with the document type... but this needs to be verified whether it's the correct logic.
    Even then, searching BSEG with those fields will be a performance problem unless you can do it via some secondary index.

  • Bug: JList does not always show the right selection

    I have a JList (Navigator model!) on my form which contains the data of a certain view. The view consists of several attributes but the navigator model always only shows the value of one field. The field I have choosen hasn't an unique value but that's no problem for what I want to do with the JList.
    When I select another row in the view object useing it's key the row is selected in the view object (which I can check looking at the primary key attribute of the currently selected row), but in the JList sometimes the wrong row is selected. I noticed that if there is another row with the same value for the visible attribute (in my case an attribute called "name") as the row which is selected in the view object sometimes this wrong row is selected in the JList. This occurs if the wrong row with the same visible value (name) is at a higher position in the list. So it looks like the BC4J framework checks what the value is of the visible attribute of the currently selected row in the view object and used this value to select the first row in the JList that has this value. This doesn't necessarily mean it's the right row!!!
    E.g.
    The initial view object:
    PK | Name
    1 | test
    2 | another test <-- currently selected row
    3 | test
    The initial JList:
    | test |
    | another test | <-- currently selected row
    | test |
    Now I tell the view object that I want to select the row with primary key value "3".
    Now my view object looks like this:
    PK | Name
    1 | test
    2 | another test
    3 | test <-- currently selected row
    But my JList now looks like this:
    | test | <-- currently selected row
    | another test |
    | test |
    I hope this is sufficient information to trace the bug, if not feel free to contact me (by sending a response to this message). I'm useing JDeveloper 9.0.3 preview!
    Regards,
    Peter

    Well, how should the list resolve the difference between two "displayed values" that are same?Well, if I select a certain value in the list the connected record in the ViewObject is selected. In other words the JList seems to know enough about the ViewObject to select the correct record (it doesn't select the first record in the ViewObject with the display value!). So if "it" knows how to do it one way, why not the other way?When you select by index then the object corresponding to that index is selected and that means the right row (if you are able to figure out which row by simply having the knowledge of the row index though even though the displayed values are duplicate - but I won't say that's realistic). The other way, it only has a value - string that it has to match with a set of values in the list and that logic has no clues which of the "duplicate" entries would be the right one.
    To resolve such conflicts you could add another "displayed attribute" in the list which is going to make the attribute-set unique in the list.I did do that already, but then my list becomes read-only (not selectable) because the attribute I added is a primary key attribute which is a DBSequence field what may not be changed once it has been inserted. The weird thing is, you can't change the value when you select it from the list, so why does it behave like this? (In other words why is a list with a read only display attribute also read only? because selecting something in a navigator list doesn't mean something get's changed in the selected attribute value!). I'd chase this one. This definitely sounds like a bug. Readonly-ness should not be derived from "displayed" attributes but "updateable" attributes.

  • Why does is not show the radio buttons

    I want to display the buttons in a row then radio button in a row under the button and then log scroll pane under the radio buttons. This is my code:
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.CENTER);
            add(logScrollPane, BorderLayout.CENTER);When i run it it display the buttons and the logsrollpane. Why does it not display the radio buttons?

    Thanks guys.
    This is my problem. We have a big system that produce lots of log files and the software testers have to manually have to go through the logs file and look for a certain XML tags in the log file.
    What I want to do is help the software testers my developing a small tool that will allow them to open a log file and then click on a radio button corresponding to a xml tags that they are looking for and automatically highlight the tags in the file in yellow color .
    I am not sure how feasible this is and I am stuck.
    This is what I have done so far.
    Can you please guys help me go forward.
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    public class FileChooserDemo extends JPanel
                                 implements ActionListener {
        static private final String newline = "\n";
        JButton openButton;
        JButton clearButton;
        JTextArea log;
        JFileChooser fc;
        // Radio Buttons
        static String em01 = "EM01";
        static String em07 = "EM07";
        /*static String dogString = "Dog";
        static String rabbitString = "Rabbit";
        static String pigString = "Pig";*/
        public FileChooserDemo() {
            super(new BorderLayout());
            //Create the radio buttons.
            JRadioButton em01Button = new JRadioButton(em01);
            em01Button.setMnemonic(KeyEvent.VK_B);
            em01Button.setActionCommand(em01);
            em01Button.setSelected(true);
            JRadioButton em07Button = new JRadioButton(em07);
            em07Button.setMnemonic(KeyEvent.VK_C);
            em07Button.setActionCommand(em07);
            //Group the radio buttons.
            ButtonGroup group = new ButtonGroup();
            group.add(em01Button);
            group.add(em07Button);
            //Register a listener for the radio buttons.
            em01Button.addActionListener(this);
            em07Button.addActionListener(this);
            //Put the radio buttons in a column in a panel.
            JPanel radioPanel = new JPanel(new GridLayout(0, 1));
            radioPanel.add(em01Button);
            radioPanel.add(em07Button);       
            //Create the log first, because the action listeners
            //need to refer to it.
            log = new JTextArea(40,60);
            log.setMargin(new Insets(5,5,5,5));
            log.setEditable(false);
            JScrollPane logScrollPane = new JScrollPane(log);
            //Create a file chooser
            fc = new JFileChooser();
            //Uncomment one of the following lines to try a different
            //file selection mode.  The first allows just directories
            //to be selected (and, at least in the Java look and feel,
            //shown).  The second allows both files and directories
            //to be selected.  If you leave these lines commented out,
            //then the default mode (FILES_ONLY) will be used.
            //fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
            //fc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
            //Create the open button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            openButton = new JButton("Open File");
            openButton.addActionListener(this);
            //Create the save button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            clearButton = new JButton("Clear Text Area");
            clearButton.addActionListener(this);
            //For layout purposes, put the buttons in a separate panel
            JPanel buttonPanel = new JPanel(); //use FlowLayout
            buttonPanel.add(openButton);
            buttonPanel.add(clearButton);
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.LINE_START);
            add(logScrollPane, BorderLayout.CENTER);
        public void actionPerformed(ActionEvent e) {
            //Handle open button action.
            if (e.getSource() == openButton) {
                int returnVal = fc.showOpenDialog(FileChooserDemo.this);
                if (returnVal == JFileChooser.APPROVE_OPTION) {
                     log.setText("");
                    File file = fc.getSelectedFile();
                    try{
                         BufferedReader in = new BufferedReader(new FileReader(file));
                             String data;
                             while ((data = in.readLine()) != null) {
                                  log.append(data + newline);
                    }catch(IOException ioe){
                log.setCaretPosition(log.getDocument().getLength());
            //Handle save button action.
            }else if (e.getSource() == clearButton) {
                  log.setText("");
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame("PROGRESS Message Viewer");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            JComponent newContentPane = new FileChooserDemo();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

  • EH&S-WWI: How to show the ID type description's?

    Hi,
    I'm working with an WWI Template for substance, and i want to print the ID type code and description, i could print the code but not its description.
    Thanks in advance,
    Albio

    Shaik,
    Did you find any solution to come over this? We are facing similar issue.
    I would appreciate if you can share some information on this issue.
    THanks,
    THirumala

  • Not to show the wage type when amount is zero in payslip

    Hi Gurus,
    I am not sure what's wrong with the rule below, my intention is to display the text and the wage type amount when the wage type amount is not Zero, and not to display the text and the amount when wage type amount is zero.
    Below is the rule i apply to the wage type text, but it only works when the wage type amount is not EQ 0. When the WT amount is zero, the WT text text still appear
    rule   no. Table    field  Typ CO   Value1   table     new value
    1      1 RT BETRG N      NE            ' 0       TEXT      10 (TEXT 10 is the WT text)
    1      2 RT BETRG N      EQ            ' 0       TEXT      34 (text 34 is blank line)
    I apply the below rule for the amount and this is working fine
    rule   no.  Table  field    Typ   CO     Value 1    table new value
    2        1       RT   BETRG  N    NE         ' 0           RT      BETRG
    2        2       RT   BETRG  N      EQ       ' 0                      SUPPRESS PRINTING
    I need some pionters to the rules to make it work. Thanks a lot.
    Rgds,
    C
    Edited by: Team HR on Sep 13, 2010 9:29 AM

    if the amount is 0 than there is no wage type in RT right than wht is the need of going through the rule

  • Why does time machine show the backup failed

    The time machine icon in the menu bar keeps showing up with a "!" in the middle of it, which is suppose to mean the back up failed.
    Yet when I go to System Preference, it shows the backup succeeded.
    The menu bar shows the last successful back up was on Sept 13.
    System Preferences shows the last successful backup was an hour ago.  (15 Sept.)
    How do I get these two to agree with each other?
    Rebooting the computer doesn't seem to help.
    I'm running 10.9.4 now.

    LonerT:
    Thanks for looking at the HomeSharing problem
    I have three discussions open that are related.  The first one shows that the ATV appears to open the extra DAAP connections, which in turn appears to be related to Homesharing problem.
    Airport opens multiple DAAP connections
    Numerous ATV DAAP ports to MacBook Pro
    Cannot turn off Homesharing to AppleTV: IPv6 connections remain
    This one (not mine) points at the Bonjour Sleep Proxy Service as being involved in the DAAP problem.
    DHCP conflicts between AppleTV and Airport Extreme repeater
    And this is the "other side" of the problem, which I have also experienced
    Apple TV homesharing keeps dropping out ...
    I note that my AppleTV started out with a DHCP address of 10.0.1.16, it jumped to 10.0.1.20 and then migrated up, one address at a time, to 10.0.1.25.
    Given the number of systems I have on my subnet, if they are handed out in order, and given that I just moved from 192.168.1.0/24 private space, the highest address should be around 12. 
    I have two Apple TVs.  One on Wireless remote from the ATX and connected to an Airport Express and one connected via ethernet directly to the AEX.  I don't use the remote one.  It should not have been turned on (activated) for at least two weeks, yet the AEX is still sending out ARP requests for the last IP address that it had and my laptop still associates the AEX MAC with the last address assigned to the remote ATV.

Maybe you are looking for