Image with UDF

Hi All,
I'm define an UDF with type of image.
This field was in document lines.
To load the choice of the picture, i'm using the <ctrl> + double-click.
I'm select my picture in the window and i click on Open.
My fields are empty after the selection or it contains 'N' or 'Y'.
I don't understand where this values come from ??
When i create a new document and i'm double-click to this field,i hava the following error :
Picture 'N' was not found. (why the 'N' value is there ??)
So how can i get the file name i'm select to put in my UDF ??
Thanks.
Best regards.
Michael
Edited by: Michael LECLERCQ on Mar 14, 2008 10:18 AM

In my code I have it as
Column of matrix as
oColumn = oColumns.Add("path", SAPbouiCOM.BoFormItemTypes.it_EDIT)
The column is binded as
oColumn = oColumns.Item("path")
oColumn.DataBind.SetBound(True, "@ATTACH", "U_PATH")
and then I have button for opening the dialog and inside the action of button click Im calling
  oItem = oOrderForm.Items.Item("a")
                    omatrix1 = oItem.Specific
                    omatrix1.AddRow(1, 0)
                    Dim cell As SAPbouiCOM.Cell
                    Dim col As SAPbouiCOM.Column
                    Dim ed As SAPbouiCOM.EditText
                    col = omatrix1.Columns.Item("path")
                    cell = col.Cells.Item(1)
                    ed = cell.Specific
omatrix1.Columns.Item("path").Cells.Item(1).Click(SAPbouiCOM.BoCellClickType.ct_Double)
                    col = omatrix1.Columns.Item("id")
                    cell = col.Cells.Item(1)
                    ed = cell.Specific
                    ed.String = ""
so I emulate only dbl click without ctrl

