SP Custom Picker - Paging Problem

I am trying to implement custom picker that reads huge data from the database(over 15,000 records). I followed all of the steps in this
article. The Problem is I don't know how to enable paging on it. I set the page size to 100 by making "PickerDialog.ResultControl.PageSize = 100" but somehow the paging is not appearing on the control.

HI,
Issue is resolved on using the fully qualified domain name.
Hence I am closing the thread.
Regards,
Rudradev Devulapelli.

Similar Messages

  • User Exit to configure custom picking strategy

    Wonder if anyone can help - I've been requested by one of our analysts to look into the user exit to allow us to define a custom Raw Material picking strategy.
    Currently we use FIFO which seems to work on the date that the material is receipted into the warehouse, which is fine if the material is GR'd into stores and then only issued when it is fully consumed.  The problem seems to occur when we return some of the material back into warehouse stock.  It then seems to take the date we receipted the material back into stock as the date for the picking strategy - resulting in it picking newer batches of material, when an older batch has been returned to stock.
    Ideally we need to use the GR Date or the SAP internal batch no (where the earliest batch will always equate to the oldest material).
    They have done some investigations and it seems to be that the recommended solution is to use user exit MWMTO004 or MWMTO013.
    However, the problem is I'm not sure what to code here to get the FIFO strategy to use the GR Date or Batch No - do I have to lookup, find the earliest GR Date/Batch No and then assign it to a particular field in order that this will then be used for the picking strategy ?
    Does anyone have any examples of code they've used in the user exit when they wanted to create a custom picking strategy ?
    Many Thanks for any help,
    Helen Smith

    BADI is available to create custom field in material component , but it is available as of ECC 6.0 EHP3 , not sure about 4.7

  • Paging Problem in Converted PLD2CR General Ledger Report

    dear expert,
    Now I'm trying to change the design of Converted PLD2CR General Ledger Report. At the time, I found some problem related paging. In my opinion, General Ledger report should be group with BP Code. In converted CR, I didn't see Group Idea. If you can, help me please. I'm waiting your response.
    Best Regards,
    zzymt

    Hi,
    Is it a paging problem or grouping problem? Have your checked PLD report?
    Please close your previous threads.
    Thanks,
    Gordon

  • Customer pick up the goods from plant

    In SNC (5.1)  we get the delivery date for firm receipts on web UI . This is based upon the transplantation lane which has transit time. For eg 4days i.e. 96 hrs.
    Now the issue is sometimes customer pick up the material directly from plant. 
    How this scenario should be handled since customer picks up the material  directly from Plant and in SNC we can see the delivery date  means material availability date at customer which is after 4 days?
    Thx

    Hi Vaibhav
    If you define transportation distance and duration as zero in transportation lane.
    Then system proposes the ship to date and delivery date same.
    You can manually edit this field and set the delivery date.
    But how frequently does the customer picks the orders from plant???
    else you can use two means of transport one product specific with trnsp duration zero and the other with duration.
    Depending on the need basis you need to manually change the means of transport in webui
    Best Regards
    Vinod

  • Layer & Custom Effects UI problem

    Here is code of simple effect plug-in:
    #include "AEConfig.h"
    #include "AEGP_SuiteHandler.h"
    #include "AE_Macros.h"
    #include "Param_Utils.h"
    #include "AEFX_SuiteHelper.h"
    #include "entry.h"
    extern "C" {
    PF_Err DllExport
    EntryPointFunc(    PF_Cmd cmd, PF_InData *in_data, PF_OutData *out_data,PF_ParamDef *params[], PF_LayerDef    *output, void *extra);
    static PF_Err
    GlobalSetup (PF_InData *in_data, PF_OutData    *out_data, PF_ParamDef *params[],PF_LayerDef *output)
        out_data->my_version    = PF_VERSION(3, 1, 0, 0, 1);
        out_data->out_flags =     PF_OutFlag_CUSTOM_UI;
        return PF_Err_NONE;
    static PF_Err
    ParamsSetup ( PF_InData    *in_data, PF_OutData *out_data, PF_ParamDef *params[], PF_LayerDef *output)
        PF_Err            err = PF_Err_NONE;
        PF_ParamDef        def;   
        AEFX_CLR_STRUCT(def);
        PF_ADD_ARBITRARY("Test custom UI", 100, 10, PF_PUI_CONTROL, 0, 2323, 0);
        if (!err) {
            PF_CustomUIInfo            ci;
            AEFX_CLR_STRUCT(ci);
            ci.events                = PF_CustomEFlag_EFFECT | PF_CustomEFlag_LAYER;
            err = (*(in_data->inter.register_ui))(in_data->effect_ref, &ci);
        AEFX_CLR_STRUCT(def);
        PF_ADD_LAYER("Test layer", PF_LayerDefault_NONE, 2);
        out_data->num_params = 3;
        return err;
    static PF_Err
    SequenceSetup(PF_InData *in_data, PF_OutData *out_data, PF_ParamDef *params[], PF_LayerDef *output, bool allocate)
        AEGP_SuiteHandler    suites(in_data->pica_basicP);
        if(allocate)
            out_data->sequence_data =    suites.HandleSuite1()->host_new_handle(1);
        else if (in_data->sequence_data)
            suites.HandleSuite1()->host_dispose_handle(in_data->sequence_data);
        return PF_Err_NONE;
    DllExport
    PF_Err EntryPointFunc ( PF_Cmd cmd, PF_InData *in_data, PF_OutData *out_data, PF_ParamDef *params[], PF_LayerDef *output, void *extra)
        PF_Err        err = PF_Err_NONE;
        switch (cmd) {
        case PF_Cmd_GLOBAL_SETUP:
            err = GlobalSetup(    in_data, out_data, params, output);
            break;
        case PF_Cmd_PARAMS_SETUP:
           err = ParamsSetup(in_data, out_data, params, output);
            break;
        case PF_Cmd_SEQUENCE_SETUP:
            err = SequenceSetup(in_data, out_data, params, output, true);
            break;
        case PF_Cmd_SEQUENCE_SETDOWN:
            err = SequenceSetup(in_data, out_data, params, output, false);
            break;
        return err;
    The problem is when i press cntr+C than cntr+V on effect the layer parameter control drop to its' default value.
    What i doing wrong?
    If i delete custom parameter or sequenceSetup function then layer parameter value do not change after copying.
    If i press cntr+D on effect layer parameter do not change too.

    What i doing wrong?
    you're not doing anything wrong.
    that's just what AE does when copy/pasting effects with a layer param.
    the assumption is that you won't necessarily paste the effect in a comp where the layer with the same layerID is desired as the target. (layer ID's are unique per comp, not the entire project)
    experiment with other effects that have a layer param. they should behave in the same way.
    what you're describing with the deletion of the custom param and sequence data is indeed strange.
    i have no idea why it happens.

  • Custom button UI Problem

    Hi all,
    I have written CustomButtonUI for JButton.
    But, it results into error.please suggest me.
    Here is the code:
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Rectangle;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.accessibility.Accessible;
    import javax.swing.AbstractButton;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.UIManager;
    import javax.swing.plaf.ComponentUI;
    import javax.swing.plaf.basic.BasicButtonListener;
    import javax.swing.plaf.metal.MetalButtonUI;
    * CustomButtonUI.java
    * Created on March 4, 2010, 5:13 PM
    * @author  mourya
    public class CustomButtonUI extends javax.swing.JDialog {
        /** Creates new form CustomButtonUI */
        public CustomButtonUI(java.awt.Frame parent, boolean modal) {
            super(parent, modal);
            String DEFAULTCLASSID="Mybutton";
            UIManager.put(DEFAULTCLASSID, "Mybutton");
            UIManager.put("ButtonUI",DEFAULTCLASSID);
            initComponents();
            JButton jbutton = new JButton("Custom");
            jbutton.setBounds(10,10,100,20);
            add(jbutton);
            this.addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent event)
                    System.exit(0);
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(0, 400, Short.MAX_VALUE)
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(0, 300, Short.MAX_VALUE)
            pack();
        }// </editor-fold>                       
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new CustomButtonUI(new javax.swing.JFrame(), true).setVisible(true);
        // Variables declaration - do not modify                    
        // End of variables declaration                  
    class Mybutton extends MetalButtonUI
         private final static Mybutton
          mMybutton = new Mybutton();
        public static ComponentUI createUI(JComponent c)
          return mMybutton;
        protected void clearTextShiftOffset()
            super.clearTextShiftOffset();
        protected void finalize() throws Throwable
            super.finalize();
        protected BasicButtonListener createButtonListener(AbstractButton b)
            return super.createButtonListener(b);
        protected Color getDisabledTextColor()
            return super.getDisabledTextColor();
        protected Color getFocusColor()
            return super.getFocusColor();
        protected String getPropertyPrefix()
            return super.getPropertyPrefix();
        protected Color getSelectColor()
            return super.getSelectColor();
        protected int getTextShiftOffset() {
            return super.getTextShiftOffset();
        protected void installKeyboardActions(AbstractButton b)
            super.installKeyboardActions(b);
        protected void installListeners(AbstractButton b) {
            super.installListeners(b);
        protected Object clone() throws CloneNotSupportedException {
            return super.clone();
        protected void paintButtonPressed(Graphics g, AbstractButton b)
            super.paintButtonPressed(g,b);
        protected void paintFocus(Graphics g, AbstractButton b, Rectangle viewRect, Rectangle textRect, Rectangle iconRect) {
            super.paintFocus(g,b,viewRect,textRect,iconRect);
        protected void paintIcon(Graphics g, JComponent c, Rectangle iconRect) {
            super.paintIcon(g,c,iconRect);
        protected void paintText(Graphics g, AbstractButton b, Rectangle textRect, String text)
            g.setColor(Color.GRAY);
            super.paintText(g,b,textRect,text);
        protected void paintText(Graphics g, JComponent c, Rectangle textRect, String text) {
            g.setColor(Color.GRAY);
            super.paintText(g,c,textRect,text);
        protected void setTextShiftOffset() {
            super.setTextShiftOffset();
        protected void uninstallKeyboardActions(AbstractButton b) {
            super.uninstallKeyboardActions(b);
        protected void uninstallListeners(AbstractButton b) {
            super.uninstallListeners(b);
        public boolean contains(JComponent c, int x, int y)
            return super.contains(c,x,y);
        public boolean equals(Object obj)
            return super.equals(obj);
        public Accessible getAccessibleChild(JComponent c, int i) {
            return super.getAccessibleChild(c,i);
        public int getAccessibleChildrenCount(JComponent c) {
            return super.getAccessibleChildrenCount(c);
        public int getDefaultTextIconGap(AbstractButton b) {
            return super.getDefaultTextIconGap(b);
        public Dimension getMaximumSize(JComponent c) {
            return super.getMaximumSize(c);
        public Dimension getMinimumSize(JComponent c) {
            return super.getMinimumSize(c);
        public Dimension getPreferredSize(JComponent c) {
            return super.getPreferredSize(c);
        public void installDefaults(AbstractButton b) {
            super.installDefaults(b);
        public void installUI(JComponent c) {
            super.installUI(c);
        public int hashCode() {
            return super.hashCode();
        public void paint(Graphics g, JComponent c) {
            super.paint(g,c);
        public String toString() {
            return super.toString();
        public void uninstallDefaults(AbstractButton b)
            super.uninstallDefaults(b);
        public void uninstallUI(JComponent c)
            super.uninstallUI(c);
        public void update(Graphics g, JComponent c)
            super.update(g,c);
    }Thank You

    Hi DarrylBurke,
    Sure i will.
    But i have posted that code after trying all the possibilities.
    I thought that getUI() failed exception may have the resulkt for not implementing any method or any registration problem with UIManager.
    So, that is my test code not exactly i have posted that in hurry.
    Here is the code :
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Rectangle;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.accessibility.Accessible;
    import javax.swing.AbstractButton;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.UIManager;
    import javax.swing.plaf.ComponentUI;
    import javax.swing.plaf.basic.BasicButtonListener;
    import javax.swing.plaf.metal.MetalButtonUI;
    * CustomButtonUI.java
    * Created on March 4, 2010, 5:13 PM
    * @author  mourya
    public class CustomButtonUI extends javax.swing.JDialog {
        /** Creates new form CustomButtonUI */
        public CustomButtonUI(java.awt.Frame parent, boolean modal) {
           super(parent, modal);
            String DEFAULTCLASSID="Mybutton";
            UIManager.put(DEFAULTCLASSID, "Mybutton");
            UIManager.put("ButtonUI",DEFAULTCLASSID);
            initComponents();
            JButton jbutton = new JButton("Custom");
            jbutton.setBounds(10,10,100,20);
            add(jbutton);
            this.addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent event)
                    System.exit(0);
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(0, 400, Short.MAX_VALUE)
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(0, 300, Short.MAX_VALUE)
            pack();
        }// </editor-fold>                       
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new CustomButtonUI(new javax.swing.JFrame(), true).setVisible(true);
        // Variables declaration - do not modify                    
        // End of variables declaration                  
    class Mybutton extends MetalButtonUI
         private final static Mybutton
          mMybutton = new Mybutton();
        public static ComponentUI createUI(JComponent c)
          return mMybutton;
        protected void paintText(Graphics g, AbstractButton b, Rectangle textRect, String text)
            g.setColor(Color.RED);
            super.paintText(g,b,textRect,text);
    }Can you please suggest me the possible solution for this problem.
    Thank You DarrylBurke

  • OOP ALV report custom control performance problem

    HI
    how to write OOP ALV report without custom control.. Actually with custom control which taking long time... and time out happens for huge selection of data..
    Regards
    Roops.

    timeout is not an alv problem. If you try to display a "huge" amount of data, any display technology will fail. Even sap programs fail, their wise solution is to ask user to restrict data to be displayed. Or reduce database selection time, or display amount. Or propose the user to download data as a spool, or output to a file on server.
    Otherwise, read some advices about how to handle timeout in [Note 25528 - Parameter rdisp/max_wprun_time|http://service.sap.com/sap/support/notes/25528].
    About your question, if you still want to try, look at [example code with alv class cl_salv_table for simple display|http://help.sap.com/saphelp_nw2004s/helpdata/en/f9/1ab54099de3726e10000000a1550b0/frameset.htm]

  • Paging problem with Crystal Report Viewer in VS 2013

    I am attempting to upgrade a VS 2008 project that uses a dozen plus Crystal Reports to display data for our owners.
    The problem that i am having is with navigating to other pages of any multiple page report using the paging buttons of the Report Viewer control. The report will load fine and display the first page. If I try and go to page two an overlay covers the screen and a progress graphic displays and will never go away.  I have to stop debugging the project and restart it.  I have been able to get the paging buttons to work if I click on one of the asp.net buttons that I have added to the page that run the .ShowFirstPage(), .ShowNextPage();.ShowPreviousPage(); or .ShowLastPage(); methods of the ReportViewer control.  When in click on one of these buttons an error displays within the ReportViewer control that reads simply "ERROR". From there I can click on one of the asp.net button described above and the report displays and at this time the navigation buttons work as expected.
    The parameters are being set via a series of asp controls and then stored in ViewState then passed to the ParameterFieldInfo of the ReportViewer control.
    This all works just fine in VS 2008 project but I have not been able to resolve the paging issue since upgrading.
    Does anyone have any ideas as two what may be causing this behavior?

    Thanks for your reply.
    I am on SP 9.
    I moved the block assigning the report source of the ReportViewer to the Page_Init method, but that did not change anything.
    The reports are loaded when the user clicks on a link button specifying the report that they wish to view.  In the click event of the button a method is called to set the LogOnInfo for each table of the reportsource;
    Tables  tables = reportSource.ReportDocument.Database.Tables;
    foreach ( CrystalDecisions.CrystalReports.Engine.Table table in tables ) {
    var logonInfo = table.LogOnInfo;
    logonInfo.ConnectionInfo = connectionInfo;
    table.ApplyLogOnInfo( logonInfo );
    Then all the parameters are set;
    crvReportViewer.Visible = true;
    crvReportViewer.ParameterFieldInfo.Clear();
    SetDateValuesForParameterFields();
    SetEquipClassValuesForParameterFields();
    crvReportViewer.ParameterFieldInfo = paramFields;
    crvReportViewer.ParameterFieldInfo.AddRange( equipClassParamFields );
    Session[ "CurrentReportSource" ] = crvReportViewer.ReportSource;
    Then in the Page_Init I assign the ReportSource of the ReportViewer control;
        if (Session["CurrentReportSourceId"] != null)
    crvReportViewer.ReportSource = Session["CurrentReportSource"];
    And in Page_Load;
    if ( Page.IsPostBack ) {
                    ApplicationSettings appSettings = AppConfigSettings.LoadSettings();
    connectionInfo.ServerName = appSettings.PrimarySettings.Server;
    connectionInfo.DatabaseName = appSettings.PrimarySettings.DataSource;
    connectionInfo.UserID = appSettings.PrimarySettings.UserId;
    connectionInfo.Password = appSettings.PrimarySettings.Password;
    startDate.Name = "StartDate";
    endDate.Name = "EndDate";
    trailerNumber.Name = "TrailerNumber";
    location.Name = "LocationId";
    equipClass.Name = "EquipClass";
    txtStartDate.Focus();
    When in run this the reports will populate and display the first page but if I try to navigate to another page I get a error;
    Unhandled exception at line 12, column 82761 in http://localhost:63034/aspnet_client/system_web/4_0_30319/crystalreportviewers13/allInOne.js
    0x800a138f - Java Script runtime error: Unable to get property 'length' of undefined or null reference
    And on the screen there is a wait spinner.
    This all works fine in the VS2008 project.
    Thanks,
    Shannon

  • Paging Problem in JSP using request.

    Dear Friends,
    I have an issue in JSP paging using request. In my action servelet my code is set as follows.
    request.setAttribute("clients", clients);
    In JSP I have
    <%ClientDataBean[] clients = (ClientDataBean[]) request.getAttribute("clients");
    If I navigate to another page it becomes null. I could make through session. If there any way to handle request param while navigating between pages.
    Thanks,

    public class PagingBean{
       private int pageSize;
       private int pagePointer;
       private int pages;
       private int startPage;
       private int lastPage;
       private List dataList;
       private List resultantList;
       //respective getters and setters
       // write getResultantList() method in such a way that it gives the resultantList which is to be displayed as per persisted   values of all other properties in Bean and use it for displaying on your view.
    }write your backing bean / Action Class to manage the respective persisted values according to the actions done.
    Or if you are not intrested in re-inventing the wheel please go ahead and use custom built solutions.
    please google for finding such.
    could startup with the one below
    http://java-source.net/open-source/jsp-tag-libraries
    REGARDS,
    RaHuL

  • Custom Tag Capitalization Problem..

    All,
              OS: Windows 2000
              App Server: Weblogic 6.0 sp 2
              JDK: 1.3 (and tried 1.3.1)
              I have a set of custom tags that run fine when I use them on an app server (such as Enhydra) with JDK 1.2.2, but when I switch to JDK 1.3.x, which weblogic 6.x requires, they suddenly start generating errors with attributes which have capitalized letters in them. For example, in my taglib I have:
              <attribute>
              <name>closeConnection</name>
              <required>false</required>
              <rtexprvalue>true</rtexprvalue>
              </attribute>
              and in the support class I have:
              * Get the value of closeConnection.
              * @return value of closeConnection.
              public boolean getCloseConnection() {
              return closeConnection;
              * Set the value of closeConnection.
              * @param v Value to assign to closeConnection.
              public void setCloseConnection(String v) {
              if(v.toUpperCase().equals("TRUE")){
              this.closeConnection = true;
              } else {
              this.closeConnection = false;
              When I go to the page that this tag is on, I get the following output:
              Parsing of JSP File '/index.jsp' failed:
              /index.jsp(1): Error in using tag library uri='/cwerks' prefix='cwerks': There is no setter method for property 'closeconnection', for Tag class 'net.cwerks.taglib.MyTag'
              probably occurred due to an error in /index.jsp line 1:
              <%@ taglib uri="/cwerks" prefix="cwerks" %>
              Thu Aug 02 19:06:52 PDT 2001
              Note that the 'closeconnection' is all lowercase despite the fact that it is upper case in the tld and in the class itself.
              I came across a similar problem in weblogic 5.1 when I upgraded from JDK 1.2.2 to JDK 1.3. I tried changing the JDK for weblogic 6.0 sp 2 to 1.2.2, but a dll was missing. I also tried switching it to 1.3.1, but that did not help. It seems like introspection may have changed slightly between the two version. I'm shocked, and a bit suspicious, that I haven't seen this problem all over the newsgroups. Anyone else seen this?
              Thank you,
              Carson Gross
              [email protected]
              [att1.html]
              

    A solution presents itself:
              The problem was NOT with capitalization. Instead, the problem was as
              follows:
              My method was for setting a boolean, but I took a string so that people
              wouldn't have to type:
              <mytags:tag foo="<%=true%>" />
              instead, they could type:
              <mytags:tag foo="true" />
              which would call the setter method with a string "true", which would be then
              converted to a boolean within my class.
              So my setter has this signature:
              public void setFoo(String s)
              and my getter has this signature:
              public boolean getFoo() /* I know this isn't standard, but isFoo doesn't
              sound good to me*/
              I can't tell if it's because JavaBeans changed slightly between jdk 1.2.2
              and 1.3.x, or if Weblogic changed the way that they do things (I suspect the
              latter, since I had things working fine in WL 5.2 w/ jdk 1.2.2 and then
              things broke with WL 5.2 w/ jdk 1.3), but this no longer returns foo as a
              valid property to be set, and since weblogic 6.x relies on JavaBeans,
              instead of straight up introspection, it barfs. (I found this out by using
              jad/emacs, a wicked combination for those who want to poke around in jars).
              Anyway, I hope I can save someone else who has this same, albeit
              specialized, problem a lot of pain by my discovery. Your getters and
              setters better be of the same type with custom tags, or weblogic w/ jdk1.3.x
              is gonna barf when parsing the tld.
              Cheers, and thank God that's behind me,
              Carson Gross
              [email protected]
              ====================================================
              "Carson Gross" <[email protected]> wrote in message
              news:[email protected]...
              The plot grows thicker...
              The tags work fine on Tomcat 3.2.2
              I deploy the example tags that came with wl60 that have more than one
              capital letter in thier attributes, and they work fine. But my tag library
              stubbornly insists on not working so long as I keep the attributes with more
              than one capital letter in. If I remove the offending attributes, or change
              them to have only one capital letter, they work, but this is not an
              acceptable solution. (I guess.)
              I even created an simple introspection class to make sure that the acutal
              methods were there. They were.
              I am at a complete loss here... I guess it's tomcat for now.
              Cheers,
              Carson Gross
              [email protected]
              "Carson Gross" <[email protected]> wrote in message
              news:[email protected]...
              All,
              OS: Windows 2000
              App Server: Weblogic 6.0 sp 2
              JDK: 1.3 (and tried 1.3.1)
              I have a set of custom tags that run fine when I use them on an app server
              (such as Enhydra) with JDK 1.2.2, but when I switch to JDK 1.3.x, which
              weblogic 6.x requires, they suddenly start generating errors with attributes
              which have capitalized letters in them. For example, in my taglib I have:
              <attribute>
              <name>closeConnection</name>
              <required>false</required>
              <rtexprvalue>true</rtexprvalue>
              </attribute>
              and in the support class I have:
              * Get the value of closeConnection.
              * @return value of closeConnection.
              public boolean getCloseConnection() {
              return closeConnection;
              * Set the value of closeConnection.
              * @param v Value to assign to closeConnection.
              public void setCloseConnection(String v) {
              if(v.toUpperCase().equals("TRUE")){
              this.closeConnection = true;
              } else {
              this.closeConnection = false;
              When I go to the page that this tag is on, I get the following output:
              Parsing of JSP File '/index.jsp' failed:
              /index.jsp(1): Error in using tag library uri='/cwerks' prefix='cwerks':
              There is no setter method for property 'closeconnection', for Tag class
              'net.cwerks.taglib.MyTag'
              probably occurred due to an error in /index.jsp line 1:
              <%@ taglib uri="/cwerks" prefix="cwerks" %>
              Thu Aug 02 19:06:52 PDT 2001
              Note that the 'closeconnection' is all lowercase despite the fact that it is
              upper case in the tld and in the class itself.
              I came across a similar problem in weblogic 5.1 when I upgraded from JDK
              1.2.2 to JDK 1.3. I tried changing the JDK for weblogic 6.0 sp 2 to 1.2.2,
              but a dll was missing. I also tried switching it to 1.3.1, but that did not
              help. It seems like introspection may have changed slightly between the two
              version. I'm shocked, and a bit suspicious, that I haven't seen this
              problem all over the newsgroups. Anyone else seen this?
              Thank you,
              Carson Gross
              [email protected]
              

  • Customer Balances Report problem?

    Hi,
    I am facing some problem it may have been discussed before but it is urgent so I am posting it.
    1) User wants to see the S_ALR_87012172 - Customer Balances in Local Currency on daily basis or any report which is similar to that.
    As far as I know he can't have this report on date wise for that we may have to go for the customization.
    Please suggest any other T. code or way out if we have in SAP.
    2) I have checked the records and I am confused as when I am running the FBL5N then I can see the balances for a customer
    1660000056 DR 31.03.2010 50,000.00
    5432402564 GL 31.03.2008 56,545.00-
    1900005638 AB 30.06.2007 56,545.00
    50,000.00
    which is fine as all are open items and due but when I run S_ALR_87012168 - Due Date Analysis for Open Items
    Due -                        Total OI                                      Total OI - Total OI
    NAZIMA STORES     10,681.45                                    23,809.50
    Please suggest me why is it so.
    Thanks and Regards
    Nitin

    Hi,
    Thanks for your reply PPIO_ENTRY....
    The customer does not want the report that is in FD10N and FD11 he wants the report based on the T. code S_ALR_87012172 - Customer Balances in Local Currency or something related to that.
    Please suggest...
    Thanks and Regards
    Nitin

  • Custom Report with Problems and incidents

    I'm trying to create a custom report of all problems and related incidents.  I can query the problemDimvw table, but I need some assistance linking to the incidents.  Anyone have a query or point me in a direction to join the necessary tables?
     What I'm trying to get is Problem ID, Title, Description, and Incident IDs linked to it.  Thanks.
    Chris

    I know PowerShell can help you with the Get-SCSMRelatedObject command but you would have to write a small script to get that to work en mass.
    http://smlets.codeplex.com/

  • Custom Logon Screen Problems

    Hello, i am facing with such problem:
    I have developed application "custom logon screen"
    [https://cw.sdn.sap.com/cw/docs/DOC-101074]
    after deploy i get this error:
    [EXCEPTION]
    java.lang.InstantiationException: ID018236: Cannot instantiate bean. java.lang.ClassNotFoundException: class com.sap.engine.applications.security.logon.beans.ResourceBean : java.lang.InstantiationException: com.sap.engine.applications.security.logon.beans.ResourceBean
    at JEE_jsp_logonPage_7538450_1282116953062_1282116953515._jspService(JEE_jsp_logonPage_7538450_1282116953062_1282116953515.java:52)
    I try to develop similar application at NW CE 7.20 (using documentation for 7.20 - [http://help.sap.com/saphelp_nwce72/helpdata/en/23/c0e240beb0702ae10000000a155106/content.htm]) and had the same problems.
    There is at least one mistake in documentation:
    "To avoid inconsistencies in class references, add the class folder of the logon logic application to the libraries of the Java build path of the imported logon UI application.
    You can find the class folder of the default logon logic application
    under the following path:
    <ASJava_Installation>/j2ee/cluster/apps/sap.com/com.sap.security.core.logon/servlet_jsp/logon_app/root/WEB-INF/classes"
    There are no such folder on server. I tried to add tcsecumelogonlogic_api.jar which can be found at similar location: <ASJava_Installation>/j2ee/cluster/apps/sap.com/com.sap.security.core.logon/servlet_jsp/logon_app/root/WEB-INF/lib After that my application compiling successfully (without that i have errors compiling/validating original file "logonPage.jsp" and others which are using beans from mentioned JAR). But after deployment i get NoClassDefFound/InstantiationException error. btw, all mentioned things in documentions was done exactly as written in documentantion and with different variations many times but without success.

    Hi,
    I have the same problem, please tell us how you solved this problem

  • Customer down payment problems

    Hello All,
    My client is facing the following problem can any one give me a clear idea about reason for this
    When an invoice is created from a billing plan, the amount displayed as the amount available from the downpayment is different from the amount that is showing up in the G/L for downpayments.
    For example the downpayment amount available while posting an invoice to a customer be 1000, if you go and check the spl GL for the down payment made by the same customer it is showing 9000 ie, a difference of 8000.
    What may be the reason for this difference any idea??
    Thanks in advance
    Arun R

    Hi Arun,
    Down payment is a SPL GL transaction. During configuration for SPL GL a seperate recon account is used to book the SPL GL transactions.
    In your case, the amount of 1000 may have been posted without SPL GL & rest of the amount may have posted with SPL GL. Check your entry for 1000 posted to customer.
    Regards,
    Ajay

  • Change the look and custom themes, masterpage problem

    I have created a masterpage and deployed it to the masterpage gallery.
    I have created a spcolor file and a spfont file and deployed them to the theme catalog.
    I have also created a New item in the composed look list like this:
    Masterpage: /_catalogs/masterpage/mycustom.seattle.master
    Theme: /_catalogs/theme/15/mycustom.spcolor 
    Font: /_catalogs/theme/15/mycustom.spfont
    Image: none
    DisplayIndex 3
    The problem is this: The theme is not displayed in the Change the look preview window.
    But if i change the masterpage back to std (/_catalogs/masterpage/seattle.master) in my composed look item. THEN it is displayed ??
    Changing back to my custom masterpage, then it disappears.
    Everything looks right, i can apply the theme through code. Masterpage is also changed in code and works.
    The only place it doesn't work is in change the look.
    The masterpage is deployed like this:
     <Module Name="MasterPages" List="116" Url="_catalogs/masterpage" Path="MasterPages" RootWebOnly="TRUE">
        <File Url="mycustom.seattle.master" Type="GhostableInLibrary">
          <Property Name="UIVersion" Value="15" />
          <Property Name="ContentTypeId" Value="0x010105" />
        </File>
      </Module>
    What am i missing ??

    Hi blarsern,
    Thanks for your sharing! It will be beneficial to others in this forum who meet the same issue in the future.
    I will mark your reply as anwser to close this case.
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • Sum(sales) count for month year and week

    I have sales table : pord_id number, sale_date date my question: a) i need to populate sum of sales for week ie., from today to 7 days example 20-MAY-2007 to 27-MAY-2007 b) sum of sales for month of MAY this year 2007 c) sum of sales for 20-MAY-2006

  • Java applet warning keeps coming back for signed applet

    I have an applet signed with certificate issued by a public CA cert verisign. This applet prints document to the printer. When it loads everything looks good and checks on the screen and the user is prompted to allow access to the printer. Even, thou

  • Changing adobe forms name while saving

    hi, i have made an application in which i am generating pdf form but while saving a default name 'f' is appearing which i need to change. I am unable to change pdf form name. Plz help. thanks

  • Acrobat 8.1 update

    Since the 8.1 update, I have been unable to view .pdf files in my folders. Is there a setting so I don't have to actually open the file but can preview it? I've checked all settings but haven't seen what I'm looking for.

  • Inspection lot at deadline monitoring

    Hi all, I've a question about the deadline monitoring function in SAP. I want to create an inspection lot when the batch is about to expire. Here are a couple of assumptions: - We use batch status management - inspection type 09 active in material ma