Confusion with the the variables

I have confusion regarding the use of variables in JSP. When i declare the variable with a <set> tag and then try to use it with scriplet tag,,<% .....%>,,it dosn't work. why so?
<code>
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
<HTML>
<HEAD>
<TITLE>EDIT YOUR PROFILE</TITLE>
</HEAD>
<BODY BGCOLOR="BLACK" TEXT="WHITE">
<H1 ALIGN="CENTER"><FONT COLOR="YELLOW"><BLINK>REGISTER</BLINK></FONT></H1>
<H2 ALIGN="CENTER">PLEASE FILL IN YOUR DETAILS</H2>
<PRE>
</PRE>
<FORM METHOD="POST" ACTION="enter.jsp">
DELIVERY CHARGES:<td><INPUT TYPE="TEXT" NAME="user_charge1" SIZE="40">
<c:set var="n" value="${param.size}" scope="session"/>
<table>
<%
for(int i=0;i<n;i++){%>
<tr><td>PRODUCT:<td><INPUT TYPE="TEXT" NAME="user_pdt1_1" SIZE="40"><td>PRICE1:<td><INPUT TYPE="TEXT" NAME="user_pr1_1" SIZE="10"></tr>
<%}%>
</table>
<BR>
<PRE>
</PRE>
<P ALIGN="CENTER"><FONT COLOR="YELLOW">THANX FOR YOUR SUPPORT!!</FONT></P>
<P ALIGN="CENTER"><INPUT TYPE="SUBMIT" VALUE="SUBMIT">
<INPUT TYPE="RESET" VALUE="RESET">
</P>
</FORM>
</BODY>
</code>
this is the error generated....
<error>
HTTP Status 500 -
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: 25 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:11: illegal start of type
for(int i=0;i<n;i++){
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:119: <identifier> expected
org.apache.taglibs.standard.tag.rt.core.SetTag jspxth_c_set_0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) jspxtagPool_c_set_var_value_scope_nobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class);
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:119: <identifier> expected
org.apache.taglibs.standard.tag.rt.core.SetTag jspxth_c_set_0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) jspxtagPool_c_set_var_value_scope_nobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class);
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:119: '{' expected
org.apache.taglibs.standard.tag.rt.core.SetTag jspxth_c_set_0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) jspxtagPool_c_set_var_value_scope_nobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class);
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:120: <identifier> expected
jspxth_c_set_0.setPageContext(_jspx_page_context);
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:121: <identifier> expected
jspxth_c_set_0.setParent(null);
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:122: <identifier> expected
jspxth_c_set_0.setVar("n");
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:123: <identifier> expected
jspxth_c_set_0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${param.size}", java.lang.Object.class, (PageContext)_jspx_page_context, null, false));
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:123: ';' expected
jspxth_c_set_0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${param.size}", java.lang.Object.class, (PageContext)_jspx_page_context, null, false));
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:123: <identifier> expected
jspxth_c_set_0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${param.size}", java.lang.Object.class, (PageContext)_jspx_page_context, null, false));
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:123: '{' expected
jspxth_c_set_0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${param.size}", java.lang.Object.class, (PageContext)_jspx_page_context, null, false));
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:124: <identifier> expected
jspxth_c_set_0.setScope("session");
^
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:126: illegal start of type
if (_jspx_th_c_set_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
^
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:130: <identifier> expected
jspxtagPool_c_set_var_value_scope_nobody.reuse(_jspx_th_c_set_0);
^
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:131: illegal start of type
return false;
^
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:131: <identifier> expected
return false;
^
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:134: '}' expected
^
17 errors
     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)
     org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
