Regarding image uploading in alv

hi ,
how to pass logo in REUSE_ALV_COMMENTARY_WRITE

hi,
try this code for better understanding
TABLES DECLARATIONS                                                  *
TABLES: vbap.
DATA DECLARATIONS                                                    *
DATA: v_flag,
      v_data(50).
INTERNAL TABLES DECLARATIONS                                         *
DATA: BEGIN OF it_final OCCURS 0,
      vbeln LIKE vbap-vbeln,
      posnr LIKE vbap-posnr,
      audat LIKE vbak-audat,
      netwr LIKE vbak-netwr,
      dummy LIKE icon-id,        "for displaying icon
      color(3),                  "for applying color
      END OF it_final.
TYPE DECLARATIONS FOR ALV                                            *
TYPE-POOLS : slis.
*Type Declarations for Field Catalog
DATA : i_fldcat_head TYPE slis_t_fieldcat_alv,
       wa_fldcat_head TYPE slis_fieldcat_alv.
*Type Declarations for ALV Events
DATA : i_events TYPE slis_t_event,
       wa_event LIKE LINE OF i_events.
*Type Declarations for Layout Design
DATA : wa_layout TYPE slis_layout_alv.
*Type Declarations for Sorting Fields
DATA:  it_sort TYPE slis_sortinfo_alv OCCURS 0 WITH HEADER LINE.
DATA: LIST_HEADER TYPE SLIS_T_LISTHEADER.
*Type Declarations for Displaying Images on Grid
DATA : i_comment TYPE slis_t_listheader,
       wa_comment TYPE slis_listheader.
*Type Declarations for Grouping fields
DATA : wa_group TYPE slis_sp_group_alv,
       i_group TYPE slis_t_sp_group_alv.
SELECTION SCREEN                                                    *
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECT-OPTIONS: s_vbeln FOR vbap-vbeln..
SELECTION-SCREEN END OF BLOCK b1.
Event INITIALIZATION                                                *
INITIALIZATION.
  MOVE 'Developed by'(020) TO v_data.
Event AT SELECTION-SCREEN                                           *
AT SELECTION-SCREEN ON s_vbeln.
  IF NOT s_vbeln[] IS INITIAL.
    PERFORM validate_vbeln.
  ENDIF.
Event START-OF-SELECTION                                            *
START-OF-SELECTION.
  PERFORM get_data.
  PERFORM generate_fldcat.
  PERFORM generate_events.
  PERFORM generate_layout.
  PERFORM do_sort.
  PERFORM do_group.
Event END-OF-SELECTION                                              *
END-OF-SELECTION.
  IF v_flag = 'X'.
    PERFORM display_report.
  ELSE.
    MESSAGE 'NO DATA TO DISPLAY'(002) TYPE 'I'.
  ENDIF.
*&      Form  GET_DATA
FORM get_data.
SELECT a~vbeln
       a~posnr
       b~audat
       b~netwr
       INTO CORRESPONDING FIELDS OF TABLE it_final
       FROM vbap AS a
       INNER JOIN vbak AS b
       ON avbeln EQ bvbeln
       WHERE a~vbeln IN s_vbeln.
IF sy-subrc EQ 0.
    v_flag = 'X'.
  ELSE.
    v_flag = space.
  ENDIF.
  LOOP AT it_final.
    IF it_final-netwr EQ 0.
      it_final-dummy = '@0A@'.
      it_final-color = 'C61'.
    ELSEIF it_final-netwr GT 0 AND it_final-netwr LE 100.
      it_final-dummy = '@09@'.
      it_final-color = 'C71'..
    ELSEIF it_final-netwr GT 100.
      it_final-dummy = '@08@'.
      it_final-color = 'C51'.
    ENDIF.
    MODIFY it_final INDEX sy-tabix.
  ENDLOOP.
