Can I add a customer comment form to a standard product manual?

We just recevied Acrobat X (and Frame 9 before that) and would like to use forms or form fields to get comments back on the docs (pdfs and HTML) from paying customers. So far, I have created a small form in a huge document (only 4-6 pages but with videos, fonts, etc.) and it's too big to email. Can I put it on a repository and get comments back? Is the adobe distribution server the only way to do this? Am I way off base with this concept? Thanks for any suggestions or clarification.

Dear Ricardo,
Step1) First create the java script file in that you have to write the following code.
<script type = "text/javascript">
function close_windows()
window.close();
function DisableBackButton()
history.forward();
</script>
<html>
<head><title> close </title>
</head>
<form>
<script language="javascript">DisableBackButton();
</script>
<body>
<input type = "button" value = "close" onClick="close_windows();"/>
</body>
</form>
</html>
step 2) go to se80 in that mime repository go to sap create folder and export the above file.
step 3) go to your view where you want to add exit button.
           check the link and write the code to your exit button methods.
           http://scn.sap.com/thread/1911320
Note : It will work only in Internet explorer
Hope this helps u.,
Regards,
Jayesh

Similar Messages

  • How can I add a custom attribute to a catalog area? (CRM Isa Sales)

    Gents,
    How can I add a custom attribute to a catalog area? (CRM Isa Sales)
    Actually I would like to use the Catalog Area Type (maintained in trx COMM_PCAT_ADM on Catalog Area Header level). This field doesn't seem to be available in J2EE webshop. (The field documentation says it is for documentation purposes only so I don't expect it to be transferred).
    As this field is not readily available, I would like to add is as an attribute to the Catalog Area. BADI's PCAT_IMS_FEED_ATT and PCAT_IMS_FEED_VAL seem to indicate that it should be possible to add additional fields not only on product level, but also on Area level:
    Example implementation code:
    method IF_EX_PCAT_IMS_FEED_ATT~READ_NEW_FIELDS.
    * Example, how to add new attributes to a indexcategory
    * Possible levels are 'C'ategory and 'P'roduct.
    * Field 'VALUE' carries the attributetype ('S'tring, 'I'ntegar or
    * 'F'loat)
    * Structure 'IS_OBJECTS' carries actuall identifiers
      data: ls_fields        type comt_pcat_ims_feed_ux.
      case iv_level.
        when 'C'.                        "Category Level
    *     no new field
        when 'P'.                        "Product Level
          ls_fields-field = 'CUSTOMER_EXIT_FIELD'.
          ls_Fields-value = 'S'.
          append ls_fields to ct_fields.
    *     exproduct fields
          ls_fields-field = 'REMAN_ABL'.
          APPEND ls_fields TO ct_fields.
          ls_fields-field = 'EXCH_BUS'.
          APPEND ls_fields TO ct_fields.
      endcase.
    endmethod.
    However, when I create an implementation and add some code in the when 'C' part, the attributes do not seem to get transferred. (I've checked in the debug mode of the developer studio).
    - My example code:
    METHOD if_ex_pcat_ims_feed_att~read_new_fields.
    * Possible levels are 'C'ategory and 'P'roduct.
    * Field 'VALUE' contains the attributetype
    * ('S'tring, 'I'ntegar or * 'F'loat)
      DATA:
      ls_fields LIKE LINE OF ct_fields.
      CASE iv_level.
        WHEN 'C'.                        "Category Level
          ls_fields-value = 'S'.
          ls_fields-field = 'ZTEST'.
           APPEND ls_fields TO ct_fields.
        WHEN 'P'.                        "Product Level
      ENDCASE.
    ENDMETHOD.
    and:
    METHOD if_ex_pcat_ims_feed_val~read_new_fields.
      CASE iv_level.
        WHEN 'C'.
         ls_fields-field = 'ZTEST'.
         ls_Fields-value = 'Value 1'.
         append ls_fields to ct_fields.
        WHEN 'P'.
      ENDCASE.
    ENDMETHOD.
    In the ABAP debugger, I can see that my code is touched during initial and delta replications, however, after replication, the fields do not show up in the Java debugger.
    Any ideas?
    regards,
    Wilco Menge

    Hi,
    How can I customize the /bin/wcmcommand or how can I make use of [2] to create a custom WCMCommand?
    I think the "formUrl" is to post those input value to the jcr repository?
    var createDialog = {
            "jcr:primaryType": "cq:Dialog",
            "id": CQ.Util.createId("cq-createdialog"),
            "title":CQ.I18n.getMessage("Create Page"),
            "formUrl": CQ.shared.HTTP.externalize("/bin/wcmcommand"),
            "params": {
                "cmd":"createPage",
                "_charset_":"utf-8"
    I have added a field called "starred"
    Moreover, when I using the firebug to trace the post command, I can see that the starred value is posted also.
    :status
    browser
    _charset_
    utf-8
    cmd
    createPage
    label
    b
    parentPath
    /content/keyword_elaboration
    starred
    c
    template
    /libs/collab/commons/templates/form
    title
    a
    Source
    cmd=createPage&_charset_=utf-8&%3Astatus=browser&parentPath=%2Fcontent%2Fkeyword_elaboration&title=a&label=b&starred=c&template=%2Flibs%2Fcollab%2Fcommons%2Ftemplates%2Fform
    However, when I go to the crxde to view the node's attribute, the properity starred is not created
    Are there anything I did wrong or missing?
    Thanks.
    Message was edited by: aslkit

  • How can i add  fields to a cube which is in production support

    hi,
       how can i add fiels to a cube which is in production support.

    Hi Maruthi
    You need to add new fields to cube in Development system and then transport it to production after testing.
    Edit cube in RSA1. Add the new infoobjects from right hand directory to left hand pane and assign these new infoobjects to suitable dimensions. Save and activate the infocube. Now go to change update rules for this infocube and do proper mapping of these infoobjects.
    Save & activate the update rules.
    RSA1-> Transport connection-> select cube, update rules and related objects and create transport request.
    After testing is done, give the transport request number to your Basis person and he will do the transports for you.
    Regards
    Pradip

  • How can I add a custom attribute to the create page dialog?

    I followed the following link to add a custom attribute called starred and this attaribute can be displayed in siteadmin grid
    http://dev.day.com/docs/en/cq/current/developing/customize_siteadmin.html
    I would like to let the user input the value when they create a page. That's why I would like to add a custom field in the input dialog box as attached pic.
    The method you describe before can only added those CQ bulid-in attribute.
    For those custom attribute, how can I added it?

    Hi,
    How can I customize the /bin/wcmcommand or how can I make use of [2] to create a custom WCMCommand?
    I think the "formUrl" is to post those input value to the jcr repository?
    var createDialog = {
            "jcr:primaryType": "cq:Dialog",
            "id": CQ.Util.createId("cq-createdialog"),
            "title":CQ.I18n.getMessage("Create Page"),
            "formUrl": CQ.shared.HTTP.externalize("/bin/wcmcommand"),
            "params": {
                "cmd":"createPage",
                "_charset_":"utf-8"
    I have added a field called "starred"
    Moreover, when I using the firebug to trace the post command, I can see that the starred value is posted also.
    :status
    browser
    _charset_
    utf-8
    cmd
    createPage
    label
    b
    parentPath
    /content/keyword_elaboration
    starred
    c
    template
    /libs/collab/commons/templates/form
    title
    a
    Source
    cmd=createPage&_charset_=utf-8&%3Astatus=browser&parentPath=%2Fcontent%2Fkeyword_elaboration&title=a&label=b&starred=c&template=%2Flibs%2Fcollab%2Fcommons%2Ftemplates%2Fform
    However, when I go to the crxde to view the node's attribute, the properity starred is not created
    Are there anything I did wrong or missing?
    Thanks.
    Message was edited by: aslkit

  • Can't add/edit Spotlight Comments in Apple default apps

    I can't add text to the Spotlight Comments field (via Get Info) in Apple's apps installed by default. The computer just beeps when I try to type something. However, I have no such problem with 3rd party apps.
    Is this a bug or is there something I have to do to allow Spotlight Comments?
    The permissions on all Apple apps installed by Snow Leopard are "system: "Read & Write," "wheel: Read only," and "everyone: Read only."
    Thanks.
    Message was edited by: Gunny Sack

    Someone else noted that and I tried a few and couldn't edit them, even after giving myself write permissions. It might be tied to some form of code signing/protection.

  • Can we add logo to sapscript Form Result while coverting to PDF?

    Hi Expert,
                    My requirement is, I have to covert Form Result to PDF.but while converting  Form result to OTF , Can we Add logo to the OTF data? Can logo be saved in text format? only then we can add logo to OTF data probably.
    Please Help.
      Thanks in Advance

    As you have probably searched the forum, you saw that you can get the sapscript result as OTF.
    Graphics are automatically handled by SAP which stores them in the OTF (RD and BM lines).
    And then you convert OTF to PDF as usually.
    So, where is the question?

  • How can we add a checkbox in form (Scripts)

    Hello Experts,
             i want to add a checkbox in the form. how can v add a check box in the form. i tried with sap scripts symbols like sym_checkbox but it's not working.
    and i can print a small box by using Box statement. but i need exactly a check box. how can v create it in scripts.
    thanks in advance.

    Hi,
    Please refer the links,
    Check Box With Tick Mark on Sap Script
    putting tick mark into check box in smartform
    Regards,
    Hema.
    Reward points if it is useful.

  • How can i add an custom attribute and assign it to an existing custom object class in sun ds

    I need to add an attribute to sun ds schema and assign it to an existing custom object class.
    I know how to add an attribute but how can i add the attribute to an existing custom object class.
    Please help.
    Thanks

    The objectclasses attribute is multi-valued, so you can add several values to it as long as they are unique.
    For instance, I think you can add several declaration of the same objectclass as below (note the difference is the number of spaces in the value) howewer, from a schema perspective, only 1 will be taken into account:
    objectclasses: ( 2.5.6.6 NAME 'person' DESC 'Standard LDAP objectclass' SUP top MUST ( sn $ cn ) MAY ( description $ seeAlso $ telephoneNumber $ userPassword $ CustomAttr) X-ORIGIN 'RFC 2256' )
    objectclasses: ( 2.5.6.6 NAME   'person' DESC 'Standard LDAP objectclass' SUP top MUST ( sn $ cn ) MAY ( description $ seeAlso $ telephoneNumber $ userPassword $ CustomAttr) X-ORIGIN 'RFC 2256    ' )
    That's the reason why it is safe to delete previous value if you want to update an existing objectclass. No problem to add a new objectclass (new oid and new name) to the schema.
    -Sylvain

  • I can't add a custom alert sound.

    I'm trying to add a custom sound for when a buddy logs in. The problem is, after I go through the add sound steps, the sound never shows up in the list and the event alert goes back to its default alert. I'm using iChat AV 3.0.1 (v392), and using AIM.

    Hi Robert,
    Welcome to the Apple Discussion Pages.
    The sounds need to be of the right quality (too high does not work).
    They also need to be in the right folder. Sounds can be put in your Home folder/Library/Sounds and will appear in the third division of the sounds available to iChat. They are iChat's Own sounds, the System Sounds and any in your Home/Library/Sounds folder, separated by feint lines in the drop down.
    Ralph

  • Can SCM add/edit custom ADM template ?

    I can't find a way to add ADM in SCM.
    Also, I can't find any custom ADM settings in a imported GPOPack (which I export from my local computer with custom ADM added)

    Hi,
    Please follow the steps on this article to add the ADM you created:
    Add or remove an Administrative Template (.adm file)
    http://technet.microsoft.com/en-us/library/cc739134(WS.10).aspx
    If the problem continues, please let us know if there is any error message. You may also paste the content of the ADM you
    created and we will check it.
    Meanwhile, you can use Registry Extension in Group Policy Preference instead of a custom ADM to set registry value on clients.
    For more information, please refer to:
    Registry Extension
    http://technet.microsoft.com/en-us/library/cc771589.aspx
    Hope it helps.
    Regards,
    Bruce

  • Can we add Resource custom fields into ASSIGNMENT TIMEPHASED CUBE

    Hi,<o:p></o:p>
    <o:p> </o:p>
    We want to add Resource custom fields into
    ASSIGNMENT TIMEPHASED CUBE in project server 2010.<o:p></o:p>
    Is it possible?<o:p></o:p>
    <o:p> </o:p>
    Please help me in this.<o:p></o:p>
    <o:p> </o:p>
    Thanks,<o:p></o:p>
    Sarath<o:p></o:p>

    Once column is for assignment and another one is for Resource.
    Assignment means when you crate a task then assign that task to resource then task become assignment.
    when you will create report in for Resource_skill_resource you will be able to group by or filter resource as per their skill. 
    As far as Resource_Skill_R_Assignment is concerned  you can group by or filter assignment for resource as per their skill 
    Resource CUBE: The
    Resource Non Timephased and Resource Timephased OLAP cubes contain resource data. These two OLAP cubes do not contain any Total fields in common, but do contain several Dimensions in common (such as Booking Type and Resource List).
    Assignment: The
    Assignment Non Timephased, Assignment Timephased, MSP
    Portfolio Analyzer, and MSP
    Project Timesheet OLAP cubes contain assignment data. Each of these OLAP cubes includes many
    of the same Total Fields (such as Actual Cost, Actual Overtime Cost, Actual Work, and Actual Overtime Work) and many of the same Dimensions (such as Assignment Owner and Project List)
    kirtesh

  • How can I add my custom ringtone to iTunes 10.7?

    I recently got an iPhone 5 and I want to add a custom ringtone to it. I created a 29-second clip of a song using a software called Audacity and then saved it as an .m4r file. Then, I tried the drag-and-drop method to add the file to my Tones playlist on iTunes; it did not show up anywhere in iTunes. Then I tried moving the file into the "Automatically Add to iTunes" folder; it still didn't work. I tried shortening the file name, and making the clip of the song shorter (to 20 secs), and nothing worked. Am I doing something wrong? Does anyone know how to solve this problem?
    (FYI: I am using iTunes 10.7.0.21; I have Windows 7.  I also tried using the "Create AAC Version" function on iTunes, but then I couldn't change the file type from .m4a to .m4r, so that's why I used Audacity.)
    Thanks in advance.

    I found the answer to my own question! The following discussion really helped, so if you have the same problem, check it out: https://discussions.apple.com/message/18885997#18885997

  • ISA50 : Can I add a custom parameter to a webshop ?

    Hi experts,
    In the ISA50 Dev and Ext guide, it is explained how to add custom configuration parameters in XCM. This works great, but the parameter is the same with the same value for all the application (b2b or b2c, whatever the xcm scenario and the crm catalog and variant, my parameter has the same value).
    I have a b2b and a b2c site, with different crm catalogs, and different variants (different countries), and I'd like to add a custom parameter for which I could set different values depending on either the XCM scenario or the catalog variant, a parameter depending on the webshop.
    Do you know how to do this ?
    Thank you for your help, I'll give points for this

    The need is : access to a parameter whose value depends on the webshop or on the catalog variant. For example we have a b2c application with different webshops (linked with different catalog variants) for different countries. For this application I have to set a parameter whose value should be different depending on the webshop I select at the first page off the application.
    The easy way will be to pass the value through an URL parameter and process it inside the application.
    Or maintain the list in a custom table in the backend.
    See the starting page of Sony style Europe
    "https://shop.sonystyle-europe.com/"
    For each country / language (Locale), they have a URL link with a shop variant.
    Easwar Ram
    http://www.parxlns.com

  • How can I add a custom title to multiple ALV reports selected by layout?

    Greetings and good day, everyone!
    Within the past week or so, I posted a question asking the best way to create a program that would generate multiple ALV reports.  I got some great ideas, and I've actually coded up a few simple demos based on your feedback -- thank you!
    Here's the issue I'm running into:  Many of you suggested that I put all report records into one table, and create a field that I could use to filter on later to determine which fields I want to display for the report.  For example, if I have 3 different reports, I put all the fields for all 3 reports into a table.  I then add a "report key" field.  As I put records into the report table for report 1, I code "01" into the "report key" field.  I do the same for reports 2 and 3, assigning each a "report key" of "02" and "03", respectively.
    I then set up layouts in the ALV for each of the three reports, using the filter option to only pull records with the "report key" value for that particular report.  This all works wonderfully!  However, I seem to have lost the ability to show a custom title for each layout.  I can create a generic TITLEBAR (like "Reporting Center") but I don't know how to reset the grid's title when a layout is selected.  I was hoping that SAP might use the layout description as the title on each page, but it doesn't -- it uses the TITLEBAR text.
    Any ideas?  I think this might be the best way to program multiple ALV reports, but if I can't display the right report title for a particular layout, I'll probably have to go back to my other alternative of putting each report in its own container/screen, and having a button to access each report from the application toolbar.
    Thanks,

    Srikanth,
    I don't have any Selection Screen radio buttons for the user to select a particular report; in my case, they specify some needed criteria by the program in the Selection Screen, the program goes off and does a fair bit of processing/updating, and then displays the ALV reports when finished.  They don't want to choose one particular report to view ahead of time; they want to have all 3 (in my case) there to see what processed correctly, what was eligible to process but kicked out with errors, and what failed some matching checks done up front (this layout includes additional fields from the input file so they can see what didn't match up against R/3).
    So, while I do like the code example you presented, I don't think it's going to help me in my case.

  • How can I add a Custom Field in Work Item "Bug" in VisualStudio Online agile MSF Template?

    We are using Visual Studio Online for task and bug tracking. The problem we are facing is that very few fields are available to working with. We need to add custom fields to filter bugs on multiple attributes like OS, Device model, Verified in build etc.
    We do not have local TFS server setup. The support questions i have read, they ask to update XML file for work item but i dont know how and where to get that xml file. Also is there any particular Role needed to access such configuration files?

    hi Zahid
    as already written above currently it is not possible to customize a process template on Visual Studio Online.
    but for your purpose you can use tags to save the attributes.
    see here Visual Studio Online - Work Item Tagging
    Please use Mark as Answer if my post solved your problem and use Vote As Helpful if a post was useful.

Maybe you are looking for

  • HT4519 How do I use one smtp server for multiple accounts?

    I have 5 email accounts on my iPhone.Though they are different providers, I've been using the same smtp server. To simplify my life, I'd like to delete 4 servers. However, each is considered a Primary server and is undeletable. How do I get around th

  • Imovie text and picture problem

    I have this movie clip and on that clip I made the text effect focus, so the movie clips gets unclear. (all that its working fine) BUT.. then I would also like to have a picture next to the text, but now this picture get also unclear, but I want it c

  • How can I EXCLUDE particular folders/files from being included in the Lightroom 5 catalog?

    How can I EXCLUDE particular folders/files from being included in the Lightroom 5 catalog? I want to be able to specify paths and/or filename patterns that should NEVER be indexed in the catalog: not that they don't show up under certain circumstance

  • Random red pixels on my macbook display

    i've had this macbook for 3 days, and as soon as i started using it, red flickering pixels appeared. there not stuck on the screen, just over some dark colours, so you can scroll and they move with the image. I am worried i might have to send it back

  • Video iPod and podcasts

    I tried synching podcasts to my 5th Gen and received an error response that one was not copied because it cannot be played on this iPod. What could cause that?