root cause
org.apache.jasper.JasperException: Unable to compile class for JSP
An error occurred at line: 25 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:11: illegal start of type
for(int i=0;i<n;i++){
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:119: <identifier> expected
org.apache.taglibs.standard.tag.rt.core.SetTag jspxth_c_set_0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) jspxtagPool_c_set_var_value_scope_nobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class);
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:119: <identifier> expected
org.apache.taglibs.standard.tag.rt.core.SetTag jspxth_c_set_0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) jspxtagPool_c_set_var_value_scope_nobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class);
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:119: '{' expected
org.apache.taglibs.standard.tag.rt.core.SetTag jspxth_c_set_0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) jspxtagPool_c_set_var_value_scope_nobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class);
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:120: <identifier> expected
jspxth_c_set_0.setPageContext(_jspx_page_context);
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:121: <identifier> expected
jspxth_c_set_0.setParent(null);
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:122: <identifier> expected
jspxth_c_set_0.setVar("n");
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:123: <identifier> expected
jspxth_c_set_0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${param.size}", java.lang.Object.class, (PageContext)_jspx_page_context, null, false));
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:123: ';' expected
jspxth_c_set_0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${param.size}", java.lang.Object.class, (PageContext)_jspx_page_context, null, false));
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:123: <identifier> expected
jspxth_c_set_0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${param.size}", java.lang.Object.class, (PageContext)_jspx_page_context, null, false));
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:123: '{' expected
jspxth_c_set_0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${param.size}", java.lang.Object.class, (PageContext)_jspx_page_context, null, false));
^
An error occurred at line: 23 in the jsp file: /multiple_entry.jsp
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:124: <identifier> expected
jspxth_c_set_0.setScope("session");
^
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:126: illegal start of type
if (_jspx_th_c_set_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
^
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:130: <identifier> expected
jspxtagPool_c_set_var_value_scope_nobody.reuse(_jspx_th_c_set_0);
^
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:131: illegal start of type
return false;
^
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:131: <identifier> expected
return false;
^
Generated servlet error:
C:\Users\raghu\.netbeans\5.5\apache-tomcat-5.5.17_base\work\Catalina\localhost\temp2\org\apache\jsp\multiple_005fentry_jsp.java:134: '}' expected
^
17 errors
     org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:84)
     org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:328)
     org.apache.jasper.compiler.AntCompiler.generateClass(AntCompiler.java:249)
     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)
     org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
note The full stack trace of the root cause is available in the Apache Tomcat/5.5.17 logs.
Apache Tomcat/5.5.17
</error>
please provide the solution..!!...

hShekhar wrote:
1. scriptlet <%for loop %> good with countsCan also be done with c:forEach. There is absolutely no need to prefer scriptlets above the c:forEach.
2.c tag <c:foreach></c:foreach> good with arrays nd arraylistsAlso with counts and collections of DTO's.
3 logic iterate tag <logic:iterate></logic:iterate> good with arraylist with specific data (like VOs)This is not a JSP/JSTL tag. It is an Apache Struts tag. That same way I can also suggest another tags like h:dataTable, t:dataList, ui:repeat, etcetera. And the c:forEach can just also handle collections of DTO's.
Summarized: your answer makes not much sense.

