Adding and editing attachment

workflow is based on "Sample Content Services - ReviewAndApproval"
- process is initiated with 1 attachment by starting the process in content services
- in workspace:
- edit comment
- add 1 attachment
- "Save" - Submit
- reopen the task:
- comment has been saved
- added attachment has been lost
additonal requiremnt (how to solve that in workspace?):
- open attachment (e.g. a word document)
- edit the attachment in word and save it to the attachment-list
Regards
Martin

The pdf passed from content services to workspace is a container for attachments. Workspaceusers should be able to:
a) edit those attachments and save the new version as pdf-attachment
b) add additional attachments
I know that workspace supports attachments but separated from pdf. In contrary the ReviewAndApproval-Process invoked in content services provides a pdf as container for attachments.
Regards
Martin

Similar Messages

  • Workflow API: adding and accessing file Attachments to a Human Task

    Hi there,
    I am using the Workflow Services Java API (11.1.1) for SOA Suite to access and manipulate human tasks. I would like to be able to access and add file attachments to existing human tasks. I am using the methods provided in the AttachmentType interface.
    When adding an attachment, the problem I am running into is that an attachment does created and associated with the task, however it is empty and has no content. I have attempted both setting the input stream of the attachment, as well as the content string and in each case have had no success.
    I have successfully added and accessed an attachment using the worklist application, however when trying to access the content of this attachment through code I receive an object with mostly null/0 values throughout, apart from the attachment name.
    As the API's are not overly rich in documentation I may well be using them incorrectly. I would really appreciate any help/suggestions/alternatives in dealing with BPEL task attachments.
    Thanks
    The code I am using resembles:
    List attachments = taskWithAttachments.getAttachment();
    for(Object o : attachments){
    AttachmentType a = (AttachmentType) o;
    String content = a.getContent(); +// NULL+
    InputStream str = a.getInputStream(); +// NULL+
    String name = a.getName(); +// Has the attachment name+
    String mime = a.getMimeType(); +// Has the mime type+
    long size = a.getSize(); +// 0+
    Edited by: 855489 on May 2, 2011 4:23 PM
    Edited by: 855489 on May 2, 2011 8:48 PM

    I am also facing the same issue, using 11.1.1.6, anyone managed to solve this?
    Regards
    Venkat

  • Photos Forgot Their Crop and Edits in iOS 8

    I have an iPhone 6 Plus running iOS 8.1 with iCloud Photo Library (Beta) enabled and "Download and Keep Originals" selected. And as expected, I have all my photos from my previous iPhone on the new phone.
    But I noticed that all my old photos "forgot" the crops and other edits that I did. I have hundreds of photos that I carefully cropped and edited over the years and this is very annoying. The interesting thing is that when I look at the thumbnail of the photo, it still shows my old crops and edits, but when I tap it to open it, it shows the entire uncropped, unedited photo. It seems that my crop and editing info is still there somewhere, but it doesn't show when I open the photo.
    Anyone else have this problem? Any solutions? Am I missing something?

    Hi sueb21,
    Welcome to the Apple Support Communities!
    If you are using iCloud Photo Library Beta there are some differences from what you may be use to. Please read over the attached article for information on how your pictures are now organized and for how you can turn it off if you choose to do so.
    iCloud Photo Library beta FAQ - Apple Support
    What happened to the My Photo Stream and Camera Roll albums?
    The Camera Roll and My Photo Stream album are replaced with an All Photos album, which gives you the same compact scroll view, now with all your photos and videos organized by the date they were added. Learn more about finding photos in iOS 8.
    After you enable iCloud Photo Library, all your original photos and videos are organized in one library. My Photo Stream will upload recent photos to share with your other devices, but iCloud Photo Library stores your originals. See how to upload originals below.
    Have a great day,
    Joe

  • Here's how to do ALV (OO) with dynamic fcat, int table and editable data

    Hi everybody
    Here's a more useful approach to ALV grid with OO using dynamic table, data NOT from DDIC, dynamic FCAT and how to get changed lines from the grid when ENTER key is pressed.
    It's really not too dificult but I think this is more useful than the ever present SFLIGHT methods from the demos.
    This also defines a subclass of cl_gui_alv_grid so you can access the protected attributes / methods of that class.
    You don't need to add the class via SE24 -- done fron this ABAP.
    When you run it click Edit for the first time.
    After editing data press ENTER and the break point should bring you into the relevant method.
    Code developed on NW2004S trial version but also works on rel 6.40 on a "Real" system.
    The code should work without any changes on any system >=6.40.
    All you need to do is to create a blank screen 100 via SE51  with a custom container on it called CCONTAINER1.
    The rest of the code can just be uploaded into your system using the SE38 upload facility.
    When running the program click on the EDIT button to enable the edit functionality of the grid.
    Change your data and when you press ENTER you should get the break-point where you can see the original table and changed rows.
    This program is actually quite general as it covers Dynamic tables, building a dynamic fcat where your table fields are NOT in the DDIC, intercepting the ENTER key via using an event, and accessing the protected attributes of the cl_gui_alv_grid by defining a subclass of this class in the abap.
    I've seen various questions relating to all these functions but none in my view ever answers the questions in a simple manner. I hope this simple program will answer all these and show how using OO ALV is actually quite easy and people shouldn't be scared of using OO.
    Have fun and award points if useful.
    Cheers
    Jimbo.
    <b>PROGRAM zdynfieldcat.
    Simple test of dynamic ITAB with user defined (not ddic) fields
    Build dynamic fcat
    use ALV grid to display and edit.
    *When edit mode set to 1 toolbar gives possibility of adding and
    *deleting rows.
    *Define subclass of cl_gui_alv_grid so we can use protected attributes
    *and methods.
    Add event handler to intercept user entering data and pressing the
    *ENTER key.
    When enter key is pressed get actual value of NEW table (all rows)
    rather than just the changed data.
    *use new RTTI functionality to retrieve internal table structure
    *details.
    Create a blank screen 100  with a custom container called CCONTAINER1.
    James Hawthorne
    include <icon>.
    define  any old internal structure  NOT in DDIC
    types: begin of s_elements,
           anyfield1(20) type c,
           anyfield2(20) type c,
           anyfield3(20) type c,
           anyfield4(20) type c,
           anyfield5(11) type n,
           end of s_elements.
    types:  lt_rows  type lvc_t_roid.
    Note new RTTI functionality allows field detail retrieval
    at runtime for dynamic tables.
    data:   wa_element type s_elements ,
            wa_data type s_elements,
            c_index type sy-index,
            c_dec2 type s_elements-anyfield5,
            wa_it_fldcat type lvc_s_fcat,
            it_fldcat type lvc_t_fcat,
            lr_rtti_struc TYPE REF TO cl_abap_structdescr,    "RTTI
            lt_comp TYPE cl_abap_structdescr=>component_table,"RTTI
            ls_comp LIKE LINE OF lt_comp,                     "RTTI
            zog  like line of lr_rtti_struc->components,      "RTTI
            struct_grid_lset type lvc_s_layo,
            l_valid  type c,
            new_table type ref to data.
    field-symbols: <dyn_table> type standard table,
                   <actual_tab> type standard table,
                   <fs1> type ANY,
                   <FS2> TYPE TABLE.
    data: grid_container1 type ref to cl_gui_custom_container.
    class lcl_grid_event_receiver definition deferred.
    data: g_event_receiver type ref to lcl_grid_event_receiver.
    data: ls_modcell type LVC_S_MODI,
          stab type ref to data,
          sdog type  s_elements.      .
    class lcl_grid_event_receiver definition.
      public section.
        methods:
        handle_data_changed
             for event data_changed of cl_gui_alv_grid
                 importing er_data_changed,
           toolbar for event toolbar of cl_gui_alv_grid
                     importing e_object
                               e_interactive,
          user_command for event user_command of cl_gui_alv_grid
                     importing e_ucomm.
    endclass.
    *implementation of Grid event-handler class
    class lcl_grid_event_receiver implementation.
    method handle_data_changed.
    code whatever required after data entry.
    various possibilites here as you can get back Cell(s) changed
    columns or the entire updated table.
    Data validation is also possible here.
    perform check_data using er_data_changed.
    endmethod.
    Method for handling all creation/modification calls to the toolbar
      method toolbar.
        data : ls_toolbar type stb_button.
    Define Custom Button in the toolbar
        clear ls_toolbar.
        move 0 to ls_toolbar-butn_type.
        move 'EDIT' to ls_toolbar-function.
        move space to ls_toolbar-disabled.
        move 'Edit' to ls_toolbar-text.
        move icon_change_text to ls_toolbar-icon.
        move 'Click2Edit' to ls_toolbar-quickinfo.
        append ls_toolbar to e_object->mt_toolbar.
        clear ls_toolbar.
        move 0 to ls_toolbar-butn_type.
        move 'UPDA' to ls_toolbar-function.
        move space to ls_toolbar-disabled.
        move 'Update' to ls_toolbar-text.
        move icon_system_save to ls_toolbar-icon.
        move 'Click2Update' to ls_toolbar-quickinfo.
        append ls_toolbar to e_object->mt_toolbar.
        clear ls_toolbar.
        move 0 to ls_toolbar-butn_type.
        move 'EXIT' to ls_toolbar-function.
        move space to ls_toolbar-disabled.
        move 'Exit' to ls_toolbar-text.
        move icon_system_end to ls_toolbar-icon.
        move 'Click2Exit' to ls_toolbar-quickinfo.
        append ls_toolbar to e_object->mt_toolbar.
      endmethod.
      method user_command.
        case e_ucomm .
          when 'EDIT'.          "From Tool bar
            perform set_input.
             perform init_grid.
          when 'UPDA'.          "From Tool bar
            perform refresh_disp.
            perform update_table.
          when 'EXIT'.          "From Tool bar
            leave program.
        endcase.
      endmethod.
    endclass.
    class zcltest definition inheriting from  cl_gui_alv_grid.
    define this as a subclass so we can access the protected attributes
    of the superclass cl_gui_alv_grid
    public section.
    methods: constructor, disp_tab.
    endclass.
    need this now to instantiate object
    as we are using subclass rather than the main cl_gui_alv_grid.
    class zcltest implementation.
    METHOD constructor.
    CALL METHOD super->constructor
            exporting i_appl_events = 'X'
               i_parent = grid_container1.
    endmethod.
    method disp_tab.
    FIELD-SYMBOLS: <outtab> TYPE STANDARD TABLE.
    break-point 1.
    mt_outtab is the data table held as a protected attribute
    in class cl_gui_alv_grid.
    ASSIGN me->mt_outtab->* TO <outtab>.  "Original data
    do whatever you want with <outtab>
    contains data BEFORE changes each time.
    Note that NEW (Changed) table has been obtained already by
    call to form check_data USING P_ER_DATA_CHANGED
             TYPE REF TO CL_ALV_CHANGED_DATA_PROTOCOL.
    Entered data is in table defined by <fs2>
    In this method you can compare original and changed data.
    Easier than messing around with individual cells.
    do what you want with data in <fs2>  validate / update / merge etc
    endmethod.
    endclass.
    data :
        ok_code like sy-ucomm,
        save_ok like sy-ucomm,
        i4 type int4,
    Container Object [grid_container]
    now created via method constructor
    in the subclass zcltest.
    Control Object [grid]
    grid1 type ref to zcltest,
    Event-Handler Object [grid_handler]
    grid_handler type ref to lcl_grid_event_receiver.
    start-of-selection.
    call screen 100.
    module status_0100 output.
    now display it as grid
    if grid_container1 is initial.
        create object grid_container1
            exporting
              container_name = 'CCONTAINER1'.
        create object grid1.
         break-point 1.
        create object grid_handler.
        set handler:
           grid_handler->user_command for grid1,
           grid_handler->toolbar for grid1,
           grid_handler->handle_data_changed for grid1.
    perform create_dynamic_fcat.
    perform create_dynamic_itab.
    perform populate_dynamic_itab.
    perform init_grid.
    perform register_enter_event.
    set off ready for input initially
    i4 = 0.
      call method grid1->set_ready_for_input
             exporting
               i_ready_for_input = i4.
    endif.
    endmodule.
    module user_command_0100 input.
    *PAI not needed in OO ALV anymore as User Commands are handled as events
    *in method user_command.
    *we can also get control if the Data entered and the ENTER is pressed by
    *raising an event.
    Control then returns to method handle_data_changed.
    endmodule.
    form create_dynamic_fcat.
    get structure of our user table for building field catalog
    Use the RTTI functionality
    lr_rtti_struc ?= cl_abap_structdescr=>describe_by_data( wa_data ).
    Build field catalog just use basic data here
    colour specific columns as well
    loop at lr_rtti_struc->components into zog.
    c_index = c_index + 1.
    clear wa_it_fldcat.
      wa_it_fldcat-fieldname = zog-name .
      wa_it_fldcat-datatype =  zog-type_kind.
      wa_it_fldcat-inttype =   zog-type_kind.
      wa_it_fldcat-intlen =    zog-length.
      wa_it_fldcat-decimals =  zog-decimals.
      wa_it_fldcat-lowercase = 'X'.
      if c_index eq 2.
      wa_it_fldcat-emphasize = 'C411'.
         endif.
        if c_index eq 3.
      wa_it_fldcat-emphasize = 'C511'.
       endif.
      append wa_it_fldcat to it_fldcat .
    endloop.
    endform.
    form create_dynamic_itab.
    Create dynamic internal table and assign to field sysmbol.
    Use dynamic field catalog just built.
    call method cl_alv_table_create=>create_dynamic_table
                 exporting
                    it_fieldcatalog = it_fldcat
                 importing
                    ep_table        = new_table.
    assign new_table->* to <dyn_table>.
    endform.
    form populate_dynamic_itab.
    load up a line of the dynamic table
    c_dec2 = c_dec2 + 11.
    wa_element-anyfield1 = 'Tabbies'.
    wa_element-anyfield2 = 'ger.shepards'.
    wa_element-anyfield3  = 'White mice'.
    wa_element-anyfield4 =  'Any old text'.
    wa_element-anyfield5 =  c_dec2.
    append  wa_element to <dyn_table>.
    endform.
    form check_data USING P_ER_DATA_CHANGED
               TYPE REF TO CL_ALV_CHANGED_DATA_PROTOCOL.
    Get altered data back
      ASSIGN   p_er_data_changed->mp_mod_rows TO <FS1>.
    stab =       p_er_data_changed->mp_mod_rows.
    ASSIGN STAB->* TO <FS2>.
    LOOP AT <FS2> INTO sdog.
    ALV grid display with altered data is now in <fs2>.
    do any extra processing you want here
    endloop.
    now display new table
    call method grid1->disp_tab.
    endform.
    form exit_program.
      call method grid_container1->free.
      call method cl_gui_cfw=>flush.
      leave program.
    endform.
    form refresh_disp.
      call method grid1->refresh_table_display.
    endform.
    form update_table.
    The dynamic table here is the changed table read from the grid
    after user has changed it
    Data can be saved to DB or whatever.
    loop at <dyn_table> into wa_element.
    do what you want with the data here
    endloop.
    switch off edit mode again for next function
    i4 = 0.
      call method grid1->set_ready_for_input
          exporting
              i_ready_for_input = i4.
    endform.
    form set_input.
    i4 = 1.
      call method grid1->set_ready_for_input
         exporting
           i_ready_for_input = i4.
    endform.
    form switch_input.
    if i4 = 1.
    i4 = 0.
    else.
    i4 = 1.
    endif.
      call method grid1->set_ready_for_input
         exporting
           i_ready_for_input = i4.
    endform.
    form init_grid.
    Enabling the grid to edit mode,
         struct_grid_lset-edit = 'X'. "To enable editing in ALV
         struct_grid_lset-grid_title  = 'Jimbos Test'.
         call method grid1->set_table_for_first_display
           exporting
             is_layout           = struct_grid_lset
           changing
             it_outtab             =  <dyn_table>
             it_fieldcatalog       =  it_fldcat.
    endform.
    form register_enter_event.
    call method grid1->register_edit_event
                   exporting
                      i_event_id = cl_gui_alv_grid=>mc_evt_enter.
    Instantiate the event or it won't work.
    create object g_event_receiver.
    set handler g_event_receiver->handle_data_changed for grid1.
    endform.</b>

    Hi there
    IE7 doesn't give me the add new page option and I get 404 error when trying to access the "How to contribute" section.
    I'll load up Firefox later (this browser usually works when IE7 doesn't always work properly).
    I'll copy the stuff to the wiki when I've got the browser sorted out.
    Cheers
    jimbp

  • How to  Store and Edit Vendor No in IC Agent?

    I have a requirement to display, store and edit the vendor no in the account identification.
    Vendor No stored in venmap table. Currently, I added the custom field in the account identification. I am able to populate vendor no but not able to edit and store in the account identification. Is there any funcationality or configuration where we can edit and store vendor no. I am using CRM 7.0
    Your reply is appreciated.
    Thanks,
    Banu

    I am closing this question, as no response from the forum.

  • How to set up a list view with easily-added and accessed attachments

    Hi,
    This may be a case for the Sharepoint designer forums or something similar but I wanted to start with General since I don't exactly know even what I'm asking for yet.
    Here's my goal - A web-based table of rows of columns similar to Excel where every row contains information about a particular task, and I can embed files into the rows and easily access them with a click. I have built a Sharepoint list (using Sharepoint
    online / Office 365) with custom columns, enabled attachments and the attachment column, and set the default to datasheet view. But I am running into the following issues:
    I can't add an attachment to a row in datasheet view. I have to click Edit Item -> Attach File -> Browse -> Hit ok several times. This is not a sustainable option. How can I attach a file from the datasheet view?
    After attaching a file, the attachment column just shows a paperclip icon. I can't click the icon or access the file without clicking View Item and then clicking the link to the attachment. How can I easily view an attachment?
    I've seen mention of an Access database style view, things like document libraries etc. I've never really handled the front end of Sharepoint before, so I don't yet know what I don't know. I'm open to any suggestions that could help me accomplish what I'm
    looking to do. Thanks in advance.

    Hi Matt, create a column of type "enhanced rich text." Then in your datasheet view, double click on the field in that column and use your "insert" tab to upload a file. You'll then see the file in this cell and you can open it straight
    from the datasheet view.
    cameron rautmann

  • Does iWork for iOS allow me to open and edit documents created in the Microsoft Office suite?

    Hi all,
    I have just purchased an iPad 2 32Gb. I want to be able to use it for work.
    I need to be able open and edit documents created in Microsoft Office. Primarily .doc and .docx files. Is this possible? or am I better with D2 or Documents to Go.
    Also, can I save a document attachment from an email and open it on my iPad for reviewing and editing?
    Cheers
    Mr Bunyip?

    Bunyip in a Mini wrote:
    I need to be able open and edit documents created in Microsoft Office. Primarily .doc and .docx files. Is this possible? ...
    Yes, "pages.app" will open these files. In the same manner "numbers.app" will open xls,xlsx and "keynote.app" will open powerpoint files.
    iwork09 files from a Mac can also be opened. And you can save each files back in various file formats, also save them  as pdf.
    Also, can I save a document attachment from an email and open it on my iPad for reviewing and editing?
    Yes. "open in .." then a suitable app is in the list : say you get a docx, then pages will be presented as app to open it.
    Cheers
    Mr Bunyip?
    Enjoy it.

  • SharePoint 2013 and IE 11 issue - While creating a Web Part Page and Editing Web Part Properties

    I tried to edit a Web Part in SharePoint 2013 using IE 11 but I did not see the Edit Eeb Part dropdown menu at the top-right corner of the web part. Then I tried to create a Web Part page and I get the following error.
    Cannot create a Web Part Page with the current browser. Browsers that support the creation of Web Part Pages include Microsoft Internet Explorer 7.0 or later, Mozilla Firefox 3.0 or later, and Apple Safari 3.0 or later
    Strange !!! My web browser is IE 11.
    I tried the above two tasks in Google Chrome and worked fine.
    Solution:
    I added the site url to local intranet zone in IE 11 and I am now able to add Web Part Page and Edit Web Part in IE 11.
    imd.net

    Hi - One more solution is to add SharePoint site to compatibility group:
    http://blog.fpweb.net/sharepoint-internet-explorer-compatibility-issues-with-video/#.VAaZSPmSyy4
    -prs

  • Can I get the summary of added and deleted words in two compared documents in Acrobat Pro XI as it was in Pro 6?

    I want to be able to estimate the amount of words that change from one document to another. I am using Adobe Acrobat Pro XI to compare two documents. The summary says "Differences exist between documents" and lists the amount of pages in each one. Then it goes on to the report and highlights insertions and deletions.
    I would like a more informative summary. Previously, in Adobe Acrobat Pro 6.0 (I don't really know after that), the summary I got after comparing two documents contained how many words had been added and how many words had been deleted.
    I have checked the configuration of the new Acrobat but I have not been able to find the same functionality. Is there something I am missing? Is this feature not supported anymore?
    If so, is there a workaround? I have been looking into using JavaScript but I cannot access properties of words that the program highlights as having changed. Thank you very much for any insight you may have.

    OCR is only for recoginition of the image / picture of text provided by an scanner.
    Content typed into a Word file which is converted to a PDF is (in Word and in PDF) *not* an image  or picture of text - it is the digital text. So, no OCR involved.
    When the "digital" (renderable) text of a PDF's page content is exported to Word no OCR is involved.
    When a PDF's content is from the image output of a scanner and this is a picture of text then OCR comes into play.
    If this content is exported to Word before doing OCR then it is the image that is exported to the Word file.
    Once OCR is performed it is the OCR output that is exported.
    OCR output is (always will be) impacted by "the quality of the OCR and the scans of the documents". 
    Regardless "Compare" is based on a Word file output to PDF1 then edits to the Word file followed by an output to PDF2. You use Acrobat Pro to do a compare of PDF1 & PDF2.
    Paper 1 scanned to image 1 to image 1 in PDF1 that gets OCR 1 and
    Paper 2 scanned to image 2 to image 2 in PDF2 that gets OCR 2
    being processed with Acrobat Pro's Compare can certainly be done.
    But - well you've described what can be observed.
    Be well...

  • Can an InCopy editor add, remove and edit a text frame placed inside the main story text frame?

    I think I already know the answer to this which is - no. I'll explain why I am asking the question in a second, but the reason I think the simple answer is no is because - text frames are controlled by a designer in the layout file, an editor using incopy can only edit the text and images placed inside text frames, and so cannot resize them, add or delete them.
    Ok, so the reason I have asked this.
    Is there a way around this so that editors in incopy can edit certain types of text frame that are contained within the main text frame? I'm using these text frames to contain specific paragraph styles, giving them a boxed look and also with an anchored icon in the top left of the text frame depending on the type of paragraph it is. See screenshot as an example of a green text frame that I am using to contain paragraphs of type "tip".
    If it is not possible for editors in incopy to add, edit or resize these text frames (green tip frame in the example above), then how else can I style these paragraphs to give the same visual appearance, but without the use of wrapping them in a text frame?
    One (not so good) way around this is for the designer to add the text frames in the layout file after he gets the content back from the editor, then moving the "tip" paragraphs into these newly created text frames. However when the editor updates the content in incopy and gets these new text frames in their copy, they can not then delete them if they wish to, or if they add or reduce content inside of these green text frames then the frames dont grow to fit their edited content. So I dont think its a solution for the designer to control the adding, removing and resizing of these frames.
    UPDATE: I have just discovered that once a text frame has been placed into the document by the designer and the editor updates their copy in incopy-  they can then use the "Position Tool" to select that text frame - allowing them to resize it, or delete it! Fantastic. But would the editor be able to add these frames in themselves to begin with? Maybe have a document containing all of the objects available to them, copy and paste one of them into the main document and edit its content? Does anyone have any advice on how to go about this? Essentially I would like the editor to control the insertion, editing and removal of these inline text frames.

    True. But when all I am trying to achieve is a border around a paragraph, use of a table seems overkill to me. But if thats the only solution I have so far then I will have to go down that route.
    It would be useful to have an object libraries panel in InCopy so that editors can drag across predefined text frames into their doc via InCopy, but I cant see that option in InCopy. is there one? I have also thought about exporting the frames as seperate InDesign Snippets and saving them to an objects folder, then when an editor needs to insert one into their doc they simply use File > Place > "Choose required text frame snippet". However I have found that InCopy can't place InDesign snippets so that theory was a failure. Is there another format I could use to save the objects and bring them into InCopy? List below shows my findings so far for trying to save/export a text frame from InDesign and then import into InCopy:
    InDesign Snippet (.idms) - can't import into InCopy
    InDesign Document (.indd) - imports content as an image - only editable in InDesign
    InDesign Template (.indt) - imports content as an image - only editable in InDesign
    InDesign Library (.indl) - can't import into InCopy - no panel available in InCopy for object libraries (that I can see...)
    InCopy Markup (.icml) - only imports the text, loses the text frame

  • How to change the width of the EditForm.aspx and NewForm.aspx for both new and edited list entries?

    How to change the form widths for the EditForm.aspx and NewForm.aspx files that display both new and edited list entries?

    Hi  ,
    According to your description, my understanding is that you want to modify the width of the New Form and Edit Form of a list in SharePoint 2010 .
    1.Go to your SharePoint site -> your list.
    2.In top ribbon click  List tab(List Tools).
    3.Towards right you will see option as Form Web Parts, click on it, the three forms will be listed there [New Form, Display Form, Edit Form].
    4.Select the one on which you want to increase the width/height.
    5.It will open in edit mode, click on Add a Web Part.
    6. Click on Forms [Categories] => HTML Form Web Part.
    7.After adding the HTML Form Web Part, click on Edit WebPart.
    8.Click on Source Editor, Remove all code from it and put an empty HTML table with width and height as per your requirement ex. to increase width
    <TABLE WIDTH="800px">
    <TR><TD></TD></TR>
    </TABLE>
    9.Save the form and check out your respective modal by clicking on the same in your list view.
    Reference:
    http://sharepoint.stackexchange.com/questions/40580/how-to-modify-width-of-standard-dialog-form-sharepoint-2010
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Forms not appearing in Response file when added and no preview

    One of my users has a form created with Adobe LiveCycle ES 8.2 and has been using it happily for the last 12 months up until about a month ago. The problem is when she receives the responses via email and double clicks on the attached PDF, it says it has been added to the response file and the total responses count goes up by one but you cannot see the response in the list.
    She also says that other times the total count goes down when a response is added and again you cannot see the reponse in the list. A further problem is that when you Dbl-click a response in the list, you don't get a preview of the form you just get a blank window. I at first thought this may be a corruption but we did a restore of the file from a month before this started happening and we get the same result with that file.
    I tried opening this file on another PC which had Acrobat 9.0 Pro but I get the same result. There are no filters applied and I have played with every view setting I could find to no avail. Any help/ideas would be greatly appreciated.
    Carl

    I apologise if my comments sounded too harsh.  I work for a lot of corporations and quasi government departments.  I have to work with "web teams" all the time and they're a very mixed bag.  Some are up with the technology and can actually be creative.  Others consist of people that were just plain unemployable but the company couldn't let them go without incurring union wrath, so they dump them in the "web team".
    If Accessibility is what they want, Captivate has very strong features in this area.  Certainly better than any other e-learning tool I've seen.  You turn these on by selecting the Accessibility checkbox under Preferences.
    If you don't like my idea of using Rollover Captions for ALT text, you can simply add accessibility text to any image on screen by selecting the image and clicking the Accessibility button.
    Then in the dialog that pops up, you just untick the checkbox for automatic text (based on the name of the object) and add in your own like this:
    You need to remember that with 508 compliance there are a number of levels.  You need to determine which level your organisation is aiming for and keep it practical or else you will end up with a lot of extra unnecessary expense and time wasting.  Lower levels of accessibility are very achievable.  As you move further up the levels it becomes increasingly impossible to deliver anything that isn't plain text.  In some cases, accessibility taken to the max would require you to build several different versions of your courseware.
    If you Web Team expects you to go to the n.th degree in Accessibility, ask them to confirm exactly who's going to pay for it.

  • How to get a group created in the OD into ical and EDIT it ?

    hello,
    We would like to use iCal instead of web service to view and edit a group's calendar created in the OD/Repertory (like places or ressources)..
    Viewing is ok by adding the calendar's group link using alt+command S (my iCal is in french so I give you the shortcut)....
    So how do we edit a calendar's group under iCal (like places or ressources) ?
    Thank you

    Hi, you might want to read this thread: http://discussions.apple.com/thread.jspa?messageID=6049520
    Good news is there is a work around.. Bad news is it is sloppy at best. This should have been supported from day 1. I seriously hope they come out with a fix.

  • When will we be able to open and edit PDF documents in Indesign?

    Hi
    It would be nice if Indesign could open PDF files.
    When will this happen (without a plugin)?
    Today I need to open the files in Illustrator. The customer prefers to use Indesign, so even though Indesign can export pdf documents I will have to tell the customer and the program can not open pdf files. This I find really weird.
    Hopefully opening and editing pdf files in Indesign will happen real soon.
    Have a great day!

    Paal, I'm sorry for that little out-lash. There is nothing wrong with inquiring the feasability of a new feature. The problem is that PDF has been an "output intended format" from the very beginning.
    An Illustrator file (from a fairly modern version) also is a PDF file, for all intents and purposes. You can rename an .AI file to .PDF and use it anywhere, with any software that supports PDF (so that's excepting Apple's Preview, probably ;-) ). Moreover, you can still open and edit this PDF with Illustrator and get all of your objects, symbols, layers, paragraph styles, and guides back!
    That's because in fact this file *contains* all this extra information in a data block marked "For Private Use Only". Other software, if adhering to Adobe's PDF specs, will simply ignore this (and thus my little jab at Apple's Preview). Does that mean you can edit such a PDF with *any* software? No -- the Illustrator data is "proprietary", and the details are not published to use by other software developers. Similarly, one could envisage InDesign to do the same. Yes, it would lead to *huge* files -- but hey, you would be able to open THAT file into InDesign and edit it. But not with any other software!
    The meta-problem is that an extremely large amount of this private data would be *extremely* dependant on the software that was used to create it with. What would an Illustrator file do with InDesign's GREP styles? What would InDesign do with Illlustrator's brush styles, or symbols? Illustrator allows slanted guides, InDesign does not.
    And let's not focus purely on a combo of ID and Illy; Photoshop *also* outputs PDFs, and its graphic data has yet another set of requirements.
    So all of Adobe's software would need to be able to parse *every others' data* to some degree. Well, it's still not "unconceivable" as all of this would need to be done in one office (note that in that single office there are still vast differences in something as straightforward as a User Interface across the CS suite). But there are lots of other software developers out there, and they *all* want to write out PDFs, all with their own internal data! (Think of the different requirements between an architectural app and one for graph plotting.)
    A *possible* solution would be to add "more" metadata to a PDF without crossing into the realm of "every single bit". Article tagging is an example of this -- it tells software that wants to know in which order *plain text* is to appear, and as such it serves as meta-data for plain text content. But the mind reels thinking of what more to add -- a list of used GREP styles per paragraph would probably be useless to anyone else.
    But such an idea will not solve the problem, as 1. this meta-data is optional (lazy programmers would be allowed to say "nothing to see here, move along"), and 2. this data would only get added to *newly created* files, and it would not retroactively make older PDFs editable ...
    (Now that's just the *short* version :-) h

  • Vignetting added and color adjusted immediately post import into Lightroom5.

    Vignetting added and color adjusted immediately post import into lightroom5.
    My photos from my most recent trip, when imported into Lightroom, have a heavy vignette very close to all 4 corners of the photo, and seem to have some small adjustments being done to them immediately when I import. The thumbnail looks great, and when i import --> then select it to open it as if I was going to view it full size in Lightroom, it looks great [no vignetting or tone/color adjustment] for about 1-2 seconds while a 'loading' footer is shown, following which the color is slightly altered and the vignetting is added (at this point then the thumbnail changes as well). This is a significant and noticable change to the photo. The pictures also do not have these issues if I view them through any other software. I have Can any one help me figure out what is causing this and remove it?
    I shoot
    with a Sony Alpha6000
    shoot in RAW (.ARW)
    use the standard sony kit lens that comes with the camera bundle, lens SELP1650 (3.5-5.6/16mm-50mm)
    edit on Windows 7 64bit with Lightroom5
    and don't believe I've adjusted any camera settings since last taking pictures 1 week ago with the exact same lens. I looked at photos from my last trip (only one week ago), and none of them are having these or an alterations/changes upon import.
    I took over 300 photos last weekend wthout any sign of these issues post import
    Every single photo I took this weekend seems to have this same issue.
    Any help is appreciated!

    Vignetting added and color adjusted immediately post import into lightroom5.
    My photos from my most recent trip, when imported into Lightroom, have a heavy vignette very close to all 4 corners of the photo, and seem to have some small adjustments being done to them immediately when I import. The thumbnail looks great, and when i import --> then select it to open it as if I was going to view it full size in Lightroom, it looks great [no vignetting or tone/color adjustment] for about 1-2 seconds while a 'loading' footer is shown, following which the color is slightly altered and the vignetting is added (at this point then the thumbnail changes as well). This is a significant and noticable change to the photo. The pictures also do not have these issues if I view them through any other software. I have Can any one help me figure out what is causing this and remove it?
    I shoot
    with a Sony Alpha6000
    shoot in RAW (.ARW)
    use the standard sony kit lens that comes with the camera bundle, lens SELP1650 (3.5-5.6/16mm-50mm)
    edit on Windows 7 64bit with Lightroom5
    and don't believe I've adjusted any camera settings since last taking pictures 1 week ago with the exact same lens. I looked at photos from my last trip (only one week ago), and none of them are having these or an alterations/changes upon import.
    I took over 300 photos last weekend wthout any sign of these issues post import
    Every single photo I took this weekend seems to have this same issue.
    Any help is appreciated!

Maybe you are looking for