UDF Reader

I just received a CD of photos and there is three files on the disc which I can't open:
.inf, .exe and .zl files.
Does anyone know if there is anything I can download to read this CD and view the photos?

Giallorosso,
Hope you will see my message. I am experiencing a problem identical to yours. It has something to do with the fact that the CD was created on a Windows machine probably using a Roxio CD creation/manipulation/burning program. I am trying to sort it out, but so far I think you need a program called UDFReader which I believe may be PC only!
Post back and let me know if you've made any progress with this problem yet.
Good luck!
Steve M.
P.S. Bob, before I ran into this problem I assumed as you did that an image file is an image file is an image file. I am trying to get some simple JPEGs, PDFs and TIFFs off of this silly CD that a guy at the printshop burned for me on their Windows PC. The problem is with some particular Roxio program they used to burn the CD, I think.

Similar Messages

  • Make UDF Read-only for all users

    Hi
    Can i use any script to make a UDF read-only for all users?
    i am looking at CPRF and CUFD Tables
    thanks

    Hi,
    You should never try updating system table directly.  That will against supporting policy by SAP.
    Thanks,
    Gordon

  • Where Is UDF Reader Download?

    Hi:
    I have a Mavica CD-1000. When I was in OS 9, I didn't have any problems with inserting the disc and being able to have it show up on my desktop. Now on Panther and OS 9.2.2. It won't open. I can't get the Camera to Computer to work either trying to use iPhoto. I called Sony and they said to download UDF Reader from Apple. Well, it's not here. I have been all over the web trying to find a download for this to stop the madness. I did find UDF Media Reader that crashes everytime I tried to load it. Can anyone help me out? This camera is too expensive to just throw in the towel and start over.
    Thanks
    G4 AGP Sawtooth   Mac OS X (10.3.9)  

    Verify the model of your ipod here http://support.apple.com/kb/HT1353 and then go here http://www.apple.com/ios/whats-new/ scroll to the bottom and verify your device is supported.

  • UDF read file  in  JAR Packet

    hi,all
    I want to use imported JAR packet, in UDF I  use the code :
    InputStream istr  =  getClass().getClassLoader().getResourceAsStream("property.txt");
    for read file "property.txt"  what is in JAR Packet,
    Is it correct way ?
    Best Regards
    Hengbing

    Hi Hengbing,
    That should work for you.  You might consider creating a simple java class so you donu2019t have to repeatedly load the properties.
    package examples;
    import java.io.InputStream;
    import java.util.Properties;
    import com.sap.aii.utilxi.misc.api.BaseRuntimeException;
    public class Example {
      private static final String FILE_NAME = "folder/file.properties";
      private static Properties props = null;
      public static String getProperty(String propName) {
        if (props == null) {
          initProps();
          return props.getProperty(propName) + " [load]";
        return props.getProperty(propName) + " [from memory]";
      private static synchronized void initProps() {
        if (props != null)  // previous thread already loaded it.
          return;
        InputStream is = null;
        try {
          is = Example.class.getClassLoader().getResourceAsStream(FILE_NAME);
          if (is != null) {
            props = new Properties();
            props.load(is);
          } else {
            throw new BaseRuntimeException("Failed to load properties file " + FILE_NAME + " - Input stream is null.");
        } catch (Exception ex) {
          throw new BaseRuntimeException("Failed to load properties file " + FILE_NAME + " - Exception: " + ex.getMessage(), ex);
        } finally {
          if (is != null) try { is.close(); } catch (Exception e) {}
    The code in your UDF would look like this:
    String prop =  examples.Example.getProperty("myPropName");
    -Russ

  • UDF reader unable to open a cd even after i installed UDF upgrade.

    Original cd was burned in old operating system.

    Hi Geri S,
    We wonder if this issue only happened to only one specific UDF CD.
    And please try this CD on another Windows 7 machine check the issue again.
    If this CD is burned on older version system such as Windows XP, it might be made as older UDF version (2.0).
    By default UDF version 2.5/2.6 are supported by Windows 7 and older version should be also supported, but compatibility issue with older UDF version appears occasionally.
    We suggest you install the latest SATA/AHCI driver and it might fix that issue.
    Regards
    D. WU

  • Error while linking udf to user table.

    Hi All,
    If i am gong to joined my UDF to user table by using option then alphanumeric size of that udf changes to 8 from 15. In such condition when i m going to update ths udf thn it is giving error as "Alphanumeric column size cannot be decreased".
    Reply ASAP

    Hi swapy
    put the udf size as 8 before the computer does the work.then try to attach the udf.

  • UJDA750 won't read dvd-r

    Subject says it all, brand new Tecra M4 and the built-in Mat****a UJDA750 DVD/CDRW combo will not read DVD-R, in fact until I uninstalled the DLA & NTI software it got rather stroppy about reading a CDRW!
    Whats the point of a new DVD drive that can't read common DVD-R!
    I would like to point out that the media reads fine in 5 different drives other than the one that burnt the dvd-r originally. I've tried 1x, 4x & 8x media with the same disappointing results.

    Hi
    I dont know why it not possible but did you check any other CDs for writing?
    If this problem occurs with any type on media so its better to contact a Toshiba Service Partner and ask for a check the drive.
    In order to read CD-RW discs, a UDF reader software is required. CD-RW discs are written in UDF 1.5 format. This UDF reader software can be downloaded from Adaptec"s web site: www.adaptec.com
    This software can read any CD-RW discs written with any CD re-writable drives that are written in standard UDF format.Without UDF reader software, the CD-ROM/DVD-ROMs in Toshibas notebook computers can only read ISO 9660 discs.
    Bye

  • Little UDF problem concerning substring

    Hi, i need to do the following in UDF:
    read a string ("00002000"), delete the first upcoming "0" and give it back
    (the advance action should be, that the last three "0" should be taken and add a "." before it. Result will be "2.000")
    the simple requirement i tried with this code:
              int position = 0;
              String target = "0";
              String newString;
              for (int i = 0; i < LFIMG.length(); i++) {
                   int temp = LFIMG.charAt(i);
                   if (LFIMG.valueOf(i) != target) {
                        position = i;
                        break;
              newString = LFIMG.substring(position);
    but something is wrong here!
    can u help? br

    Hi Carsten,
    can you please check your code once again... may be u r missing some wild characters.
    Your code : a[0].replaceAll("0","");
    Actual  code : <b>args[0].replaceAll("^0*","");</b>
    if * is not working try putting + in place of that.
    or use this code
    public String remLeadZeros(String a,Container container){
    String b = a.replaceFirst("^0+", "");
    return b;
    I have one more solution.. you just put a dot in your desired position and then use xslt to remove leading zero. but the above code shud work.
    For example :
    Use it ike this
    <xsl:variable name="a">
    <xsl:call-template name="removeLeadingZeros">
    <xsl:with-param name="phone">
    <xsl:value-of select="EVENT/ContactPhone"/>
    </xsl:with-param>
    </xsl:call-template>
    </xsl:variable>
    <xsl:template name="removeLeadingZeros">
    <xsl:param name="phone"/>
    <xsl:message>
    <xsl:value-of select="$phone"/>
    </xsl:message>
    <xsl:choose>
    <xsl:when test="starts-with($phone,'0')">
    <xsl:call-template name="removeLeadingZeros">
    <xsl:with-param name="phone">
    <xsl:value-of
    select="substring-after($phone,'0' )"/>
    </xsl:with-param>
    </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>
    <xsl:value-of select="$phone"/>
    </xsl:otherwise>
    </xsl:choose>
    </xsl:template>
    Hope this will help you
    Regards
    Aashish Sinha
    PS : reward points if helpful

  • Change The Sequence of UDF

    Hi ALL,
                   Merry Christmas
                   I have  30 UDF for a particulat form(i.e ITEM MASTER DATA)  they are not comes in sequence ,now i have to change it's sequence is it possible? how?
    Thanks in Advance

    You  can do that, Sandeep. Open up the screen with the UDFs and then click Tools > User-Defined Fields and them select Settings. Or just press Ctrl + **** + B.
    In the Settings - User-Defined Fields screen, you set decide which field is Visible or Active. You can order them by entering a nunber in the Order column. You also can put them into different Category.
    Unfortunately, I don't know a way to drag and drop to arrange the sequence of the UDFs.

  • OIM11gR2-Customizing the editing of UDFs

    Hi,
    In OIM 11gR2, is it possible to restrict the editing of UDF fields.
    If i want to configure in such a way that, as a end user , i should not be able to modify any UDF fields, all the fields should be just read only for end user.
    If i try to customize a page and make a UDF read only, then even the administrator can't modify the field.
    Is there any way that i can restrict only for end users , can anyone guide or suggest ???
    Regards

    yes try to put EL expression on readOnly property
    put below
    readOnly= #{oimcontext.currentUser.roles['SYSTEM ADMINISTRATORS']!=null}
    It should be working fine
    if you find any issue to set EL expression using UI for readOnly property try below steps
    don't set EL expression using UI but try with sandbox import/export
    do all the steps except providing value for EL expression
    now export sandbox.
    Extract the ZIP file and edit the jsff.xml file for the specific screen.
    set the EL expression at appropriate place in the file
    import sanbox and activate it
    lets see if this works for you

  • UDF SUPRESS

    Hello ,
    if i create a UDF an one input string is null (not in the xml instance)
    will the function be processed??
    Field1---->
                    UDF Do SOmething -

    Field2--->
    result should be field1 or field2 or field1 + filed2
    but i get an SUPRESS if one field do not exist!!
    Is this OK??
    Is there a workaround?? Function Exist can handle this but i do not know the source
    regards
    ralf

    <i>if i create a UDF an one input string is null (not in the xml instance)
    will the function be processed??</i>
    >>>
    handle this in your mapping. Maybe you can use a exist or mapwithdefault on the field and then go ahead with the UDF.

  • Updated Filename in File Receiver

    I need to append today's date to the file name when outputting a file. The date isn't available in the outbound XML so I can't use variable substitution. Does anyone have any suggestions?

    Hi,
      I don't have access to a date or time in the outbound XML file so I can't use variable substitution. I can't add additional fields to the outbound message as the partner would reject them.
         To Map the Date function you no need any field in the source structure.The Date function is the standard function.and it wont take any input from sourece.it simply returns the current date in the specifies format.
    I see that I need to create a mapping to the root node, using my date and including a userdefined function to put this value somewhere I can get it later
    generally u specify your file name in Receiver communincation channel.So the same file name you have to concate with the Date (by usind predefined function Concat) and give the new string that means(ex:Filename = XYZ and Date :20080914 then new concated string whould be "XYZ20080914")
                you have to create one new UDF and copy the code that have specified and give the new String (for ex:XYZ20080914) as input.map it to root node.
              In ID you have to enable Adapter specific message attributes and also Filename in that.(Give * or any string in the place of File name) Because of this in the receiver file adapter it wont take the static filename which we have specified in the fiels FileName,instead it will take the File name which we have specified in Mapping UDF.

  • MAPPING: Increment counter while creating destination structures

    Hello,
    i have the following source and destination structure:
    <src_struct> (0-n)
        <qualifier>
        <value>
    </src_struct>
    <dest_struct> (0-n)
        <counter>
        <qualifier>
        <value>
    </src_struct>
    only those dest structures have to be created where <qualifier="XX">.
    Thus my mapping on structure level looks like:
    if <qualifier>  equalS "XX" createIf --> <dest_struct>
    This works fine.
    But additionally i need to increment <counter> in the dest_struct. I.e., when i have 10 src_struct where 5 of them has <qualifier="XX"> i need 5 dest_struct with counter 1 to 5.
    I tried this with a UDF which has just a constant as input:
    "MY_COUNTER"  --> UDF:getNextCounter --> <counter>
    This argument is the name under which the last counter was saved in the global container. My expectation was that for each time the field <counter> will be created, my UDF reads the las counter, increments it, saves it back to the container and returns the result.
    but the bahavior is different:
    For example:
    if src_structures 6-10 have <qualifier>="XX" my UFD returns 6-10 in sequnce instead
    of 1-5. The shows me, that my UDF runs 10 times even though just 5 dest_struct are created.
    What do i wrong?
    Her my UDF:
    GlobalContainer gc  = container.getGlobalContainer();
    String counter = new String();
    counter  = (String)  gc.getParameter(MY_COUNTER);
    if(counter==null) {
         counter = "1";
         gc.setParameter(MY_COUNTER,counter);
         return(counter);
    Integer i_counter = new Integer(counter);
    int i = i_counter.intValue() + 1;
    Integer I = new Integer(i);
    counter = I.toString();
    gc.setParameter(ID_TYPE,counter);
    return(counter);

    Hi,
    Why dont you take qualifier as another argument (say b) for the same UDF.
    so that you can check the value of the qualifier and run the logic as you needed.
    as below,
    if (b.equals("XX"))
    GlobalContainer gc = container.getGlobalContainer();
    String counter = new String();
    counter = (String) gc.getParameter(MY_COUNTER);
    if(counter==null) {
    counter = "1";
    gc.setParameter(MY_COUNTER,counter);
    return(counter);
    Integer i_counter = new Integer(counter);
    int i = i_counter.intValue() + 1;
    Integer I = new Integer(i);
    counter = I.toString();
    gc.setParameter(ID_TYPE,counter);
    return(counter);
    Let me know if its not working.
    Hope this helps.
    Prasad Babu.

  • Add error description from sxmb_moni in alerts in 7.1

    Hi Gurus,
    My requirement is to add short description from sxmb_moni i.e. from ABAP stack in alert.
    I already have check many blogs and marketplace but could not find this.
    As per the link Creating Alert Categories - Process Integration Monitoring - SAP Library we can extract this info from adapter engine using SXMS_TO_ADAPTER_ERRTXT but how to achieve this for I.E.
    Please let me know if this is possible in any other way around.
    Hope my requirement is clear, i just want the description from moni for the failed message in my alerts.
    Thanks and Regards
    Jitender Gusain

    Hi Jitender
    We can use following container variables to populate the text inside the alert message
    These are more than enough for debugging the message in MONI.
    However if you want to add the payload information in the alert message, then u need to use the function module SALERT_CREATE
    You can call this function module inside message mapping using RFC look up or via UDF.

  • How to use the Dynamic Configuration Bean

    Hi experts,
    im currently doing a file to mail scenario.
    i want the name of the input file as the subject of the mail.
    i want to establish this using the Dynamic Configuration bean
    my first question is:
    key.1 <b>read</b> http://sap.com/xi/XI/System/Mail THeaderSUBJECT
    value.1 message.messageID
    this reads the value of the message ID into the attribute THeaderSUBJECT
    but what does this do?
    key.1 <b>write</b> http://sap.com/xi/XI/System/Mail THeaderSUBJECT
    value.1 message.messageID
    when i use this it has no effect atall.
    my second question.
    I have my input filename in the FileName attribute in Dynamic configuration how can i read it into THeaderSUBJECT attribute.
    Appreciate any suggestions.

    Hi Satish,
    Yep i know its possible via an udf in Message mapping but i dont have an MM in my scenario. Since im not parsing thru the input data since its an excel file, so im transferring the file using the following method
    /people/william.li/blog/2006/09/08/how-to-send-any-data-even-binary-through-xi-without-using-the-integration-repository
    and in this method if i include an MM it will give me a mapping exception.
    So i have to use this bean somehow and try to accomplish what we do in the udf.

Maybe you are looking for

  • Bank Statement using FIFO method

    Hi all, Thanks in advance for your possible help. I am facing the following issue. All debit and credit entries on a customers account have to be cleared automatically on the bank statement according to FIFO procedure, that is credit entries on a cus

  • How can I bypass the password on my iPad ios 7.0.3

    Can someone please tell me how to bypass the password on my iPad.  I don't need it and it's really annoying to have to enter it every single time.  Thanks.

  • Calling an ABAP Report from the Web

    Hello all, Is there a way in WAD to have a web link call an ABAP report?  I am trying to provide a link in my web template to allow users to launch the BEx Analyzer.  When I look at transaction RRMX in the GUI, it appears to be calling the ABAP repor

  • Problems with Premiere Elements 9.0.1 on Mac OS X Lion

    Hi, I recently upgraded to Mac OS X Lion and I am having several stability issues with Premiere Elements 9.0.1 now.  None of these issues occurred on Snow Leopard.  I experienced these issues on a machine that was upgraded from Snow Leopard to Lion a

  • How to check the PR release Strategy change date?

    hi, how to check when the PR Release Strategy chagned by someone ...? Regs, S J Solanki