Similar Messages

  • I purchased an IPAD2 for my special needs daughter.  She only currently understands lowercase letters only and gets confused with the uppercase letters.  Is there a way to change the keyboard to display lowercase letters?

    I purchased an IPAD2 for my special needs daughter.  She only currently understands lowercase letters only and gets confused with the uppercase letters.  Is there a way to change the keyboard to display lowercase letters?

    There is no way for the keyboard itself to display only lower case letters. It doesn't display lower case letters at all for that matter.
    When you are using the keyboard - The other issue that you will have is with the shift key. Even with auto caps turned off you can still type capital letters if you tap the shift key and if you double tap it by mistake - it will turn into all capital letters so also turn off Caps Lock in the keyboard settings.
    Other than that, there is no way to ensure that you can type in lower case.
    Maybe an external bluetooth keyboard would be a better solution but I don't use one, and I have never even seen one in person so someone else will have to verify that for you.

  • Confusing with the Global Database Name and Instance Name

    Dear fellow DBA's and Experts,
    Good Day.
    We presently have an existing database registered (on V2 Exadata) with global database name as BIDEV.domainname.com. It has 4 instances viz., BIDEV1 and BIDEV2 which have the same service name as the instance name.
    Last week, on our new X4-2 Exadata, we tried to create a fresh database. While doing so, we entered the details as below in the installer:
    Global Database Name: BIDEV
    SID Prefix: BIDEV
    Service Name: BIDEV.
    Then upon the successful installation of the database, when we query
    1. (SELECT * FROM GLOBAL_NAME), it shows BIDEV as the global database name.
    2.
    SQL> sho parameter service
    NAME                                 TYPE        VALUE
    service_names                        string      BIDEV1
    3. Sho parameter name gives the below details:
    SQL> sho parameter name;
    NAME                                 TYPE        VALUE
    cell_offloadgroup_name               string
    db_file_name_convert                 string
    db_name                              string      BIDEV
    db_unique_name                       string      BIDEV
    global_names                         boolean     FALSE
    instance_name                        string      BIDEV_1
    lock_name_space                      string
    log_file_name_convert                string
    processor_group_name                 string
    service_names                        string      BIDEV1
    Curious to know why it created an instance name as BIDEV_1 instead as BIDEV1.
    Had tried another attempt on our test environment with SID prefix as BIDEV1, then the instance was created with the name as BIDEV1_1.
    Also, would like to know what happen if we give the Global Database Name as BIDEV.domainname.com for installing the same BIDEV database on a different server while the 1st server is still functional.
    Appreciate if someone could throw some light on the above confusion. Any reference material or source to the clarify the doubt.
    Warm Regards,
    Vikram.

    Hi Vikram,
    Your clustered database is not full RAC, it's RAC ONE node database. In RAC ONE node database, instance names are created in that format only (i.e.e dbname_1), I don't know if there is any way we can change it to dbname1. OR if you really want to change the instance name to dbname1 format, then you can convert RAC one node database to Full RAC, then remove instance and add another instance, I hope it would be added in dbname1 format. I have not tested it, test it on your test system first.
    You can find the database type in the output you shared,
    Type: RACOneNode
    Regards,
    Saurabh

  • I am confused with the adobe photo shop album starter 3.0!

    Hello, I have always been interested in storing pictures on my computer via my scanner or digital camera, but now I want to organise them using adobe.. However it has left me more confused.. since I downloaded it, it automatically imported pictures...but when I click on my regular photo files on my desk top, it does say adobe photo shop at the top of the picture- so does this mean it is already imported into the adobe?? as i am confused with what photos I have got where now.
    In other words, I wanna make sure that all my pictures on my computer are in adobe. How do I do that ?
    Excuse the daft question but I hate computers sometimes!
    Thanks

    Hi again Colin(and Jim), if I got the wrong end of the stick (which it appears I did) then I humbly apologise for being oversensitive. I have had some miserable experiences in newsgroup forums before now and witnessed relentless bullying on occasions and so I may respond in a defensive matter automatically. Thank you for setting me straight :-)
    On a different tack, I wonder if you could help with another PSASE problem I have. When I go to print a number of prints on one page (eg.four to an A4 sheet-which it resizes to fit for you) there seems to be a loss of quality in the images. Is there a way of adjusting the resolution within the program, or do I need to adjust them within photoshop first ?

  • I am confused with the integration of WM with SD.

    Hi Gurus,
       I am confused with th e integration of WM with SD,
       Can anybody tell me what is the steps (T-Code) for picking the material & delivary to customer.
       And also send me few important transactions to check setttings related to SD & WM.

    Hi,
    I am confused with th e integration of WM with SD,
    Integration of WM with SD is like if you are working with deliveries then SD integration will comes into picture.
    Can anybody tell me what is the steps (T-Code) for picking the material & delivary to customer.
    Steps are like create sales order then with ref to sales order create outbound delivery then with ref to outbound delivery create Transfer order for picking material from the warehouse.
    Confirm the transfer order then check the stock overview of the material in the warehouse.
    Transaction codes
    VA01-sales order creation
    VL01N-outbound delivery creation
    LT03-create transfer order
    LT12-confirm transfer order
    MMBE-Stock overview
    And also send me few important transactions to check setttings related to SD & WM.
    You can check the above mentioned transaction for testing.

  • Confusion with the use of PDF417 Barcodes

    I am trying to get clarification on what is required to utilize the Acrobat Designer to create a form that creates a PDF417 barcode. Here is the scenario:
    We would like to create a form with Designer (bundled with Acrobat 7.0 Professional)that will be used as an index sheet for a document scanning system.
    The form would contain one or more fields that a user would complete using the standard Acrobat 7.0 Reader that they can download from Adobe. When the user completes the data entry into the fields, they will print out the form (containing the 2D barcode (PDF417).
    The form would be scanned and put through recognition software that is supposed to ready PDF417 2D barcodes.
    I have read through the literature and have seen inconsistent representations regarding the ability of a user to use the Acrobat reader to complete the form and print it with the PDF417 barcode.
    In one of the forum postings a user was told that they needed certain decoder software from Adobe or extensions.
    I am not clear if the user filling out a form using Acrobat 7.0 reader, which generates the PDF417 barcode supposedly, can be read by an application which supports that barcode type. Or, if this is a special type of PDF417 barcode that has some additional attributes that requires special software from Adobe to be recognized.
    Please explain how I accomplish the objective set forth above.

    Mike,
    It looks like I scanned over your email a little too quickly and missed a
    VERY important point. You mention that your form will be "bundled with Acrobat 7.0 Professional". This is VERY important.
    In fact, you will need to license nothing else from Adobe. You DO NOT need Reader Extensions because you are deploying Acrobat Professional on the work stations that will be filling in your forms. You do not need to "turn on" hidden functionality of the Free Reader if you are using Acrobat Pro. You already have all the functionality you need.
    Second, when you fill in a Barcoded Form with Acrobat Professional the PDF417 Barcode that is rendered in your form will be a 100% standard PDF417 Barcode. But do not turn on compression. When filled in - in Acrobat - the Barcode is rendered so that it can be read by ANY Decoder that can read PDF417. However, if you enable compression you will need to use the Adobe Decoder. If you start decoding and see you are getting lower than a 99.9% decode rate, take a look at buying the Adobe Decoder. Not the whole "Barcoded Forms" license, just the Decoder.
    Again,
    if you are using Acrobat to fill in these forms, you have nothing else to buy. If you want to deploy these forms with the Free Reader then you will need to license Adobe LiveCycle Barcoded Forms and possibly ARES.

  • Problem with the variable in FM not cleared.

    Hi all,
    I'm using RM_BACKFLUSH_GO function module for BackFlushing a serial number. Inside this FM other function module MB_CREATE_GOODS_MOVEMENT is called inside this function module there is variable called XCOMMIT and this is not getting cleared when i called RM_BACKFLUSH_GO.
    I found that, this variable is set in another function call BAPI_HU_UNPACK in the same program.
    Inside BAPI_HU_UNPACK, the MB_POST_GOODS_MOVEMENT is called where the variable is set.
    I'm not able to clear this variable XCOMMIT. I have tried calling the perform clear_xcommit in program LMBWLFE0 from my program, but it didnt worked.
    Can anybody tell me how to clear this variable.
    Thanks n Regards

    Hi,
    You can clear the variable dynamically from the call stack
    Data: l_f_stack(72) type c value '(SAPLMBWL)XCOMMIT'.
    Field-symbols: <fs> type any.
    Assign (l_f_stack) to <fs>.
    If <fs> is assigned.
    clear <fs>.
    endif.
    Hope this will help you
    Regards,
    Krishnakumar
    Edited by: Krishnakumar on Apr 1, 2009 11:29 PM

  • Issue with the variable assignment in th Bex broadcaster

    hi ,
    i am working on Bex broadcaster . while creating a setting for a report, in the variable assignment under the General precalculation tab, the value given is not getting transferred.
    i tried it in development portal its working fine.
    do anyone have any ideas abt this.

    Hi Apurva,
    Find any solution for your problem? We are experiencing a similar issue too.
    Thanks,
    Vivek

  • How do you effectively use if,for, type loops in TestStand. Do you have to use the goto command or is there a way of writing actual c type code (perhaps using the statement step in teststand) with the variables allready declared.

    Thank you
    Arik

    I assume your loop is more than just one step. You should use the 'Loop Options' for a single step.
    For looping on a group of steps, you can place them all in a sub sequence and then set the 'Loop Options' for the 'SequenceCall' step to set up your looping conditions. Pass values to and from the sub-sequence by Parameters.
    You can keep the loop inline with the rest of your sequence by using 'Goto' or using 'Goto destination' in the Post Actions tab of the condition step.
    Using a sub sequence will keep it easier to read and maintain.

  • Confused with the WP Enrollment Process

    Hi team,
    I'm studing the WP MDM documents from
    http://technet.microsoft.com/en-us/library/dn499787.aspx and faced some questions really need your help.
    I can get the Dicovery response from the service in current and I set the <AuthPolicy> to Federated and the <AuthenticationServiceUrl>  to a
    https://xxxxxx page(that me say it login.aspx) with the appru & login_hint parameters. My questions are:
    1) Should I verify the user/password in the login.aspx then redirect to a redirect page(let me say it redirect.aspx) with POST methd action of appid and the token value(wresult) after username/password verify sucess?
    2) The document said that wresult: "The security token value is the base64-encoded string "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd#base64binary"
    contained in the <wsse:BinarySecurityToken> EncodingType attribute". How can I get the <wsse:BinarySecurityToken> EncodingType attribute in Login.aspx(If I'm correct in Q1)?    Or maybe should I encode "Any
    token string generated from my server to identify this user"   and put into wresult, and this encoded string be used in the MS-XCEP/MS-WSTEP requests automatically after that?
    3) Will the WP devices triger the MS-XCEP GetPolicies request and MS-WSTEP RequestSecurityToken request in redirect.aspx's post action?
    Great thanks for your patience and help!
    BR/Kenn

    Well...still no one commented here... I already had some progress, I'd like to share my understanding here to whom maybe also newbie in this area.
    Q1 & Q2: Yes, acturally there is a step in Windows 8 MDM document mentioned it. It called this step as "Security Token Service" step. I guess you can verify your client base on username/password or whatever you want in this STS step and returen
    a token to mobile/tablet device.
    Q3,Yes, the MDM client in mobile/tablet device will triger the MS-XCEP GetPolicies request and MS-WSTEP RequestSecurityToken request in the Web Auth Page(redirect.aspx) post action.
    So, we should have two Token services in the MDM solution in general.
    1. Security Token Service: used to verify your user and return a security token.
    2. The MS-WSTEP security token service: which mentioned in WP MDM document, will used in enrollment step.
    BR/Kenn

  • Confused with the whole Pearsonvue and Certview

    I can never get the whole login thing straight with the whole Certview and Pearsonvue.
    I have an account with Pearsonvue (submitted my Prometric ID, approved etc) that I was able to login to view the certifications I have taken, etc at one time. Now, I can't even login. I remembered vaguely able to login to Certview using the same email account that I used with Pearsonvue. Now, Certview can't even find my account using that email search link (https://profile.oracle.com/jsp/reg/LostUsername.jsp).
    What the heck is going on? Which ones should I be using? And what is the function of either site?

    apex_disco wrote:
    I can never get the whole login thing straight with the whole Certview and Pearsonvue.
    I have an account with Pearsonvue (submitted my Prometric ID, approved etc) that I was able to login to view the certifications I have taken, etc at one time. Now, I can't even login. I remembered vaguely able to login to Certview using the same email account that I used with Pearsonvue. Now, Certview can't even find my account using that email search link (https://profile.oracle.com/jsp/reg/LostUsername.jsp).
    What the heck is going on? Which ones should I be using? And what is the function of either site?I hope the folowing helps. Others may describe it better.
    Pearson VUE tracks exams you have taken with Pearson VUE. Just the Exams. Pearson VUE are responbile for exam scheduling, taking, cancelling rescheduleing. Their role is to deliver the exams set by Oracle (and other Instutitions ywho offer exams) through their exam center network. Pearson VUe will say nothing about certification Status
    Prior to September 2009 Oracle Exams were delivered by Prometric, where you could view similar hings Pearson view (though only 10 months are kept online); and of course only exams delivered by Prometric.
    Certview is a front end system to the records Oracle maintains about an exam and what certifications have been awarded as a result of taking those exams and when they have been shipped. Records are held regards of whether Pearson Vue or Prometric delivered the exam.
    You should find you oracle SSO gives you access to Certview if you have previously registered with it, unless you have acquired 2 oracle sso's. Your SSO is working as you seem to have access to forums. ( The key thing with Certview is your Oracle Testing Id. Hopeflly you do not have 2 or more of those).
    I hope this helps a little, good luck with regaining your accounts ...
    bigdelboy.

  • How to Create Charts with the variable value

    Hi,
    I have to create a crystal report in which i have given variable under "Facility:". I have kept two variables under facility of which one is like you can select one or more values and other one u can select only one value and i mentioned it as mandatory.
    What i wanted is, I have to create a bar chart based on the facility . I also want to create a pie chart using the value of facility which comes from the mandatory variable.
    To be more clear, I selected two facilities, say X & Y under the first variable and one facility, say Z under the second variable (mandatory). I was able to prepare bar chart with these three facilities. Now i want to prepare a pie chart using the value Z.
    Can anyone please help me out?

    Likely a bug in the ChartBuilders or the JDK.
    ScatterChartBuilder.<Number, Number>create().build(); // does not work either.javac is unable to determine if the create() method from SceneChartBuilder or the create() method from RegionBuilder should be applied.
    The AxisBuilders which also derive from RegionBuilder work because they don't define their own create method with obscure generic type info.
    How can I resolve the ambiguity?new ScatterChart ;-)

  • Confused with the internal table

    Hello,
    I am getting confused again by the usage of work space for an internal table.
    Say for example I have a internal table itab that is defined as:
    DATA:ITAB TYPE STANDARD TABLE OF Txxx.
    Then I define a work space for the internal table.
    DATA:WS_ITAB LIKE ITAB.
    Now say for example, I would like to fill in some data to this internal table, can I do:
    WS_ITAB-FIELD1 = 3.
    APPEND WS_ITAB INTO ITAB INDEX 1.
    where FIELD1 is a valid field in Txxx?
    If not, how should I accomplish my goal? Thanks a lot!

    Yes, you have the right idea.  When working with work areas it is a good idea to define them like line of itab. This way, anytime itab changes, the wa will also be updated.
    DATA: ITAB TYPE STANDARD TABLE OF Txxx.
    <b>data: wa like line of itab</b>.
    You can add a line to your internal table by filling the work area and appending to the internal table.
    wa-fld1 = 'A'.
    wa-fld2 = 'B'.
    wa-fld3 = 'C'.
    append wa to itab.
    You can insert into a specific index by using INSERT.
    Insert wa into itab index 1.
    Regards,
    Rich heilman

  • Scan Rate - Sample Rate confusion with the E-Series

    I have been reading a lot of post on the messaging board concerning the scan rate and the sample rate but I still dont get it. I am using an E series and am aware that this card does not have a simultaneous
    sampling of each channel
    I want a time stamp for each value i get from each channel. If I have channels 1,2,3,4 with rate dividors
    1,2,4,8
    sample rate set to X
    scan rate set to X/(Number of channels+1) (ghost channel in order to avoid error -10092) ie X/5
    what is the sample rate of each channel ?

    VKral,
    Here are a few KnowledgeBase entries that I hope will clear up the confusion:
    Data Acquisition Sampling Terminology
    http://digital.ni.com/public.nsf/websearch/DBE7AC32661BCF9B86256AC000682154?OpenDocument
    How Is the Actual Scan Rate Determined When I Specify the Scan Rate for My Data Acquisition?
    http://digital.ni.com/public.nsf/websearch/5782F1B396474BAF86256A1D00572D6E?OpenDocument
    Hope this helps. Have a great day!

  • I'm confused with the struts.action and those in the actions package-help

    hi all
    looking at the struts framework particularly the org.apache.struts.actions package, i am a bit of confused as to which abstract action class i need to extend in my application. is there any guideline that shows in what scenario i will need to extend which action? how would i ever know the purpose of each one and how and when to extend it?
    and also i am even more confused when i saw org.apache.struts.action.action class. doesn't this one handle all? most tutorials i have seen reference this class. why do we have others in the actions package?
    your help is much appreicated . thanks.

    Simple actions just extend org.apache.struts.action.Action.
    Those actions in the org.apache.struts.actions package are utility Actions that provide you with extra functionality.
    The [url http://struts.apache.org/api/org/apache/struts/actions/package-summary.html]struts api  describes the basics of each one.
    Commoonly used ones that (to me) are of more interest:
    ForwardAction is pretty much just a placeholder that lets you specify a url to forward to when you don't want to write an entire Action.
    Dispatch action (and its siblings LookupDispatchAction, MappingDispatchAction) are most interesting because they let you use the same action for multiple events.
    In effect it is writing multiple "execute" methods in one action. The Dispatch action determines which one to call. It is useful for writing CRUD actions and keeping all that code in one class.
    Hope this helps some,
    evnafets

Maybe you are looking for

  • Error when ESR starts - Cannot activate endpoint for message-driven bean

    Hi, as already posted on ERROR WHEN START ESR: Cannot activate endpoint for message-driven bean after an upgrade to PI 7.1 SP11, we got the following error when trying to start ESR, other applications work well: Application cannot be started! Details

  • 1366 X 768 16:9 question

    I just bought an LCD TV with a 16:9 widescreen 1366 X 768 resolution. What do you have to do to achieve this widescreen resolution? I have the ATI 9600 256mb graphics card that doesn't have this resolution native. The screen appears to be stretched.

  • Blank first page problem

    Hi, all! We have a problem in Report Builder 6.0.8.22.0. This problem didn�t occur with Report Builder 3.0.5.11.4. The problem is: there is a number of reports supporting data output into the txt. file. The support is arranged in the following way: 1

  • XI pre-prd (distributed system) is very slow

    Hi, Our XI pre-prd which is on distributed configuration is very very slow. CI host is having 8 GB RAM, db host is having 6 GB RAM. When we look at SM50, all the dialog proceses gets occupied by PIAPPLUSER user even though we run a single interface.

  • From Premiere Elements 4 to CS3

    I am considering moving from Premiere Elements 4.0 to CS3 (on Windows Vista 32 bit). I have a couple of questions regarding the two, I'm hoping someone here may know. 1) Can CS3 read Premiere Element 4.0 projects (windows versions). 2) Is CS3 more re