Submit for prog type F

how can i make submit to ptogram type F.

Hi,
Only for Type 1(Executable programs),Submit can be used.Hence,you cannot use Submit for Type F(Functon Modules).
Refer to the content below for the explanation.
Programs that Cannot Be Run Directly
These programs cannot be started directly by a user. Instead, they contain processing blocks or other source code that can only be used by an application program that is already running. They are described in more detail in a later section.
Type F
Type F programs are not executable. They serve as a container for function modules. When you call a function module from an ABAP program, the entire main program is loaded into the internal session of the current program. Since type M programs contain mainly function modules, they are known as function groups. Function modules are a type of procedure. They are described in more detail in the Procedures section.
Type K
Type K programs are not executable. They are container programs for global classes, and are known as class definitions. Classes belong to ABAP Objects and are described in more detail in that section.
Type J
Type J programs are not executable. They are container programs for global interfaces, and are known as interface definitions. Interfaces belong to ABAP Objects and are described in more detail in that section.
Type S
Type S programs are not executable. They are container programs for subroutines that should only be called externally. When you call a subroutine from an ABAP program, the entire main program is loaded into the internal session of the current program. Since type S programs contain mainly subroutines, they are known as subroutine pools. Subroutines are a type of procedure. They are described in more detail in the Procedures section.
Type I
Type I programs cannot be run directly, and contain no callable processing blocks. They are used exclusively for modularizing ABAP source code, and are included in other programs. Include programs are described in more detail in the Source Code Modules section.
Function Modules
Function modules are for global modularization, that is, they are always called from a different program. Function modules contain functions that are used in the same form by many different programs. They are important in the R/3 System for encapsulating processing logic and making it reusable. Function modules must be defined in a function group, and can be called from any program.
For the procedure for calling the Function Modules,please refer to the lnk mentioned below:
http://help.sap.com/saphelp_46c/helpdata/en/e4/2adbd7449911d1949c0000e8353423/frameset.htm
In case you have any further clarifications,do let me know.
Regards,
Puneet Jhari.
Message was edited by:
        Puneet Jhari

