Problem in Image Display from DMS System

Dear All ,
                     I have an issue . I am saving the Image from CV01N and i am attaching the same to the Material through Material Master and i have a path SAPR3://SAPR3CMS/get/200/DMS_5FC1/DE75271A542EB8F1AC8100215E54283E/FKSN101375RUN155XX.bmp which is stored in SAP Server . Can anybody help me out that how can i display the same path in Smartforms . Please help me out with the same if the Possible in Smartforms .
Regards
S.B.Shankar
Edited by: Shankar  SB on Jul 21, 2009 4:41 AM

Dear Shankar , check out the links .
https://wiki.sdn.sap.com/wiki/display/Snippets/ABAP-ALVtodisplayimageusingDocumentManagement+System
https://wiki.sdn.sap.com/wiki/display/ABAP/AssigningImageusingDocumentManagement+System
regards,
chinnaiya P
Edited by: chinnaiya pandiyan on Jul 21, 2009 2:40 PM

Similar Messages

  • Image from DMS System

    hi experts,
    I have material image in my DMS system and i want to show images in my z report .Is there any functional module for that or what should i do ...
    i have attached to a particular material i dont how to dispaly in a report
    Help me Plz
    regards,
    karthik
    Message was edited by:
            karthikeyan sukumar

    Hey this is the solution.....
    REPORT  zind_mat_disp_img.
    Tables
    TABLES : mara, makt, drad.
    internal table
    DATA : BEGIN OF w_material,
           matnr TYPE mara-matnr,
           prdha TYPE mara-prdha,
           maktx TYPE makt-maktx,
           img(18) TYPE c,
           END OF w_material.
    DATA : i_material LIKE STANDARD TABLE OF w_material WITH HEADER LINE.
    DATA : tabix TYPE i.
    TYPE-POOLS AND FIELD CATALOG DECLARATION
    TYPE-POOLS: slis.
    To pass name of the report in function module for ALV
    DATA: v_repid LIKE sy-repid .
    Internal table to display top of page and build eventcat
    DATA : logoevent TYPE slis_t_event, "FOR LOGO
           t_event TYPE slis_alv_event,
           i_listheader TYPE slis_t_listheader,
           test TYPE slis_listheader.
    Table for catalog of the fields to be displayed
    DATA: i_fieldcat TYPE slis_t_fieldcat_alv.
    DATA : x_fieldcat TYPE slis_fieldcat_alv.
    *&     Document declaration for DMS
    Document key
    DATA: lf_doctype    LIKE bapi_doc_draw-documenttype,
           lf_docnumber  LIKE bapi_doc_draw-documentnumber,
           lf_docpart    LIKE bapi_doc_draw-documenttype,
           lf_docversion LIKE bapi_doc_draw-documentversion.
    Bapi-Return structure
    DATA : ls_return LIKE bapiret2.
    Originals Document hierarchy
    DATA: lt_files LIKE bapi_doc_files2 OCCURS 0 WITH HEADER LINE,
           ls_document LIKE bapi_doc_draw2.
    *&      SELECTION-SCREEN
    SELECTION-SCREEN : BEGIN OF BLOCK 001.
    SELECT-OPTIONS : c_matnr FOR mara-matnr.
    SELECTION-SCREEN : END OF BLOCK 001.
    *&      INITIALIZATION
    INITIALIZATION.
      v_repid = sy-repid.
    *&      START-OF-SELECTION
    START-OF-SELECTION.
      PERFORM 100_fetch_from_table.
      IF NOT i_material IS INITIAL.
        PERFORM 200_build_event USING logoevent.
        PERFORM 300_build_fieldcatalog.
        PERFORM 400_alv_grid_display.
      ENDIF.
    *&      Form  100_fetch_from_table
        Fetch datas from table into internal table
    FORM 100_fetch_from_table .
      SELECT amatnr aprdha b~maktx FROM mara AS a
                INNER JOIN makt AS b
            ON amatnr = bmatnr INTO CORRESPONDING FIELDS OF TABLE i_material
            WHERE a~matnr IN c_matnr.
      IF sy-subrc = 0.
        SORT i_material BY matnr.
        LOOP AT i_material.
          i_material-img = 'Display_Image'.
          MODIFY i_material TRANSPORTING img.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    " 100_fetch_from_table
    *&      Form  200_build_event
    Build Event
    FORM 200_build_event USING p_logoevent TYPE slis_t_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       IMPORTING
         et_events             = p_logoevent
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      READ TABLE p_logoevent WITH KEY name = slis_ev_top_of_page INTO t_event.
      IF sy-subrc = 0.
        MOVE 'TOP_OF_PAGE' TO t_event-form.
        MODIFY p_logoevent FROM t_event INDEX sy-tabix TRANSPORTING form.
      ENDIF.
    ENDFORM.                    " 150_build_event
    *&      Form  300_build_fieldcatalog
          Building field catalog for ALV display
    FORM 300_build_fieldcatalog .
      x_fieldcat-col_pos = 1.
      x_fieldcat-outputlen = '18'.
      x_fieldcat-fieldname = 'MATNR'.
      x_fieldcat-tabname = 'I_MATERIAL'.
      x_fieldcat-seltext_m = 'Material'.
      x_fieldcat-key = 'X'.
      x_fieldcat-key_sel = 'X'.
      x_fieldcat-hotspot = space.
      x_fieldcat-fix_column = 'X'.
      APPEND x_fieldcat TO i_fieldcat.
      CLEAR x_fieldcat.
      x_fieldcat-col_pos = 2.
      x_fieldcat-outputlen = '40'.
      x_fieldcat-fieldname = 'MAKTX'.
      x_fieldcat-tabname = 'I_MATERIAL'.
      x_fieldcat-seltext_m = 'Material_Description'.
      x_fieldcat-hotspot = space.
      APPEND x_fieldcat TO i_fieldcat.
      CLEAR x_fieldcat.
      x_fieldcat-col_pos = 3.
      x_fieldcat-outputlen = '18'.
      x_fieldcat-fieldname = 'PRDHA'.
      x_fieldcat-tabname = 'I_MATERIAL'.
      x_fieldcat-seltext_m = 'Product Hierarchy'.
      x_fieldcat-hotspot = space.
      APPEND x_fieldcat TO i_fieldcat.
      CLEAR x_fieldcat.
      x_fieldcat-col_pos = 4.
      x_fieldcat-outputlen = '18'.
      x_fieldcat-fieldname = 'IMG'.
      x_fieldcat-tabname = 'I_MATERIAL'.
      x_fieldcat-seltext_m = 'Link to Disp Image'.
      x_fieldcat-hotspot = 'X'.
      x_fieldcat-key = 'X'.
      APPEND x_fieldcat TO i_fieldcat.
      CLEAR x_fieldcat.
    ENDFORM.                    " 200_build_fieldcatalog
    *&      Form  400_alv_list_display
        ALV List Display
    FORM 400_alv_grid_display .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         i_callback_program                = v_repid
         i_callback_pf_status_set          = 'SET_PF_STATUS'
         i_callback_user_command           = 'USER_COMMAND'
         i_callback_top_of_page            = 'TOP_OF_PAGE'
         i_structure_name                  = 'I_MATERIAL'
        IS_LAYOUT                         = struct_layout
         it_fieldcat                       = i_fieldcat
         it_events                         = logoevent
       TABLES
          t_outtab                          = i_material
       EXCEPTIONS
         program_error                     = 1
         OTHERS                            = 2
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " 300_alv_grid_display
          FORM TOP_OF_PAGE                                              *
    FORM top_of_page.
      REFRESH i_listheader.
      DATA: t_header TYPE slis_listheader.
      DATA: v_text(50).
      WRITE sy-datum TO v_text.
      CLEAR t_header.
      t_header-typ = 'S'.
      t_header-key = 'Date'.
      t_header-info = v_text.
      APPEND t_header TO i_listheader.
      WRITE sy-repid TO v_text.
      CLEAR t_header.
      t_header-typ = 'S'.
      t_header-key = 'Program_Name'.
      t_header-info = v_text.
      APPEND t_header TO i_listheader.
      WRITE sy-uname TO v_text.
      CLEAR t_header.
      t_header-typ = 'S'.
      t_header-key = 'User'.
      t_header-info = v_text.
      APPEND t_header TO i_listheader.
      WRITE 'Materials_Display' TO v_text.
      CLEAR t_header.
      t_header-typ = 'S'.
      t_header-key = 'Details'.
      t_header-info = v_text.
      APPEND t_header TO i_listheader.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = i_listheader
          i_logo             = 'ENJOYSAP_LOGO'.
    ENDFORM.                    "TOP_OF_PAGE
    *& Form set_pf_status
    Form used to set the Custom pf-status of the List Display
    FORM set_pf_status USING i_rt_extab TYPE slis_t_extab.
      DATA : x_extab TYPE slis_extab.
      x_extab-fcode = '&LFO'.
      APPEND x_extab TO i_rt_extab.
      SET PF-STATUS 'ZSTANDARD' EXCLUDING i_rt_extab .
    ENDFORM. "set_pf_status
    *& Form user_command
    Form used to handle USER_COMMAND events
    FORM user_command USING rf_ucomm LIKE sy-ucomm
    rs TYPE slis_selfield.
      tabix = rs-tabindex.
      CASE rf_ucomm.
      Ok code for double click is &IC1 for ALV report
        WHEN '&IC1'.
          PERFORM sub_disp_img.
      ENDCASE.
    ENDFORM. "user_command
    *&      Form  sub_disp_img
    FORM sub_disp_img .
      PERFORM get_document.
      IF sy-subrc = 0.
        PERFORM wa_exeute.
      ENDIF.
    ENDFORM.                    " sub_disp_img
    *&      Form  get_document
          text
    FORM get_document.
      IF tabix NE space.
        READ TABLE i_material INDEX tabix.
        IF sy-subrc = 0.
          SELECT SINGLE * INTO drad FROM drad
                   WHERE objky = i_material-matnr.
          IF sy-subrc = 0.
         * Allocate document data
            lf_doctype    = drad-dokar.
            lf_docnumber  = drad-doknr.
            lf_docversion = drad-dokvr.
            lf_docpart    = drad-doktl.
            REFRESH lt_files.
            CLEAR lt_files.
        Set detail information for the document
            CALL FUNCTION 'BAPI_DOCUMENT_GETDETAIL2'
    EXPORTING: documenttype      = lf_doctype
                documentnumber    = lf_docnumber
                documentpart      = lf_docpart
                documentversion   = lf_docversion
                getobjectlinks    = 'X'
                getstatuslog      = 'X'
                getlongtexts      = 'X'
                getactivefiles    = 'X'
       IMPORTING:
                documentdata      = ls_document
                return            = ls_return
       TABLES:     documentfiles     = lt_files.
            IF ls_return-type CA 'EA'.
            MESSAGE ID '26' TYPE 'I' NUMBER '000'
                      WITH ls_return-message.
            ENDIF.
          ELSE.
            MESSAGE 'No Image Found' TYPE 'I'.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.                    " get_document
    *&      Form  wa_exeute
          To display image from the path.
    FORM wa_exeute .
      CALL FUNCTION 'WS_EXECUTE'
       EXPORTING
         inform                   = 'X'
         program                  = lt_files-docfile
       EXCEPTIONS
         frontend_error           = 1
         no_batch                 = 2
         prog_not_found           = 3
         illegal_option           = 4
         gui_refuse_execute       = 5
         OTHERS                   = 6
      IF sy-subrc <> 0.
        MESSAGE 'Image Path Invalid' TYPE 'W'.
      ENDIF.
    ENDFORM.                    " wa_exeute

  • Experiencing problem with image display in LR5

    I have an intermittent problem with images displaying and exporting in LR. It just began a couple of months ago and is totally random - will do it with RAW (CR2) or JPG. It displays this way in all modules - Library, Develop, Slideshow....The image displays fine in a non-Adobe image viewer (Faststone or Windows Viewer). I've reloaded LR5 and PSCC and is still persists. I know the image file is fine. It also has begun effecting older images that were showing up just fine a while ago. I just loaded about 200 images and maybe 3 or so have this viewing problem in LR & PS. Has anyone else experienced it and have a suggested fix? My graphics card has the latest drivers and shows no problems with other applications. Here is the same image - one a jpg export from Lighroom, the other a save as jpg from Faststone. HELP!

    This is almost always a hardware problem, causing corruption of the file. The difference you see between Lightroom and other software is that Lightroom is accessing the full RAW image, while the other software is trying to read the embedded JPG preview.
    To figure out exactly what hardware is the problem, you need to try different transmission paths and hardware ... different camera cards, different card readers or USB cables/USB ports, different hard disks, etc. Eventually you should be able to isolate the problem.

  • Images:  displaying from the file system

    I have the instructions for loading images into a database column. However, for my prototype, I want to read leave the images in the file system and store the filenames in the database. Then I want to create a form to display the images in an 'art gallery' kind of format, like a column for the picture, a column for a description, and column for a checkbox, so the user could say 'I want this one, this one, and this one.' What's the best approach for this kind of thing?

    Have you looked at the sample application? I think it has a table just like that, I don't have it installed anywhere anymore, so don't know off the top of my head.
    One way is
    your pictures table would have a format like:
    ID, PICTURE_NAME, DESCRIPTION
    your report is then:
    select htmldb_item.display_and_save(1, id) id,
    '< img src = "/i/your_directory "'|| picture_name ||' " < /img > ' picture,
    htmldb_item.checkbox...

  • Import data to Purchase Order Item Level Text from DMS system

    Hi,
    I have the material PO Text maintained against the Material in the DMS system.
    In R/3, when I am creating the Purchase Order, I want the system to retreive the PO Text maintained in DMS against the material in the Purchase Order and paste it in the Purchase Order Item details - Material PO Texts.
    Could anyone suggest me which User Exit or BAPI and the Function Module to fetch this data from DMS.
    Thanks in advance.
    Regards,
    Jeetendra

    Dear Gurus,
    We are able to populate the "Import Data" in the backend PO in our backend system 4.6C, thorugh user exit
    EXIT_SAPMM06E_004   &   EXIT_SAPLV50E_004.
    Now when we create PO from SRM , the import related foreign trade data gets filled up from the master data.
    Problem: In Header and Line item condition: We are not getting the condition type GRWR automatically, if the PO is comming from SRM. Because of this the statistical value is 0.
    ( If we create manual PO, the condition GRWR appears in PO - and the Statistical value gets filled in automatically )
    How can we put the condition type GRWR into the PO using user exit ?
    Thanks and regards,
    Anil Rajpal
    Edited by: ANIL on Aug 12, 2010 6:18 PM

  • Problem Populating Image Item From Database

    Hi All,
    I am using Oracle 9i & Forms 6i on Windows platform & working in client/server model. I created a form in which, I am reading an image file from the file system & then saving it into the database. In the Databse, i created the column as BLOB. But, when I query, this does not retrive the saved image in Image Item. But image is actually saved. When I tried, changing the database column to LONG RAW, it is working. I mean its reading the image in the image item from the database.
    Can anyone pls tell me, is there any problem like this, as we can retrive from LONG RAW but not from BLOB, or I am missin something here.
    Regards

    Hi,
    I use Forms 6i to save and retrieve image in BLOB column without problems.
    Some weeks ago, my column was long raw and I update it without problems. Nothing to do in Forms and juste modifiy query and recompile in Reports.

  • Problem with image returned from getGeneratedMapImage method

    I'm a newbie as far as map viewer and Java 2D goes....
    My problem is the java.awt.Image returned from the getGeneratedMapImage method of the MapViewer API. The image format is set to FORMAT_RAW_COMPRESSED. The image returned is of poor quality with colors not being correct and lines missing. I'm painting the Image returned from this method onto my own custom JComponent by overriding the paint() method...
    public void paint( Graphics g )
    Image image = map.getGeneratedMapImage();
    if ( image != null )
    g.drawImage( image, getLocation().x, getLocation().y, Color.white, this );
    If I take the xml request sent to the application server and paste it into a "sample map request" on the map admin website (along with changing format to PNG_STREAM) my image renders exactly how I expect it to.
    Anyone have any idea what I need to do to get the java.awt.Image with format set to FORMAT_RAW_COMPRESSED to render correctly. I was hoping to get back a BufferedImage or a RenderedImage from the getGeneratedMapImage call but I'm getting back a "sun.awt.motif.X11Image".
    Will downloading the JAI (java advanced imaging) from sun help me at all?

    Joao,
    Turns out it is related to colors. I'm dynamically adding themes, linear features and line styles. I ran a test where I changed the color being specified in the line style from magenta (ff00ff) to black. When I changed the color the linear feature would show up. It was being rendered as white on a white background when I was specifying it to be magenta. I'm specifying another linear feature to be green and it is showing up in the java image as yellow. This doesn't happen when I take the generated XML from the request and display it as a PNG_STREAM.
    Any clue what is going on there?
    Jen

  • Problem using Image Processor from Bridge

    I have been using the Image Processor to process photos from Bridge for quite some time. However, I recently received an error message when I try to initiate Image Processor from Bridge and I have not been able to find any help topics that address my problem: I select images in Bridge to process, then click "Tools>Photoshop>Image Processor". Photoshop opens and the familiar Image Processor dialog box opens. Item 1 in the dialog box says "Process files from Bridge only" and has the number of files I have selected in parenteses. I select the file type and other settings in #3, and preferences in #4. When I click "Run", I get an error message window that says: "Script Alert. There were no source files that could be opened by Photoshop". The Image Processor works if I open the files in Photoshop first, then run it by selecting "File>Scripts>Image Processor" and tell it to process all open files.
    Would someone be able to help me with this problem?
    Thanks, Larry

    Usually when it worked before and not now, and you have added no new software or hardware I recommend resetting the preferences.  Hold down the Ctrl key and click on the Bridge icon to start.  You should get a reset window with 3 options.

  • Image: display from local drive, upload to server file system, and display from server

    Hello,
    I am using jdev 11.1.2.4.0...
    The requirement is that users would like to upload images from their local drive to server drive and they would like display images from server drive later.
    We don't want to keep images in database. I am not sure what the solution should be; however, I plan to ....
    1. create a table to keep an information of images -- image_id, image_location (server drive), image_filename
    2. create a page where users can enter image information and specific filename from a local drive (I think I will use inputFile component) and provide the preview button to display an image on screen before save it. To save data is to save information to the database and copy an image file to the server drive (the destination location for image files is predefined.)
    3. create another page where users can browse information from the database and display an image for a selected record by getting from the server.
    I need suggestions on...
    1. how to display an image on page from the local drive?
    2. how to copy a file from a local drive to a server?
    3. how to display an image on page from the server drive?
    Thank you.
    nat

    See:
    http://tompeez.wordpress.com/2011/11/26/jdev11-1-2-1-0-handling-imagesfiles-in-adf-part-1/
    http://tompeez.wordpress.com/2011/11/26/jdev11-1-2-1-0-handling-imagesfiles-in-adf-part-2/
    http://tompeez.wordpress.com/2011/12/16/jdev11-1-2-1-0-handling-imagesfiles-in-adf-part-3/
    Where Timo saves images to the database, you save it to the file system (examples on how to do this from Java are available plenty if you just Google for it). Similar to Timo you then use the image tag to display images. The difference is that you can directly add the URL from the database table.
    The benefit of using a database to host images is that you are not dependent on file server structures though
    Frank

  • Having problem with images imported from photoshop

    I am totally new to Fireworks, I am redoing a site that was done using CS2, that is GoLive, Photoshop and Image Ready. I wanted to begin familiarizing myself with Fireworks by starting with using it to make all the web images for the site (jpgs, pngs, etc). It started well but after a while I started getting strange results from FW when I imported PSD files. The PSD imports fine into FW but when I want to "preview" or do a "2-UP" and see what it looks like as a jpg or png I just get a blank image where the jpg or png is supposed to be. However if I "export" the jpg it does get exported, but I would like to preview it to see what the quality is. This doesn't happen every time but at least 50% of the time in the last 2 days, and there seems to be no rhyme or reason behind why it works with some images but not others.
    Another thing is that if I add a layer effect to the image such as "inner glow" to the PS image, and then flatten the image to make sure it gets exported to FW, it doesn't get exported. It is as if I never added the layer effect in PS.
    Any help on these two issues would be greatly appreciated and help me to continue in perservering with FW.
    VL Branko

    I don't think I've cracked open Bridge since upgrading to CS5/CS6, and I'm hesitant to start today! I'm therefore kind of assuming that you're starting with PSDs and opening them up in Fireworks. (If you're not doing this, give it a try.)
    Regarding the 50% failure of Preview and 2-Up modes, I was thinking that saving the PSDs as native Fireworks PNGs—within Fireworks—might eliminate that problem. It's hard to imagine Fireworks not previewing its own file format, but easier to imagine it failing to properly preview a PSD file. And again, perhaps File > Image Preview might work better for you.
    As far as the "inner glow" issue: 1) Be sure to add it into the PSD before importing into Fireworks, and 2) If it doesn't show up, have a look at Filters within the Properties panel for the selected object; you could try selecting Inner Glow within ‘Photoshop Live Effects’ or try out Fireworks' own native Inner Glow filter effect.
    Other than for the purpose of familiarizing yourself with Fireworks, you may want to consider why you'd use Fireworks for these graphics, if they were originally created in Photoshop. Small changes in graphic appearance are always possible when moving between applications. For example, Photoshop is color managed whereas Fireworks is not; you therefore might notice a small shift in saturation or tonality between the two applications. Whether this is a concern depends on your final output goals.

  • Problem loading image icons from jar

    I have created an Applet , that works as an application too.I created the certificate the jar, with the images and the classes, i signed it... The html page is working fine as the exe i have made from the jar, but ONLY if the folder with the images is in the same directory!!!I have searched in java and other forums for an answer that fits but..
    Here is a sample of my code.
    images[0]=new ImageIcon((Applet15.class.getResource("/palaio/Image8.jpg")));
    images[1]=new ImageIcon((Applet15.class.getResource("/palaio/Image22.jpg")));
    images[2]=new ImageIcon((Applet15.class.getResource("/palaio/Image30.jpg")));
    images[3]=new ImageIcon((Applet15.class.getResource("/palaio/Image36.jpg")));
    images[4]=new ImageIcon((Applet15.class.getResource("/palaio/Image42.jpg")));
    images[5]=new ImageIcon((Applet15.class.getResource("/palaio/Image63.jpg")));
    public Applet15() {
          private void jbInit() throws Exception {
      public String getAppletInfo() {
        return "Applet Information";
      public String[][] getParameterInfo() {
        return null;
      public static void main(String[] args) {
        Applet15 applet = new Applet15();
        applet.isStandalone = true;
        Frame frame;
        frame = new Frame();
        frame.setTitle("Applet Frame");
        frame.add(applet, BorderLayout.CENTER);
        applet.init();
        applet.start();
        frame.setSize(450,400);
        Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
        frame.setLocation((d.width - frame.getSize().width) / 2, (d.height - frame.getSize().height) / 2);
        frame.setVisible(true);Thank you!!

    This tutorial should resolve the problem
    http://java.sun.com/docs/books/tutorial/applet/appletsonly/data.html

  • Problem with images disappearing from project

    I have inserted a number of images into my Robohelp 9 project topics using the Insert >> Image function.  Typically the images were stored on my hard drive on my pc, but some I pulled from a shared network drive that were prepared by other people.  They seemed to load into the project OK.  I had them grouped in a about 5 different robohelp folders to keep them organized so after I would insert, complete my topic and save.  I would move the images to their respective folder.  This was fine for a while,  I had no problems generating printed .pdf documentation, making changes to my topics, etc.  But now the images keep disappearing from the Robohelp folder structure and the printed documentation.  I can see the images when I open up and view the topics.  I can also see them when I look out onto the drive on the computer.  However, they do not show up in the Robohelp  Project Manager and are not included in my printed output.  I keep re-inserting them, but they continue to disappear. 

    Hi there
    Certainly it won't hurt anything to add the images to baggage files, but I'd be shocked to find that solves the problem.
    If an image has been used in RoboHelp, it should be present in the project. End of story. The fact they seem to be disappearing seems to suggest that maybe something has gone awry with folder naming or image naming or the project in general.
    So what version and flavor of RoboHelp are you using?
    RoboHelp 10, RoboHelp 9, RoboHelp 8, etc.
    RoboHelp HTML, RoboHelp for Word
    Cheers... Rick

  • Problems with image display

    Hi, I am new to J2ME, and this forum as well. I am writing a small MIDlet to display an image using WTK1.4. The problem is that the image (500X400) is not being displayed wholly on the emulator screen. In fact, only a very small portion of it is being displayed.
    Is there any way to resize (scale down) the image, or make the screen scrollable (up-down, left-right) so that the entire image can be displayed? Help will be highly appreciated.
    Thank you.

    In midp1 you can not scale images

  • Problems with character displaying from XML to Java

    Hi to all!
    I am making a flash chat program which basically takes english and chinese
    and talk to java using XML and java server distribute this message to all users,
    While simply using java as a distributor of the data was fine, but when I try to
    keep records of the chat into the mysql database, I realized that all the
    chinese characters are displayed in random characters.
    After some thought, I realized that flash using ASCII number representation
    for each chinese word imay be different from the Java ASCII number representation, therefore, when Java sends
    these ASCII characters to the mysql database, the words is no longer the words I wanted.
    I am using a brute force, which on the flash side, I took the ASCII code of each chinese character that I
    typed and use break and send them to java and recoded in java with java's Chinese character
    and send to the mysql database, well, it works(I tried) but I need to type up at least 3000 characters!!!!!!!!
    this is insane!
    I am also wonder if the problem comes because Java encode Chinese in unicode, so
    it does not recognize the ASCII, and therefore, the result is for sure weird.
    If so, what do I need to do in order to convert ASCII into Unicode????
    sincerely,
    Suansworks

    hello.
    flash have some problems by utf but it seems that your problem is with mysql database because if you want to put utf in mysqk database you need to get latest version that is beta or alpha. please it using with other database that supports utf.

  • Problem when transporting form from DEV system to PRODUCTION system

    Hi Experts,
    We are developing forms in ABAP, for example there is a form developed in dev system and this form has JS coding in some UI elements events like initialize, on change and on exit; also has one script object defined as variable. this script object has some functions defined in order to do some common validations and field specific ones too.
    The form in DEV work fine, all the functions calling, all the validations and the events are working properly as expected. But there is a problem when we moved the changes done in development system into production system. Specifically the script object has the problem: even though the coding is the same in both systems, in production system we had an script error: "Body.CATALOGPARAMS has no properties", as if the Body.CATALOGPARAMS was never instanciated, or it is not defined...
    The code that produces this error is the following:
    var itemCount = 0;
    itemCount = Body.CATALOGPARAMS.DATA.instanceManager.count;
    CATALOGPARAMS is table defined as context table coming from an ABAP FM where is filled and passed into the form.
    In order to fix this problem I changed that part for the following
    var itemCount = 0;
    var catalogTable = null;
    catalogTable = xfa.resolveNode("Body.CATALOGPARAMS.DATA");
    itemCount = catalogTable.instanceManager.count;
    This still works as fine as the other in DEV system. But my question is: will I have the same problem when we transport the changes to production system, you have to know that a transport is not something that you can do every day, so I am taking precautions before the transport. Which of both coding is the best for doing this?
    Any observations, comments, questions in order to clarify some points are welcome, so please do it.
    In advance, thanks a lot.
    Mauricio.-
    Edited by: Mauricio Poblete on May 11, 2010 4:20 PM

    As always, you are the first one to reply... thanks for that!
    before everything, I activated the form, then I added this form to a new transport using se80 transaction: I navigated through the form objects and I added the form to a new transport by second click on the form -> other functions -> write transport entry. is this the correct way to assign a transport package with the entire form (including script objects, layouts, and all you told in the last reply)??
    Can you give me a guide on how-to add the specific parts to the same transport for forms?
    as always, thanks in advance.
    Mauricio.-

Maybe you are looking for