Need help in design/framework of a project requirements

Hi there.
I need some input/design suggestion and/or comments regarding 2 projects that I'm undertaking currently. The project duration is 8 weeks starting now.
Some background information of the current technology we are using right now. We are using weblogic 7.0 SP2 and our database is ms sqlserver 2000 and/or mysql. The persistance layer/framework we are using is a home grown JDBC framework. We are using only stateless session beans and our client which is a swing ui access the servers side thru webservices via a session facade. We use also Transfer objects on the client and our own DataObjects on the server side. Current consideration is that we can not upgrade to the current weblogic version at this time and can only use java 1.4 and use existing persistence framework we have. I've considered using Spring/Hibernate but it will involve major refactoring on our existing system, which we can not afford right now. But we can augment or add new framework to handle this 2 projects.
1. The first project is a mass update/creation of orders and order items. In our system the update and creation of order and order items are complicated and perform several validations (e.g. vendor/client is valid; item are valid and have enough to on-hand, etc.) and lookups before we can create/update an order and it's order items. We estimated that process to be around 1.5 - 3.0 secs and typically we will be processing between a few hundreds to about 5000. The max ceiling we put is 10,000.
Now the requirements are:
a. Ensure that the process will be completed and in the event of failure (physical or network or power) and recovery to start where it failed and start processing from that point of failure.
b. The transaction should be atomic on per order basis and not on whole process - meaning we will commit all changes for an order and start a new transaction on the next order. This will ensure that we have a complete order committed.
c. Don't tie the client from this process and when the process is finished give a feedback to the client who invoke the process.
2. The second project is related to the first, is that before they post the process above, the user will look at the set of data and do some editing and then post the data. So this project is on the UI side and would present the user a table/grid view of the data and since data set could be large, we want our swing ui to fetch only a set of rows/data so that it does not take so long to load all the data or run out of memory. A button or by the user scrolling on the scrollbar would fetch the next succeeding rows/data. The problem we have as stated on the first paragraph is these- we are using webservices and stateless session beans and there is no way that the server can recognized who the user is when that user request the next set of row/data set without querying the database again.
So your input and help is very much appreciated and if you know an existing framework that would help me is most welcome.
Have a blessed day.
Jun Victorio

Take the statistics of the tables and check again.
begin
DBMS_STATS.gather_table_stats(ownname=>'syslog',tabname=>'logs');
end;
Regards
Asif Kabir

