Unable to edit the fields in PDF interactive form

Hi,
We are in the process of developing an interactive form integrating Web Dynpro ABAP with Adobe forms.
As of now we are able to send the data to Adobe form from Web Dynpro.
But we are facing the following problem.
i) Unable to edit the form data for entering/changing the contents of the fields in PDF document,  which is presented to user with a Web Dynpro application URL.
We have already unset the 'ReadOnly' property of the interactive UI element.
We are currently working on ZCI installation with SAP SP08, GUI patch level 20, Adobe Reader version 8.0
Please advise...
Thanks,
Satya.

Hi,
Check your ADS settings, I feel it's due to lack of some config in ADS only.
Regards
<i><b>Raja Sekhar</b></i>

Similar Messages

  • Unable to edit the content of an XML form

    Hello Experts,
    I am facing a weird issue after updating my XML form.
    Earlier scenario :
    We were displaying only the Title of the news along with the content.
    New scenario :
    We had to display image also along with the title and content of the news.
    Changes i did :
    I have updated my XML form with adding an Image UI in the XML form.
    Issue :
    After adding the image UI and generating the project in the content part it is giving a message as in the image below.
    Due to this message as "Loading content please wait" i am not able to save the content of the news due to which i am getting dump on the screen.
    Please help.
    Its an urgent issue.
    Thanks in advance.
    Regards,
    Gazala

    Hi gazala,
    Hope you are doing good.
    Is the portal 7.3? can you let us know the version? Trigger 5-6 thread dumps with 30 secs interval each for your server when you reproduce the issue.
    More info:
    http://wiki.sdn.sap.com/wiki/x/VYZ3Cw
    SAP Note No. 1020246-Thread Dump Viewer for SAP Java Engine
    SAP Note No. 710154-How to create a thread dump for the J2EE Engine
    This will help check this further
    Hope this helps.
    Kind Regards,
    Hemanth
    SAP AGS

  • My client is unable to save the filled in pdf whilst I can ? Part2

    I followed instructions as per my earler post and enabled the usage rights see image below.
    I found the path was (thanks to jersey girl) at under Advanced select"Extend Features in Adboe Reader" in Acrobat 9.
    The pop upbox below appears, I selected the "Save Now"
    1.  My query is the information in the pink circle, What does it mean it laymans terms ?
    2.  IT says certain functions will be restricted.....What functions exactly ?
    3.  It says editing document.....Is that the document you have just enabled usage rights to ?
    4.  If you are unable to edit the document after the change, what do you do is the client want to , say add a filed ? REDO THE COMPLETE FORM ?
    5.  The last line says "Will be restricted"  does that mean permanantly ? Or if somthing can be restricted it usualy be un-restricted ?
    That pop up box leaves me with so many questions. I want to be good at creating Adobe forms but I need to knoe their parameters.  HELP please

    In layman terms except for filling in the form, adding comments or adding a signature the pdf file cannot be edited or changed in any substatial manner. You cannot add field, edit text, you name it. HOWEVER, you can save a copy of the file and it will have the the extended rights removed and you can do to it whatever can be done normally to a pdf file. HOWEVER, the copy will not allow a user of Reader to save new information or edited information until usage rights have ben re-enabled.

  • To edit the field in the ALV report

    Hi,
        i want to edit the field of the ALV report what i need to do for that..
    Thanks & Regards
    Ashu Singh

    hi,
    check the code,
    REPORT  zalv_fcat.* Output table T006 structure declarationTYPES : BEGIN OF ty_t006.
            INCLUDE STRUCTURE t006.
    TYPES : END OF ty_t006.*Internal table and wa declaration for T006
    DATA : it_t006 TYPE STANDARD TABLE OF ty_t006,
           wa_t006 TYPE ty_t006.*declarations for ALV
    DATA: ok_code               TYPE sy-ucomm,
    fieldcatalog for T006
          it_fielcat           TYPE lvc_t_fcat,
    fieldcatalog for fieldcatalog itself:
          it_fielcatalogue           TYPE lvc_t_fcat,
          it_layout           TYPE lvc_s_layo.*declaration for toolbar function
    DATA:   it_excl_func        TYPE ui_functions.
    Controls to display it_t006 and corresponding fieldcatalog
    DATA: cont_dock TYPE REF TO cl_gui_docking_container,
          cont_alvgd     TYPE REF TO cl_gui_alv_grid.*controls to display the fieldcatalog as editable alv grid and container
    DATA: cont_cust TYPE REF TO cl_gui_custom_container,
          cont_editalvgd     TYPE REF TO cl_gui_alv_grid.*intialization event
    INITIALIZATION.*start of selection event
    START-OF-SELECTION.
    LOCAL CLASS Definition for data changed in fieldcatalog ALV
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS handle_data_changed
          FOR EVENT data_changed OF cl_gui_alv_grid
          IMPORTING er_data_changed.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    LOCAL CLASS implementation for data changed in fieldcatalog ALV
    CLASS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_data_changed.
      ENDMETHOD.                    "handle_data_changed
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION*data declaration for event receiver
    DATA: event_receiver TYPE REF TO lcl_event_receiver.*end of selection event
    END-OF-SELECTION.*setting the screen for alv output for table display and
    *changed fieldcatalalogue display
    SET SCREEN 600.
    On this statement double click  it takes you to the screen painter SE51. Enter the attributes
    *Create a Custom container and name it CCONT and OK code as OK_CODE.
    *Save check and Activate the screen painter.
    *Now a normal screen with number 600 is created which holds the ALV grid.
    PBO of the actual screen , Here we can give a title and customized menus
    *Go to SE41 and create status 'STATUS600' and create THE function code 'SUBMIT'
    *and 'EXIT' with icons and icon texts
    Also create a TitleBar 'TITLE600' and give the relevant title.&----
    *&      Module  STATUS_0600  OUTPUT
    MODULE status_0600 OUTPUT.
      SET PF-STATUS 'STATUS600'.
      SET TITLEBAR 'TITLE600'.
    CREATE ALV GRID CONTROL IF DOES NOT EXISTS INITIALLY
      IF cont_dock IS INITIAL.
        PERFORM create_alv.
      ENDIF.ENDMODULE.                             " STATUS_0600  OUTPUT* PAI module of the screen created. In case we use an interactive ALV or
    *for additional functionalities we can create OK codes and based on the
    *user command we can do the coding as shown below
    *&      Module  USER_COMMAND_0600  INPUT
    MODULE user_command_0600 INPUT.
      CASE ok_code.
        WHEN 'SUBMIT'.
    *TO GET THE CURRENT FIELDCATALOGUE FROM THE FRONTEND
          CALL METHOD cont_alvgd->set_frontend_fieldcatalog
            EXPORTING
              it_fieldcatalog = it_fielcat.
    *refresh the alv
          CALL METHOD cont_alvgd->refresh_table_display.
    *to Send Buffered Automation Queue to Frontend
          CALL METHOD cl_gui_cfw=>flush.*Exit button clicked to leave the program
        WHEN 'EXIT'.
          LEAVE PROGRAM.  ENDCASE.ENDMODULE.                             " USER_COMMAND_0600  INPUT&----
    *&      Form  CREATE_ALV
    &----FORM create_alv.*create a docking container and dock the control at the botton
      CREATE OBJECT cont_dock
          EXPORTING
               dynnr = '600'
               extension = 100
               side = cl_gui_docking_container=>dock_at_bottom.*create the alv grid for display the table
      CREATE OBJECT cont_alvgd
          EXPORTING
               i_parent = cont_dock.*create custome container for alv
      CREATE OBJECT cont_cust
          EXPORTING
               container_name = 'CCONT'.
    *create alv editable grid
      CREATE OBJECT cont_editalvgd
          EXPORTING
               i_parent = cont_cust.* register events for the editable alv
      CREATE OBJECT event_receiver.
      SET HANDLER event_receiver->handle_data_changed FOR cont_editalvgd.  CALL METHOD cont_editalvgd->register_edit_event
        EXPORTING
          i_event_id = cl_gui_alv_grid=>mc_evt_modified.*building the fieldcatalogue for the initial display
      PERFORM build_fieldcat CHANGING it_fielcat it_fielcatalogue.*building the fieldcatalogue after the user has changed it
      PERFORM change_fieldcat CHANGING it_fielcatalogue.*fetch data from the table
      PERFORM fetch_data.*    Get excluding functions for the alv editable tool bar  APPEND cl_gui_alv_grid=>mc_fc_loc_append_row TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_loc_insert_row TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_loc_cut TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_sort TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_sort_asc TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_sort_dsc TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_subtot TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_sum TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_graph TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_info TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_print TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_filter TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_views TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_mb_export TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_mb_sum TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_mb_sum TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_mb_paste TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_find TO it_excl_func.
      APPEND cl_gui_alv_grid=>mc_fc_loc_copy  TO it_excl_func.
    *Alv display for the T006 table at the bottom
      CALL METHOD cont_alvgd->set_table_for_first_display
        CHANGING
          it_outtab       = it_t006[]
          it_fieldcatalog = it_fielcat[].
    optimize column width of grid displaying fieldcatalog
      it_layout-cwidth_opt = 'X'.* Get fieldcatalog of table T006 - alv might have
    modified it after passing.
      CALL METHOD cont_alvgd->get_frontend_fieldcatalog
        IMPORTING
          et_fieldcatalog = it_fielcat[].to Send Buffered Automation Queue to Frontend  CALL METHOD cl_gui_cfw=>flush. Display fieldcatalog of table T006 in editable alv grid
      CALL METHOD cont_editalvgd->set_table_for_first_display
        EXPORTING
          is_layout            = it_layout
          it_toolbar_excluding = it_excl_func
        CHANGING
          it_outtab            = it_fielcat[]
          it_fieldcatalog      = it_fielcatalogue[].
    ENDFORM.                               " CREATE_alv
    *&      Form  fetch_data
    FORM fetch_data.* select data of T006
      SELECT * FROM t006 INTO TABLE it_t006 UP TO 50 ROWS.
    ENDFORM.                               " fetch_data
    *&      Form  BUILD_FIELDCAT
    FORM build_fieldcat CHANGING it_fldcat TYPE lvc_t_fcat
                                       it_fcat TYPE lvc_t_fcat.
    Fieldcatalog for table T006: it_fldcat
    to generate the fields automatically  CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING
          i_structure_name       = 'T006'
        CHANGING
          ct_fieldcat            = it_fldcat[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.*----
    Fieldcatalog for table LVC_T_FCAT:it_fcat
    Generate fieldcatalog of fieldcatalog structure.
    This fieldcatalog is used to display fieldcatalog 'it_fldcat'
    on the top of the screen.  CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING
          i_structure_name       = 'LVC_S_FCAT'
        CHANGING
          ct_fieldcat            = it_fcat[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
      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.                               " BUILD_FIELDCAT
    *&      Form  CHANGE_FIELDCAT
    *after the user has modified the fieldcatalogue we build another fieldcat
    *for the modified alv display
    FORM change_fieldcat CHANGING it_fcat TYPE lvc_t_fcat.  DATA ls_fcat TYPE lvc_s_fcat.  LOOP AT it_fcat INTO ls_fcat.
        ls_fcat-coltext = ls_fcat-fieldname.
        ls_fcat-edit = 'X'.    IF ls_fcat-fieldname = 'COL_POS' OR ls_fcat-fieldname = 'FIELDNAME'.
          ls_fcat-key = 'X'.
        ENDIF.    MODIFY it_fcat FROM ls_fcat.
      ENDLOOP.
    ENDFORM.                               " CHANGE_FIELDCAT
    ref:saptechnical tutorial.
    Regards,
    Anirban

  • Urgent :how to edit a pdf (interactive form)

    Dear Expert,
    i have a web dynpro application where in need to increase the length of a table in pdf (interactive form ) how can i do this .

    Yes, there are a number of things you can do. With JavaScript, you can show/hide fields, set fields to read-only, set the focus to a field (thus bypassing sections or pages), etc. So you can implement a type of skip logic, it's just not as easy to set up as with a form created in FormsCentral. Still, there are techniques you can use to simplify things, particularly using heirarchical field names which makes it easier to control a group a fields.
    The following rudimentary sample demonstrates some of what's possible: https://workspaces.acrobat.com/?d=It35dD4zaX5QM--Pv36F-Q
    Based on the selected item on the dropdown, the background changes and certain fields are activated. There are only two fields associated with a particular selection, but it could be as many as you want on as many pages as you want. You can implement a multisection form using a single PDF page this way.

  • What would cause a single user not to be able to edit the fields in a form? All other users are able to edit the form.

    I have a user who is unable to edit his time sheet in Adobe Reader XI. It worked fine in Adobe Reader 9.6. I recently upgraded his reader to version XI and he lost the ability to edit the fields. I re-imaged his machine and re-did his profile. He was able to edit his time sheet. A week later he's back to where he was. He was able to go to another machine with Adobe XI and edit his time sheet but he can't do it on his normal workstation. His time sheet shows the purple bar at the top telling him to fill out the form and that he can save data typed into the form. We're running XP SP3. How can I troubleshoot this?

    My guess would be keyboard related.  I'm guessing the field you're trying to fill has a keystroke event allowing only certain types of character.  If the keyboard is faulty OR if the keyboard's layout (English, french, numLock, capLock) have been changed, allowed character could be someplace else.
    I would first verify the presence of a particular format or a keystroke event in the format tab.  I would then test my layout by typing charaters in another application such as notepad.  Any chance the maximum character allowed would have mistaken be set to 0?
    Also, I see you mentionned:
    He was able to go to another machine with Adobe XI and edit his time sheet but he can't do it on his normal workstation
    By Adobe, I'm guessing you mean Reader.  Is it possible the default application on this other machine is Acrobat instead?  If it is the case, the problem would probably be the way the file was created and maybe it would require to enable Extended features.......

  • Unable to Export the document in PDF

    Hi,
    Can any body guide me what general  authoriztions  settings are needed for a user to export the markeing documents in PDF.
    bcz the user at remote location client is unable to export the douments in PDF.
    Regards
    Srini

    HI
    You need to go the authorization windows and in the search box please type "PDF" that would take u to the option that u are seeking then u can assign full read only or no authorizations as per your requirement .
    also make sure that the path has been correctly defined for pdf files
    Regards,
    Manish
    Edited by: manish.malik on Jul 1, 2010 12:50 PM

  • Changing the default file name while saving the PDF interactive form

    Hi All,
    I am generating an Interactive PDF form using webdynpro, but when I try to save the PDF to my local machine the default file name comes as "<b>unknown.pdf</b>" so I have to manually go and enter the name before saving it.
    Is there any way to change this default name so that I don't have to manually edit the file name each time when I want to save the generated PDF interactive form?
    Please reply soon.
    Thanks in advance!

    I am running into the same issue. Setting the desname parameter (e.g. desname=temp.pdf) doesn't have any effect. Has anyone found a solution to this?
    Thanks,
    Brian

  • Unable to view the Fields  inside Segment

    Hi,
    We are doing IDOC---File scenario
    We have one IDOC "WPDWGR01" in R/3 and we imported that into IR.
    When we are doing the mapping, that time we are unable to see the fields that inside this  "E1WPW02" segment.
    We have BEZEICH and VERKNUEPFG fields inside that segment.
    We loaded the metadata also freshly by deleting the existing one.And we did the SXI_Cache also
    When we Expanded (when we clicked E1WPW02 Seg )on the tree structure of the Imported IDOC from the Imported Objects, it is saying that "Schema for type WPDWGR01.E1WPW02 (category Data Type) not found"
    And we are seeing the the Segments in Red color and no fields inside those segments
    This is the Standard IDOC only, there is no Enhancements
    Regards
    Bopanna
    Edited by: BOPANNA B on Mar 11, 2008 11:49 AM

    It happens in the following case:
    1) It was being edited by somebody and you imported the IDoc at the same time. ( some segments were locked and that is why few fields were missing)
    2) check if the field level customization is done in that client , try to import it from some other client.
    Hope this helps.
    Regards.
    Jeet

  • Unable to edit the data in z-table

    Hi All,
    I can create new entries in a z-table.
    But i am unable to edit the existing rows of a z-table in the Production server.
    The same can be done in DEV and test servers.
    How to come out of this issue?
    Kindly Help me....
    Regards
    Pavan

    Hi,
    For this you have to maintain table maintenance generator....
    go to se11....your table name
    utilities--->table maintenance generator...
    build a table maintenance generator..and transport the table...
    then only you will be able to edit data in production server...
    Regards
    Debarshi

  • Unable to edit the document in sharepoint2010

    Hi,
    I am unable to edit the document in sharepoint2010 with IE-10 while editing i am getting the error like
    "The form cannot be displayed in the browser because the use of session cookies has been disabled in the current browser settings.In order to load the form the session cookies must be allowed."
    Please suggest me on this.
    Thanks in advance.
    Regards
    SidduSekhar

    Hi SidduSekhar,
    Based on your description, I need to verify the things below:
    Which browser did you use? Did this issue occur with all the browsers?
    Is the cookie disabled in the browser? If yes, please enable it.
    Did you implement security fix in the web.config, such as <httpCookies requireSSL="true" httpOnlyCookies="true" />? If yes, please set it to false in web.config.
    Did you configure Alternate Access Mapping for SharePoint with a URL containing a “_” character? If yes, please remove the “­_” from the URL.
    More references:
    http://blogit.create.pt/miguelisidoro/2013/12/01/sharepoint-and-the-form-cannot-be-displayed-in-the-browser-because-the-use-of-session-cookies-error/
    https://prasantabarik.wordpress.com/2014/05/03/sharepoint-2010-workflow-task-error/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Unable to edit the form in Personal Change Request

    Hi,
    One of the manager is trying to edit the employees information. When he navigates to edit form of personal change request, under My Crew tab of Manager Self Service in portal, unable to edit the information but he is able to add notes. in the form.
    In detail, the manager is trying to assign new manager to an employee under him(moving an employee to differen team headed by different manager so trying to replace his name in the employee's informaton). The manage is unable to change the information or unable to edit any information in the form "request for change in position/transfer"
    Could someone help me on this.
    Thanks in advance.
    Regards,
    Ravi.
    Edited by: Ravi Alla on Jun 17, 2010 9:15 PM

    Hi,
    The issue is resolved. This is because of Acrobat JavaScript option disabled in display preferences of the form.
    Once this checkbox is enabled its working fine.
    Regards,
    Ravi.

  • Hi gurus in ALV how to edit the fields on out put list

    hi gurus in ALV how to edit the fields on out put list

    hi
    REPORT ZSB_ALV_EDITABLE_SAMPLE.
    TABLES: SFLIGHT.
    DATA: gc_container TYPE scrfname VALUE 'LIST_AREA',
    gc_custom_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
    gc_grid TYPE REF TO CL_GUI_ALV_GRID,
    gs_layout TYPE LVC_S_LAYO,
    gt_fieldcat TYPE LVC_T_FCAT.
    DATA: ok_code TYPE SY-UCOMM.
    DATA: gt_outtab TYPE TABLE OF SFLIGHT.
    *DYNPRO
    CALL SCREEN 100.
    *& Module STATUS_0100 OUTPUT
    MODULE STATUS_0100 OUTPUT.
    SET PF-STATUS '100'.
    CREATE OBJECT gc_custom_container
    EXPORTING
    container_name = gc_container
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    OTHERS = 6.
    CREATE OBJECT gc_grid
    EXPORTING
    i_parent = gc_custom_container
    EXCEPTIONS
    error_cntl_create = 1
    error_cntl_init = 2
    error_cntl_link = 3
    error_dp_create = 4
    OTHERS = 5 .
    PERFORM prepare_field_catalog CHANGING gt_fieldcat .
    PERFORM prepare_layout CHANGING gs_layout .
    PERFORM get_alv_display.
    ENDMODULE.
    *& Module USER_COMMAND_0100 INPUT
    MODULE USER_COMMAND_0100 INPUT.
    OK_CODE = SY-UCOMM.
    IF OK_CODE = 'BACK'.
    SET SCREEN 0.
    LEAVE SCREEN.
    CLEAR OK_CODE.
    ENDIF.
    ENDMODULE.
    FORM prepare_field_catalog CHANGING gt_fieldcat TYPE LVC_T_FCAT.
    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
    I_BUFFER_ACTIVE =
    I_STRUCTURE_NAME = 'SFLIGHT'
    I_CLIENT_NEVER_DISPLAY = 'X'
    I_BYPASSING_BUFFER =
    I_INTERNAL_TABNAME =
    CHANGING
    ct_fieldcat = gt_fieldcat[].
    ENDFORM.
    FORM prepare_layout changing p_gs_layout TYPE lvc_s_layo.
    p_gs_layout-zebra = 'X'.
    p_gs_layout-edit = 'X'.
    ENDFORM. " prepare_layout
    FORM get_alv_display .
    SELECT * FROM sflight INTO TABLE gt_outtab UP TO 10 ROWS.
    CALL METHOD gc_grid->set_table_for_first_display
    EXPORTING
    I_STRUCTURE_NAME = 'SFLIGHT'
    IS_LAYOUT = gs_layout
    CHANGING
    it_outtab = gt_outtab
    IT_FIELDCATALOG = gt_fieldcat
    ENDFORM. " get_alv_display

  • SRM to MDM Scenario -- Unable to Edit the Integration Scenario

    Hi Experts,
    I'm doing a scenario in XI/PI from SRM to MDM.
    I had downloaded all the related content from service market place and also established SLD connections as well.
    When I'm trying to import the Integration Scenario from Integration Repository to Integration Directory I'm getting the follwing error.
    Software component version with GUID 77891250-7da4-11d8-b240-e6890a114c15
    does not exist (SWC_NOT_EXIST)
    I'm unable to edit the integration scenario in IR even with PISUPER credentials which have all the access.
    I'm also unable to edit any of the other objects as well (e.g.,Message Interface,Interface Mapping etc.,)
    PFB the link where I pasted the error snapshot I'm getting when I'm trying to open the Integration Scenario in IR.
    [http://picasaweb.google.co.in/prajwal24/MyScenario#5492932473682114498]
    Can anyone please help me out on what can be done to edit the Integartion Scenario.
    Thanks and Regards,
    Pruthvi

    Thanks kaushik and Salvi for your valuable inputs.
    I have created a copy and now able to edit the Integration Scenario.
    But again a new problem came up.
    Now after editing the predefined scenario which has only SRM 5.0 and SRM 7.0
    I need to add SRM 7.0 application component here in this Integration scenario and this was done successfully.
    Now i need to add one send action and this send action is present in the SWC SRM SERVER IC 7.0.
    I had downloaded the SRM SERVER IC 7.0 content already and I'm able to see in Integration Repository also.
    But this SWC is not present in the application component SAP SRM (WITH SAP EBP) 7.0.
    Please let me know what to do now inorder to add this send action in that application component.
    Regards,
    Pruthvi

  • After idoc regenration unable to view the field in IDOC

    Hi,
    I have enhanced the business partner by EEWB.
    After tha i have regenarted the message type CRMXIF_PARTNER_SAVE and bo type BUS1006 by Tcode BDFG.
    After that also i am unable to view the field in Basin type  CRMXIF_PARTNER_SAVE01 [message type CRMXIF_PARTNER_SAVE ].
    New Zfield added through EEWB is available in CRMXIF_PARTNER_COMPLEX structre.But not coming in IDOC.
    Please advice.
    Regards
    Malay

    Hi,
    From your thread i have understood that the EEWB extended fields have not appeared in the IDoc after regeneration.
    For the customer enhancements there are some of the XIF segments provided by SAP to transport them to IDoc structure.
    Now that you have added the customer fields using EEWB. Please add the fields
    to CRMXIF_CUSTOMER_H and then regenerate the IDOC using BDFG.
    After extending these above mentioned structure kindly regenerate the Idoc Structures. I recommend
    not to add the enhancement fields to the CRMXIF_PARTNER_COMPLEX structure which might lead
    to inconsistency.
    You can make use of CRMXIF_CUSTOMER_H for customer enhancements.
    Regards,
    Venkat

Maybe you are looking for

  • Controling an XML based scrolling thumbnails

    hi! this is my code so far: import caurina.transitions.*; var xmlRequest:URLRequest = new URLRequest("scrolling.xml"); var xmlLoader:URLLoader = new URLLoader(xmlRequest); var imgData:XML; var imageLoader:Loader; var rawImage:String; var rawH:String;

  • Needed: access to icloud in safari upload dialog

    I would like to make the iPad my only computer for school.  However, one of the only things preventing me from doing that is the need to upload files to our university educational website.  We are required to upload documents into Moodle.  I can writ

  • Iphoto is not showing that i have no photos

    iphoto is not showing that i have no photos, but when i look at the file size of the iPhoto library in finder it says its 86gb... how do i get these photos back into my library neatly?

  • Reverb Probl

    Hey, everyone. I've got some problems with an unwanted echo effect. I just hear all sounds on my computer as though reverb is turned up all the way. I checked all my settings, and nothing is turned on that shouldn't be on. CMSS is set to just regular

  • Elements 3.0 disconnected

    Please Help! I have somehow disconnected all of my pics and vids. I have tried to reconnect several times with no success. Someone please tell me I can recover all those precious memories!!