ENDFORM.                    " GET_DATA
*&      Form  DISPLAY_REPORT
FORM display_report.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
  I_INTERFACE_CHECK                 = ' '
  I_BYPASSING_BUFFER                = ' '
  I_BUFFER_ACTIVE                   = ' '
   i_callback_program                = sy-repid
  I_CALLBACK_PF_STATUS_SET          = ' '
  I_CALLBACK_USER_COMMAND           = ' '
  I_CALLBACK_TOP_OF_PAGE            = ' '
  I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
  I_CALLBACK_HTML_END_OF_LIST       = ' '
  I_STRUCTURE_NAME                  = I_STRUCTURE_NAME
   i_background_id                   = 'ENJOYSAP_LOGO'
  I_GRID_TITLE                      = I_GRID_TITLE
  I_GRID_SETTINGS                   = I_GRID_SETTINGS
   is_layout                         = wa_layout
   it_fieldcat                       = i_fldcat_head
  IT_EXCLUDING                      = IT_EXCLUDING
   it_special_groups                 = i_group
   it_sort                           = it_sort[]
  IT_FILTER                         = IT_FILTER
  IS_SEL_HIDE                       = IS_SEL_HIDE
  I_DEFAULT                         = 'X'
  I_SAVE                            = ' '
  IS_VARIANT                        = IS_VARIANT
   it_events                         = i_events
  IT_EVENT_EXIT                     = IT_EVENT_EXIT
  IS_PRINT                          = IS_PRINT
  IS_REPREP_ID                      = IS_REPREP_ID
  I_SCREEN_START_COLUMN             = 0
  I_SCREEN_START_LINE               = 0
  I_SCREEN_END_COLUMN               = 0
  I_SCREEN_END_LINE                 = 0
  I_HTML_HEIGHT_TOP                 = 0
  I_HTML_HEIGHT_END                 = 0
  IT_ALV_GRAPHICS                   = IT_ALV_GRAPHICS
  IT_HYPERLINK                      = IT_HYPERLINK
  IT_ADD_FIELDCAT                   = IT_ADD_FIELDCAT
  IT_EXCEPT_QINFO                   = IT_EXCEPT_QINFO
  IR_SALV_FULLSCREEN_ADAPTER        = IR_SALV_FULLSCREEN_ADAPTER
IMPORTING
  E_EXIT_CAUSED_BY_CALLER           = E_EXIT_CAUSED_BY_CALLER
  ES_EXIT_CAUSED_BY_USER            = ES_EXIT_CAUSED_BY_USER
  TABLES
    t_outtab                          = it_final
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.                    " DISPLAY_REPORT
*&      Form  generate_fldcat
FORM generate_fldcat.
  wa_fldcat_head-fieldname = 'VBELN'(003).
  wa_fldcat_head-col_pos = '1'.
  wa_fldcat_head-just = 'C'.
  wa_fldcat_head-outputlen = '10'.
  wa_fldcat_head-seltext_m  = 'sales document'(004).
  wa_fldcat_head-ddictxt = 'S'.
  APPEND wa_fldcat_head TO i_fldcat_head.
  wa_fldcat_head-fieldname = 'POSNR'(005).
  wa_fldcat_head-col_pos = '2'.
  wa_fldcat_head-just = 'C'.
  wa_fldcat_head-outputlen = '6'.
  wa_fldcat_head-seltext_m  = 'Sales Docu It'(006).
  wa_fldcat_head-ddictxt = 'S'.
  APPEND wa_fldcat_head TO i_fldcat_head.
  wa_fldcat_head-fieldname = 'AUDAT'(007).
  wa_fldcat_head-col_pos = '3'.
  wa_fldcat_head-just = 'C'.
  wa_fldcat_head-outputlen = '8'.
  wa_fldcat_head-seltext_m  = 'Document Date'(008).
  wa_fldcat_head-ddictxt = 'S'.
  APPEND wa_fldcat_head TO i_fldcat_head.
  wa_fldcat_head-fieldname = 'NETWR'(009).
  wa_fldcat_head-col_pos = '4'.
  wa_fldcat_head-just = 'C'.
  wa_fldcat_head-outputlen = '15'.
  wa_fldcat_head-seltext_m  = 'Net Value'(010).
  wa_fldcat_head-ddictxt = 'S'.
  APPEND wa_fldcat_head TO i_fldcat_head.