Similar Messages

  • Need help with almost completed plugin engine project

    Hi all,
    For a while now I have been working on a plugin engine. After a few iterations, the engine is similar to the Eclipse engine, in that plugins use extension points and extensions to allow contributions. Unlike the eclipse engine I have added the ability for plugins to fire events through the engine and other plugins can add listeners, all through the plugin.xml manifest. Dependencies are mostly handled automatically at plugin load time (when extensions get resolved to extension points, and listeners get resolved to events). For the case where a plugin needs to use classes from another plugin, dependencies are also allowed to be declared. Like the eclipse engine, activation of plugins occurs the first time a class is used within the plugin's classpath, OR a plugin can be activated after it is loaded.
    What I need help with is testing, working on examples to provide with the engine project, and feedback/suggestions before we release the M1 build. I am asking for those that are interested in this type of work to volunteer to help where applicable and possible. I want to provide a solid plugin engine to the java community, one that is easy to use, works well, and is pretty effecient in terms of resource usage and performance.
    Of particular interest to me right at the moment is dealing with multiple versions. As I see it, the engine will be used within an application and as such plugins would be distributed with a specific application version. The plugin version itself is more of a notification as to what version a plugin is, although I imagine it will help when updating at runtime as well.
    Just a few other details of the engine. It handles (or will soon) dynamic load, unload and reload of plugins at runtime. Plugins can be distributed in an archive file format, we call .par (Plugin ARchive), with additional plugin filename extensions configurable at runtime. The plugins can be developed and deployed in an expanded directory format as they are in Eclipse as well, or in the archive format. In the archive format they do not need to be unzipped when deployed, and they can contain embeded jar/zip libraries. The engine handles finding and creating classes directly out of the .par file at runtime.
    Multiple locations to find plugins are configurable before the engine starts, and even after it starts more could be added to allow additional locations to find plugins. URLs are supported, and soon the HTTP protocol will be supported so that plugins can be downloaded and installed at runtime.
    The project can be found at www.sourceforge.net/projects/genpluginengine. If you would like to get involved and help out, please sign up on the dev mail list and send an email to introduce yourself to the rest of the members on the list.
    I'll also add that I am working on a Swing UI Framework built entirely from plugins. It provides a ready-to-launce UI application that developers can simply add their plugins to, extending various extension points of the framework to have menu items, toolbar buttons, status bar access, help and preferences dialog additions, file i/o choosers, tons of open-source components ready to use (or extend to add on to), and like Eclipse, hopefully... draggable window frames that can be dropped on any other frame to form a tabbed frame of windows. Some of this is a ways off, some is getting there now. Presently you can add menu items that do allow plugin activation when first clicked, so plugins can be loaded but not activated until needed. The Preference dialog works but is not completed, and a plugin that adds a plugin control panel to view all loaded plugins, activate them, load/unload/reload, view extension points, extensions, dependencies, etc is partially completed. The point is, to allow a ready to run UI framework in Swing with an easy path for developers to quickly build applications with. If you are interested in this, when you join the mail list and introduce yourself, indicate that you are interested in this as well, as we need help with plugin development for it and would appreciate more help here too.
    Look forward to some replies.

    Might I suggest setting up a project at a known project-site? I've seen your progress and questions posted here from time to time, but one of the drawbacks is that you have to fill each post with the entirity of your vision to explain what you're doing. That's a lot of text to read - and most folks will skip right over it.
    On the other hand, a well-crafted, good-looking project web-site, with appropriate links and docs and vision statements, diagrams, etc. will have more likelyhood of attracting volunteers. java.net and sourceforge.net are likely spots to set up shop. In addition, you get CVS and bug-tracking systems, which can be quite valuable in such a large-scale project where there are lots of pieces.

  • New here and need help with design

    Hello all, I am working on my son's first birthday thank you cards.  I need help removing the line in between the blue and green background.  Thanks. Stacey

    You also have a narrow black line on the lower left side.
    Increase the the magnification to 500% and select the black and the white lines with the Magic Wand (Continuous checked).  Feather by one pixel.  Sample the green right under the white line, make it the Foreground Color and fill the selection with it.
    Juergen

  • Building a house... need help on design!

    Hi! I'm kind of new to Java3D, and I'm sure someone asked this in this forum alread,y but...what the heck.
    I have a project in school where we need to make a model of a house, and allow the user to navigate through it. I know that I'll be using KeyNavigator here; I got that part already. But I AM having trouble with the whole designing part altogether. The house I'm making is rather detailed (as in I have to include the chairs, tables, bookshelves, posters, etc.). Some of the items need to be clickable, as well.
    I already made walls, and I can navigate through the room, but now that I'm putting textures in (and textures in almost each wall need to be different), I'm having trouble! And don't know how to make irregularly-shaped things... Can anyone help me? Like, can someone show me code of even a small room, with (preferably clickable) objects lying around and each wall having posters and stuff on them? Or even programs that can help me? I'm using JCreator now, which, of course, everyone knows, is originally for plain ol' Java.
    Oh, and I have no idea how to keep the user from going through walls...
    I need to finish this by mid-February, and I'm about ready to tear my hair out. I've got tutorials here...but I'm stuck. Maybe I just didn't explore the API enough, but...ARGH. I'm still stuck.
    If you can help me (or even point me to a tutorial that can quickly help me) I will love you forever. Thanks!

    http://dmoz.org/Computers/Software/Graphics/3D/Models/
    might be a good resource
    http://escience.anu.edu.au/lecture/cg/TextureJ3D/printNotes.en.html
    is a tute on texturing
    http://java3d.j3d.org/implementation/collision.html
    are tutes on collisions
    here is code to make a textured plane, you pass the path to the texture in the constructor.
    *      @(#)TexturedPlane.java 1.0 99/08/02 16:06:00
    * Copyright (c) 1996-1999 Sun Microsystems, Inc. All Rights Reserved.
    * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
    * modify and redistribute this software in source and binary code form,
    * provided that i) this copyright notice and license appear on all copies of
    * the software; and ii) Licensee does not utilize the software in a manner
    * which is disparaging to Sun.
    * This software is provided "AS IS," without a warranty of any kind. ALL
    * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
    * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
    * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
    * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
    * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
    * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
    * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
    * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
    * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
    * POSSIBILITY OF SUCH DAMAGES.
    * This software is not designed or intended for use in on-line control of
    * aircraft, air traffic, aircraft navigation or aircraft communications; or in
    * the design, construction, operation or maintenance of any nuclear
    * facility. Licensee represents and warrants that it will not use or
    * redistribute the Software for such purposes.
       A class to create a simple textured plane.
    import com.sun.j3d.utils.image.TextureLoader;
    import NewTextureLoader;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    * TexturedPlane creates a single plane with texture mapping.
      public class TexturedPlane extends Shape3D {
        TexturedPlane(String filename) {
            if (NewTextureLoader.getImageObserver() == null)
                System.out.println("call NewTextureLoader.setImageObserver()");
            this.setGeometry(createGeometry());
            if(filename != "")
                    this.setAppearance(createAppearance(filename));
        Geometry createGeometry(){
            QuadArray plane = new QuadArray(4, GeometryArray.COORDINATES
                                               | GeometryArray.TEXTURE_COORDINATE_2
            Point3f p = new Point3f(-1.0f,  1.0f,  0.0f);
            plane.setCoordinate(0, p);
            p.set(-1.0f, -1.0f,  0.0f);
            plane.setCoordinate(1, p);
            p.set(1.0f, -1.0f,  0.0f);
            plane.setCoordinate(2, p);
            p.set(1.0f,  1.0f,  0.0f);
            plane.setCoordinate(3, p);
            Point2f q = new Point2f( 0.0f,  1.0f);
            plane.setTextureCoordinate(0, q);
            q.set(0.0f, 0.0f);
            plane.setTextureCoordinate(1, q);
            q.set(1.0f, 0.0f);
            plane.setTextureCoordinate(2, q);
            q.set(1.0f, 1.0f);
            plane.setTextureCoordinate(3, q);
            return plane;
        Appearance createAppearance(String filename) {
            Appearance appear = new Appearance();
            System.out.println("TexturedPlane attempt to load file: "+filename);
            TextureLoader loader = new NewTextureLoader(filename);
            ImageComponent2D image = loader.getImage();
            if(image == null) {
                    System.out.println("load failed for texture: "+filename);
            System.out.println("Image width  = " + image.getWidth());
            System.out.println("Image height = " + image.getHeight());
            // can't use parameterless constuctor
            Texture2D texture = new Texture2D(Texture.BASE_LEVEL, Texture.RGBA,
                                              image.getWidth(), image.getHeight());
            texture.setImage(0, image);
            texture.setEnable(true);
            texture.setMagFilter(Texture.NICEST);
            appear.setTexture(texture);
            appear.setTransparencyAttributes(
               new TransparencyAttributes(TransparencyAttributes.FASTEST, 0.1f));
            return appear;
      } // end of TexturedPlane classregards

  • URGENT: Need help to add files to OA Project in JDev 9i

    Hi,
    OA Framework Version 11.5.10.6RUP
    JDeveloper 9.0.3.5 (Build 1453)
    1. The standard iProcurement NonCatalogRequestPG page is running fine in PRODUCTION and I have been asked to do enhancements like VO extn etc so I am trying to import files from server to JDev on my local machine.
    2. FTP $JAVA_TOP/oracle/apps/icx/*.* to c:/jdeveloper/jdevhome/jdev/myclasses/oracle/apps/icx
    and FTP $ICX_TOP/mds/*.* to c:/jdeveloper/jdevhome/jdev/myprojects/oracle/apps/icx
    4. Open Jdev and create OA Workspace & OA Project (default package: oracle.apps.icx)
    5. When trying to Add files and directories to OA Project, created in step 4, its bringing all files at one level. I dont see any hierarchical directory structure i.e. I dont see package like oracle.apps.icx with sub-directories like punchout, icatalog, lov,etc What I see is all files at one level under xxicx.jpr
    What am I missing here, PLEASE HELP...
    Thanks a lot!

    What you are doing is very simple job and I am sure you will achieve whatever you want.
    create a directory structure od seeded VO in your myprojects dir. then just copy vo.xml, voimpl.java and vorowimpl.java in that dir. create a BC4J component for thsi dir structure and then create new Vo with extends property as this seeded VO.
    If you still have a problem, please upload screenshot of problem to some website, I will download from there.
    --Parag Narkhede                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Need help with OA Framework. Enable/Disable LOV dynamically

    Hello,
    I am new to OA Framework. My requirement is as follows;
    The page should have a field with parameter org code (LOV). When the user selects an org and click GO button, the page should display all the inactive items (which have no Sales order or work order for last 2 years). In the table region, user selects single record or multiple records by a check box. The selected records should be processed after clicking a submit button in the table region. The process is, calling an API to change the status of the item to Inactive or some other status. The status should be determined by the user by selecting a LOV within the table region. I could create LOV based field for org code and could display the data on the page. I have been trying to display the LOV for item status , I have created a LOV under table region under table components > table actions. I could open the LOV and select a value, but the value is not defaulting to the field on the page. Somebody please help me with a suggestion or if you have the code for a similar kind of requirement please share with me.
    Also, need some suggestion on how to enable and disable LOV dynamically. I want to display the 2 LOV's in different regions. I want to enable the LOV for Item Status only after the org code is selected and the page populated after the user clicks GO button.
    Thanks in Advance…..

    Hi,
    I could open the LOV and select a value, but the value is not defaulting to the field on the page.pls check the LOV mapping ,this might be wrong.
    to enable/Disable LOV dynamically ,u need to use PPR,please check the lab solution exercise create employee chapter to learn to implement PPR functionality.
    Thanks
    Pratap

  • Need help asap. Can't open project in PP CS6 Debug Event, Need help asap. Can't open project in PP CS6 Debug Event

    I sat up all night, last night, editing a movie for a school project which is due Friday. I am extremely busy, and as i opened the file this morning to show the progress to a partner, Premiere, told me "Premiere pro has encountered an error" - "[c:\Mightykilt64\shared\adobe\mediacore\mediafoundation\api\inc\keyfra" - I click continue, and it says "The project could not be loaded, it may be damaged or contain outdated elements"
    I am so frustrated as i'm super busy, and on top of that i'm no computer genious, i really really hope someone can help, i need it asap! I use windows 8 btw..

    Gaps can be very small, and almost impossible to actually see.
    First, I zoom in on the Timeline, to the Frame-level, and step through the Timeline, or play it, looking for a flash of black.
    Next, I will hit Home, to get to the beginning of the Timeline, and then use the PageUP/PageDN keys to step through, Clip by Clip. I watch the CTI (Current Time Indicator w/ the red Edit Line) carefully. It should smoothly jump from Clip to Clip. With a tiny gap, say 1 Frame, the CTI will "hiccup," or "bounce." That is where the Gap is. How one fixes it will depend on where the gap is, and what one wants. Say that it's between two stills, I would then drag the Head of one, or the Tail of the other, to fill that gap. If it's between Video Clips, other choices might work best.
    PrE has a "Close Gaps" function, but if one has Audio that covers that gap, it will not work.
    One trick, that can get you to Transcoding is to add Transparent Video. Drag that to Video Track above all of your existing Video Clips, and extend it to "cover" the entire Timeline. The limitation of this method is that if there is a gap, there will be a black flash in the Video. If only 1 Frame, that might go undetected.
    Usually, when one gets the ":Failure to Return Frame," there is a % of the Timeline, also listed. One can do the math to locate that on the Timeline. As PrE does a two-pass Transcode, then 100% of the Transcode is through two passes. The full Duration of the Timeline is at 50%, as that is the end of the first pass. That can be a bit confusing, as a glitch at 75% would mean that half-way through the second pass, there was an issue detected. Usually, if there is a glitch, it will be discovered in the first pass.
    Good luck,
    Hunt

  • Need help with designing form for exports

    Hi
    I am pretty new to designing form in adobe acrobat.
    I have adobe acrobat 9 standard with Adobe liveCycle Designer installed.
    There are couple of things I want to do.
    1.
    I would like to add a box where I can change the number (default is 1), and when I increase it, (for instance to two)
    then
    it will postulate the particular sections twice.
    For instance, I am taking two drugs right now, then I would like to increase the number of drugs to 2, so then for each drug
    I would enter appropriate information such as drug name, drug form, route of drug administration etcs
    I hope this is clear
    2.
    I am trying to export this in xml format so that only the ones where the user fills in in pdf form gets exported to xml format.
    I would like the boxes to have its own tag, for instance the drug name mentioned above can have a tag of <drugname></drugname>
    I know this is possible through changing the box's name in binding tab.
    What I am interested in is to add a tag for the section, like a header.
    For example, if I were to enter two drug information I want the first drug information to be exported to be
    <drug>
    <drugname>blah</drugname><drugform>1</drugform><drugroute>oral</drugroute>
    </drug>
    <drug>
    <drugname>drug2</drugname><drugform>1</drugform>
    <drugroute>ophthalmic</drugroute>
    </drug>
    how would I add <drug> </drug> for each drug?
    also, can I change the order of the tags??
    in the pdf form, if the drugname box is displayed later than drugroute box, then when I export it, it will display as
    <drugroute>oral</drugroute><drugname>blah</drugname>
    but I want to manually set the order of tags when exported.
    Sorry I asked so many questions
    I hope it is clear enough for you to visualize what I am trying to do
    Thank you so much

    1. You can certainly add sections for the number of drugs that the user specifies pr
    ovided that the form is set up the correct way to begin with. The drug information section must be wrapped in a subform (usually Poistioned) and that in turn must be wrapped in a flowed subform. Then the form must be saved as dynamic. If this information is all that is on the form then that shoudl be all you need to do. If th edrug section is in the middle of the form then you need to wrap the other parts of the form in a subform so they can be pushed down when we add the drug subforms. It can get confusing ...seeing the form amnd its structure would help to clarify.
    2. You canbnot change the names of tags on the fly but you can change their values. AS mentioned above, when you wrap the Drug information in a subform that subform name can be used as a tag in the XML. Then you could have a node with the tag (or an attribute) that names the drug in question. Something like this:
    <Drug Section>
         <Drug>
              <DrugName></DrugName>
              <Dossage></Dossage>
              <Supplier></Supplier>
         </Drug Subform>
         <Drug>
              <DrugName></DrugName>
              <Dossage></Dossage>
              <Supplier></Supplier>
         </Drug>
    </Drug Section>
    As mentioned earlier this is always easier to explain when you see it in context of your form.....if you want to send it to me at [email protected] I can get you started at least. Please include a description of your issue in the email
    Paul

  • Need help on designing downstream data sync with OLite

    We are trying to build a disconnected desktop application for CRM Sales Application.
    For Data Synchronization, we would like to use TRS (Transaction Replay Service) for upstream sync (data from client to enterprise server).
    For downstream sync (data from enterprise server to client machine), we would like to see whether we can make use of OLite data sync feature.
    The client side db schema will be different from the server side db schema.
    We have a web version application built using ADF framework (a list of BC4J objects).
    We are going to create the client side db schema based on the shape of Sales View Objects.
    e.g. an OpportunityVO (view object) is join based on opportunityEO (table) and customerEO (table to get the customer name). In this case, we are going to have opportunity table at the client side that has all the opportunityVO's attributes defines as table columns.
    Questions
    1. Can we define a publication item based on a view object? And how ?
    2. Can we define a publication item based on a db view (at the server side) that
    synch with a db table ( at the client side) ? If so, where do we set the mapping?
    3. During the compose phase, we would like to call bc4j object’s api to collect the
    data content for client to download, is it possible ? if so, how to do this?
    (We would like to use the oLite feature to identify changed records, but we do
    want to use bc4j object api to get the data content for client to download.)
    Thanks

    I haven't given your description of the project and approach a lot of thought yet, but I did see your questions and thought I might point out some help there:
    1) Yes, you can define publication items on Views. Section 3.4.1.3.1 in the developer guide discusses this and the requirements of the view.
    2) Yes, a publication item defines the base tables for your user. Section 3.4.1.3 in the developer guide is a full discussion on creating publication items programmatically.
    Also, you might check into the Mobile Database Workbench for a GUI driven tool to define Publications and Publication Items.
    3) I believe what you are looking for here is the MyCompose API. Section 3.6, Customize the compose phase using MyCompose, in the developer guide discusses this.
    Gabe

  • Need help in designing an  ATM simulation in java

    Hi,
    I've got to design a simulation of an ATM in java(client/server) and if anyone can help me with some coding, it would be nice :)
    I've got to design the interface on the client side and connect it to a database on a remote server. Any codings of an ATM program will be of great help to me. so please give me a little help.. I'm really stuck and it's the first time I'm doing programming in Java.
    Regards
    Roubin.

    go to google.com and type in "ATM simulation in java." There are a number of example of this type of project.

  • Need help with design decision: JavaEE or JavaSE

    Hello folks,
    We are developing an application that has the following requirements:
    - Client will be a desktop client developed in Swing
    - JPA will be used for ORM modelling on server-side
    - MySQL will be used as the DB
    - JMS will be used for client-server event communication (since we need a robust event communication mechanism)
    Given the above, we are not able to decide whether to stick to Java SE or to use Java EE.
    I understand that if we decide to stick to Java SE, JPA can be used but what about JMS?
    Is there a way to use JMS without an application server?
    If not, would it be appropriate to use an App Server just for the sake of JMS?
    (We don't want to go with a third-party framework like Spring just for using JMS.
    For us, the choice is between Java SE or Java EE.)
    What do you people suggest would be better?
    Your inputs will be of great help.
    Thanks much,
    Sandeep

    Here is one way to approach this:
    I would first write the use cases like:
    GeneralUser -> (maintain local data)
    AdminUser    -> (maintain local data)
    GeneralUser -> (export to central data)
    AdminUser    -> (export to central data)
    GeneralUser -> (view common data)
    AdminUser    -> (view common data)
    AdminUser    -> (manage users) << include >> (add user), (delete user)then I would apply the pattern (http://www.theserverside.com/patterns/thread.tss?thread_id=17595)
    and identify the following three apps and the components that they depend on:
    LocalDataApp    { AuthenticationMgr, LocalDataMgr }
    CentralDataApp { AuthenticationMgr, ExportMgr, CentralDataMgr }
    UserAdminApp  { UserMgr }where the AuthenticationMgr component invokes the UserAdminApp to get the user info for authorization,
    the ExportMgr invokes the LocalDataApp to get the local data so the CentralDataApp can use CentralDataMgr to persist it in the central store.
    LocalDataApp and CentralDataApp could have one web front end and UserAdminApp could have another web front end. The communication between AuthenticationMgr and UserAdminApp could be via JNDI.
    Hope that helps,
    Nalla

  • Need Help: Query Designer

    Hi experts,
    In Query designer, is it possible to create an IF statement for "IRRATIONAL NUMBERS"?
    Lets say 10.03, 1.26, 3.1 and so on...
    The statement would be as follow:
    If Val1==N.x then 0 else Val1.
    To summary, if the value is N.x (N for rational numbers 1,2,3,... and .x for decimal values like .23, .44, .01 and so on...),
    then the value N.x will be changed or converted into "0".
    Example: If the value of FieldA on the report is 10.3, it then should be converted into Zero "0".
    another is if value is 1.03, then the report should show 0 instead of 1.03
    I arrived to a solution wherein I have to create three logic expression.
    First is to convert first the Irrational Number into Zero "0".
    Second is to create new selection in KF wherein it will pull the data containing the converted "N.x to Zero".
    And third is to create the IF statement logic that will satisfy my expected value.
    I'm having this problem on the first one as I have no idea how to convert irrational number into zero "0" value.
    the second and the last part would be fine as my main problem here is how can I convert the irrational number in to zero?
    Any suggestions?

    Hi,
    Please try the below.. Hope this will solve your issue
    Eg. of data
    Dist. Channel  -
    Value
    Dom1----100.5
    exp1----200.4
    dom2---50
    exp2---75
    Expected out put
    Dist. Channel  -
    Value
    Dom1----0
    exp1----0
    dom2---50
    exp2---75
    Steps1
    Drag and drop Dist.Channel in row and value in colum
    create a formula1 using ur kf value 
          CEIL(value)    --- which will provide us integior part with out decimal
    Steps2
    create another fomula2
    using boolean operator compare the value
    (formula2==value)*value
    this formula compare our two values and will produce a boolean value ie 1 or 0
        :  Eg 100.5  ceil(100.5) = 100  Now in our formula1 we are comparing these two values are equal or not ie 100.5 - 100 so out come will be 0 then 0100.5 = 0 always if our condition is true then 1100 = 100
    Related Links :
    Boolean Operator
    http://help.sap.com/saphelp_nw04/helpdata/EN/71/0aec3b6e011341e10000000a114084/frameset.htm
    Thanks
    BVR

  • Need help in designing a shopping cart mall

    Hi guys,
    Can any one help out me in designing the shopping cart mall in servlets, jsp and oracle database. If so reply to me at this id "[email protected]"
    Thanks and Regards
    Madhu Kiran
    9866764834

    MadhuKiran wrote:
    Hi guys,
    Can any one help out me in designing the shopping cart mall in servlets, jsp and oracle database. Nope. And nobody wants to. That's because a few million have already been designed and you're likely not going to improve upon existing shopping cart technology.
    If so reply to me at this id "[email protected]"
    I hope you're prepared for lots and lots of spam!
    Thanks and Regards
    Madhu Kiran
    9866764834Is that your phone number? OMG did you really just post your phone number?! If so, I think that's a first.

  • Need help in designing VLANS for 20 dept

    I have 1000 nodes for which i am planning a Campus wide network , with 1 Layer three switch, some 15 L2 switches . I have some 20 different departments and need different ip schemes for all of them. I need this with security enabled so that the departments resources are safe. Please do suggest me how can i go for it . . .
    Do suggest what IP scheme i can allot , if one dept is having 60 users and another is having 490 users .
    Thanks in Advance,
    Max

    Hello Sai Krishna,
    first of all you need a classless routing protocol like RIPV2, EIGRP or OSPF so that you can use different subnet masks as needed without wasting ip addresses.
    Then you need to create an address plan that fits all your needs and leave space to grow.
    Likely you will be using private ip addresses as described in RFC 1918.
    For example you can use:
    172.20.0.0/20
    first you divide this space in /23 subnets that are good to host 490 users
    172.20.0.0/23
    172.20.2.0/23
    172.20.14.0/23
    for vlans with 60 users it is wise to leave space for additional hosts if needed in the future so I would use a /25 for them
    let's take
    172.20.12.0/23 further subnetting this with a /25 means moving to the right of two bits and gives four subnets:
    172.20.12.0/25
    172.20.12.128/25
    172.20.13.0/25
    172.20.13.128/25
    this can accomodate 4 subnets/departments.
    I wouldn't use subnets bigger then a /23 because otherwise the broadcast overhead becomes very great.
    Having a multilayer switch you can also think to put the 490 users in two vlans/subnets.
    About the security this depends on the security levels you want to build:
    complete segregation of departments can be achieved with VRF lite (actullay different routing tables for each department).
    Some level of control can be achieved by using ACLs applied on the SVI logical vlans interfaces on the L3 switch.
    Hope to help
    Giuseppe

  • Need help in design login page in struts

    Friends. I am new to struts. I am designing one Login page which works fine. Now i want to add Remember Me option to login page. Help me to do this. Thanks in Advance.

    Try this,
    Action class
    if(event check blah blah) {
                             Cookie usernameCookie = new Cookie("Username", strUserId);
                             usernameCookie.setMaxAge(60 * 60 * 24 * 30);
                             response.addCookie(usernameCookie);
                             Cookie passwordCookie = new Cookie("Password", strPassword);
                             passwordCookie.setMaxAge(60 * 60 * 24 * 30);
                             response.addCookie(passwordCookie);
                             Cookie checkCookie = new Cookie("Check", strCheck);
                             checkCookie.setMaxAge(60 * 60 * 24 * 30);
                             response.addCookie(checkCookie);
                        }else {
                             Cookie usernameCookie = new Cookie("Username", "");
                             response.addCookie(usernameCookie);
                             Cookie passwordCookie = new Cookie("Password", "");
                             response.addCookie(passwordCookie);
                             Cookie checkCookie = new Cookie("Check", eventname);
                             response.addCookie(checkCookie);
                        }in jsp
    <bean:cookie id="uname" name="Username" value=""/>
    <bean:cookie id="pword" name="Password" value=""/>
         <html:text property="UserId" value="<%=uname.getValue() %>"/>
         <html:password property="Password" value="<%=pword.getValue() %>"/>
         <logic:equal value="on" cookie="Check">
              <input type="checkbox" name="CheckBox" checked="checked" >
         </logic:equal>
         <logic:notEqual value="on" cookie="Check">
              <input type="checkbox" name="CheckBox">
         </logic:notEqual>
    <html:submit property="" styleClass="button" ><bean:message key="button.login" /></html:submit>- vignesh

Maybe you are looking for

  • DS 3.2 BW Load: Empty records in BW

    Hi All, i'm using DS 3.2 an BW 7.01 SP 5. I use the RFC Sever via Management Console and the configuration and connection between both is fine. ( my source was: https://wiki.sdn.sap.com/wiki/display/BOBJ/Loading+BW) After running the Infopackages i g

  • Can't customize Book in iPhoto 11

    OK, I'm sure I'm missing something super obvious, but the iPhoto "make my own book" I see in the Tutorials and described in the How To from Apple doesn't look like my Book in iPhoto 11. There's no scroll bar at the top showing my photos. And when I s

  • Internal Table with Oracle's Error Codes

    Hi, Is there any internal table where is stored every oracle error code with it's Cause, Action and all the other similar stuff? Att,

  • Need to create a user  from procedure

    Hi to all, I need to create a user from oracle stored procedure. i am able to create a proceure successfully, when i am executing the procedure i cant able to successfully run it. it is throwing insufficient privileges. i tried to run the procedure f

  • WVC200 in low light/software question

    I've got a WVC200 cameras in my home we use to monitor our baby.  I had paired it with another cheap camera I had with night vision and the second camera was used for illumination only.  However it's failed, and I can't seem to find out what Illumina