Similar Messages

  • ABAP code to submit RFBIBL00 prog .

    Can anyone help me with the ABAP code to submit RFBIBL00 prog .

    Conversion program for RFBIBL00 to post financial Documents using    *
    TCode FB01
    This program is getting only one line item for one transaction...Logic is
    applied for reconcilialtion
    reconciliation - to make balance zero                            *
    REPORT zrfbib_conv .
    DATA: BEGIN OF bgr00.         "BI strucutre in RFBIBL00
            INCLUDE STRUCTURE bgr00.
    DATA: END OF bgr00.
    DATA: BEGIN OF bbkpf.      " Header Structure in RFBIBL00
            INCLUDE STRUCTURE bbkpf.
    DATA: END OF bbkpf.
    DATA: BEGIN OF bbseg.  " Line Item Structure in RFBIBL00
            INCLUDE STRUCTURE bbseg.
    DATA: END OF bbseg.
    *File in Application Server
    DATA: output_file_name LIKE rfpdo-rfbifile VALUE 'J:\EXCER'.
    *Data declaration for passing values to screen of RFBIBL00
    DATA: callmode VALUE 'B',                      "BDC MODE
          max_comm(4) VALUE '1000',                 "COMMIT
          pa_xprot,                                 “
          anz_mode LIKE rfpdo-allgazmd VALUE 'N',    “Display Mode
          update LIKE rfpdo-allgvbmd VALUE 'S',       “ Update Mode
          tab1 TYPE i,
          in_tab TYPE i,
          fl_check,
          flag TYPE c.
    CONSTANTS: exp_acc(3) VALUE '800'.
    DATA: BEGIN OF itab1 OCCURS 0,
           bldat LIKE bkpf-bldat,     
           blart LIKE bkpf-blart,          “Document Type
           bukrs LIKE bkpf-bukrs,          “Company Code
           budat LIKE bkpf-budat,          
           waers LIKE bkpf-waers,          “Currency Key     
           bschl LIKE bseg-bschl,          “posting Key
           hkont LIKE bseg-hkont,          “Account Number     
           wrbtr(17) TYPE c,          “Transactional Amount     
           sgtxt LIKE bseg-sgtxt,          “Text
         END OF itab1.
    DATA: itab LIKE itab1 OCCURS 0 WITH HEADER LINE,
          wa_itab LIKE itab1.
    SELECTION-SCREEN: BEGIN OF BLOCK blk.
    PARAMETERS: fname TYPE rlgrap-filename,
                poutput LIKE rfpdo1-f05xicpd DEFAULT 'PAY',
                pgroup LIKE bgr00-group DEFAULT 'FBPRAC',
                pusnam LIKE bgr00-usnam DEFAULT sy-uname,
                pxkeep LIKE bgr00-xkeep DEFAULT 'X',
                pstart LIKE bgr00-start DEFAULT space,
                ptcode LIKE blf00-tcode DEFAULT 'FB01',
                XLOG(1) TYPE C DEFAULT 'X'.
    SELECTION-SCREEN: END OF BLOCK blk.
    Select File to upload data into internal table
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR fname.
      CALL FUNCTION 'F4_FILENAME'
           EXPORTING
                program_name  = 'ZRFBIB_CONV'
                dynpro_number = '1000'
                field_name    = 'FNAME'
           IMPORTING
                file_name     = fname.
    START-OF-SELECTION.
    *Upload data from legacy to itab
      PERFORM upload_data.
    Open App File
          OPEN DATASET output_file_name FOR OUTPUT IN TEXT MODE.
      IF sy-subrc <> 0.
        WRITE:/ 'FILE COULD NOT BE OPENED'.
      ENDIF.
    Populate data into bgr00 structure
      PERFORM populate_bgr00.
    *Load data
      PERFORM load_data.
    *&      Form  upload_data
    FORM upload_data.
      CALL FUNCTION 'WS_UPLOAD'
       EXPORTING
         filename                      = fname
         filetype                      = 'DAT'
        TABLES
          data_tab                      = itab1
    ENDFORM.                    " upload_data
    *&      Form  populate_bgr00
    Subroutine to populate data in bgr00 structure
    FORM populate_bgr00.
      bgr00-stype = '0'.                   "BI Record
      bgr00-group = pgroup.                "BDC Group
      bgr00-mandt = sy-mandt.              "Client
      bgr00-usnam = pusnam.                "User Id
      bgr00-start = pstart.                "Queue Start Date
      bgr00-xkeep = pxkeep.                "Keep Session
      bgr00-nodata = '/'.
      TRANSFER bgr00 TO output_file_name.
    ENDFORM.                    " populate_bgr00
    *&      Form  load_data
    Actual load logic start in this subroutine
    FORM load_data.
      LOOP AT itab1.
        REFRESH itab.
    ***For the purpose of reconciliation,split the bschl and HKONT into 2
    ***line items
        MOVE-CORRESPONDING: itab1 TO wa_itab.
        APPEND wa_itab TO itab.
    **For the purpose of reconciliation,do as below
        IF wa_itab-bschl = '50'.
          wa_itab-bschl = '40'.
        ELSE.
          wa_itab-bschl = '50'.
        ENDIF.
        APPEND wa_itab TO  itab.
        READ TABLE itab INDEX 1.
    *populate data in bbkpf
        PERFORM populate_bbkpf.
        LOOP AT itab.
    *populate data in bbseg.
          PERFORM populate_bbseg.
      ENDLOOP.
        CLEAR: itab, itab1.
    *Submit to program rfbibl00
        SUBMIT rfbibl00 WITH  ds_name   =   output_file_name   "File name
                            WITH  fl_check  =   fl_check       "File check
                            WITH  callmode  =   callmode       "BDC Mode
                            WITH  max_comm  =   max_comm       "Max Commit
                            WITH  pa_xprot  =   pa_xprot       "Extended Log
                            WITH  anz_mode  =   anz_mode      " Display Mode
                            WITH  update    =   update        "Update Mode
                            WITH XLOG = XLOG                  "Display Log
                            AND RETURN.
      ENDLOOP.
    ENDFORM.                    " load_data
    *&      Form  populate_bbkpf
          text
    FORM populate_bbkpf.
      TRANSLATE bbkpf USING ' /'.
      bbkpf-stype = '1'.                   " BI Interface Record
      bbkpf-tcode = ptcode.                " Transaction Code
      bbkpf-bldat = '31122004'.             " Document Date
      bbkpf-budat = '31122004'.             " Posting Date
      bbkpf-blart = itab-blart.                  " Document Type
      bbkpf-bukrs = itab-bukrs.         " Company Code
      bbkpf-waers = itab-waers.                 " Currency
    BBKPF-XBLNR = 'PAYROLL'.             " Reference Document
      bbkpf-sende = '/'.                   " Record End Indicator
      TRANSFER bbkpf TO output_file_name. "Transfer to App Server File
    ENDFORM.                    " populate_bbkpf
    *&      Form  populate_bbseg
    FORM populate_bbseg.
      CLEAR bbseg.
      TRANSLATE bbseg USING ' /'.
    *Document Detail For Accounting Document
      bbseg-stype = '2'.                   "Batch Input Interface Record
      bbseg-tbnam = 'BBSEG'.
      bbseg-wrbtr = itab-wrbtr.          "Amount in Local Currency
      bbseg-sgtxt = itab-sgtxt.           "Line Item Text
      bbseg-newbs = itab-bschl.            "Posting Key for Next Line
      bbseg-newko = itab-hkont.
      bbseg-sende = '/'.                   "Record End Indicator
      TRANSFER bbseg TO output_file_name.  “Transfer data from itab to App file
    ENDFORM.                    " populate_bbseg

  • Parse method is not possible for this type

    I have a file upload component and one button in a view.
    I have created a binary type context element and mapped it with fileupload component.while clicking the submit button I am getting " Parse method is not possible for this type" exception.
    help me out.
    Thanks In advance

    Hi,
    Thanks for your response. I have written the following code in wddoinit():     
    IWDAttributeInfo attributeinfo = wdContext.getNodeInfo().getAttribute(IPrivateSubstanceDocView.IFileUpload02Element.DATA);
        attributeinfo.getModifiableSimpleType();
    fileUpload02 is my context.
    but I am getting a null pointer exception over here.
    can ypu please help it.
    Actually the case is this is a window, which is opening on click of a hyperlink on another View.
    With the action method I am calling this View.
    Thus on click of a hyperlink just I am opening a new  View then here I am a browse button etc...
    PLease help if you can

  • Parse method is not possible for this type Exception in web dynpro

    I have a file upload component and one button in a view.
    I have created a binary type context element and mapped it with fileupload component.while clicking the submit button I am getting " Parse method is not possible for this type" exception.
    help me out.

    Hi sridhar,
    Use this code for Upload
    context u create one attribute(up),u assign the data type as "Resource"(which is dictionary type)
    InputStream text = null;
        int temp = 0;
        try
             File file = new File(wdContext.currentContextElement().getUp().getResourceName());
             FileOutputStream op = new FileOutputStream(file);
             if(wdContext.currentContextElement().getUp()!=null)
                  text = wdContext.currentContextElement().getUp().read(false);
                   while((temp=text.read())!=-1)
                                                                       op.write(temp);
             op.flush();
             op.close();
        catch(Exception e)
         e.printStackTrace();   

  • Currency conversion issue for condition type

    Hello,
    I am creating two invoice document.
    1. Customs Invoice (ZCDS)
    2. Inter company invoice.(IVA)
    both the invoices should be similar. Same pricing procedure is used to create both the documents but in Customs invoice YUMU condition type is not getting converted whereas in IVA the condition type is getting converted. Can anyone tell me the possible reason for this?
      ZCDS
    IVA
    Regards,
    Jagjeet

    Hi Jagjeet,
    For IVA invoice type -(For condition type- YUMU)
    Below highlighted part of code is changing KSTEU from 'E' to 'C' for IVA invoice using std prog RVIVAUFT.
    For ZCDS Invoice Type -(For condition type- YUMU)
    Program RVIVAUFT is not called since ZCDS is not trigerried using Output type unlike IVA.
    Hence KSTEU is not getting updated from 'E' to 'C' in case of ZCDS.
    To solve your problem write code in User exit - userexit_pricing_copy to change  konv-ksteu to 'C' for YUMU condition type at runtime.This will definately solve your problem.This will ensure you get correct/same condition value for IVA and ZCDS...:)
    Regards,
    Vikas Mulay.

  • Error: Data size bigger than max size for this type: 4774

    Hi all,
    I am using Oracle 8.1.7.I am having long datatype in one table.I installed Oracle 9i jdbc driver( ojdbc14.jar) file and using it .When i try to submit the form from web it is giving the following error
    java.sql.SQLException: Data size bigger than max size for this type: 4774
    The same thing worked if i use Oracle ODBC driver.
    Regards
    Vasu

    Hi,
    Can you please let me know what could be the reasons for encountering the error. Am struck with this issue.
    Thanks.

  • Method fprint(String) is undefined for the type JspWriter.

    please help me with this problem
    below is the jsp code written to access the data from the database and to display it in the new page.
    <%@ page
         import = "java.io.*"
         import = "java.lang.*"
         import = "java.sql.*"
    %>
    <%
         Connection dbconn=null;
         ResultSet results;
         PreparedStatement sql=null;     
                   String empid1=request.getParameter("empids");     
              try
    String driver = "com.mysql.jdbc.Driver";
              Class.forName(driver).newInstance();
                   dbconn =DriverManager.getConnection("jdbc:mysql://localhost/hris","root","redhat");
                   int empid11;
                   empid11=Integer.parseInt(empid1);
                   sql = dbconn.prepareStatement("select * from employee where empid=?");
                   sql.setInt(1,empid11);
                   results=sql.executeQuery();
                   results.next();
    out.print("<html>");
    out.print("<head>");
    out.print("</head>");
    out.print("<body>");
    out.print("<table width=810 border=0>");
    out.print("<tr>");
    out.print("<td width=210>");
    out.print("Employee Id");
    out.print("</td>");
    out.print("<td width=584>");
    int emp=results.getInt("empid");
    out.print(emp);
    out.print("</td>");
    out.print("</tr>");
    out.print("<tr>");
    out.print("<td>");
    out.print("FirstName");
    out.print("</td>");
    out.print("<td>");
    String first=results.getString("fname");
    out.print(first);
    out.print("</td>");
    out.fprint("</tr>");
              catch (SQLException s)
                   out.println("SQL Error <br>"+s);
    catch ( Exception x )
                   x.printStackTrace();
    %>
    but when i click the submit button , the error is
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 9 in the jsp file: /HRIS/empsearch1.jsp
    Generated servlet error:
    The method fprint(String) is undefined for the type JspWriter
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:510)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:375)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 9 in the jsp file: /HRIS/empsearch1.jsp
    Generated servlet error:
    The method fprint(String) is undefined for the type JspWriter
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:84)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:328)
         org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:409)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:297)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:276)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:264)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:303)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.15 logs.
    i am not able to rectify the error.

    JavaB wrote:
    Hi ,
    I have a method defined in my dataManagerDAO classIs it dataManagerDAO or DataManagerDAO?
    getNoc( strRppsId) throws Exception {}That's not a legal Java method declaration, so it's clearly not your actual declaration, so I have no idea what your actual declaration is, so I can't tell you what you're doing wrong.
    Now I am calling this method inside my JSP page :
    DataManagerDAO dataMgr = new DataManagerDAO();
    dataMgr.getNoc(strRppsId)..
    But whenver I am running it locally , it fails to compile and gives following error msg :
    The method getNoc(String) is undefined for the type DataManagerDAOQuite obviously you're calling a method getNoc(String) but that method doesn't exist on the DataManagerDAO class. No matter how much you may think you know that it does, you're wrong and the compiler is right.
    Maybe you misspelled or mis-capitalized something. Maybe you're passing the wrong type of argument. Maybe you're still using an older version of the DataManagerDAO class from before you added that method. Not enough information here to say for sure.
    ny clue wats going wrong in here ?I assume you mean "any", not "ny" and "what's", not "wats". Clear, correct, precise communication counts with folks here almost as much as it does with the Java compiler.

  • Error at submit for approval in partner program

    Hi All,
    I am created the partner program in r12 and when i click the submit for approval i receive this error
    Start :Item Type : AMSGAPP Item key : CONCEPTPRGT140282
    Invalid Workflow Role for Approver
    send me the solution for it as soon as possible
    Thanks
    Edited by: user12235518 on Mar 8, 2012 4:36 AM

    user12235518 wrote:
    Hi All,
    I am created the partner program in r12 and when i click the submit for approval i receive this error
    Start :Item Type : AMSGAPP Item key : CONCEPTPRGT140282
    Invalid Workflow Role for Approver
    send me the solution for it as soon as possiblePlease see if these docs help.
    Budget Allocation or Offer Approval Error: "Invalid Workflow Role for Approver" [ID 414053.1]
    Invalid Workflow Role For Approver Error When Trying To Approve A Deliverable In Marketing [ID 181484.1]
    Unable To Approve Quota With Error : AMSGAPP Invalid Workflow Role for Approver [ID 422910.1]
    Error when Generating Invite List of Oneoff Event [ID 266349.1]
    Errors Occuring During Claim Approval [ID 1361361.1]
    Thanks,
    Hussein

  • Error in VSR result for program type

    Hi Experts,
    We are facing the error while running the Prog. Type Progression in student file. In student file we select tab program type progression --> in program type select gradute --> click on change progression result.
    When we click on that we are getting this error:
    1.Error@     01ST0000     GR-4 Error in VSR result for program type GR and progression category 4@35\QLong text exists@
    2.Error@     01ST0000     GR-4 GR-<> is not available; choose a progress classification     @5F\QNo long text exists@
    wat can we do to resolve it.
    Kind Regards,
    Sudhanshu

    Hi Sudhansu,
    Check you config. It is customizing error. This Progress classification category is not valid for program type. Or this progress classification category does not exits.
    Thanks,
    Prabhat Singh

  • Long text for object type.

    Hi,
    Is there any table which stores long text for object type?
    I am fetching list of objects from table TADIR for particular user, I am getting objects as DOMA, TABL, PROG ..etc But I want long text for these object type for eg. Domain for DOMA, Program for PROG and so on.. Is there any method to get the long text for object type?
    Regards,
    Parshuram.

    Hello Vinod,
    Looks like the FM 'TRINT_OBJECT_TABLE' is tightly coupled to SAP CTS & hence the hard-coding! Also i don't see where the long text of the object is returned.
    On the contrary if you check the FM 'DOCU_READ' you've the table DOKTL which stores the long text(or the documentation) of the object.
    Btw, i'm not sure what did the OP actually mean by "long-text". Does he mean the documentation?
    Dammit! I get it now. Imho, "description" should have been a more appropriate word
    BR,
    Suhas
    Edited by: Suhas Saha on Jan 13, 2012 4:57 PM

  • USER EXIT for Message Type PCROLL

    Hello Gurus ,
    My requirement is that i need to convert few fields for Message Type PCROLL (Basic type GLDCMT01)  before sending it to other system by ALE . Can somebody help me out which user exit should be used .
    Many thanks for your help in advance .
    Regards,
    NK

    For future reference in case anyone is trying to do this, we were not able to find a suitable user exit to enhance BENEFIT3 IDoc, so we put in an OSS note and received the following response:
    "...currently there is no user exit/Badi in SAP Benefits Administration
    to enhance IDoc BENEFIT3. Such functionality is indeed missing in the
    system, which means that you will need to submit a development
    request to enhance the system in this respect in a future release."
    Anke

  • The method is undefined for the type

    HI I have a javabean class:
    package database;
    import java.util.*;
    import java.io.*;
    public class CompanyFormBean implements Serializable{
      private String companyparentid;          
      private String companyname;               
      private Hashtable errors;
      //private String notify;
    public boolean validate() {
        boolean allOk=true;
        if (companyname.equals("")) {
          errors.put("companyname","Please enter your Company Name.");
          companyname="";
          allOk=false;
        return allOk;
      public String getErrorMsg(String s) {
        String errorMsg =(String)errors.get(s.trim());
        return (errorMsg == null) ? "":errorMsg;
    // public CompanyFormBean(){}
      public CompanyFormBean() {
        companyparentid          = "";
        companyname               = "";
        errors = new Hashtable();
      public String getCompanyparentid() {
        return companyparentid;
      public String getCompanyname() {
        return companyname;
      public void setCompanyparentid(String fcompanyparentid) {
        companyparentid = fcompanyparentid;
      public void setCompanyname(String fcompanyname) {
        companyname = fcompanyname;
      public void setErrors(String key, String msg) {
        errors.put(key,msg);
    }after the form is submitted I try to display the values
    <%@ page import="database.CompanyFormBean" %>
    <jsp:useBean id="formHandler" class="database.CompanyFormBean" scope="session"/>
    <html>
    <head>
    <title></title>
    <meta name="Generator" content="EditPlus">
    <meta name="Author: Irene Nessa" content="">
    <meta name="Keywords" content="">
    <meta name="Description: creates a new member account" content="">
    </head>
    <body>
    <form name="reg" method="post" action="ProcessMemberRegistration.jsp" onsubmit='return formValidator()'>
    <table>
         <tr>
         <td>Create A New Account</td>
         </tr>
         <tr>
              <td>Existing Company</td>
              <td>
                   <input type="text" name="companyparentid" value='<%=formHandler.getCompanyparentid()%>'>
                   <!-- <select name="campanyparentid" onchange="setcompany(this)">
                        <option>Better Homes</option>
                        <option>Emaar</option>
                   </select>
                   <font size="" color="#FF0033"><b><i>OR</i></b></font>-->
              </td>
         </tr>
         <tr>
              <td>Company Name *</td>
              <td><input type="text" name="companyname" value='<%=formHandler.getCompanyname()%>'>
              </td>
         </tr>
    </table>
    <br>
         <br>
         <input type="reset">  <input type="submit" value='Check Form' />
    </form>
    </body>
    </html>But I keep getting the following errors:*The method getCompanyparentid() is undefined for the type CompanyFormBean* But it defind and the bean class complies. Any idea what am doing wrong.
    thanks.

    I actually got the same error in the same situation the following is my error and Stacktrace. I was trying to using AJAX to retrieve the message from DB and display it in a text area when user click a radio button. It works well untill I add a new method getMessage(String), please help!
    Mar 2, 2009 10:01:03 AM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: Unable to compile class for JSP:
    An error occurred at line: 22 in the jsp file: /getmessage.jsp
    The method getMessage(String) is undefined for the type Item
    19: <jsp:setProperty name="items" property="categoryId" value="<%=catid%>" />
    20: <jsp:setProperty name="items" property="effectiveIndicator" value="C" />
    21: <%
    22: String msg = items.getMessage(id);
    23: String decodedmsg = new String(msg.getBytes("iso-8859-1"), "Big5");
    24: System.out.print("MSG: " + msg);
    25: System.out.print("Deco-MSG: " + decodedmsg);
    An error occurred at line: 26 in the jsp file: /getmessage.jsp
    The method write(String) is undefined for the type HttpServletResponse
    23: String decodedmsg = new String(msg.getBytes("iso-8859-1"), "Big5");
    24: System.out.print("MSG: " + msg);
    25: System.out.print("Deco-MSG: " + decodedmsg);
    26: response.write(decodedmsg);
    27: %>
    Stacktrace:
    at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:85)
    at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330)
    at org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:415)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:308)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:273)
    at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:566)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:308)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:228)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:517)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:216)
    at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
    at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:283)
    at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:767)
    at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:697)
    at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:889)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:686)
    at java.lang.Thread.run(Thread.java:619)

  • Submit for pasing select-option

    Hi,
    In first program iam having select option CCG. In this select-option table iam having only low values from 1 to 25. No high value exist in this CCG[] table.
    I want to pass this CCG[] table to second program select option . the second program select-option should have the value from 1 to 25.
    can any one tell how to do this. Pls rememner there is no high value in first prog CCG[] table.

    Hi Camila,
    U can use the command SUBMIT for calling the second program and giving the desired values to the selection screen elements.
    Please check F1 help for the SUBMIT command.
    Thank you.
    award points if found useful.

  • A realistic assessment of your experiences of hardware needed for the type of editing I do please.

    Introduction:
    I apologise for the length of this post but from experience of reading here, I'm working on the principle of the more I explain about myself now, the less anyone willing to help me will have to ask later.
    I have lurked around this forum on and off for a few years, read the various threads in the FAQ section, particularly PPBM5 and What PC to build thread and other related topics around what system to build.  I have found them very useful and in particular have enjoyed reading about Harm Millaard's experiences First Ideas for a new system.  For about about 12 months I've been delaying upgrading my PC but in Mr Millard's latest updates on his PPBM6 site he talks about new systems and  provides a link to Intel's time line which suggests they are in no rush to replace the i739xx series CPU chip - which has I believe amongst other things 2 cores disabled.  Normally bitter experience has taught me not to rush out and buy the latest technology but let others "test" it first and then benefit from reduced prices as that model is replaced.  However, it now seems like last years technology is going to remain as this years technology and probably the first 2 quarters at least of next year and, if anything, the price of the i739xx series is at best staying at it's existing launch price or even rising.  So it's time to take the plunge for me and upgrade.
    My current hardware for editing:
    I started with Premier 6.5 after I bought it as part of a bundle with a Matrox RTX 10 card - one of the most temperamental pieces of hardware I've had the misfortune to work with.  I later upgraded to Premiere Pro 1.5 and edited with that using a Pentium 4 2.6 (overclocked to 3.2), 3 hard drives (no raid) and 4G of memory.  The video footage used was avi recorded using a Canon MVX 30i and Panasonic NVGS27 and now I've added the Casio Exilim EX -FC100 (mpeg format) and a Panasonic HDC S90 (AVCHD).
    My PC coped with the editing I did with avi footage but couldn't handle AVCHD format and this convinced me to upgrade to Premiere Pro CS5.5.  At the same time I switched to editing on a Dell XPS M1530 (Centrino duo chip) - I upped the memory to 4GB, put Windows 7 64 bit home edition on and replaced the existing hard drive with a faster one.  In addition I use a SATA Quickport duo attached to my laptop via an eSATA card.  However, either the Quickport, eSATA card or XPS is extremely temperamental - I never see two external hard drives, 50% of the time see 1 external drive or none at all - when that happens I edit around it doing things I can with just the one internal drive - but this problem is not my question.
    The type of editing i do:
    I know people usually say around here not to try editing on laptops and believe me, I understand why, but using this setup I have been able to edit lots of videos  - see here for examples of the type of editing I currently do:
    http://www.youtube.com/user/PathfinderPro
    The equipment test videos place the biggest strain on the hardware when editing.  And, to do this editing I have to convert my AVCHD footage in to it's YouTube format before editing and even after I've done that it can be tediously slow to edit and playback even with premiere set to play at 1/4 normal quality.  To convert the AVCHD footage to the YouTube format I edit in has to be done over many nights.
    Now I am not a professional, I typically edit with up to 4 tracks of video with additional tracks for titles and my target audience is YouTube - which is why I can get away without editing in my prefered option of native AVCHD video format.  However, I'm tired of all the waiting, stuttering, and many many days and hours of converting videos into a format I can use so I'm looking to upgrade.  My problem is though I'm uncertain what path to take.  The PPBM results are dominated by overclocked chips, and whilst the motherboard make and model is listed, the hard disks used, graphic card makes and models and memory modules are not.  This is not a criticism of the PPMB tables (big thank you to Bill Gehrke & Harm Millaard for taking the time and effort to pull this much information together) but for me, I am not interested in being in the top 1000 in the world, nor overclocking like mad, and having had horror experiences of using matrox products and compatibility and stability issues with other hardware I'm more interested in compatability and practicality than speed when deciding what to build.  I've also read the threads about marvel controllers, dual and quad channel memory support, the pro's and cons of SSD or standard drives, raid setups, the heat problems with overclocking the newer ivy bridge chips and general build advice etc so I'm not coming here without having done some reading first.
    The type of system I'm thinking of:
    So far based on what I've read here, I've come to the conclusion - but I'm open to suggestion:
    - Chip - regrettably due to the cost and unlikely successor anytime soon - a 39xx (with appropriate cooler) because I want to edit in native AVCHD which seems to require the warrior type chip as opposed to the "economical" build regardless of what my target audience is and this suggests
    - X79 motherboard (which must have an old PCI slot such as the Asus Sabertooth and which has room for the cooler I'm considering).  As I will be carrying over my old terretec DMX 6 fire 24/96 soundcard - all my videos have their audio mastered in Audition using this card - best piece of advice I read was the audience will watch a bad video with good sound editing but not the other way round)
    - 4 hard drives plus additional hard drive for operating system using onboard raid controllers (not sure whether the operating system drive will be WD caviar black or SSD and can't justify cost of external raid controller for either my type of use or number of hard drives being used)
    - Video card - I can now buy a GTX 580 for less than the 670 - so not sure on the card especially based on Harm Millards observations that memory bandwith seems to be as important as CUDA cores
    - Case - I have an Akasa 62 case with room for 5 hard drives - I won't be exceeding that, and if I overclock it will only be by a little so is it really necessary to replace it for a Tower Case - although I would prefer a case with a front connection for esata so I may have to change the case regardless
    - Maximum memory 32G - so is it necessary to upgrade to windows 7 professional?
    - Power source - I'll work out when I've decided on my components.
    Help please:
    For me it's video source/dictated software chosen and hardware/audience(youtube) dictates format edited in.  As I don't intend to change my camcorders format (AVCHD or mpeg) in the next couple of years and I'm not interested in having the "fastest" system around what I'm really interested in learning is:
    what system setups people use now for doing similar editing to me
    what make/models of the component parts in your system work well together
    and if you do have a bottle neck in terms of hardware, where is it and what hardware would you change to  (not a dream model change, just a practical and realistic one)
    I have deliberately not given a budget for the changes I'm intending because budget should not be the deciding factor in determining what I "need" to upgrade to for the "type of editing I do" - especially bearing in mind I've got by so far (admitedly at a tortoise pace) with by todays standards a standard spec laptop.  Basically I don't want a Rolls Royce to go shopping at Wallmart but I'm tired of walking there and carrying everything back by hand!
    Thank you very much for any help / experiences people can share.

    Thank you both for your prompt and helpful replies.
    Mr Millaard, regarding your excellent article Planning and Building an NLE system, I have read it a couple of times now and it was your article which finally convinced me the time was now to upgrade but within it you said for good reason "Initial choice of CPU: i7-39xx with the intention to overclock to 4.6 - 4.8 GHz", hence my uncertainty about the CPU to use.  I have seen a video you posted here  - I think it was based on your cats (which I incidently enjoyed) so working on the editing done there (but not remembering if you mentioned what video format you used) and others who have mentioned many pro's for the i7-39xx I was leaning towards that - but I'm financially relieved at least - if the i3770 will do, although now with the possible recommendation by JEShort01 (sorry not sure of the forum etiquette for use of names) of the 2600K overclocked I'm a little bit back in the position of which is more suitable especially with the update to the i3770 being nearer than i7-39xx.  This still makes me lean towards the i7-39xx.
    Regarding the editing, the match play you can see on the channel is indeed 1 camera basic edits - multiple titles used to provide the score board.  However, the coaching videos use mulitple cameras - 3 to 4 sometimes (another reason for upgrading to CS5.5 for the multi cam editing support) and the equipment testing video can use 3 or 4 tracks layered on top of each other other with each track having opacity settings and multiple motion effects and titles with occasional keying video effects added.  For example this video at approx 2 mins 50 and 5 mins 10 seconds.
    http://www.youtube.com/watch?v=T1E5T7xo57c&list=PL577F7AB5E31FC5E9&index=13&feature=plpp_v ideo
    Monitor wise I use dual monitor setup.  My laptop screen and I link out to an LG M2394 D for widescreen and I sometimes use an old Neovo F-419 for 3 / 4 editing.  I won't be using more monitors than 2.  If the 580 drops a bit more I'll probably go for that - although I'll have to make sure it's size isn't an issue for the motherboard combo setup.  Interestingly there is a thread shown on the forum home page which discusses the 570 vs the 660ti and the opinion was go with the 660ti which surprised me a bit.
    Windows 7 professional it is then - I should have known that too - apologises for asking a question already asked.
    "Accepted, your correct criticism of the lacking hardware info on the PPBM5 website. That is the overriding reason that for the new site http://ppbm7.com/ we want to use Piriform Speccy .xml results to gather more, more accurate and more detailed hardware info."
    No criticism intended Mr Millaard - more an observation and I really look forward to that evolution with PPBM7.  I'm assuming the .xml results will use pre populated drop down lists people can select their hardware from - that way you can control and ensure consistent entries - downside being the work required by you to populate the lists in the first place and maintain them.
    Thanks again for your help but I'm still unsure a bit about the CPU and video card though.

  • I am facing error while running Quickpay in Fusion payroll that "The input value Periodicity is missing for element type KGOC_Unpaid_Absence_Amount. Enter a valid input value". Any idea?

    I am facing error while running Quickpay in Fusion payroll that "The input value Periodicity is missing for element type KGOC_Unpaid_Absence_Amount. Enter a valid input value". Any idea?

    This is most probably because the Periodicity input value has been configured as "Required" and no value has been input for it.
    Please enter a value and try to re-run Quick Pay.

Maybe you are looking for