Handling Submit Button on the ADOBE form called from Web Dynpro

Hi,
I have placed a Button on the ADOBE Form. How to Handle the event on this button. When i click this button, i want to save the details of the form into a Custom table.

Hi Majunath.
Create an event say, SUB_EVTin the view in WD where you have the Interactive Form UI element.
Bind this event to the onSubmit of the Form.
Now check the display type of the form. It will be either ActiveX or Native.
Now go to the form designer and open Library palette. Navigate to Webdynpro ActiveX or Native Library(Depending on the form display Type in WD).
Drag and Drop Submit button.
On click of the button, the event handler in WD view namely, onActionsub_evt will be invoked. You can write your code in this handler.
Now in order to read data from the form. Go to the form and go to Properties tab. Check the form layout type. If it is not ZCI, run transaction SFP_ZCI_UPDATE and convert the form to ZCI type.
Now back to the event handler.
as an example... I will use the following context node definitions
PDF_DATA  1..1
  ACTUAL_DATA 0..n
    ATTRIB01
    ATTRIB02
Assume the the node PDF_DATA is bound to the data source of your form.
Now in the event handler write the foll code
data: lo_node type ref to if_wd_context_node,
        lt_data   type wd_this->elements_actual_data.
lo_node = wd_context->get_child_node( name = wd_this-.wdctx_pdf_data ).
lo_node = lo_node->get_child_node( name = wd_this-.wdctx_actual_data ).
lo_node->get_static_attributes_table(
  importing
    table = lt_data ).
This will get all the form data in the internal table lt_data.
Now you can process the data the way you want and save it in your custom tables.
Regards,
Reema .
Edited by: Reema Shahbazkar on Sep 16, 2008 11:39 PM
Hope this helps!!

