Want to display the UDID

Hi,
This is my first post on Adobe DPS forum.
On one page I want to print the UDID of my iPad. But this should be a variable as whenever I open my folio on another iPad it should show the UDID of that iPad. All in all, whenever I open my folio it should display the UDID of the iPad on which I'm opening the folio. Is it possible?
Thanks in adavance and best regards.
With regards,
Anil Yadav

i don't think you have access to this 'sensitive kind of information'.
a Google search for "html UDID display" might get you the answer in seconds.
—johannes
(mobil gesendet)
Am 07.10.2011 06:11 schrieb "Anil Yadav" <[email protected]>:
   Re: want to display the UDID  created by Anil Yadav<http://forums.adobe.com/people/Anil+Yadav>in
Digital Publishing Suite - View the full discussion<http://forums.adobe.com/message/3959005#3959005>

Similar Messages

  • I'm using qurey panel with table.i want to display the rows as default

    Hi
    I'm using jdeveloper 11.1.1.2.0 with ADF 11g.
    I'm using qurey panel with table , for first time when i run ,rows are not displayed as default .After i fire search button records / rows are displaying.Now i want to display the rows in table when i run for first time , mean i want to display rows by default.
    thanks in advance.

    Hi,
    if the queryPanel is based on a ViewCriteria in ADF BC then this autoExecute can be defined on the VC definition
    Frank

  • I have a key figure in my master data table i want to display the key figur

    Hi All,
    I have a key figure in my master data table i want to display the keyfigure in my report how can i display it can somebody help me in this scenario 
    Regards
    Kiran Kumar

    Hi Kiran,
    Assume that Material master data table material has price as an attribute. To get this price as key fig in query, get material number in rows and in columns create new formula with replacement path to get material price as key figure.
    Note: Without taking material number into rows, we can't get the price into columns.
    Hope this helps u..
    Cheers......
    Sk babu

  • I want to display the narrative view as All Choices

    Hi Experts,
    If ‘All choices’ option is selected, I want to display the narrative view as All Choices.
    How do I achieve it?
    Waiting for your reply....
    Regards,
    Sathyan

    Hi Sathyan,
    Set a presentation variable for that prompt.
    and in request, go to the column formula,
    CASE WHEN '@{pv_var}' IS NULL THEN 'ALL CHOICES' ELSE col_name END
    Regards,
    Raghu

  • I want to display the number of Passed / failed tests in Testtand xml report , please help me

    Hi, I want to display the number of Passed / failed tests in Testtand xml report , please help me.
    My requirement is later i should be able to display these number of passed/failed test in report header too.
    Solved!
    Go to Solution.

    I have attached a sequence to give you an idea of how to get the Result count (I didn't check it's working ), I have used "SequenceFilePostResultListEntry" callback to calculate the Result Count,
    and the Result Count is passed to the "ModifyReportHeader" through File Globals,  where you can edit the XML file to show it in the Repot (follow the link in my previous post).
    Hope this helps
    AshwiN,
    Attachments:
    Get Result Count.seq ‏8 KB

  • I want to display the 3 different counts in one table

    Hi,
    I have three different counts , now I want to display the 3 counts in one table. Is it possible,
    For example :
    1. Select count(*) from table1 ;
    Ans : 10
    2. Select count(*) from table2;
    Ans : 20
    3. Select count(*) from table3;
    Ans : 30
    Now I want to display like this
    A 10
    B 20
    C 30
    Thanks

    Nihar,
    You can write a pl/sql block to achieve this
    CREATE TABLE new_table (table_name VARCHAR2 (30), COUNT     NUMBER);
    DECLARE
       CURSOR mcur
       IS
          SELECT   table_name
            FROM   user_tables
           WHERE   table_name IN ('A', 'B', 'C');
       v_sql   VARCHAR2 (100);
       v_count number;
    BEGIN
       FOR x IN mcur
       LOOP
          v_sql := 'select count(*) from ' || x.table_name;
          EXECUTE IMMEDIATE v_sql INTO   v_count;
          INSERT INTO new_table
            VALUES   (x.table_name, v_count);
       END LOOP;
       COMMIT;
    END;
    select * from new_table;Regards

  • I want to display the Employee details in table format without using iGrid

    Hi all,
    Can anybody help me that I want to display the Employee details return by transaction in table  format without using iGrid.

    Hi, view the link below.
    http://help.sap.com/saphelp_xmii115/helpdata/en/Advanced_Topics/Customizing_Output/Customizing_Output.htm
    Hope this help.
    Danilo Santos

  • I want to display the website which i have designed using jsp in telugu....

    Hi,
    I want to display the website which i have designed using jsp,mysql in telugu.I have searched a number of articles but couldn't get sufficient information.I read articles on internationalise jsp based websites but they were about converting in other languages rather than indic languages.
    Could anyone let me know the procedure to convert it into indic languages.What all are required.
    Thanks.

    (Please keep the subject line to a short descriptive sentence. Don't put your entire question there.)
    LabVIEW can communicate via serial port. If the microcontroller listens to serial data, there must be a certain command to light a LED connected to a certain port. All you need is to check the manual to find out what the serial data needs to be.
    LabVIEW Champion . Do more with less code and in less time .

  • Want to display the item in MDM2 but dont want the customer to order it

    Hi
    I want to display the item in the catalog but i want to block the material from being orderd. how do i do that?

    Hi,
    SRM-MDM Catalog has somthing like display mode. You can set it in UI customizing. If you want to block order for only some of items, please create custom filed like "display only=X" and check the value in the BADI BBP_CATALOG_TRANSFER.
    Regards,
    Masa

  • Want to display the contents of a text file in a jsp

    hi
    i am new to jsp, i want to display the contents of a text file in a jsp file ,whenever jsp file is loaded from browser.
    -thanx

    i had come up with the code
    <!-- form.jsp -->
    <%@ page import="java.io.*, java.lang.*" %>
    <%@ page language="java" %>
    <html>
    <head>
    <title>Display</title>
    </head>
    <body>
    <%
    String sample[100];
    String line;
    %>
    <%! int i=0; %>
    <%!File f1 = new File("c:\\file.txt"); %>
    <% try { %>
    <%!FileReader fi = new FileReader(f1); %>
    <% } catch(FileNotFoundException io) { } %>
    <%!BufferedReader in = new BufferedReader(fi); %>
    <%
    while((line=in.readLine())!= null)
    sample= line;
    i++;
    in.close();
    %>
    i will display sample here
    </body>
    </html>
    but i am getting error
    display_jsp.java:16: unreported exception java.io.FileNotFoundException;
    must be caught or declared to be thrown
    FileReader fi = new FileReader(f1);
    ^
    plz help
    -thanx

  • User wants to display the % symbol beside the value

    Hi all,
    I have a key figure ..which is added to formula(aggregation tab set as average of a characteristic).
    its displaying average correctly in the report output ,but user want it to be displayed % symbol beside that .
    how can i do that ..
    For other KPI ..i got the requirement as A-B/B and here i applied A-B %A B and its working fine.
    What if i need to put % symbol beside a value ??

    Hi Bilvanth ,
    You can follow the below steps to achieve the desired output :
    1) Create a formula in the query designer . Suppose your key figure is Y which you want to display with % symbol .
        Take this key figure in the formula . Then from the Percentage Functions choose (%A)Percentage Share. Then after this write 100 .
    So your formula would be : Y %A 100 .
    2) Hide your original key figure Y and display this formula in the report . It will come with the percentage symbol .
    Hope the above steps will help you to achieve the desired output .
    Thanks & regards,
    Ashutosh Singh

  • I want to display the message in jsp .

    I display the data retrieve from the database.if the data base have no record,i want to display a message to user.I write only one jsp.
    i used the JOptionPane,first time it takes more time to execute, after it execute normally,i am not satisfy for that.
    Please give me some suggestions, but i don't want to refresh the page.
    and is it possible to call the javascript function through jsp .

    Hi,
    Just declare a counter before fetching the resultset data and increment the counter by 1 whenever you get the data and if the counter returns 0 then display your alert message.
    For example:
    rs = stmt.executeQuery("........");
    int iCounter = 0; //initialize the counter
    while(rs.next())
    iCounter++; //increment the counter
    if(iCounter == 0)
    out.println("No records to display"); //Display your alert message
    Cheers,
    Rkanth

  • Scripts : want to display the text in one line

    Dear Friends,
    i want to dispaly the below text in one line,but its displaying in next line.
    ITEM   MATERIAL  DESCRIPTION ORDERQTY  UNIT PricePerUnit NETVALUE
    i am using the following code
    IL           <K>Item,,Material,,Description ,,  Order qty.  ,,Unit   ,,    Price per unit   ,, Net value </>
    Thanks & Regards
    Shaik

    Hello Hussain,
    Remove the TAB Spacing ',,'. Instead u give the Space.
    Reduce the length of fonts.
    These are the ways to display the text in a line.
    If useful reward points.
    Regards,
    Vasanth

  • When press Enter i want to display the input in Report calling Smartform

    Hello Masters,
    I am new in to abap and i want to know that how can we display data on the same screen when we enter the value and press enter , for example when i enter a employee code in input field and when i press enter before executing my report i want to see the name of the employee for which i have enter in the field before execution. i am developing a Report which is calling a smartform for print.
    tables sscrfields.
    parameters: p_pernr type pa0001-pernr obligatory.
    at selection-screen.
      if sscrfields-ucomm eq space.
        sscrfields-ucomm = 'p_pernr'.
      endif.
    I thought that this code could have worked for me but its no use , can any one please help me with my issue

    here is some code what i have used in my report program , i will still like to remind that its an Logical database program (PNP) for ABAP-HR , right now i tried the code mentioned above but not getting any result.
    TABLES: pernr,sscrfields,pa0001.
    *& Declaring Type-pools
    TYPE-POOLS : slis.
    *& Declaring Infotypes
    INFOTYPES: 0000,          " Action
                         0001.          " Org. Assignment
    *& Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK n1 WITH FRAME TITLE t1.
    PARAMETER : p_despat TYPE zhr_transfer-despt OBLIGATORY,              " Despatch Number
                r_pernr  TYPE pa0001-pernr OBLIGATORY,                                    " Reporting to
                re_pernr TYPE pa0001-pernr OBLIGATORY,                                   " Relieving Authority
                a_pernr  TYPE pa0001-pernr OBLIGATORY MODIF ID one.             " Authorize Person
    SELECTION-SCREEN END OF BLOCK n1.
    INITIALIZATION.
      t1 = 'Transfer Records'.
      LOOP AT SCREEN.
        IF screen-name = 'PNPPERNR-LOW'.                                  " Personnel Number (Mandatory)
          screen-required = 1.
            MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    AT SELECTION-SCREEN OUTPUT.
      IF a_pernr IS INITIAL.
        a_pernr = pa0001-ename.
      ENDIF.
    END-OF-SELECTION.

  • Want to display the result i n this format

    can any on eplease help me to solve this
    i have a double variable like this Price � $49.50
    in th eresult i want to display it as "49.50"
    but when i try to display if it just gives 49.5
    even if i use the DecimalFormat class

    Try this:
    import java.text.*;
    public class TestClazz {
        public static void main(String[] args) {
            String test = "49.50";
            NumberFormat nf = NumberFormat.getCurrencyInstance();
            System.out.println(nf.format(Double.parseDouble(test)));
    }

Maybe you are looking for

  • Issue in COPA Report Creation

    Dear All, I ave an issue in creation of COPA repor in KE30 We have created all P&L item as cost element except 1.Change in WIP for WIP calculation in Product Costing 2. Price Difference (OBYC- PRD) Variance will be calculated from settlement profile

  • Time Capsule not working after 10.5.3 update

    The following link shows screenshots of how Time Machine is behaving after the 10.5.3 update. http://badtastic.com/stuff/tmprobs.jpg Ever since the lates 10.5.3 update Time capsule / Time machine has been incapable of successfully completing a backup

  • How to customize F140_ACC_STAT_01 to change ides logo and footer.

    Hi Experts, I want to customize form F140_ACC_STAT_01 to change default logo (ides logo) and default footer coming on the standard account statement we generate using Tcode F.27. In this regard I have copied form F140_ACC_STAT_01 to ZF140_ACC_STAT01

  • Netgear DG834g-v3 ios 6.0.1 issue?

    Hi This is a bit puzzling A freind asked me for help with his iPads his & his wifes They both have 16gb wifi +3g with retina display they dont use the 3g they keep it switched off After the ios 6.0.1 update they got this mad problem. When they first

  • Load Balancing of Chat connections on CSS11503

    I need to load balance between two servers namely " A " and " B " on TCP port 8057 for example with the help of CSS 11150. Lets assume I have a single user by name " Z "that wants to access the servers. " Z " hits the VIP of the Load Balancer to init