ENDFORM.                    " generate_fldcat
*&      Form  generate_layout
FORM generate_layout.
wa_layout-colwidth_optimize = 'X'.           "OPTIMIZING FIELD WIDTH
  wa_layout-zebra = 'X'.                       "PUTTING ZEBRA COLORS
  wa_layout-confirmation_prompt = 'X'.         "DISPLAYS CONFIRMATION DIALOG
  wa_layout-flexible_key = 'X'.                "KEY COLUMN IS MOVABLE
  wa_layout-totals_text = 'Totals'(011).       "DISPLAYS TOTALS TEXT
  wa_layout-subtotals_text = 'Sub Totals'(012)."DISPLAYS SUB TOTALS TEXT
  wa_layout-info_fieldname = 'COLOR'(013).          "APPLYING COLORS TO ROWS
ENDFORM.                    " generate_layout
*&      Form  do_sort
FORM do_sort.
it_sort-fieldname = 'VBELN'(014).
  it_sort-tabname = 'IT_FINAL'.
  it_sort-up = 'X'.
  it_sort-subtot = 'X'.
  APPEND it_sort.
ENDFORM.                    " do_sort
*&      Form  generate_events
FORM generate_events.
  CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
  EXPORTING
    I_LIST_TYPE           = 0
   IMPORTING
     et_events             = i_events
   EXCEPTIONS
     list_type_wrong       = 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.
  IF NOT i_events[] IS INITIAL.
    READ TABLE i_events INTO wa_event WITH KEY name = 'TOP_OF_PAGE'.
    wa_event-form = 'GENERATE_USERCOMMAND'.
    MODIFY i_events FROM wa_event INDEX sy-tabix.
    READ TABLE i_events INTO wa_event WITH KEY name = 'END_OF_LIST'.
    wa_event-form = 'GENERATE_USERCOMMAND_FOOTER'.
    MODIFY i_events FROM wa_event INDEX sy-tabix.
  ENDIF.
ENDFORM.                    " generate_events
*&      Form  GENERATE_USERCOMMAND
      Displaying Header-Text and Logo on Grid
FORM GENERATE_USERCOMMAND .
CLEAR I_COMMENT[].
WA_COMMENT-TYP = 'H'.
WA_COMMENT-INFO = 'Sales Order Information'(017).
APPEND WA_COMMENT TO I_COMMENT.
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      IT_LIST_COMMENTARY = LIST_HEADER
      I_LOGO             = 'ENJOYSAP_LOGO'.
    I_END_OF_LIST_GRID       = 'X'.
ENDFORM.                    " GENERATE_USERCOMMAND
*&      Form  GENERATE_USERCOMMAND_FOOTER
FORM GENERATE_USERCOMMAND_FOOTER .
  CLEAR I_COMMENT[].
  WA_COMMENT-TYP = 'S'.
  WA_COMMENT-KEY = V_DATA.
  WA_COMMENT-INFO = 'Fareeda Tabassum'(016).
  APPEND WA_COMMENT TO I_COMMENT.
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      IT_LIST_COMMENTARY       = I_COMMENT
     I_LOGO                   = ''
      I_END_OF_LIST_GRID       = 'X'.
ENDFORM.                    " GENERATE_USERCOMMAND_FOOTER
*&      Form  GENERATE_USERCOMMAND
      Displaying Header-Text and Logo on Grid
FORM GENERATE_USERCOMMAND1.
  CLEAR I_COMMENT[].
  WA_COMMENT-TYP = 'H'.
  WA_COMMENT-INFO = 'Sales Order Information'(017).
  APPEND WA_COMMENT TO I_COMMENT.
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      IT_LIST_COMMENTARY = 'i_comment'.
     I_LOGO             = 'ENJOYSAP_LOGO'.
    I_END_OF_LIST_GRID       = 'X'.
ENDFORM.                    " GENERATE_USERCOMMAND
*&      Form  do_group
FORM do_group.
CLEAR i_group.
  wa_group-sp_group = 'A'.
  wa_group-text  = 'NETWR'.
  APPEND wa_group TO i_group.
