Uploading image formats in Smartforms

Hi Experts,
Is it possible to upload .gif image through SE78 without any conversions in 4.6C.
Is it possible to upload .tiff image not as a standard text.
Thanks,
With Regards,
Kumud Singh

HI
No it is not possible to upload .gif image through se78 in 4.6c>however u acn do it in 6.0
Thanks!
Rahul

Similar Messages

  • How to display image in the smartforms

    Hi All,
    I have image conent in the Binary formate.I want to dispaly that image in the smartforms.
    Please tell me how to display that image in the smartforms dynamically.
    Normally wa uploaded in SE78.And that is used in smartforms.But this is static way.
    I want to display tha images dynamically.
    Please Please
    Thanks,
    Saritha

    Hi,
          The image is in the DB ,right..Its in Binary format..
    See first we want the picture to be get uploaded inside the SAP.It is done by se78..
    If possible we can retrieve the picture outside in a place means we can get tht into sap by using
    Call Transaction 'SE78'.
    Reward if useful ...........

  • How to insert or upload image in RichTextEditor ?

    Hello everyone,
    I am new to flex and trying to design a full-fledged RichTextEditor in flex builder,Can anyone tell me how to add or upload image
    in RichTextEditor at users cursor location ?
    also user should be able to resize and move the image around the text editor.

    It can be done in either. There are 3 steps.
    Learn about greenscreen (keying) including lighting, filming, best formats for video (the way they do it in the weather segment) or masking and roto.
    learn about image editing including sizing images, color correcting, applying effects
    learn about controlling motion and editing duration of stills in a NLE or After Effects
    When you have a few of these basics down and have designed your production you then load up the video and the stills, key out the background or mask around your talent to separate the talent from the background, add your photos to the time line and animate their duration and position.
    This is extremely basic stuff that can be accomplished in a NLE or in AE. You can basically reproduce just about any effect you've ever seen in a movie in AE with the right planning and plug-ins. You can do just about anything you've ever seen in a news broadcast in any modern NLE.

  • Upload image in an html form to be emailed

    Hi everyone. Here is another one of my last minute, hurry up and wait requests.
    I have to create a form that will enable the viewer to upload an image and send the
    form on its way to a predetermined email address. This is for a contest starting tomorrow.
    The form has been made and works. The only thing I haven't worked out yet is the "upload image"
    feature. This is absolutely necessary and must be included. I have tested this several times and all the data
    comes thru. What I need is for an image to go along with the form fields and appear when the email is opened.
    With all due respect I do not have a very long learning curve here so if anyone can just provide
    me with the code, both html and php, instruct me exactly where to place it I would be
    extremely appreciative.
    here is the temporary link:
    Sirui/Argraph Wildlife-Landscape Photo Contest
    The image upload button will be in between the two horizontal rules towards the bottom of the form;
    above the submit/reset buttons.
    Thanks in advance as always.
    -Cliff-

    Below is the code and php for your complete form together with the file upload field and code. How you style the form and validate the form fields (if your going to) is down to you. Change the email address marked in red to that of the recipient you want the information to go to.
    You need to copy all the code and save it with a php extension so instead of:
    SiruiWildlifePhotoContestEntryForm.html
    This:
    SiruiWildlifePhotoContestEntryForm.php
    Obvioulsy being php it only works if the file is on a php enabled server so if you dont have a local testing server you need to upload it to your remote server before it will work.
    <?php
    if(isset($_POST['Submit']))
    //The form has been submitted, prep a nice thank you message
    $output = '<h1>Thanks for your file and message!</h1>';
    //Set the form flag to no display (cheap way!)
    $flags = 'style="display:none;"';
    //Deal with the email
    $to = 'yourEmailAddress.com';
    $subject = 'Competition Entry';
    $LastName = ($_POST['LastName']);
    $FirstName = ($_POST['FirstName']);
    $Email = ($_POST['Email']);
    $Phone = ($_POST['Phone']);
    $Address1 = ($_POST['Address1']);
    $Address2 = ($_POST['Address2']);
    $City = ($_POST['City']);
    $State = ($_POST['State']);
    $Zip = ($_POST['Zip']);
    $Dealer = ($_POST['Dealer']);
    $TripodMonopodHead = ($_POST['TripodMonopodHead']);
    $CameraLens = ($_POST['CameraLens']);
    $ImageEntry = ($_POST['ImageEntry']);
    $DepositWhere = ($_POST['DepositWhere']);
    $YouTubePage = ($_POST['YouTubePage']);
    $attachment = chunk_split(base64_encode(file_get_contents($_FILES['file']['tmp_name'])));
    $filename = $_FILES['file']['name'];
    $boundary =md5(date('r', time()));
    $headers = "From: [email protected]\r\nReply-To: [email protected]";
    $headers .= "\r\nMIME-Version: 1.0\r\nContent-Type: multipart/mixed; boundary=\"_1_$boundary\"";
    $message = "Last Name: $LastName\n\n";
    $message .= "First Name: $FirstName\n\n";
    $message .= "Email: $Email\n\n";
    $message .= "Phone: $Phone\n\n";
    $message .= "Address1: $Address1\n\n";
    $message .= "Address2: $Address2\n\n";
    $message .= "City: $City\n\n";
    $message .= "State: $State\n\n";
    $message .= "Zip: $Zip\n\n";
    $message .= "Dealer: $Dealer\n\n";
    $message .= "Tripod Monopod Head: $TripodMonopodHead\n\n";
    $message .= "Camera Lens: $CameraLens\n\n";
    $message .= "Deposit Where: $DepositWhere\n\n";
    $message .= "You Tube Page: $YouTubePage\n\n";
    $message.="This is a multi-part message in MIME format.
    --_1_$boundary
    Content-Type: multipart/alternative; boundary=\"_2_$boundary\"
    --_2_$boundary
    Content-Type: text/plain; charset=\"iso-8859-1\"
    Content-Transfer-Encoding: 7bit
    $message
    --_2_$boundary--
    --_1_$boundary
    Content-Type: application/octet-stream; name=\"$filename\"
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment
    $attachment
    --_1_$boundary--";
    mail($to, $subject, $message, $headers);
    ?>
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>MailFile</title>
    </head>
    <body>
    <?php echo $output; ?>
    <form enctype="multipart/form-data" action="<?php echo $_SERVER['PHP_SELF'];?>" method="post" <?php echo $flags;?>>
    <p><label for="LastName" class="barheader">Last Name:</label>
    <input name="LastName" type="text" id="LastName" size="28" maxlength="50" />
    </p>
    <p><label for="FirstName" class="barheader">First Name:</label>
    <input name="FirstName" type="text" id="FirstName" size="28" maxlength="50" />
    </p>
    <p><label for="Email" class="barheader">Email:</label>
    <input name="Email" type="text" id="Email" size="50" maxlength="75" />
    </p>
    <p><label for="Phone" class="barheader">Phone:</label>
    <input name="Phone" type="text" id="Phone" size="12" maxlength="15" />
    </p>
    <p><label for="Address1" class="barheader">Address 1:</label>
    <input name="Address1" type="text" id="Address1" size="75" maxlength="100" />
    </p>
    <p><label for="Address2" class="barheader">Address 2:</label>
    <input name="Address2" type="text" id="Address2" size="75" maxlength="100" />
    </p>
    <p><label for="City" class="barheader">City:</label>
    <input name="City" type="text" id="City" size="33" />
    </p>
    <p><label for="State"><span class="barheader">State:</span></label>
    <input name="State" type="text" id="State" size="2" maxlength="2" />
    </p>
    <p><label for="Zip" class="barheader">Zip:</label>
    <input name="Zip" type="text" id="Zip" size="10" maxlength="10" />
    </p><label for="Dealer" class="barheader">Dealer:</label>
    <input name="Dealer" type="text" id="Dealer" size="100" maxlength="150" />
    </p>
    <p><label for="Tripod/Monopod/Head Used:" class="barheader">Tripod/Monopod/Head Used:</label>
    <input name="TripodMonopodHead" type="text" id="Tripod/Monopod/Head Used:" size="75" maxlength="100" />
    </p>
    <p><label for="YouTubePage" class="barheader">Camera/Lens Used:</label>
    <input name="CameraLens" type="text" id="Camera/Lens Used:" size="75" maxlength="100" />
    </p>
    <p><label for="Image/Entry:" class="barheader">Image/Entry #:</label>
    <input name="ImageEntry" type="text" id="Image/Entry:" size="25" maxlength="25" />
    </p>
    <p></p>Where will you deposit your entry?:</p>
    <p><label for="DepositWhere"></label>
    <input name="DepositWhere" type="text" id="DepositWhere:" size="20" maxlength="50" />
    </p>
    <p><label for="YouTubePage" class="barheader">For YouTube Videos: URL to your YouTube page:</label>
    <input name="YouTubePage" type="text" id="YouTubePage" size="50" maxlength="100" />
    </p>
    <p>
    <label for="file">Attach File</label> <input type="file" name="file" id="file"></p>
    <input type="submit" name="Submit" id="Submit" value="Submit" />
    <input type="reset" name="Reset" id="Reset" value="Reset" />
    </form>
    </body>
    </html>

  • Upload image with Zprogram instead se78

    Dear Gurus ,
    I founf in sdn a useful program that upload images instead se78.
    It works fine but i cant find how to pass the Description of the image....
    Can you give me a hint ?
    Look the code ....
    REPORT  ZTEST2.
    TYPE-POOLS: SBDST.
    TABLES: STXBITMAPS.
    CONSTANTS:
      C_BDS_CLASSNAME TYPE SBDST_CLASSNAME VALUE 'DEVC_STXD_BITMAP',
      C_BDS_CLASSTYPE TYPE SBDST_CLASSTYPE VALUE 'OT',          " others
      C_BDS_MIMETYPE  TYPE BDS_MIMETP      VALUE 'application/octet-stream',
      C_BDS_ORIGINAL  TYPE SBDST_DOC_VAR_TG VALUE 'OR'.
    * Globals and globals for dynpro fields
    DATA: G_OBJECTTYPE(20)   TYPE C,
          G_NEW_RESOLUTION   LIKE STXBITMAPS-RESOLUTION,
          G_STXBITMAPS       TYPE STXBITMAPS,
          G_STXH             TYPE STXH,
          G_TECHINFO         TYPE RSSCG,
          T_SIZE(40),
          BDS_DESCRIPTION  LIKE BAPISIGNAT-PROP_VALUE VALUE 'LALALA'.
    CONSTANTS:
          C_OBJECTTYPE_BDS      LIKE G_OBJECTTYPE VALUE 'BDS',
          C_OBJECTTYPE_STDTEXT  LIKE G_OBJECTTYPE VALUE 'OBTEXT',
          C_OBJECTTYPE_GRTEXT   LIKE G_OBJECTTYPE VALUE 'OBGRAPHICS'.
    DATA: P_FILENAME       TYPE RLGRAP-FILENAME,
                   P_OBJECT         TYPE STXBITMAPS-TDOBJECT,
                   P_ID             TYPE STXBITMAPS-TDID,
                   P_BTYPE          TYPE STXBITMAPS-TDBTYPE,
                   P_FORMAT         TYPE C,
                   P_TITLE          LIKE BDS_DESCRIPTION,
                   P_RESIDENT       TYPE STXBITMAPS-RESIDENT,
                   P_AUTOHEIGHT     TYPE STXBITMAPS-AUTOHEIGHT,
                   P_BMCOMP         TYPE STXBITMAPS-BMCOMP.
    DATA  L_FILE TYPE STRING..
    DATA: L_FILENAME        TYPE STRING,
          L_BYTECOUNT       TYPE I,
          L_BDS_BYTECOUNT   TYPE I.
    DATA: L_COLOR(1)        TYPE C,
          L_WIDTH_TW        TYPE STXBITMAPS-WIDTHTW,
          L_HEIGHT_TW       TYPE STXBITMAPS-HEIGHTTW,
          L_WIDTH_PIX       TYPE STXBITMAPS-WIDTHPIX,
          L_HEIGHT_PIX      TYPE STXBITMAPS-HEIGHTPIX.
    DATA: L_BDS_OBJECT      TYPE REF TO CL_BDS_DOCUMENT_SET,
          L_BDS_CONTENT     TYPE SBDST_CONTENT,
          L_BDS_COMPONENTS  TYPE SBDST_COMPONENTS,
          WA_BDS_COMPONENTS TYPE LINE OF SBDST_COMPONENTS,
          L_BDS_SIGNATURE   TYPE SBDST_SIGNATURE,
          WA_BDS_SIGNATURE  TYPE LINE OF SBDST_SIGNATURE,
          L_BDS_PROPERTIES  TYPE SBDST_PROPERTIES,
          WA_BDS_PROPERTIES TYPE LINE OF SBDST_PROPERTIES.
    DATA  WA_STXBITMAPS TYPE STXBITMAPS.
    PARAMETERS: P_FILE TYPE  RLGRAP-FILENAME OBLIGATORY.
    PARAMETERS: P_MATNR LIKE MARA-MATNR OBLIGATORY.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          FIELD_NAME = 'P_FILE'
        IMPORTING
          FILE_NAME  = P_FILE.
    START-OF-SELECTION.
      DATA: P_NAMEX    TYPE STXBITMAPS-TDNAME.
      MOVE P_MATNR TO P_NAMEX.
      DATA: FILELENGTH  TYPE  I.
      DATA: BEGIN OF L_BITMAP OCCURS 0,
              L(64) TYPE X,
            END OF L_BITMAP.
      L_FILE = P_FILE.
    *SELECT SINGLE * FROM STXBITMAPS WHERE TDNAME = P_NAMEX.
    *  IF SY-SUBRC NE 0.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                = L_FILE
          FILETYPE                = 'BIN'
        IMPORTING
          FILELENGTH              = L_BYTECOUNT
        TABLES
          DATA_TAB                = L_BITMAP
        EXCEPTIONS
          FILE_OPEN_ERROR         = 2
          FILE_READ_ERROR         = 3
          NO_BATCH                = 1
          GUI_REFUSE_FILETRANSFER = 4
          INVALID_TYPE            = 5
          NO_AUTHORITY            = 6
          UNKNOWN_ERROR           = 7
          BAD_DATA_FORMAT         = 8
          HEADER_NOT_ALLOWED      = 9
          SEPARATOR_NOT_ALLOWED   = 10
          HEADER_TOO_LONG         = 11
          UNKNOWN_DP_ERROR        = 12
          ACCESS_DENIED           = 13
          DP_OUT_OF_MEMORY        = 14
          DISK_FULL               = 15
          DP_TIMEOUT              = 16
          OTHERS                  = 17.
    *    call method l_bds_object->get_info
    *         exporting
    *              classname  = c_bds_classname
    *              classtype  = c_bds_classtype
    *              object_key = l_object_key
    *         changing
    *              signature  = l_bds_signature
    *         exceptions
    *              nothing_found  = 1
    *              others         = 2.
      DATA: P_DOCID          TYPE STXBITMAPS-DOCID.
      DATA: P_RESOLUTION  LIKE  STXBITMAPS-RESOLUTION.
      DATA: L_OBJECT_KEY TYPE SBDST_OBJECT_KEY.
      CALL FUNCTION 'SAPSCRIPT_CONVERT_BITMAP_BDS'
        EXPORTING
          COLOR                    = 'X'
          FORMAT                   = 'BMP'
          RESIDENT                 = P_RESIDENT
          BITMAP_BYTECOUNT         = L_BYTECOUNT
          COMPRESS_BITMAP          = 'X'
        IMPORTING
          WIDTH_TW                 = L_WIDTH_TW
          HEIGHT_TW                = L_HEIGHT_TW
          WIDTH_PIX                = L_WIDTH_PIX
          HEIGHT_PIX               = L_HEIGHT_PIX
          DPI                      = P_RESOLUTION
          BDS_BYTECOUNT            = L_BDS_BYTECOUNT
        TABLES
          BITMAP_FILE              = L_BITMAP
          BITMAP_FILE_BDS          = L_BDS_CONTENT
        EXCEPTIONS
          FORMAT_NOT_SUPPORTED     = 1
          NO_BMP_FILE              = 2
          BMPERR_INVALID_FORMAT    = 3
          BMPERR_NO_COLORTABLE     = 4
          BMPERR_UNSUP_COMPRESSION = 5
          BMPERR_CORRUPT_RLE_DATA  = 6
          OTHERS                   = 7.
      IF SY-SUBRC <> 0.
      ENDIF.
      CREATE OBJECT L_BDS_OBJECT.
      WA_BDS_COMPONENTS-DOC_COUNT  = '1'.
      WA_BDS_COMPONENTS-COMP_COUNT = '1'.
    WA_BDS_COMPONENTS-MIMETYPE   = C_BDS_MIMETYPE."application/octet-stream
      WA_BDS_COMPONENTS-COMP_SIZE  = L_BDS_BYTECOUNT.
      APPEND WA_BDS_COMPONENTS TO L_BDS_COMPONENTS.
      WA_BDS_SIGNATURE-DOC_COUNT = '1'.
      APPEND WA_BDS_SIGNATURE TO L_BDS_SIGNATURE.
      L_OBJECT_KEY = P_NAMEX.
      CALL METHOD L_BDS_OBJECT->CREATE_WITH_TABLE
        EXPORTING
          CLASSNAME  = C_BDS_CLASSNAME "DEVC_STXD_BITMAP
          CLASSTYPE  = C_BDS_CLASSTYPE "OT
          COMPONENTS = L_BDS_COMPONENTS
          CONTENT    = L_BDS_CONTENT
        CHANGING
          SIGNATURE  = L_BDS_SIGNATURE
          OBJECT_KEY = L_OBJECT_KEY
        EXCEPTIONS
          OTHERS     = 1.
      IF SY-SUBRC = 0.
        READ TABLE L_BDS_SIGNATURE INDEX 1 INTO WA_BDS_SIGNATURE
        TRANSPORTING DOC_ID.
        IF SY-SUBRC = 0.
          P_DOCID = WA_BDS_SIGNATURE-DOC_ID.
          WA_STXBITMAPS-TDNAME     = P_NAMEX.
          WA_STXBITMAPS-TDOBJECT   = 'GRAPHICS'.
          WA_STXBITMAPS-TDID       = 'BMAP'.
          WA_STXBITMAPS-TDBTYPE    = 'BCOL'.
          WA_STXBITMAPS-DOCID      = P_DOCID.
          WA_STXBITMAPS-WIDTHPIX   = L_WIDTH_PIX.
          WA_STXBITMAPS-HEIGHTPIX  = L_HEIGHT_PIX.
          WA_STXBITMAPS-WIDTHTW    = L_WIDTH_TW.
          WA_STXBITMAPS-HEIGHTTW   = L_HEIGHT_TW.
          WA_STXBITMAPS-RESOLUTION = P_RESOLUTION.
          WA_STXBITMAPS-RESIDENT   = P_RESIDENT.
          WA_STXBITMAPS-AUTOHEIGHT = P_AUTOHEIGHT.
          WA_STXBITMAPS-BMCOMP     = P_BMCOMP.
          INSERT INTO STXBITMAPS VALUES WA_STXBITMAPS.
        ENDIF.
      ENDIF.
    *--OAER
      DATA: SIGN    TYPE TABLE OF BAPISIGNAT WITH HEADER LINE,
          COMP    TYPE TABLE OF BAPICOMPON WITH HEADER LINE,
          CONTENT TYPE TABLE OF BAPICONTEN WITH HEADER LINE,
          CONTHEX TYPE TABLE OF SOLIX WITH HEADER LINE,
          DOCID TYPE SOFOLENTI1-DOC_ID,
          OBJKEY TYPE BAPIBDS01-OBJKEY,
          DOC_DATA TYPE  SOFOLENTI1.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME = L_FILE
          FILETYPE = 'BIN'
        TABLES
          DATA_TAB = CONTENT.
      BREAK FTELLI.
      OBJKEY = P_NAMEX.
      SIGN-DOC_COUNT = '00000001'.
      SIGN-PROP_NAME = 'BDS_DOCUMENTCLASS'.
      SIGN-PROP_VALUE = DOC_DATA-OBJ_TYPE.
      APPEND SIGN.
      SIGN-DOC_COUNT = '00000001'.
      SIGN-PROP_NAME = 'BDS_CONTREP'.
      SIGN-PROP_VALUE = ''.
      APPEND SIGN.
      SIGN-DOC_COUNT = '00000001'.
      SIGN-PROP_NAME = 'BDS_DOCUMENTTYPE'.
      SIGN-PROP_VALUE = 'BDS_IMAGE'.
      APPEND SIGN.
      SIGN-DOC_COUNT = '00000001'.
      SIGN-PROP_NAME = 'BDS_TITLE'.
      SIGN-PROP_VALUE = 'DIMITRIS'.
      APPEND SIGN.
      SIGN-DOC_COUNT = '00000001'.
      SIGN-PROP_NAME = 'DESCRIPTION'.
      SIGN-PROP_VALUE = DOC_DATA-OBJ_DESCR.
      APPEND SIGN.
      SIGN-DOC_COUNT = '00000001'.
      SIGN-PROP_NAME = 'LANGUAGE'.
      SIGN-PROP_VALUE = SYST-LANGU.
      APPEND SIGN.
      COMP-DOC_COUNT = 1.
      COMP-COMP_COUNT = 1.
    *    comp-comp_id = doc_data-obj_descr.
      COMP-MIMETYPE = 'image/jpeg'.
      COMP-COMP_SIZE = DOC_DATA-DOC_SIZE.
      APPEND COMP.
      CALL FUNCTION 'BDS_BUSINESSDOCUMENT_CREA_TAB'
        EXPORTING
          CLASSNAME       = 'PICTURES'
          CLASSTYPE       = 'OT'
          OBJECT_KEY      = OBJKEY "p_matnr
        TABLES
          SIGNATURE       = SIGN
          COMPONENTS      = COMP
          CONTENT         = CONTENT
        EXCEPTIONS
          NOTHING_FOUND   = 1
          PARAMETER_ERROR = 2
          NOT_ALLOWED     = 3
          ERROR_KPRO      = 4
          INTERNAL_ERROR  = 5
          NOT_AUTHORIZED  = 6
          OTHERS          = 7.
      COMMIT WORK AND WAIT.
      REFRESH: CONTENT, CONTHEX, SIGN, COMP.
    Thanks a lot ....

    Hi,
    You should be changing the URL passed to the URLRequest to
    point to your server. Please check the URL from the HTML page
    generated by your JSP and set the URLRequest URL accordingly.
    Hope this helps.

  • B&W - Unsupported Image Format

    Aperture continues to misbehave. I scan B&W photos in using VueScan software and a Canon flatbed scanner, import them into Aperture 3.1.1, clean up the photos and sometimes even am allowed to upload to SmugMug and THEN I get the Unsupported Image Format screen and can't do a bloody thing to my photos nor can I even bring them back. This doesn't pass a test of reasonableness.
    Anybody have a workaround? This only happens with B&W photos.

    Hi Vincent,
    Though the following refers to iPhoto, could Aperture have a similar issue as well? When scanning B&W negatives, photos and, documents, then attempting to bring them into iPhoto I had the same issue. iPhoto returned "Unsupported Image Format" or, they appeared as a rectangle filled with black the shape of the imported item. Those scanned items were saved as JPG files.
    Opened them in Photoshop Elements (PSE) I could see them. In PSE I found the item's Mode was Grayscale. Changing Mode > Grayscale to Mode > RGB, saving it iPhoto imported it as it should; life is good.
    Even though the files were B&W images iPhoto wanted the files formatted as RGB. Now when I scan I do check the Mode making sure the file is in RGB even though the image is grayscale.
    Cordially,
    RicD

  • Dynamic formating in smartforms

    I'm just curious if there is a possible to create a dynamic formatting in Smartforms. What I mean saying dynamic? Lets imaging that I've a strucure where I've following information;
    LINE_NUMBER
    TEXT
    This structure is used to build a table, where I can assign one or more text to one line.
    So my example data in this table will be:
    LINE_NUMBER | TEXT
    1 | my first item
    1 | first item description
    1 | some other text
    2 | second item
    2 | second item extended name
    2 | second item additional text
    2 | second item summary text
    and so one...
    So I can have varying texts number assigned into one line (max 8).
    Now I want to use paragraph, with 8 prepared tabs.
    Now the problem comes, how to pass this texts into tableline inside smartform and do not prepare separate lines for 1,2,3... elements?
    Any idea? It is possible to prepare data in variable which looks like:
    1,,my first item,,first item description,,some other text
    and display this data in such way, that commas will be recognized as tabs formatting in paragraph instead displaying them?

    hi..try this...
    create table->create a line type as required.
    loop at itab containing ur data.
    in the main area of the table create a row:
    right click on main area->table line
    in the output options of the row assign the line type from the drop down. in the condition of the row give the condition wa-LINE_NUMBER = 1.
    similarly create other rows(table lines) giving the conditions 1 to 8.
    that is you will have 8 table lines with conditions:
    row1 condition -> wa-LINE_NUMBER = 1
    row2 condition -> wa-LINE_NUMBER = 2
    row3 condition -> wa-LINE_NUMBER = 3
    row8 condition -> wa-LINE_NUMBER = 8
    so if line_number = 1 then row 1 will be use..
    if its 8 then row 8 will be used......
    inside the rows u can use different text elements with different para formats...

  • How to upload image files in sqlserver from jsp

    hi friends,
    i want to upload images to sqlserver how will i store url of the image or dorectly store the file in binary format, if we store in related path,plese give some ideas on store that paths in data base and how we store that image files in user directories.
    bye

    hi jay , I know that concept , but i dont know how to upload image files to server Please help me
    here i am giving my problem
    If any user register with site, he has the option to upload his image to the site, so i am using in html file upload option, But i dont know how to store that iamge into the server
    please give me suggestion
    regards
    sudhakar

  • Aperture 3: Unsupported image format shooting RAW with Canon T2i?

    I just took 200+ pics with my new camera and when I uploaded them it tells me the image format is unsupported. The metadata tab recognizes the camera and the EXIF info. Why can't I see the images? Is there a way to fix it?
    This is a major issue!
    Thanks

    Just an idea: your Aperture Library might need some service !
    http://support.apple.com/kb/HT3805
    Good Luck !

  • Aperture 2 Unsupported Image format?

    I'm a fairly new Aperture user, having received Aperture 2 as a gift and just installed it to my new iMac. When uploading RAW files from a Canon 5DII I get a message which reads: unsupported image format. I updated the app via Software Update in the Apple file. What do I need to do to get Aperture to work? I'm pretty sure it also won't recognize jpegs from my camera...
    Thanks for your help!!

    thanks.
    that's kinda my gut instinct about Ap2 and Lion too. I'm talking to Apple about this too but, guess what, they haven't come back with a conclusive answer yet - hence i'm scouring the forums to see if anyone else has already asked Apple the same question and got a definite yes or no out of them.
    i've bought and tested Lion and like many of the new features and dislike quite a few too, but given the choice, i'd probably stay on SL for Ap2 (and Front Row, Apple!!).   But my hand may be forced as my SL machine is dying and Apple say they won't repair but will give me a new MBP - which only comes with Lion - and Apple have confirmed that the new MBP firmware will not run SL...    hence my frantic scramble to see if I can still run Ap2 on Lion
    My gripes with Ap3 are too numerous to mention and here isn't really the place to discuss but biggies for me are the removal of gridlines from the Straightening tool and the removal of the ability to use a single keystroke to go from Ap3 windowed Browser mode to viewing a single image in Ap3 full screen - yes, you can go from Ap3 full-screen Browser mode to single image with a keystroke, but staying permanently in Ap3 full-screen Browser mode is not possible as many actions are not available in Ap3 full-screen mode and you have to go to Ap3 windowed mode to access them - in fact some actions actually kick you out of Ap3 full-screen Browser mode back into Ap windowed mode...
    if that makes any sense... had to insert 'Ap3' a lot to avoid confusion with the new Lion full-screen mode or i end up saying things like 'changing from Lion-Windowed-Aperture-Windowed mode to either Lion-Full-Screen-Aperture-Windowed mode or Lion-Full-Screen-Aperture-Full-Screen mode...'
    was hoping when they'd have tidied that up a bit with Lion - maybe Ap4?

  • Image Manager doesn't upload images (anymore)

    Hi All,
    We have recently upgraded our VC install from SP16 to SP17. Prior to this, the image manager uploaded images fine - small gifs for use in traffic lights. Following the upgrade to SP17, the upload button on the image manager appears to do nothing. I get no error, no warning and no entry in the image manager list.
    Note This did work in the past. I can still see ones I've done about a month ago.
    Any ideas?
    Cheers
    Richard

    Hi
    Have you tried with any other format like, 'jpg or jepg'? or its not working for any format?
    Regards
    Sandeep

  • "Unsupported Image Format" in Aperture and iPhoto....

    I recently purchased a Nikon D7100 and when I try and upload the RAW pictures to Aperture 3 and iPhoto it gives me the error message "unsupported image format".  It only happens with the RAW files, JPEG's are fine. Is this a problem with the program?

    You are just going to have to wait until Apple adds support for the D7100 RAW format.
    Allan

  • Nikon V1 RAW images: strange "unknown image format" message

    Hello,
    I run the latest version of Aperture on my MacBook under 10.7 Lion with a shared iPhoto library. I've purchased a Nikon V1 in late 2012 shooting in RAW (.NEF).
    During the import, Aperture recognized and converted all images correctly. However, a few days later, a strange thing happened: Some of the images display a black  "unknown image format" frame (in German "unbekanntes Bildformat"). This is weird because other pictures from the same series and with the same camera settings are displayed correctly. What I did was to export the broken files and reimported them – everything was okay then.
    Now, the same thing happened again in a different image series. This is what it looks like (first five images are shown correctly, I pixellated them manually before uploading):
    I could surely export and reimport the images like I did before but I'm afraid that this problem might reappear again and again. By the way, I never had this problem with NEFs from my old Nikon D50.
    Thanks for your help
    Christian

    My Camera RAW version is 4.0.3.
    Yes, I am switching between iPhoto and Aperture. The shared library is locally under /Users/Shared where my wife (with iPhoto) and me (mainly with Aperture) access it from our own user accounts. All images are managed on the internal HD, not referenced.
    When I just checked it from my wife's iPhoto account, the images were okay. Only Aperture showed the black frames and interestingly considered the images to be 900x600px.
    I then had to idea to select "Vorschaubild aktualisieren" (presumably "update preview image") from the context menu in Aperture and, to my surprise, it worked Didn't expect that it was a problem with the preview image because the error message suggested something different.
    I will additionally repair the library as LeonieDF suggested. Thanks to you and I hope that this won't happen too often.

  • Uploading Images to Picasa - they appear lighter

    When I upload images from Aperture to Picasa the images on Picasa appear to be somewhat lighter than the original in Aperture. The photos on Picasa appear to be overexpoxed by about 0.5 EV.
    I save my images in Aperture in RAW format. Can the conversion from RAW to JPG by Picasa be the issue?
    iMac   Mac OS X (10.4.10)   Apeture images are in RAW format

    Do the images look the same in Firefox/Camino and Safari? Except for Safari (and its close relatives Omniweb and Shiira) no other current browser on any operating system is color-managed.
    In non-color-managed applications photos will look different from computer to computer. Your best bet is to present the photos in a format that is close to the average calibration of monitors. sRGB is considered to be that for Windows PCs, for Mac systems using default factory settings you would need to use a variation of sRGB that uses a gamma of 1.8 (not sure if such a variation even exists) or calibrate the monitor using a gamma of 2.2. Or best use Safari which by virtue of being color-managed takes care of these differences.
    To get really consistent results you should calibrate and profile your monitor using a hardware calibration device.

  • Can not upload image of larger size in jsf

    i had some issues in file uploading. File uploading is working fine in my local machine and when i am using the www.mywebsite.com:8080/fileUpload.jsf
    but i can not upload images by using the following www.mywebsite.com/fileUpload.jsf
    Ie: without the port. I am using windows server and tomcat 5.5.27
    When i am trying to upload a bigger size image i am getting the following error
    I am using jsf(tomahawk)
    09:10:47,315 ERROR MultipartRequestWrapper:? - Exception while uploading file.
    org.apache.commons.fileupload.FileUploadException: Processing of multipart/form-data request failed. Socket read failed
    at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:384)
    at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:268)
    at org.apache.myfaces.webapp.filter.MultipartRequestWrapper.parseRequest(MultipartRequestWrapper.java:85)
    at org.apache.myfaces.webapp.filter.MultipartRequestWrapper.getParameter(MultipartRequestWrapper.java:181)
    at org.apache.myfaces.context.servlet.RequestParameterMap.getAttribute(RequestParameterMap.java:42)
    at org.apache.myfaces.context.servlet.AbstractAttributeMap.get(AbstractAttributeMap.java:91)
    at org.apache.myfaces.renderkit.html.HtmlResponseStateManager.getTreeStructureToRestore(HtmlResponseStateManager.java:159)
    at org.apache.myfaces.application.jsp.JspStateManagerImpl.getSequenceString(JspStateManagerImpl.java:260)
    at org.apache.myfaces.application.jsp.JspStateManagerImpl.restoreTreeStructure(JspStateManagerImpl.java:230)
    at org.apache.myfaces.application.jsp.JspStateManagerImpl.restoreView(JspStateManagerImpl.java:267)
    at org.apache.myfaces.application.jsp.JspViewHandlerImpl.restoreView(JspViewHandlerImpl.java:231)
    at org.apache.myfaces.lifecycle.RestoreViewExecutor.execute(RestoreViewExecutor.java:81)
    at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:95)
    at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:70)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:139)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:100)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:147)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at com.zerone.rrs.authentication.AuthenticationFilter.doFilter(AuthenticationFilter.java:100)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:172)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
    at org.apache.coyote.ajp.AjpAprProcessor.process(AjpAprProcessor.java:444)
    at org.apache.coyote.ajp.AjpAprProtocol$AjpConnectionHandler.process(AjpAprProtocol.java:472)
    at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1286)
    at java.lang.Thread.run(Unknown Source)

    Never mind . problem solved after i restarted