Similar Messages

  • HOWTO and script: create and burn an UDF image with 4+GB files

    Most people think, creating UDF images with files bigger than 4GB or even 1GB is impossible, however it's not true! You just need udftools. Also you need to load loop and udf modules. There's a good howto by grigio, I also created an (admitably pretty poor) script to do it automatically, since grigio's howto doesn't include real dvd sizes:
    UDFPATH=$HOME
    echo -e "By default the udf image will be placed into your home directory. \n Do you want to enter an alternative one? (Enter y or n)"
    read yesorno
    if [ $yesorno == y ]; then
    echo "Please enter the directory you want to use: "
    read UDFPATH
    if [ -d $UDFPATH ]; then
    echo "Using $UDFPATH"
    else
    echo "Creating $UDFPATH" && mkdir -v $UDFPATH
    fi
    fi
    if [ $yesorno == n ]; then
    echo "Using default directory"
    fi
    if [ $yesorno != y -a $yesorno != n ]; then
    echo "Incorrect entry, aborting..." && exit 0
    fi
    if [ -e $UDFPATH/udf.iso ]; then
    mv $UDFPATH/udf.iso $UDFPATH/udf.iso.bak-`date +%y.%m.%d-%H.%M` && echo "udf.iso already exists! Backing up..."
    fi
    echo -e "Please enter your type of disk: dvd5p, dvd5m, dvd9p or dvd9m:\n(5/9 stand for normal/double layer disk and p/m for +/-)"
    read type
    if [ $type == dvd5p ]; then
    echo "Creating a 4,7 GB DVD+R image..."
    dd if=/dev/zero of=$UDFPATH/udf.iso bs=1024 count=4590208
    fi
    if [ $type == dvd5m ]; then
    echo "Creating a 4,7 GB DVD-R image..."
    dd if=/dev/zero of=$UDFPATH/udf.iso bs=1024 count=4596992
    fi
    if [ $type == dvd9p ]; then
    echo "Creating a 8,5 GB DVD+R image..."
    dd if=/dev/zero of=$UDFPATH/udf.iso bs=1024 count=8347648
    fi
    if [ $type == dvd9m ]; then
    echo "Creating a 8,5 GB DVD-R image..."
    dd if=/dev/zero of=$UDFPATH/udf.iso bs=1024 count=8343424
    fi
    if [ $type != dvd5p -a $type != dvd5m -a $type != dvd9p -a $type != dvd9m -a $type != cheat ]; then
    echo "Wrong type entered, aborting..." && exit 0
    fi
    mkudffs $UDFPATH/udf.iso
    echo -e "UDF image created in $UDFPATH/udf.iso. Want to mount it right now? (Make sure udf and loop modules are loaded)"
    read yesorno
    if [ $yesorno == y ]; then
    echo "Please enter the directory you want to use for mounting: "
    read MOUNTPATH
    if [ $UDFPATH = $MOUNTPATH ]; then
    echo "You can't mount the image to the directory it exists in!" && exit 0
    echo -e " Mount it yourself with 'sudo mount -o loop,user,uid=`id -u` -t udf $UDFPATH/udf.iso targetdir\'"
    echo " Afterwards copy your files, unmount the image and burn the dvd."
    echo -e " For burning you may just use 'cdrecord -eject -dao -dev=/dev/sr0 $UDFPATH/udf.iso'\n (the path to your DVD burner may vary!)"
    fi
    if [ -d $MOUNTPATH ]; then
    echo "Using $MOUNTPATH"
    USERID=`id -u`
    sudo mount -o loop,user,uid=$USERID -t udf $UDFPATH/udf.iso $MOUNTPATH
    echo "Copy your files, umount the image and burn the dvd."
    echo -e "For burning you may just use 'cdrecord -eject -dao -dev=/dev/sr0 $UDFPATH/udf.iso'\n(the path to your DVD burner may also vary)";
    else
    echo "Creating $MOUNTPATH..." && mkdir -v $MOUNTPATH
    USERID=`id -u`
    sudo mount -o loop,user,uid=$USERID -t udf $UDFPATH/udf.iso $MOUNTPATH
    echo "Copy your files, umount the image and burn the dvd."
    echo -e "For burning you may just use 'cdrecord -eject -dao -dev=/dev/sr0 $UDFPATH/udf.iso'\n(the path to your DVD burner may also vary)";
    fi
    fi
    if [ $yesorno == n ]; then
    echo -e "All right, then mount it yourself with 'sudo mount -o loop,user,uid=`id -u` -t udf $UDFPATH/udf.iso targetdir'\nAfterwards copy your files, unmount the image and burn the dvd."
    echo -e "For burning you may just use 'cdrecord -eject -dao -dev=/dev/sr0 $UDFPATH/udf.iso'\n(the path to your DVD burner may also vary)"
    fi
    if [ $yesorno != y -a $yesorno != n ]; then
    echo "Incorrect entry, aborting..."
    echo -e " Mount it yourself with 'sudo mount -o loop,user,uid=`id -u` -t udf $UDFPATH/udf.iso targetdir\'"
    echo " Afterwards copy your files, unmount the image and burn the dvd."
    echo -e " For burning you may just use 'cdrecord -eject -dao -dev=/dev/sr0 $UDFPATH/udf.iso'\n (the path to your DVD burner may vary!)"
    exit 0
    fi
    EDIT: Some major mistakes solved.
    Last edited by ku (2009-04-23 19:02:41)

    See the second article for how to look through a list of files in a folder.
    http://stackoverflow.com/questions/7854727/loop-over-video-files-in-folder-to-ge t-video-length

  • I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image,

    I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image, the guidelines are not locked, it is annoying to have to lock them down again. and it would actually be nice, to ba able to give specific directions when placing the guidelines. Thanks

    Then why are the guides unlocked when I reopen a document that I saved with the guides locked ?
    Thanks.

  • Bridge CS4 won't output to pdf multiple images with same filename

    Hiya...my googling efforts have thus far failed!
    I've got CS4, and in Bridge, I created a New Smart Collection to find all filenames in a folder containing "." or ".jpg" - which in turn searched through all the subfolders like what you used to be able to do in Photoshop CS3.  Very simple stuff, but all the images are jpg's, but in multiple folders (I don't want to move them out of the folders, as the files came from an external source, and there are heaps of folders, and I don't want to pdf each subfolder seperately as it will take forever).
    The problem is that some of the files have the same filenames (again I'd prefer not to rename, as it happens a lot on this project, and they are all over the place).  So whilst Bridge will show the thumbnail images correctly in the content tabbed screen in my New Smart Collection, but once I've done the Output to PDF thing, for example, instead of showing both different images it has pdf only the first image but repeated it twice.  And this happens multiple times throughout the pdf, the more times the same filename is used, the more times the first image gets repeated.
    I know that it is messy to have multiple similar filenames, but why can't bridge just place the image anyway?  It allocated a space for it on the pdf and does show it in bridge, it just doesn't seem to survive the transfer to pdf well.
    The only other thing that I have done is use the below link (which was posted on another adobe forum thread) to create a custom pdf output template (nothing too fancy, just number of rows / columns, size, font etc).  But I've tried using the standard bridge templates and it does the same thing.
    http://www.proficiografik.com/2009/08/03/save-custom-pdf-output-template-in-adobe-bridge-c s4.html
    Any help would be appreciated...even if to tell me that I am being unreasonable!
    UPDATE 16/11/09
    Just to let you know that I seem to have resolved the bug inadvertently with one of the Adobe updates. The below is the link for the AdobeOutputModule-2.1-mul-AdobeUpdate.zip which was released on 2/19/2009 - which allows for headers & footers to be placed in the Ouput pdf. I finally installed it today, and everything seems to be working fine now (i.e. I can pdf multiple images with the same filenames and the pdf will actually show each different image rather than repeating only 1 of the images).
    Must have been a fix installed in the contact sheet templates that get installed with the update - not sure why the original version was corrupted, but I've left that with the Adobe guys (I submitted a bug report - and they were able to replicate the problem but hadn't fixed it as yet).
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4228
    Message was edited by: djtun71 (16/11/09)

    When I click import from disc I am asked to choose a disc and then I get this message:
    The following photos will not be imported because they are already present in the catalog. To see these photos in the catalog select 'Show in Library' (the import will be canceled).
    This is followed by a long list of images. If I click 'Show in Library' I can see all the images with the same filename. And then they start to automatically write over those images with images from the disc. However they keep the same metadata and keywords from the previous images. If I click on Import and deselect the "don't reimport suspected duplicates" box, it imports only the images that don't share filenames and none of the images that do.
    Is there a way of setting the "Don't reimport suspected duplicates" box in preferences?

  • Image with text

    I have created an image with text (map with town names). The
    text is 12px Verdana bold. When I export to a gif (only a few
    colors) and show on a page I want to get the text to show clear
    when the page is resized. But it does not it becomes more obscure
    as it gets smaller. I have the image which I have styled
    {width:100%;height:100%;} to stop the image expanding the td it's
    in.
    Can anyone advise how best to achieve good font clarity in
    images that may be resized?
    thanks.

    ROGM wrote:
    > Can anyone advise how best to achieve good font clarity
    in images that may be
    > resized?
    Use Flash format, which is scalable. GIF's are not scalable.
    Linda Rathgeber [PVII] *Adobe Community Expert-Fireworks*
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    http://www.adobe.com/communities/experts/

  • How can i Display images with may own table

    Hi
    I want display images with my own table. How can I use in this query.
    SELECT    '<a href="#" onclick="javascript:'
           || 'getImageHeight(''my_img'
           || '#ROWNUM#'');javascript:redirect'
           || '(''f?p=&APP_ID.:212'
           || ':&SESSION.:DISPLAY:NO::P212_IMAGE_ID:'
           || ID
           || ''');">'
           || '<img src="#IMAGE_PREFIX#edit.gif" '
           || 'alt="Edit"></a>' ID,
              '<img id="my_img'
           || '#ROWNUM#" src="#WORKSPACE_IMAGES#'
           || filename
           || '"/>' image
      FROM wwv_flow_filesThanks
    Nr
    Edited by: user10966033 on Sep 28, 2009 1:41 PM

    You don't use #workspace_images# since that is for STATIC files, not images in a table..
    see this thread for help: Re: Display image from blob
    Thank you,
    Tony Miller
    Webster, TX

  • NoClassDefFoundErrr in PI 7.31 PROD-System with UDF

    Hi Gurus,
    I'm facing a weird problem:
    This is my environment: PI 7.31;
    Landscape: Dev --> QA --> PROD
    All UDFs are save in the central SWCV: CentralLibrary.
    All mappings with UDFs in PROD do not work, but in DEV and QA are OK.
    The Error Log in Mapping is here:
    javax.ejb.EJBException: nested exception is: java.lang.RuntimeException: java.lang.NoClassDefFoundError: de/xyzcustomer/CentralLibrary/CL_StringConvert
    at java.lang.ClassLoader.loadClass(ClassLoader.java:308) ... 52 more Caused by: com.sap.aii.ib.core.mapping.execution.ResourceNotFoundException: Unable to find resource de/ xyzcustomer/CentralLibrary/CL_StringConvert in the following software component versions: 26dd6550-707e-11e2-a09d-deb10ad76533, f0c662d0-6f7b-11e2-b498-deb10ad76533 at com.sap.aii.ib.server.mapping.execution.MappingFinderImpl.readClass(MappingFinderImpl.java:81) at com.sap.aii.ibrep.server.mapping.rt.ArchiveClassLoader.findClass(ArchiveClassLoader.java:92)
    I’ve tried the following approaches:
    Reimport central Library and Message-Mapping from DEV into PROD
    Full mapping runtime cache refresh in Administration – Mapping Runtime
    Create a local library in the Mapping namespace. It works well in DEV and QA, but in PROD still gets same error.
    Could anyone help me?!
    Thanks a lot and regards
    Christine

    Hi Jannus,
    i tested this scenario once more and monitored it with xpi_inspector.
    In the runtime there is no mapping error.
    But in Enterprise Services Builder, I test the mapping in test module, i get this NoClassDelFounderror.
    The whole error-log is as below:
    javax.ejb.EJBException: nested exception is: java.lang.RuntimeException:
    java.lang.NoClassDefFoundError: de/xyzcustomer/CentralLibrary/CL_StringConvert
    java.lang.RuntimeException: java.lang.NoClassDefFoundError:
    de/xyzcustomer/CentralLibrary/CL_StringConvert at
    com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal
    (RequestInvocationContext.java:99) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:166) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke
    (Interceptors_StatesTransition.java:19) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke
    (Interceptors_Resource.java:50) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.doWorkWithAttribute
    (Interceptors_Transaction.java:37) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.invoke
    (Interceptors_Transaction.java:21) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_MethodRetry.invoke
    (Interceptors_MethodRetry.java:46) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:191) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke
    (Interceptors_StatelessInstanceGetter.java:23) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke
    (Interceptors_SecurityCheck.java:25) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke
    (Interceptors_ExceptionTracer.java:17) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain
    (DefaultInvocationChainsManager.java:138) at
    com.sap.engine.services.ejb3.runtime.impl.DefaultEJBProxyInvocationHandler.invoke
    (DefaultEJBProxyInvocationHandler.java:164) at $Proxy787.execute(Unknown Source) at
    sun.reflect.GeneratedMethodAccessor1723.invoke(Unknown Source) at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at
    java.lang.reflect.Method.invoke(Method.java:597) at
    com.sap.engine.services.rmi_p4.P4DynamicSkeleton.dispatch(P4DynamicSkeleton.java:240) at
    com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:466) at
    com.sap.engine.services.rmi_p4.server.ServerDispatchImpl.run(ServerDispatchImpl.java:69) at
    com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:72) at
    com.sap.engine.services.rmi_p4.P4Message.execute(P4Message.java:43) at
    com.sap.engine.services.cross.fca.FCAConnectorImpl.executeRequest
    (FCAConnectorImpl.java:999) at com.sap.engine.services.rmi_p4.P4Message.process
    (P4Message.java:59) at com.sap.engine.services.cross.fca.MessageReader.run
    (MessageReader.java:55) at com.sap.engine.core.thread.execution.Executable.run
    (Executable.java:122) at com.sap.engine.core.thread.execution.Executable.run
    (Executable.java:101) at com.sap.engine.core.thread.execution.CentralExecutor
    $SingleThread.run(CentralExecutor.java:328) Caused by: java.lang.NoClassDefFoundError:
    de/xyzcustomer/CentralLibrary/CL_StringConvert at
    com.sap.xi.tf._MM_MT_RequirementPhotoCopy_to_MT_InvoicePhotoCopy_$MT$InnerLibsList.<init>
    (_MM_MT_RequirementPhotoCopy_to_MT_InvoicePhotoCopy_.java:88) at
    com.sap.xi.tf._MM_MT_RequirementPhotoCopy_to_MT_InvoicePhotoCopy_$MT$InnerLibsList.<init>
    (_MM_MT_RequirementPhotoCopy_to_MT_InvoicePhotoCopy_.java:87) at
    com.sap.xi.tf._MM_MT_RequirementPhotoCopy_to_MT_InvoicePhotoCopy_.<init>
    (_MM_MT_RequirementPhotoCopy_to_MT_InvoicePhotoCopy_.java:19) at
    sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
    sun.reflect.NativeConstructorAccessorImpl.newInstance
    (NativeConstructorAccessorImpl.java:39) at
    sun.reflect.DelegatingConstructorAccessorImpl.newInstance
    (DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance
    (Constructor.java:513) at java.lang.Class.newInstance0(Class.java:355) at
    java.lang.Class.newInstance(Class.java:308) at
    com.sap.aii.ibrep.server.mapping.exec.ExecuteXiMappingCommand.transformInternal
    (ExecuteXiMappingCommand.java:180) at
    com.sap.aii.ibrep.server.mapping.exec.ExecuteXiMappingCommand.execute
    (ExecuteXiMappingCommand.java:95) at
    com.sap.aii.ib.server.mapping.exec.CommandManager.execute(CommandManager.java:43) at
    com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:40) at
    com.sap.aii.ibrep.server.mapping.MapServiceBean.execute(MapServiceBean.java:40) at
    sun.reflect.GeneratedMethodAccessor1724.invoke(Unknown Source) at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at
    java.lang.reflect.Method.invoke(Method.java:597) at
    com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal
    (RequestInvocationContext.java:47) ... 34 more Caused by: java.lang.ClassNotFoundException:
    Class de.xyzcustomer.CentralLibrary.CL_StringConvert not found at
    com.sap.aii.ibrep.server.mapping.rt.ArchiveClassLoader.findClass
    (ArchiveClassLoader.java:110) at java.lang.ClassLoader.loadClass(ClassLoader.java:367) at
    java.lang.ClassLoader.loadClass(ClassLoader.java:308) ... 52 more Caused by:
    com.sap.aii.ib.core.mapping.execution.ResourceNotFoundException: Unable to find resource
    de/xyzcustomer/CentralLibrary/CL_StringConvert.class in the following software component
    versions: 26dd6550-707e-11e2-a09d-deb10ad76533, f0c662d0-6f7b-11e2-b498-deb10ad76533 at
    com.sap.aii.ib.server.mapping.execution.MappingFinderImpl.readClass
    (MappingFinderImpl.java:81) at
    com.sap.aii.ibrep.server.mapping.rt.ArchiveClassLoader.findClass
    (ArchiveClassLoader.java:92) ... 54 more javax.ejb.EJBException: nested exception is:
    java.lang.RuntimeException: java.lang.NoClassDefFoundError:
    de/xyzcustomer/CentralLibrary/CL_StringConvert at
    com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal
    (RequestInvocationContext.java:99) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:166) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke
    (Interceptors_StatesTransition.java:19) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke
    (Interceptors_Resource.java:50) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.doWorkWithAttribute
    (Interceptors_Transaction.java:37) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.invoke
    (Interceptors_Transaction.java:21) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_MethodRetry.invoke
    (Interceptors_MethodRetry.java:46) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:191) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke
    (Interceptors_StatelessInstanceGetter.java:23) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke
    (Interceptors_SecurityCheck.java:25) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke
    (Interceptors_ExceptionTracer.java:17) at
    com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed
    (AbstractInvocationContext.java:179) at
    com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain
    (DefaultInvocationChainsManager.java:138) at
    com.sap.engine.services.ejb3.runtime.impl.DefaultEJBProxyInvocationHandler.invoke
    (DefaultEJBProxyInvocationHandler.java:164) at $Proxy787.execute(Unknown Source) at
    sun.reflect.GeneratedMethodAccessor1723.invoke(Unknown Source) at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at
    java.lang.reflect.Method.invoke(Method.java:597) at
    com.sap.engine.services.rmi_p4.P4DynamicSkeleton.dispatch(P4DynamicSkeleton.java:240) at
    com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:466) at
    com.sap.engine.services.rmi_p4.server.ServerDispatchImpl.run(ServerDispatchImpl.java:69) at
    com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:72) at
    com.sap.engine.services.rmi_p4.P4Message.execute(P4Message.java:43) at
    com.sap.engine.services.cross.fca.FCAConnectorImpl.executeRequest
    (FCAConnectorImpl.java:999) at com.sap.engine.services.rmi_p4.P4Message.process
    (P4Message.java:59) at com.sap.engine.services.cross.fca.MessageReader.run
    (MessageReader.java:55) at com.sap.engine.core.thread.execution.Executable.run
    (Executable.java:122) at com.sap.engine.core.thread.execution.Executable.run
    (Executable.java:101) at com.sap.engine.core.thread.execution.CentralExecutor
    $SingleThread.run(CentralExecutor.java:328) Caused by: java.lang.RuntimeException:
    java.lang.NoClassDefFoundError: de/xyzcustomer/CentralLibrary/CL_StringConvert ... 35 more
    Caused by: java.lang.NoClassDefFoundError: de/xyzcustomer/CentralLibrary/CL_StringConvert
    at com.sap.xi.tf._MM_MT_RequirementPhotoCopy_to_MT_InvoicePhotoCopy_$MT
    $InnerLibsList.<init>(_MM_MT_RequirementPhotoCopy_to_MT_InvoicePhotoCopy_.java:88) at
    com.sap.xi.tf._MM_MT_RequirementPhotoCopy_to_MT_InvoicePhotoCopy_$MT$InnerLibsList.<init>
    (_MM_MT_RequirementPhotoCopy_to_MT_InvoicePhotoCopy_.java:87) at
    com.sap.xi.tf._MM_MT_RequirementPhotoCopy_to_MT_InvoicePhotoCopy_.<init>
    (_MM_MT_RequirementPhotoCopy_to_MT_InvoicePhotoCopy_.java:19) at
    sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at
    sun.reflect.NativeConstructorAccessorImpl.newInstance
    (NativeConstructorAccessorImpl.java:39) at
    sun.reflect.DelegatingConstructorAccessorImpl.newInstance
    (DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance
    (Constructor.java:513) at java.lang.Class.newInstance0(Class.java:355) at
    java.lang.Class.newInstance(Class.java:308) at
    com.sap.aii.ibrep.server.mapping.exec.ExecuteXiMappingCommand.transformInternal
    (ExecuteXiMappingCommand.java:180) at
    com.sap.aii.ibrep.server.mapping.exec.ExecuteXiMappingCommand.execute
    (ExecuteXiMappingCommand.java:95) at
    com.sap.aii.ib.server.mapping.exec.CommandManager.execute(CommandManager.java:43) at
    com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:40) at
    com.sap.aii.ibrep.server.mapping.MapServiceBean.execute(MapServiceBean.java:40) at
    sun.reflect.GeneratedMethodAccessor1724.invoke(Unknown Source) at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at
    java.lang.reflect.Method.invoke(Method.java:597) at
    com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal
    (RequestInvocationContext.java:47) ... 34 more Caused by: java.lang.ClassNotFoundException:
    Class de.xyzcustomer.CentralLibrary.CL_StringConvert not found at
    com.sap.aii.ibrep.server.mapping.rt.ArchiveClassLoader.findClass
    (ArchiveClassLoader.java:110) at java.lang.ClassLoader.loadClass(ClassLoader.java:367) at
    java.lang.ClassLoader.loadClass(ClassLoader.java:308) ... 52 more Caused by:
    com.sap.aii.ib.core.mapping.execution.ResourceNotFoundException: Unable to find resource
    de/xyzcustomer/CentralLibrary/CL_StringConvert.class in the following software component
    versions: 26dd6550-707e-11e2-a09d-deb10ad76533, f0c662d0-6f7b-11e2-b498-deb10ad76533 at
    com.sap.aii.ib.server.mapping.execution.MappingFinderImpl.readClass
    (MappingFinderImpl.java:81) at
    com.sap.aii.ibrep.server.mapping.rt.ArchiveClassLoader.findClass
    (ArchiveClassLoader.java:92) ... 54 more  See error logs for details

  • How to make a podcast with one still image with iMovie 09

    I'm using trying to transfer my podcasts to Vimeo. I've been using iWeb to create a person web site with video and podcasts. I have embedded Vimeo with "html snippet widge." I want to do the same thing with audio, however Vimeo only accept "video" files.
    In my attempt to work around Vimeo's video issues, I had the idea to use iMovie 09 to create a "video file" using a single still image with my audio podcast play in the background. The single image would be consistent for the entire length of the audio. It seems simple...one still image file and one audio file.
    All of my audio files are less than 45 minutes in length. The problem is that when I insert an image in iMovie I can't get it to last for more than 10:00 minutes of my podcast. I've had to drag the same image over several times, extend each image's length to 10:00 minutes until I have enough images to last the full length of the audio file.
    I'm sure there's a simple way to do this with one image, used one time, and have the audio added.
    Anyone understand my situation and have a good idea?

    The most efficient method would be for you to do this in iMovie 6. You can download a version if you don't already have it on your computer. http://supportdownload.apple.com/download.info.apple.com/AppleSupport_Area/Apple_Software_Updates/Mac_OSX/downloads/061-3532.20070807.nq3ER/iMovieHD6.dmg
    Put all your clips into a new iMovie project, in the order you wish them to play. Use the chapters tab and add chapter markers for each clip (except the first one; iDVD will add that one for you). Close iMovie.
    Open an new iDVD project. Use the Media tab, then Movies, to locate your new iMovie. Drag and drop it onto the main iDVD window, taking care not to drop it into a drop zone. You should then see the title of your movie and the two options: Play Movie (which will play all the clips sequentiallly) and Scene Selection (which will take you to submenu(s) where you can select which clip to view).

  • Using still images with Final Cut (and the apple suite in general)

    I have had a re-occuring and long term problem that has caused me many lost hours of head scratching and work arounds, and as of yet I have not been able to come up with a good solution.
    Its to do with integrating still images with the Final Cut suite.
    If I receive a high quality image from a client to use in their video and I then try importing it into Final Cut and animating it, it always ends up looking like a pile of ahem. Often I will get "swimming" lines appear across fine detail on the image, and parts of it will flicker as it moves across the screen. For instance, if I have a picture of some blinds or other fine detail (especially horizontal and vertical lines), when I add a grow and throw movement to it the detail will become very noisy - buzzing and flickering like mad.
    I have found I can counter this by resizing the image in photoshop to a resolution closer to SD video (700w or 500h) - but I always end up losing detail, and the flickering and noise is only reduced, not eliminated. Other things that have helped are blur effects applied at a very low level, like 0.5 blur, so its not noticeable visually, but Final Cut seems to treat it differently and quieten the noise and flicker down.
    However, all of these workarounds are ultimately still giving a reduced quality product.
    Also, this problem is not necessarily constrained to Final Cut, I am currently fighting DVD Studio Pro because it is murdering the text quality in a stills slideshow I am creating - and in this situation there is no animation being applied. No matter what file type (psd, jpeg, tiff, png...) or size I output the text and images from Photoshop in, the moment DVD studio pro gets hold of it, it turns to cripe.
    For a while I was putting it down to the fact that I usually edit in SD (PAL) formats, and there just wasn't the resolution available to reproduce fine detail. However, I do often see other people achieving pin-sharp fine detail on still images and text in SD formats (the Apple templates are a good example)
    So, my question to you, oh great and high boffins, if you are dealing with still images and text, how do you do it? How do you work around any noise problems you have, and how do you produce those pin-sharp images (both moving and still) I see in other professional productions?
    Quad G5   Mac OS X (10.4.8)  

    still images with too high a resolution will always cause problems. this is due to the detail of the image being finer than the scanline of the tv can display ... obviously this will caise the image to flicker as these details alternately appear and disappear as and when the scanline can display them. as you have discovered, the answer is to apply a very small blur, the effect being that the detail is spread by the blur such that the scanline can dislay it correctly.
    text issues are often rooted in the same problem ... unless the text is placed very carefully (whole even number on the y axis) then the quality may be impaired due to the resulting interlacing/scanline issues

  • Can you wrap an image with a link in an html email signature?

    When I cite a remotely hosted image in an html signature, and try to make that image a link, the link is ignored and the just the image is shown.
    e.g.:
    <a href="https://www.facebook.com/pages/Ubiquia/146019678805381" target="_blank">
    <img style=" position:absolute;
    height:30px;
    width:30px;
    left:172px;
    top:157.5px"
    src="http://png.findicons.com/files/icons/2779/simple_icons/48/facebook_48_black.png" alt="ubiquia facebook" moz-do-not-send="true"
    >
    </a>

    For each icon that you want to use in your email signature:
    locate icon on internet webpage - right-click on the icon and select 'Save Image as'. Save the icon to your computer in a suitable file.
    Then in Thunderbird
    insert > Image
    choose file - locate the saved icon on your computer
    click on Link tab and enter the www etc webpage link info
    click on OK to insert image with link.
    Codewise, where you have the actual icon you would need something stating where the icon is located:
    eg
    <a href="https://www.facebook.com/pages/Ubiquia/146019678805381" target="_blank">
    path to image saved on computer included in within <> </a>

  • I Have a Mac 10.9.5 I have Photoshop CS 5.. Also have Photoshop CC. As of last month was able to edit any image with either program,as of today I can't edit images in either program. I can't see and editing I've done ,but when close the image both program

    I Have a Mac 10.9.5 I have Photoshop CS 5.. Also have Photoshop CC. As of last month was able to edit any image with either program,as of today I can't edit images in either program. I can't see and editing I've done ,but when close the image both program ask (do you want to save changes) I look at the image I don't see any changes to save. Please help Thanks for time in advance

    Please describe the steps involved in the issue exactly (with screenshots maybe).
    What have you done for trouble-shooting so far?
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html

  • Mail attachment with UDF in SAP PI 7.1

    Hello,
    I need to reproduce this solution in PI 7.1
    /people/samuel.chandrasekaran2/blog/2008/10/06/xi-mail-adapter-dynamically-building-attachment-and-message-body-content-using-a-simple-udf
    It is about  adding lines of a message as an attachment to a mail.
    The UDF works for all elements except the lines for the attachment itself.
    In order to build the content of the attachment (for this particular requirement) they are using a global variable declared and initialized in the global sections.
    But the button for the Java Section to use an imported archive is no longer available in PI.....
    So how to solve that issue?
    I tried to use a graphical variable instead of a global variable but I have no idea how to add the n lines
    from the source message as one import object into the UDF via that graphical variable.
    Your ideas are very appreciated!
    Best Regards
    Dirk

    Hi,
    yes, it is a little bit different. This is the issue.....  
    But I am not sure if your links will help:
    1) /people/william.li/blog/2008/02/13/sap-pi-71-mapping-enhancements-series-using-graphical-variable
    is about a different solution. I do not need to count the number of lines of the source message.
    And the second variable is about concat line by line from unbound node to unbound node.
    My issue is:
    Souce:
    Message line (0...unbound) ! ! ! ! ! ! ! !
    .    ResultLine   (1..1)
    Mapping:
    =>   ResultLine1
           ResultLine2
           ResultLine........          => into UDF to an element  (1..1) in one mapping operation.
    So that all "ResultLine"s are included.
    The result is explained in the given link for Mail attachment with UDF.
    So I am not sure how to use this thread for my issue.
    In the comments of that blog Christoph Gerber writes that the new variable feature can only handle single values.
    So it is not suitable for my purposes as I have a list of values here that needs to be moved into the target message field.
    2) http://wiki.sdn.sap.com/wiki/display/Java/UsingEditJavaSectioninMessageMapping
    shows where to find the button "Java section" which is not available here in 7.1
    3) /people/sap.user72/blog/2005/10/01/xi-new-features-in-sp14
    too is about the nice little button for Java Section that is no longer existing on PI 7.1 screen for mappings.  
    So my issue is: How to replace the Java section function with global variables in PI 7.1?
    Best regards
    Dirk

  • Why can I no longer open images with Photoshop CS3, running on Mac OS 10.4.11?

    Why can I no longer open images with Photoshop CS3, running on Mac OS 10.4.11?

    You may be able to drag and drop the icons from one toolbar onto another, you can then hide the toolbar that you no longer need. For details on how to do that see https://support.mozilla.com/kb/How+to+customize+the+toolbar

  • I had this video file and I was trying to flip it to a format that would work with iMovie.  It used to have the Quicktime image with it.  So, I assume it was a QT file.  But, somehow I've changed the file from a video to a folder.

    I had a video file and I was trying to flip it to a format that would work with iMovie.  It used to have the Quicktime image with it.  So, I assume it was a QT file.  But, somehow I've changed the file from a video to a folder.  I've tried to undo the action.  No luck.  I wasn't running my Time Machine.  So, I can't go back.  Help.  It's the only copy of this video.

    I've tried to undo the action.
    How?
    Please detail ALL you have done so far in the way of troubleshooting?   Need this info to avoid the been there done that scenarios.
    it's the only copy of this video.
    Where did you get the video from?
    From the pic I noticed that the folder is 841.9mb.  What's inside?  Or what happens when you click on it?

  • Creating a mp3 disk image with disk utility

    Hi,
    I'd like to create a mp3 disk image with disk utility. In the end I would like to have a mp3 disk that plays in various stero system and macs.
    But I want to add some additional files: a png file for a nice folder background of the dmg, a special image for the dmg, and some text files relating to the mp3s.
    Is this possible at all? Is there something I have to observe creating the dmg?
    Thanx for your help

    Is this possible at all? Is there something I have to observe creating the dmg?
    You need to know which file systems your "various stereo systems" understand. The default file system created on a diskimage when burning is a hybrid file system- HFS+, ISO-9660 with Rock Ridge, and Joliet with Rock Ridge.

Maybe you are looking for

  • US iPhone, upgraded in Europe, now a brick?  Warning to others!

    I'm in Switzerland for the summer, foolishly upgraded my iPhone via iTunes and now have a dead phone. It started to throw an error message about not supporting the accessory I had plugged in (even though nothing was plugged in), then it wouldn't char

  • How to merge two images together

    hi, I sell mobile phone cases and want to produce my own images. I have taken images of the case and have taken the background off. I have found an image on the internet of the phone and want the phone to be merged into the case. could someone please

  • Error -51 when trying to copy file to windows server 2012

    When I try to copy a file from OSX to windows server 2012 share, it acts like its going to start and i get a pinwheel and finder is acting slow and finally error -51. although it does seem to copy over the folder with correct name but no files inside

  • How to restrict permissions for individual business object fields?

    I know that ACE can restrict permissions (read/write/delete) for entire business objects (Business Partner, Opportunity, Activity...). Is it possible to assign security permissions (read/write) to individual attributes of business objects? For exampl

  • Case sensitivity in mssql

    i have a table with lower case and upper case for eg; Bookid   Book_Title    keyword 001        New Fashion  Fashion 002        GOURMET    GOURMET 003        orange           orange when select from the table , i face the problem select from book_tab