ENDFORM.                    " do_group
*&      Form  validate_vbeln
FORM validate_vbeln.
SELECT VBELN UP TO 1 ROWS
   INTO (VBAP-VBELN)
   FROM VBAP
   WHERE VBELN IN S_VBELN.
  ENDSELECT.
  IF SY-SUBRC NE 0.
    MESSAGE 'Invalid Range of Material'(015) TYPE 'I'.
  ENDIF.
ENDFORM.                    " validate_vbeln
to see logos goto-se78 and just copy the logo whtever u want ant paste at commentey write (parameter---logo) in single cots . reward points if useful to u. ook thansks and have a nice day

Similar Messages

  • Image upload/retrieve turorial not working

    The tutorial regarding image upload retrieval in the following link is not working:
    http://developers.sun.com/prodtech/javatools/jscreator/reference/tips/2/retrieve_binary_data.html
    I get the following error:
    Java.sql.SQLException: Error in allocating a connection. Cause: Connection could not be allocated because: java.security.PrivilegedActionException : Error opening socket to server localhost on port 21527 with message : null
    Thanks

    Hi Sakthi,
    Finally I managed to make it work with the following modifications:
    (1) In the servlet jdbc/Order> jdbc/Travel
    (2) The datasource names for the rowsets in the session as Travel (instead of Order)
    Another observation I made is: If you bind the url of the image component (which is on the datatable column) to a (for example applicationbean) property which retruns the necessary url, it is very convinent to handle the datatable layout visually. (Otherwise if you go to the datatable layout it shows some error message popup)
    Thanks.

  • Multiple Image Uploading Question

    Please forgive my ignorance here but I saw the question on multiple image uploading and this is something i have been trying to do for a few days now without any success.
    I am using CS3 with ADDT and PHP
    I want to allow my users to be able to upload say 5 pictures at a time, each user has multiple photo albums the names of which are stored in mysql table, the image name is stored in a different table with a reference to the album id.
    So, I assume that i put an insert record on the page, I followed the usual process used to have a single image upload and thought it would give me or add the extra file field options on the form when telling the multi upload to allow 5 images to be uploaded, not the case. Do i have to create a form on the page first with 5 file fields or am i just missing the plot here.
    Sorry if this is just something that seems simple but i just don't seem to be able to get it to work at all. I have no working example to look over and have serach google to see if there are any tutorials for doing this but can't find any at all.
    Thank you in advance of any help and guidance given
    Regards
    Ray

    Hi Günter
    Thank you for your reply and also for the great tutorial site you run which has helped me quite a lot with several things.
    ok, so i am maybe a little confused here, so what is the multiple image uploader for if not for uploading multiple images, and how does it give you the option to select more than one file or is it that you can't use it when inserting the image file into a database?
    Please forgive my ignornace again, i can see when i have tried using the multiple image upload thatit puts a text link called upload, what is that for because it doesn't seem to do anything on the page i have tried it on?
    Kind Regards
    Ray

  • Problem in Image uploading through a view -- URGENT

    Hii Experts,
    I am facing very strange problem while uploading a image file (.JPG file) thru a web dynpro view.
    I am accepting a image file from view and uploading it to a ftp server.
    There are two abnormal results I have observed. It does NOT  happen for every image upload. But it has been observed to happen during peak Internet hrs. (image size can range from 1MB to 7-8 MBs)
    When 'Upload' button is clicked, one of the following thing happens:-
    1.  After taking loooong time (processing circle rotates), browser screen goes totally blank. That is, browser goes into state as if no page is opened (white screen)
    2. After taking loooong time, empty form re-appears. ( ie the view in which i had submitted data and pressed 'Upload')
    I have tried tracing errors in default trace. but no error or exception is displayed !!!
    Following is the code i'm using for uploading file. ==>
    try {
    URL myUrl = new URL("ftp://<some address>");
    FtpURLConnection myConnection = new FtpURLConnection(myUrl);
    myConnection.connect();
    OutputStream out = myConnection.getOutputStream();
    out.write(wdContext.currentPhotosElement().getPhoto1());
    out.close();
    myConnection.close();
    } catch (Exception e) {
    System.err.println("\n\n$$$$$$$$$$$$$Exception in image upload $$$$$$$$$$$$$\n\n");
    e.printStackTrace();
    Please help me as this system is live and lot of users are complaining as they are not able to upload their images..
    Awaiting for reply ..
    regards,
    Amey
    Edited by: Amey Mogare on May 28, 2008 2:14 PM
    Edited by: Amey Mogare on May 28, 2008 2:17 PM

    In SE78 when we click on the graphics and then click on the BMAP ( Bitmap Images ) then the bdc is not cathcing the screen and its giving an error
    This is the error message which i am recieving in it .
    00 343 S Cursor field RSTXT-TDNAME . does not exist in the screen
    Please suggest me that is there any way for the same or else is there any BAPI for the same .
    Regards
    Shankar

  • Image Upload probelm - Very Urgent. Pls help!!!

    Hi All,
    I am facing very strange problem while uploading a image file (.JPG file) thru a web dynpro view.
    I am accepting a image file from view and uploading it to a ftp server.
    There are two abnormal results I have observed. It does NOT happen for every image upload. But it has been observed to happen during peak Internet hrs. (image size can range from 1MB to 7-8 MBs)
    When 'Upload' button is clicked, one of the following thing happens:-
    1. After taking loooong time (processing circle rotates), browser screen goes totally blank. That is, browser goes into state as if no page is opened (white screen)
    2. After taking loooong time, empty form re-appears. ( ie the view in which i had submitted data and pressed 'Upload')
    I have tried tracing errors in default trace. but no error or exception is displayed !!!
    Following is the code i'm using for uploading file. ==>
    try {
    URL myUrl = new URL("ftp://<some address>");
    FtpURLConnection myConnection = new FtpURLConnection(myUrl);
    myConnection.connect();
    OutputStream out = myConnection.getOutputStream();
    out.write(wdContext.currentPhotosElement().getPhoto1());
    out.close();
    myConnection.close();
    } catch (Exception e) {
    System.err.println("\n\n$$$$$$$$$$$$$Exception in image upload $$$$$$$$$$$$$\n\n");
    e.printStackTrace();
    Please help me as this system is live and lot of users are complaining as they are not able to upload their images..
    Awaiting for reply ..
    regards,
    Amey

    Hi,
    Does anybody have any idea about how the file data (byte stream) flows from Client's machine browser to Web Dynpro's context's element??
    As per my observation and tracing, it is first loading byte array frm client's machine to view's corresponding context node.. And then only it is proceeding with further actions.
    Now in my case, user may upload files ranging frm size 6MB to 10MB, web dynpro application either refreshes or times out during this transfer. I didnt even started FTP process to upload byte[] to remote server !!!
    So how can we increase this speed of transfer from  client's machine to context element ??
    regards,
    Amey

  • ZCM 11.2.3a Image upload error [directory does not exist]

    We are uploading a number of images to the server.
    A lot of these are large images and the workstation has been build as a VMWare workstation.
    So far with the exception of one, all have uploaded successfully.
    One image is failing to upload when it is about halfway through. The error displayed on the workstation says "Directory not found"
    Looking at the novell-pbserv.log I see the following error message related to the image upload.
    RWCC unknown compression command code: 0x4000000 (67108864)
    RIP2 RWCC faiolure 3, 1851,
    Any help /ideas appreciated.
    Thanks
    Mark

    Hi Shaun,
    No we are using the the ZCM 11.2 pxe boot files.
    Although we have upgraded to ZCM 11.2.3a the image files from 11.2.3.a and the latest October Imaging update are crashing.
    I did post on the forums regards this and have a SR open for it. # 10865188291
    We are testing an upload of this particular image for the 3rd time. The other images have uploaded without issues.
    They have run a defrag on the disk prior to uploading.
    Regards
    Mark

  • Fetch Graphic Image uploaded in QM01 into smartforms.

    Hi All,
    Is there any way to fetch Grpahic images uploaded in QM01 Transaction Code and display the same in smartforms.
    Note: Images are Uploaded while creating Notification through QM01 Tcode by clicking SERVICES FOR OBJECTS--> CREATE -->CREATE ATTACHMENT  on left side of title bar_CREATE NOTIFICATION: COMPLAINT AG.VENDOR_
    Regards,
    Nagesh.

    There are many threads/documents about that, search for SO_DOCUMENT_READ_API1 for example.
    But first of all, read Note 927407 - Determining the content of GOS and SAPoffice documents

  • Multiple Image Upload not working on macs

    Hello everybody,
    I have searched everywhere for an answer to this issue and I'm not sure if there is a solution yet.
    I am hoping someone reads this and tells me if either I need to use another product or post a fix for this to work.
    I am developing a website for a photographer who needs to upload the pictures he takes for his clients to review on his website.
    So on the backend I have created an application where he logs in and creates a new client and then uploads multiple images to that client's folder.
    I am of course developing the site in ADDT version 1.0.1. in Dreamweaver CS4.
    Everything works as expected except for the image upload part, where he is unable to upload even a single image.
    He is using Mac OS X and Safari 3 to access his site.
    I use a PC and can upload images perfectly, but the whole purpose of the website is for him to be able to upload images without me.
    I read somewhere that ADDT's Multiple Image upload did not work on Macs because of the way that the OS handles image uploads to the server via HTTP. I also know that Flash v.10 had an issue with this behaviour in the past, but that it's been fixed with ADDT's v. 1.0.1, which is true since as I said I am able to upload images from my PC using that Flash version.
    There is a product called MultiPowUpload from Element-IT (http://www.element-it.com/MultiPowUpload.aspx) that seems to do the exact same thing as ADDT's Multiple Image Upload, and I have tested the Demo version both on Mac and PC and works perfectly well.
    I really would like my ADDT behaviour to work, first because I already have the whole site developed in it, plus I am used to the software already, and also because Element-IT's product is a bit pricey for a multiple server license (which I would need for other sites I plan to develop for Mac users).
    Any thoughts or pointers you might have will be greatly appreciated.
    Thank you in advance.
    Luis Herrero.

    Thanks a lot for your replies and helpful ideas.
    It turns out that for some strange reason the problem was with the hosting provider.
    I have moved another site which was not working with Macs either to a new provider and everything works now as it should be, without changing any files at all.
    I have in fact v.1.0.1 in both those sites (those were the first things I checked before posting here) and Flash Player v. 10 both on the Mac and PC, so it will remain a mystery as to why the server behavior did not work with that particular host on Macs.
    Thanks again.
    Best regards.

  • Image upload through Portals?

    Hi All,
    I have a image field in my table and integrated with portals...I can able to see the existed images in the iviews, but I can't able to upload a image from portals.
    I didn't find any attachment button next to image value, please let me know how can I can add images through portals...
    Regards,
    Pooja

    This seems odd.... don't you get any options as to enable the image upload? Try looking at the iview properties, as where you set up the size, heigth etc, instead of the options given on the iView wizard.
    for instance, add the iview to a page. Open the page for edition and click on the iView to select it. Click on properties and on the right you should see them. Do you get anything useful there?
    I am currently using SP04 but I assisted to the SP5 webex presentation, and is stated there that this feature is in place
    Regards
    Alejandro

  • Can I reduce a Template image upload time to Azure RemoteApp ?

    Can I reduce a Template image upload time to Azure RemoteApp ?
    I want to reduce from 2 hours to 1 hour.
    Today, Jan 14, 2015's upload time is over 2 hours.
    Environment
      Region : Japan West.
      Vhd size: 43 GB
      Upload Tool: Upload-AzureRemoteAppTemplateImage.ps1
    Result
      Elapsed time for the operation= 00:32:38
      Elapsed time ffor upload = 01:48:29
      Traffice rate = 58 Mbps
    Regards,
    Yoshihiro Kawabata

    Hi Yoshihiro,
    1. You can reduce the Hash calculation time by storing the vhd on faster hard drive(s) and using faster CPU.  For that size vhd you should be able to get it down to less than 10 minutes for the calculation time.
    2. You can reduce the upload time by using faster Internet connection that is as close as possible to Azure Japan West facility, with low latency and no packet loss.  Under excellent conditions (high bandwidth link, low latency, no loss) you should
    be able to get several hundred Mbps throughput. 
    -TP

  • How do I upload data alongside my image upload?

    How do I upload additional variables alongside an image upload? My code doesn't seem to be working.
                        temp.upload(new URLRequest(serverURL));
                        var variables:URLVariables = new URLVariables();
                                  variables.my_name = "Jackson" ;
                                  variables.my_state = "Missisippi" ;
                        var request:URLRequest = new URLRequest(serverURL);
                        request.method = URLRequestMethod.POST;
                        // Put parameters into request.data
                        request.data = variables;
                        // Perform the upload
                        temp.upload(request);
    Thanks!

    hi, i dont know if this can help you, i made the script to upload image and data. hiere is the files check if this help you.
    if no please explain more your question.
    FIles atached: http://www.faraday.mx/Adobe/uploadPicAndData.rar
    regards.

  • Image upload functionality - SharePoint 2013 OOB

    Hello Everyone
    How can i achieve Image upload functionality  in SharePoint 2013 OOB feature ?
    Regards
    Prashanth
    SharePoint Administrator

    either you can provide a link to asset library from home page  to upload images or directly add the asset listview web part to the page to provide the upload option and view. You can check below links for more details about asset library.
    http://community.bamboosolutions.com/blogs/sharepoint-2013/archive/2013/02/21/how-to-use-asset-library-in-sharepoint-2013.aspx
    https://www.nothingbutsharepoint.com/sites/eusp/pages/sharepoint-asset-library.aspx
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • MultipartParser vs MultipartRequest for Image Upload

    We are facing a weird issue. We were using MultipartParser for all our file uploads till now. We now need to upload image files and we are facing issues. We came across various knowledge base articles that said we can't upload an image using MultipartParser.
    If that is true, has anyone used MultipartRequest and have got the image uploaded to the server?
    Once the image is uploaded we need to create a thumbnail out of it. We are using javax.imageio.* package to do that.
    Any help is appreciated.

    If that is true, has anyone used MultipartRequest and
    have got the image uploaded to the server?
    Unless you're using Creator 2004Q2, you should take a look at the file upload component included with Creator 2.
    Best regards.
    Antonio.

  • Js-error while executing Multiple Image Upload wizard

    If i want to save the configured window of Multiple Image Upload with Save to Database wizard i get this js-error: "While executing onClick in MIUploadWSaveWizard.htm, a JavaScript error occured".
    can someone help?
    thanx
    peter

    That again would be more of a question for the Cold Fusion group.
    Try http://forums.adobe.com/community/coldfusion/coldfusion_administration
    Those people will be able to help you out more.
    Brad Lawryk
    Adobe Community Expert, Dreamweaver
    Adobe Usergroup Manager, Northern British Columbia Adobe User Group

  • How do I add image upload to web app edit template?

    How do I add image upload to web app edit template. When creating fields I am selecting image from the field type. But the only way to upload and image is when I create the web app item within the admin. The option to upload an image is not available when the user submit web form opens.
    Wont send any of these questions through this email anymore but really needed assistance.
    Thanks,
    Gordon

    On the Details tab of the Web App setup, under Web App Item Options; have you ticked "Allow File Upload" and specified a Default Upload Folder?

Maybe you are looking for

  • BT Netprotect Plus - Where are stored passwords on...

    I have just upgraded my McAfee BT Netprotect Plus software. The previous version of this software had a password vault (which was accessed through the advanced option under the Internet options).  This was a secure way of keeping a list of all user n

  • TS2446 how can you change your security questions on itunes?

    i have been locked out of my apple id on itunes, and i dont know how to change my security questions please help!!

  • How to select Key figs in Variable Selection of the BEx Report

    Hi, My requirement is User want to execute Report on Selected Key figures. Eg. User want to execute Report where the Revenue = $150. This is an example similarly user want to filter  their own values < , >, = ....etc. User is end user they dont know

  • Bdc session

    hi experts,   in call transaction  method iam uploading the data.suppose vendor details.when i run i got some errors ythat we can find by using msgcoll.in that i got 1,2,recrd is successfull and 3rd one is failed 4th,5th is success.now how can i hand

  • SAP Discovery System

    Hi Gurus, We will be implementing Discovery System in the upcoming days. Since I'm new to this application, can anybody enlighten me how this system works and how could this affect our current SAP Landscape. I will also be needing Hardware/OS require