Maybe you are looking for

  • Started as a Blank Screen, now my MacBook Pro is useless.

    I have a serious issue that has cost me well over $2,000 now and I am getting ******. I am a programmer and I have multiple projects on my Mac that I have now lost. I do have a Time Machine backup but its weeks old. Didn’t realize Snow Leopard was th

  • Program Error in PS CS 4

    I keep getting the same error when I use Photoshop CS4, "Could not complete request because of a program error". I have reinstalled the program and deleted the preferences to no avail. Sometimes it takes a while for this error to show up but when I u

  • After a long in "stop" period, the internet connection (ethernet) doesn't work. before updating to mountain lion this problem didn't exist.

    after a long in "stop" period, the internet connection (ethernet) doesn't work. before updating to mountain lion this problem didn't exist.

  • MSCS installation

    Hi, Im planning for new MSCS clustter installation of ECC 6.0 with SQL 2005 on windows 2003 server. There is two nodes with one shred drive. Assuming both nodes are MSCS clustterd and I need to start with SAP installation - Had gone thru Inst docs to

  • How many LUNs

    Folks, I am seasoned in both RAC and ASM. I'm helping my team come up with a standard approach to LUN assignments and ASM disk group creation for Oracle 11.2. The Oracle documentation is quite simplistic and doesn't seem to cover things like mirror s