Similar Messages

  • Submit button in interactive adobe form in abap web dynpro

    Hi can anyone help me out to know hoe to use the submit button in adobe interactive form in abap web dynpro .
    Iam creating a adobe form abap web dynpro . There i need to use the submit button to trigger some action in the adobe interactive form .
    So i need to know how to use the submit button and coding for that in the abap web dynpro .
    Vighnesh

    Hi Michelle,
    Could you tell me how you resolved the problem - as I'm facing exactly the same issue!
    Many Thanks
    Christine

  • I was online earlier this week and liked the forms with submit buttons and the Adobe site directed me to upgrade to Adobe PRO XI in order to use forms so I bought five licenses. Just had it installed today and it is now asking me to sign up for forms Cent

    I was online earlier this week and liked the forms with submit buttons and the Adobe site directed me to upgrade to Adobe PRO XI in order to use forms so I bought five licenses. Just had it installed today and it is now asking me to sign up for forms Central in order to use this feature. What gives? The Adobe site gave me the impression that I would have this feature after purchasing the new upgrade. I would not have purchased the upgrade, let alone five of them had I know this. Am I missing something?

    Acrobat XI comes with the Fromscentral AIR application and the ability to create PDF forms authored in Formscentral. To have more than the free (1 form with 50 responses) level account you need to sign up for a Formscentral subscription.
    Andrew

  • Problem in submit button on adobe form integrated with web dynpro

    Hello,
    I'm facing prob in triggering web dynpro event onSubmit for Interactive form.
    I've created a submit button from web dynpro activex pallete on adobe form (integrated with web dynpro) to send the form as email.
    Then in the web dynpro view where this form is embedded i have created an action against onSubmit event and called a method within this.
    However, on clicking Submit button this event is not getting triggered.
    Please let me know what is lacking in this process?
    Thanks.

    Hi,
    I am also facing the same problem. i have developed a simple scenario under which user have to input his/her details and on submit button it will be updated to database.
    I have tried the above solution but after adopting this solution all the editable fields become non-editable.
    so the above solution is not working for me could you help me out.
    I think ... try this....
    When you create the Adobe Form from WebDynpro, you need to follow one step in SFP Transaction or inSE80 transaction. Open the Adobe Form in any one the transaction and now in SAP menu bar "Utilities" in that you will find the "INSERT THE WEBDYNPRO SCRIPT" just click on that one. Then you will see a new Script Object is being created with the name "ContainerFoundation_JS" under the "Variables" in the Heirarchy of the Object Pallete of the Adobe Form.
    This step is mandatory to use the SUBMIT Button of the "WebDynpro Native", to trigger the OnSubmit event of the WebDynpro.
    Thanks
    Edited by: shailendra2sap on Mar 6, 2009 12:24 PM

  • Adobe Form called from SAP Portal, not executing interface global init code

    Hello!
    I have an adobe form called from both R/3 and SAP Portal and I need to show long text dinamically calculated.
    The deal is at the SAP Portal execution, as scenario characteristics don't allow string definitions, I'm using 255 characters tables (QISR_TAB_TYPE), that I'm trying to convert inside form interface (Global init code).
    The problem is that the interface global init code is being executed when the form is called from R/3, but it is not at SAP Portal.
    Does anybody know how to manage this? It's kind of a problem that the BAdi method int_service_request_init doesn't allow types over 255 characters... and if it is not possible to access the form interface code section (maybe there's any way)... i need to find some code section where i can convert tables before the form context is filled!!
    Thanks a lot!!
    Regards,
    Diana.

    Hi,
    have you searched on SCN? There are some threads with same problem such as [this one|/message/9270216#9270216 [original link is broken];. There is more threads. They may help you to solve your issue.
    Cheers

  • Develop forms using Adobe Forms and ABAP Web Dynpro

    Hi, 
    Could someone help me on how to learn forms development using Adobe Forms and ABAP Web Dynpro?  Any suggestion on Tutorials / Books / other helpful hints please?
    I have good knowledge of Smart Forms and used these to generate PDF Attachments via emails.
    Thanks.
    Regards
    Keshav

    http://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/d-f/faq%20on%20interactive%20forms%20based%20on%20adobe%20software.faq

  • Submit button within Interactive adobe form

    Hi,
        We have developed an Interactive adobe form and inserted a submit button within it We have installed ACI also.We tried putting the submit button both within the adobe form body and also within the webdynpro java view. In both the cases pressing the submit button does not result in any action. Please advise on what we are missing. We checked the forums for similar issues and found out that we are abiding by most of it.
    thanks
    anantharam

    Hi Anantharam,
    Please create and action in your view and attach it to your Interactive form UI element's onSubmit event. By doing this, whenecver you press the Submit button in the form, this action will be invoked. You can place any methots/code that you want to execute on click of submit button.
    If you are using the button outside the form, then you try printing one of the values that you filled in the form which is binded to context. This way you can test.
    If you are using WDP activex UI element s in the form then you need to have ACF installed on the machine and also ensure that the displayMode property of Interactive form is set to ActiveX.
    Hope this helps!!
    Regards,
    Arafat

  • Adobe form called from WDA - Translation Problem

    Hi,
    I have maintained French translation for the Adobe form using GOTO->Translation inSFP transaction.
    when i check in the developement system it is working fine.I have captured the translations in transport request using program
    RS_LXE_RECORD_TORDER and moved it to testing system.
    The changes are available in SFP but not visible when we execute the WDA HRASR00_PROCESS_EXECUTE as it is called from this application.
    Please let me know how to resolve this issue.
    Thanks
    Martina

    Hi ,
    As the form is related to ISR scenario in customizing client , I saved the adobe form there and transported customising request which resolved my issue.

  • HTTP form post from Web Dynpro Java Application without opening new window

    Hi Experts,
    We are trying to submit form data to an external URL from Web Dynpro Java application. We are achieving this with the following piece of code.
      try
       strPrintContent="<html>"+
         "<head>"+
         "<script type=\"text/javascript\">"+   
         "function myfunc () "+
         "{"+
         "var frm = document.getElementById(\"paymentForm\");"+
         "frm.submit();"+
         "}"+
         "</script>"+
         "</head>"+
         "<body onLoad=myfunc()>"+
         "<form id=paymentForm  method=post action=\""+merchantURLPart+"\">"+
         "<INPUT type=hidden name=username value="+userName+">"+
         "<INPUT type=hidden name=pass value="+passWord+">"+
         "<INPUT type=hidden name=senderid value="+senderID+">"+    
         "<INPUT type=hidden name=dest_mobileno value="+mobile+">"+
         "<INPUT type=hidden name=message value='"+msg+"'>"+
         "<INPUT type=hidden name=response value="+response+">"+
         "</form>"+
         "</body>"+
         "</html>";    
      IWDWebResource webResource = WDWebResource.getWebResource(strPrintContent.getBytes(),WDWebResourceType.HTML);
      IWDWindow window = wdComponentAPI.getWindowManager().createNonModalExternalWindow(webResource.getAbsoluteURL(),"WBSEDCL");
      window.show();
      catch(Exception e)
      wdComponentAPI.getMessageManager().reportException("Error : "+e.toString(),false);
    But it opens another window. We dont need that. We have to stay on the same window.  Please suggest what can be done.

    Hi,
    You can create a HTML file with the request post parameters and the external URL something like this:
    public java.lang.String GetRedirecturl( )
    // External URL
    String html = "<html><head></head><body onload=\"load()\"> " +
    "<form id=\"form1\" action=\"https://www.abc.com/xyz.jsp\" method=\"POST\">" +
    // Post Parameters
    "<INPUT TYPE=\"HIDDEN\" NAME=\"Param1\"VALUE=\""+Param1Value+"\">"+
    "<input name=\"sap-wd-resumeurl\" type=\"hidden\"/>" +
    "</form> " +
    "" +
    "<script>" +
    "function load(){" +
    "var loc = window.location.search.substring(1);" +
    "var queryString = loc.split(\"sap-wd-resumeurl=\");" +
    "if(queryString.length > 0)" +
    "{" +
    "var resumeURL = queryString[1].split(\"&\");" +
    "if(resumeURL.length >= 0)" +
    "{" +
    " document.forms['form1'].elements['sap-wd-resumeurl'].value= unescape(resumeURL[0])" +
    "}" +
    "}" +
    "document.getElementById('form1').submit();" +
    "}" +
    "</script>" +
    "</body> </html>";
    String redirectUrl = "";
    byte[] byteArrayHtmlData = null;
    try {
      byteArrayHtmlData = html.getBytes("UTF-8");
    } catch (UnsupportedEncodingException e) {
      wdComponentAPI.getMessageManager().reportException("Internal error occurred. Please try after some time",true);
    IWDResource htmlResource = WDResourceFactory.createCachedResource(new ByteArrayInputStream(byteArrayHtmlData), "Redirect.html", WDWebResourceType.HTML, true);
    redirectUrl = htmlResource.getUrl(WDFileDownloadBehaviour.AUTO.ordinal());
    return redirectUrl;
    Hope this will be helpful.
    Regards,
    Anurag

  • Multiple submit button on the same form

    Hi,
    I have created a PL/SQL procedure which generates a HTML form using htp and below is part of the code.
    Create or Replace PROCEDURE OBM_PROCEDURE
    htp.formOpen(OWA_UTIL.GET_OWA_SERVICE_PATH || 'insert_obm');
    htp.formSubmit(cvalue=> 'Insert');
    This creates the form and clicking Insert button calls the other procedure (insert_obm).. works fine.
    I could create other buttons like "Query" "Update" "Delete" on the same form using following.
    htp.print ('<INPUT TYPE=submit VALUE="Query"> ');
    But all the buttons call the same form (insert_obm) since they are in the same form. How do I make the buttons call different procedure?
    Thanks,
    Jee

    Hi,
    The best way to do is call a single procedure as you are doing on form submit and check which form submit was clicked ,say based on the submit value and then do the processing accordingly i.e whether it is INSERT or DELETE.
    Hope this helps,
    Thanks,
    Anu

  • Hide/Disable Print button on the Adobe form for my user

    Hi
      How do I Hide/Disable my print option for the user viewing my Adobe form shown using WD for Java application.
    Regards,
    Murali.

    Hello Raja Sekhar,
    This object is not available anymore in Designer 7.1. This setting can now be achieved through a web dynpro (Java) API (interface <a href="https://media.sdn.sap.com/javadocs/NW04s/SPS7/wd/com/sap/tc/webdynpro/clientserver/adobe/pdfdocument/api/IWDPDFDocumentAppearance.html">IWDPDFDocumentAppearance</a>). In web dynpro ABAP you would need to use the method handler of the <b>InteractiveForm</b> UI element (IF_WD_IACTIVE_FORM_METHOD_HNDL, SET_HIDE_TOOLBARS).
    Regards,
    Philipp

  • Can I have multiple submit buttons on the same form?

    Hi!
    I'm creating a web page that allows the user to build a mail filter, and I would like to have to submit buttons, one to add more fields to the filter and another one to save the filter... I could insert the two buttons on the, but I don't know how to distinguish them while doing the process of the form on a jsp page. Any ideas?

    You can create additional submit buttons using Javascript buttons:
    <input type='button' value='Add Fields'
    onClick='this.form.action="/servlet/AddFields";this.form.submit()' />
    <input type='button' value='Save Filter'
    onClick='this.form.action="/servlet/SaveFilter";this.form.submit()' />
    The value of "onClick" is a block of Javascript, so you can all a function to validate the form before submitting, etc.
    Mike W.

  • Adobe Form dumps in Web Dynpro ABAP Application but opens up by Report

    Hello Experts,
    I created a form and tested it by creating a report which contains following code,
       call function 'FP_FUNCTION_MODULE_NAME'
            exporting
              i_name     = lv_form_name "my form name
            importing
              e_funcname = iv_function_name.
    *retrieve data in lt_items
      call function iv_function_name
        exporting
          /1bcdwb/docparams  = fp_docparams
          it_item            = lt_items
          is_header          = is_header
          control_parameter  = ls_control_parameters
        importing
          /1bcdwb/formoutput = fp_formoutput
        exceptions
          usage_error        = 1
          system_error       = 2
          internal_error     = 3.
    However when I try to do it on click of a button in my Web Dynpro Application, it dumps (the action has very much the similar code).
    The error is: USAGE_ERROR
    SY-TITLE HTTP Control
    SY-MSGTY E
    SY-MSGID FPRUNX
    SY-MSGNO 111
    Thanks in advance for your help.
    Best regards,
    Abir

    Hi Otto,
    I try to paste the ST22 log below.
    Short text
        Exception condition "USAGE_ERROR" raised.
    Error analysis
        A RAISE statement in the program "SAPLFPCALL" raised the exception
        condition "USAGE_ERROR".
        Since the exception was not intercepted by a superior
        program, processing was terminated.
        Short description of exception condition:
        For detailed documentation of the exception condition, use
        Transaction SE37 (Function Library). You can take the called
        function module from the display of active calls.
    Source Code Extract
    Line  SourceCde
       16 *   Return of PDF is always possible.
       17     IF ie_outputparams-device IS NOT INITIAL AND
       18        ie_outputparams-device <> 'PRINTER'.
       19 *     Devices TELEFAX and MAIL are not allowed in many cases.
       20       IF ie_outputparams-nodialog = c_false
       21         OR ie_outputparams-preview = c_false
       22         OR ie_outputparams-noprint = c_false
       23         OR ( ( ie_outputparams-arcmode = '2' OR ie_outputparams-arcmode = '3' )
       24              AND ie_outputparams-noarchive = c_false ).
       25 *       Dialog or no preview; preview only if no output or archiving requested.
       26         MESSAGE ID 'FPRUNX' TYPE 'E' NUMBER '110'
       27             WITH ie_outputparams-device RAISING usage_error.
       28       ENDIF.
       29     ENDIF.
       30   ENDIF.
       31
       32 * Call the internal interface.
       33   move-corresponding ie_outputparams to l_params.
       34
       35   call function 'FPCOMP_JOB_OPEN'
       36     changing
       37       ie_outpar            = l_params
       38     exceptions
       39       cancel               = 1
       40       usage_error          = 2
       41       system_error         = 3
       42       internal_error       = 4.
       43   case sy-subrc.
       44     when 0.
       45     when 1. raise cancel.
    >>>>>     when 2. raise usage_error.
       47     when 3. raise system_error.
       48     when 4. raise internal_error.
       49   endcase.
       50
       51   move-corresponding l_params to ie_outputparams.
       52
       53 endfunction.
    Contents of system fields
    Name     Val.
    SY-SUBRC 2
    SY-INDEX 7
    SY-TABIX 0
    SY-DBCNT 0
    SY-FDPOS 70
    SY-LSIND 0
    SY-PAGNO 0
    SY-LINNO 1
    SY-COLNO 1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE HTTP Control
    SY-MSGTY E
    SY-MSGID FPRUNX
    SY-MSGNO 111
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO 0
    SY-DATUM 20101110
    SY-UZEIT 091449
    SY-XPROG SSO2GETPARAM
    SY-XFORM GET_PARAMETER
    Chosen variables
    Name
        Val.
    No.      20 Ty.          FUNCTION
    Name  FP_JOB_OPEN
    IE_OUTPUTPARAMS
        PRINTER XX                                   00#䄀###   #䄀###      X   ##00000000000000   00>
        0000000000000000000000000000000000000000000000004000000040000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000001000000010000000000000000000000000000000000000
        5544545255222222222222222222222222222222222223300000222000002222225222003333333333333322233344
        029E4520880000000000000000000000000000000000000000000000000000000080000000000000000000000000C9
        005000520049004E005400450052002000580058002000200020002000200020002000200020002000200020002000
    SYST-REPID
        SAPLFPCALL
        0000000000000000000000000000000000000000
        0000000000000000000000000000000000000000
        5454454444222222222222222222222222222222
        310C6031CC000000000000000000000000000000
        005300410050004C0046005000430041004C004C002000200020002000200020002000200020002000200020002000
    %_SPACE
        0
        0
        2
        0
        0020
    SY-SUBRC
        2
        0000
        0002
        00000002
    SY-REPID
        SAPLFPCALL
        0000000000000000000000000000000000000000
        0000000000000000000000000000000000000000
        5454454444222222222222222222222222222222
        310C6031CC000000000000000000000000000000
        005300410050004C0046005000430041004C004C002000200020002000200020002000200020002000200020002000
    %_DUMMY$$
        0000
        0000
        2222
        0000
        0020002000200020
    SY-MSGV3
        00000000000000000000000000000000000000000000000000
        00000000000000000000000000000000000000000000000000
        22222222222222222222222222222222222222222222222222
        00000000000000000000000000000000000000000000000000
        0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000
    SY-MSGNO
        111
        000
        000
        333
        111
        003100310031
    %_VIASELSCR
        0
        4
        04
    SY-MSGV4
        00000000000000000000000000000000000000000000000000
        00000000000000000000000000000000000000000000000000
        22222222222222222222222222222222222222222222222222
        00000000000000000000000000000000000000000000000000
        0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000
    SPACE
        0
        0
        2
        0
        0020
    Application Calls
    Index Calls
        1 R=7 P=/sap/bc/webdynpro/sap/INM_WORKCENTER_APP/
    Internal notes
        The termination was triggered in function "ab_jfune"
        of the SAP kernel, in line 3058 of the module
         "//bas/720_REL/src/krn/runt/abfunc.c#3".
        The internal operation just processed is "FUNE".
        Internal mode was started at 20101110091356.
    Lock Shared Objects
    ModeLockRe Area Name
    Instance Name                                                                    Clt Lock Type
    VersionId  Label                Include                                  Line       Time Stamp
             1 CL_WDR_CONF_APPL_SHM
    INM_WORKCENTER_APP.                                                              102 R
           178                 5690 CL_WDR_CONF_APPL_SHBROKER=====CM001               9 20101110091356
             2 CLUR_NW7_MESSAGE_AREA
    E                                                                                R
            10                   10 CLUR_NW7_MESSAGES=============CM003              11 20101110091356
             3 CL_WDR_CFG_COMP_SHM
    INM_WORKCENTER_COMP.AD4B75FF707A473CD26008949EBB0A69.07..E                       102 R
            11                   12 CL_WDR_CFG_COMP_SHBROKER======CM006              29 20101110091359
    Directory of Application Tables
    Name                                     Date       Time       Lngth
        Val.
    Program  SAPMHTTP
    SYST                                       .  .       :  :     00004612
        \0\x0007\0\0\0\0\0\x0001\0\0\0\0\0\x0001\0\0\0\0\0\0\0\0\0
    SY                                         .  .       :  :     00004612
        \0\x0007\0\0\0\0\0\x0001\0\0\0\0\0\x0001\0\0\0\0\0\0\0\0\0
    Program  SAPLHTTP_RUNTIME
    ICFBUFFER                                  .  .       :  :     00005624
    ICFSERVICE                                 .  .       :  :     00004040
        SAP            0000000000000000000000000DFFAEATGKMFLCDXQ04
    Program  CL_HTTP_SERVER================CP
    RSJOBINFO                                  .  .       :  :     00000164
                                        00000000000000
    Program  SAPLLANG
    T002                                       .  .       :  :     00000010
        ES1EN|
    Program  SAPLSSFG
    SSFARGS                                    .  .       :  :     00001734
    Program  CL_WDR_CLIENT_ABSTRACT_HTTP===CP
    INDX                                       .  .       :  :     00003104
        102BMWD_SP_LEVEL           \0\0\0  00000000
    Program  CONTEXT_X_TR_SYS_PARAMS
    CONTEXTB                                   .  .       :  :     00002992
        102EBTR_SYS_PARAMS       000007000100000000000000\0\0\0\0
    TCONT                                      .  .       :  :     00000068
        TR_SYS_PARAMS       20100623230418|
    Program  CL_WDR_TRACE_TOOL=============CP
    INDX                                       .  .       :  :     00003104
        102BMSWD_TRACETOOL_ACTIVEAR\0\0\0  00000000
    Program  SAPLSKWF_NAMESPACE
    SKWF_URLIO                                 .  .       :  :     00000384
        102BBMIME/sap/public/bc/ur/nw5/themes/custom
    Program  SAPLSDCL
    SDOKIOCL                                   .  .       :  :     00000600
    SDOKIOCLT                                  .  .       :  :     00000150
    SDOKLOCL                                   .  .       :  :     00000754
                              00000000000000            0000000000
    SDOKLOTAB                                  .  .       :  :     00000362
    SDOKPHTAB                                  .  .       :  :     00000662
    Program  SAPLISOC
    T002                                       .  .       :  :     00000010
        ES1EN|
    Program  CL_CALENDAR_DEFINITION_CALLER=CP
    INDX                                       .  .       :  :     00003104
        102ARCAL_DEF               \0\0\0  00000000
    Program  CL_WDR_LS_JS_TIMESTAMP========CP
    INDX                                       .  .       :  :     00003104
        102BMCL_WDR_LS_JS_TIME...  \0\0\0  00000000
    Program  CL_WDR_WINDOW=================CP
    RSJOBINFO                                  .  .       :  :     00000164
                                        00000000000000
    Program  CL_WDR_DELEGATING_VIEW========CP
    RSJOBINFO                                  .  .       :  :     00000164
                                        00000000000000
    Program  CL_CGPL_USER_OPTIONS==========CP
    CGPLT_OPT_INDX                             .  .       :  :     00003040
        102OP*           RPM                                \0\0 0
    Program  SAPLBDLS
    T000                                       .  .       :  :     00000214
        102GCC:GTv1-5.IK.PLN Dev CltGDC                      CHF
    Program  SAPLSDEX
    DD07L                                      .  .       :  :     00000120
        /GLB/7PTIR_GLB_PROJSTATUS     A00020000R
    Program  SAPLSSCU
    USR02                                      .  .       :  :     00000942
        102ARAYCHA     \0\0\0\02010032499991231AGCCSC_EU    \0
    Program  SAPLPRGN
    AGR_DEFINE                                 .  .       :  :     00000266
        102TM15_GLB_XX_ZR4026A_PLN01
    Program  SAPLSDOC
    DOKHL                                      .  .       :  :     00000306
        TXLG1B0000062000009
    DOKTL                                      .  .       :  :     00000296
    Program  SAPLSI63
    IWBSETTING                                 .  .       :  :     00000260
    Program  SAPLSR11
    TADIR                                      .  .       :  :     00000464
    Program  SAPLSUGU
    CVERS                                      .  .       :  :     00000102
        SAP_BW                        702       0004      W|
    Program  SAPLSUG2
    SVERS                                      .  .       :  :     00000144
        702
    Program  CONTEXT_X_IWB_CLASS_PROPS
    CONTEXTB                                   .  .       :  :     00002992
        102IBIWB_CLASS_PROPS     000007000300000000000000\0\0\0\0
    TCONT                                      .  .       :  :     00000068
        IWB_CLASS_PROPS     20010206162330|
    Program  SAPLTIW1
    IWTESTFCTS                                 .  .       :  :     00000052
                                  |
    Program  SAPLSDCS
    SDOKDOCSP                                  .  .       :  :     00000148
    Program  SAPLSDSD
    DDSHOFFLD                                  .  .       :  :     00003020
        IF/RPM/TS_ITEM_D_DATA_CUST      YYGLB_SEVERITY
    Program  /1BCWDY/EI2AA7ZECUCSFD0NKHM6==CP
    RSJOBINFO                                  .  .       :  :     00000164
                                        00000000000000
    Program  SAPLSUNI
    TFDIR                                      .  .       :  :     00000268
    Program  SAPLBDS_METHODS
    BDS_LOCL                                   .  .       :  :     00000350
        DEVC_STXD_BITMAP              OTBDS_LOC3  BDS_POC3  BDS_RE
    I really appreciate your help.
    Many thanks and best regards,
    Abir

  • Offline  Adobe forms with Out Web Dynpro

    Hi All,
    I am new to Adobe Forms.
    In one of my requirement, I have to create an Adobe forms  .In that Adobe forms user entered the data
    Manually  and in that forms  one button will be there, when  the user clicks the button the data in the
    forms uploaded to SAP CRM system.
    Please porvide me some input.
    Thanks & Regards
    R R Pradhan

    hi
    this link might be helpful, Support of Interactive Forms in SAP CRM 7.0

  • How to debug Adobe form attached to Web Dynpro for ABAP

    Hi,
    My developer has created an adobe form and rendered inside a Web Dynpro page in the SAP Portal. It communicates with the Web Dynpro framework in the backend SAP system (Web Dynpro for ABAP).
    My question is, how would I know what infotype access this form requires, in the form of backend authorization role? Is there any way (not trace, ST01) to debug Abobe form on Portal or in backend SAP system?
    Thanks,
    Karan.

    Julius Bussche wrote:
    > I am not sure whether this will work in this case, but principally if your trace is recording a * value for a field in an authorization check, then it must be defined somewhere, and there is an option in the trace file to jump from the check to the source code location where it occurred.
    Yes, that's possible since the trace also records the information on the ABAP source code location where the AUTHORITY-CHECK statement (or other ABAP statements which internally trigger authorization checks) is executed. If I'm not wrong then there is a button (in ST05) which allows a direct source code navigation. Alternatively you might just click on the ABAP source code information displayed in the ST05 trace results (for recorded authorization checks).
    Cheers, Wolfgang

Maybe you are looking for

  • All songs on ipod, how do i get them into itunes without losing them

    the only place that i have my songs is on my ipod now. i made the mistake of deleting all of my songs in my itunes so that i could clean up my computer. is there any way i can put the songs on my ipod into itunes withuot losing them?

  • IBase When Creating a Request for Change in Solution Manager 7.1

    Hello all, We recenlty upgraded our sandbox system to Solution Manager 7.1 SP3 and are currently investigating the new ChaRM functionality with the new CRM UI. Our company had configured ChaRM back in 2007 and has been working very well since the ini

  • How to register custom form into Oracle Applications

    I created a custom form based on a custome table, then I registered in Oracle applications, but it is not opening properly in Oracle applications. It is running fine outside of Oracle Applications. Are there any standard packages which I need to atta

  • How to put the column name and variable value in the alert message.

    Dear, how can i put the column name and variable value in the alert message text. i want to display an alert which tell the user about the empty textboxes. that these textboxes must be filled. Regards: Muhammad Nadeem CHIMERA PVT. LTD. LAHORE [email 

  • JButton keeps JFrame from succesfully implementing KeyListener?!

    Look at this code: import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Test extends JFrame implements KeyListener      private JButton myButton;      public Test()           Container c = getContentPane();           c.setLa