TODAYS LITTLE CHALLENGE  FOR JAVA DEVELOPERS!!!

This challenge is related to EventListener.
I initialized a String i.e
String data = "myname";
What i wnat to do;
whenever the string data changes some event generate's so that in Listener
method i received the the data .
What kind of Listener should be used i not no.
Be sure not to initialize like this "static String data = "myname";
Example:
String data = "myname";
data.add...Listener(this);
for(int i = 0; i< 10; i++)
data = "myname"+i;
public event...Listaner( Event ...e)//Event listener
string s = e.getdata();// OR some other function
Thank's

First, I think this is a cool idea, and there is a new language specifically designed to achieve this kind of event programming.
Second, I don't think this can be done with the Java language, at least not with the current Java architecture. Among the few problems implementing this, the greatest obstacle is here:
String data = "myname";
data = "myname"+i;Now, to event trigger this data = "myname" + i; , or to the JVM data = new String("myname" + i); , is problematic. The String variable data did not change value, it changed its reference. You can not intercept the = operator in Java. You can not change the String constructor behavior legally. (Well, even you do, it applies to all Strings and not just the data variable).
So, the only work around solution to achieve a similar effect is to wrap the String class to a MutableString class. (Note: wrap, not extend) And expose get/set method for this wrapper string class, then you can do whatever listener in the get/set method of your class. However, you still can not add listener for object reference change.
The above is only my take though. Do you have the answer to the challenge? I would love to hear others or the answer.
--lichu                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • New tips for Java developers

    Hello to all Java developers!
    I’m new to the forum and I wanna say all of you hi. Wanna give you a link to one very interesting article on java development (Video Conversion System Implementation)
    http://techzone.enterra-inc.com/video/video-conversion-system-implementation/
    I want to discuss it with you here.

    In what way is that a tip for Java Developers? In what way is it related to Java Programming?

  • JasperReports for Java Developers book just released.

    JasperReports for Java Developers book by Packt Publishing is for Java developers who want to create rich reports for either the web or print, and want to get started quickly with JasperReports to do this. No knowledge of JasperReports is presumed, although obviously familiarity with Java, SQL, and XML are assumed where they are required.
    More about this book :http://www.packtpub.com/JasperReports/book
    Sample chapter from this book "Creating Dynamic Database Reports"
    can be downloaded from : http://www.packtpub.com/files/SampleChapter-JasperReports.pdf

    Any one that might be able to help me here? Much appreciated. Thanks.

  • ABAP for Java Developers

    Hi,
    I'm a Java developer that developed some Java Web Dynpro for my company.
    Unfortunately my boss said to me that we don't have work to do on Java Web Dynpros and told me to learn ABAP Web Dynpros.
    Is there any resource or quick reference for Java Programmers (who knows object oriented programming and how to make a Java Web Dynpro) to learn object-oriented ABAP and what are the differences in writing an ABAP Web Dynpro?
    Thank you,
    Pietro

    Hi
    Try these links
    [Tutorials for beginners|http://www.sdn.sap.com/irj/sdn/index?rid=/webcontent/uuid/367b73e5-0901-0010-daa3-9de4771fc985]
    [Web dynpro ABAP wiki|https://wiki.sdn.sap.com/wiki/display/WDABAP/WebDynproABAP+Home]
    [SDN Help|http://help.sap.com/saphelp_nw70/helpdata/en/77/3545415ea6f523e10000000a155106/frameset.htm]
    Thanks & Regards,
    Gayathri Shanbhag

  • A challenge for EJB developers!!

    Hi there
    I have some entity beans, say 5. Now if I dont know the type of the entity bean and want to call a method that the bean has.. What is the best solution for that.. I dont think a code like this is a solution...
    if (type.equals("PrimitiveAttributeTestMO")){
    paMO = paMOHome.findByPrimaryKey(id);
    info=paMO.getMOInfo(id,null);
    else if(type.equals("DSAttributeTestMO")){
    dsMO = dsMOHome.findByPrimaryKey(id);
    info=dsMO.getMOInfo(id,null);
    else if(type.equals("ActionTestMO")){
    atMO = atMOHome.findByPrimaryKey(id);
    info=atMO.getMOInfo(id,null);
    there type is a string representing the type of the entity bean.. There should be an automatic way for that just like in java reflection..
    Regards
    Brian Al

    Off hand I will say what you have set out to do is not doable.
    The real problem I foresee is the create,finder methods which might be returning the remotel of a particular bean.
    This method would be called on a remoteHome which will declare the appropriate remote as return type when its not a collection.
    Then you would run into problems while casting the object obtained by PortableRemoteObject.narrow(ref, c);
    the problem is not in the narrowing but in the casting it to the appropriate type.(Narrowing would not be an issue with local components but the problem will stay.)
    This is because you have to cast the object into specific types. You cannot cast it into a baseType to the remote as the basetype of the remote would not be able to have the method corresponding to the create or find that returns lremotes because the derived or the actaul localHome and remoteHome for each different ejb will have a different return type.

  • What will Windows Vista mean to Java Developers?

    I just happened to read my first article on Vista today.
    More specifically this awesome (and scathing) top 10 list by
    Windows competetitors:
    http://www.informationweek.com/story/showArticle.jhtml?articleID=195900152
    It made me wonder, though itll take 2-3 years before we see
    widespread adoption of Vista by anyone what does this mean for
    Java developers?
    Do you think the new graphics engine will mean cool new Swing
    components?
    Is Sun working on a new Windows JVM?
    As David Girouard from google points out theres a huge uprising
    in open source software, so anyway i think Java will become even
    more relevant.
    My number one curiosity!!!
    Will Java be able to take advantage of this new Vista desktop Gadgets stuff?
    http://en.wikipedia.org/wiki/Windows_gadgets
    I think that would be a great area for new Java development.
    Really fun things could be made.
    In researching it though it seems like a ripoff of Yahoo Widgets
    which Wikipedia claims is a JavaScript engine.
    http://en.wikipedia.org/wiki/Konfabulator
    So though Java and JavaScript are hardly the same thing,
    it seems like its been down and could be done better in Java ; )
    If Gadgets is a Windows OS dependent thing it would be nice
    to see Java support for it. THough i guess it would have to be
    3rd party and not part of the core libraries.
    Best Quote Ever: "Our friends up north spend over $5 billion a year on R&D, and yet these days all they seem to be able to do is to try to copy Google and Apple," CEO Steve Jobs said in August at Apple's Worldwide Developers Conference.
    Ive seen a lot of lame trolls around lately. I figured a fun conversation is what the forums need lately ; )

    It made me wonder, though itll take 2-3 years before we see
    widespread adoption of Vista by anyone what does this mean for
    Java developers?Not much. Java runs on almost anything, and also on Vista.
    Java on Vista: Yes, it Works (Chet Haase's Blog)
    Do you think the new graphics engine will mean cool new Swing
    components?I'm sure that there will be people who'll write cool new Swing components.
    Is Sun working on a new Windows JVM?Sun is working on a new JVM all the time! Java 6.0 is due to come out in December and they're already working on Java 7.0 also.
    There's no need to write a completely new JVM for Vista, as the current version of the Windows JVM already runs on Vista.

  • JDeveloper - problems with Tutorial for Java EE Developers

    Hi,
    I am trying to start learning Oracle J2EE technologies, and I am using the Oracle "Tutorial for Java EE Developers (10.1.3.1.0)" listed in the Oracle Application Server 10g (10.1.3) page: http://www.oracle.com/technology/tech/java/oc4j/1013/how_to/index.html.
    I am having problems in chapter 2, at the creating EJB 3.0 Persistence Entities stage, when using the Create Entities from Tables Wizard. Basically, when I select all the tables from the SRDEMO schema and attempt to create the Java classes, only the first table objects are created - ExpertiseAreas.java and ExpertiseAreasPK.java. I do not get any error messages, so I am not sure why the other table objects are not created.
    If I then use the Wizard to select tables individually, the objects are created. However, they appear to be missing some details - specifically the @OneToMany annotation.
    Has anyone encountered this same issue, or are there any known issues with this tutorial.
    I am using version 10.1.3.4 of JDeveloper, on a 10g (10.2) XE database. I installed the version of JDeveloper without JDK included. I have a Sun Java EE 5 SDK Udate 5 (JDK 6u7) install of JDK.
    Thanks,
    Fraser

    Please refer
    http://www.oracle.com/technology/obe/obe1013jdev/10131/10131_ejb_30/ejb_30.htm
    http://www.oracle.com/technology/tech/java/oc4j/ejb3/howtos/howtoejb30mappingannotations/doc/how-to-ejb30-mapping-annotations.html#onetomany

  • Great News for Java Game Developers!

    Finally, a complete game engine is being developed for Java! Mind2Machine is developing a genre-neutral game engine that goes way beyond a simple 3D Library.
    The engine is called: OpenMind Alpha v0.7 and includes many useful game programming libraries. Say goodby to C++ and complicated engine builds/API's.
    Mind2Machine is currently working on OpenMind v1.0 and they need experienced Java programmers to help develop new items. There are a lot of libraries on the drawing board, here are just a few:
    -Java Physics engine
    -All purposes particle system
    -Collision detection
    -And much more...
    OpenMind is open source and is developed under the LGPL license.
    I'm trying to get the word out, because I believe we could all benefit from this engine.
    If you're interested in the engine and/or you would like to contribute to the development of the next version(s). Please visit their webpage:
    http://www.mind2machine.com/gb/openmind/index.php
    Check out their developers link, and spread the word!

    I got openmind, and started to install it... and then 20 minutes later I realized I hadn't really gotten anywhere and I had to download other software just so that I could install the rest of it, and that software had its own set of bogus instructions... so I got pissed and closed it all :P

  • Mathematical and statistical challenge for developers

    Hi guys, a mats/statistical question. I've been asked to make a calculation in SQL (it's more fun that really job..to be honest it's only fun...anyway..) with a situation like this:
    38 events ( basketball games). You can  bet in more than, we can say, 100 points or less than 100 points. So you got 76 possibilities. If we decide to bet in 10 events more (IT WOULD BE ALWAYS MORE,
    OVER) how much is the possibility to win with the different percentage ( I call percentage the over, so the minimun is 10 events more. Of course if you got 38 event OVER the percentage is 100% and you are sure to win).
    So far it hard but it become harder if you play for example 25 bets splitting all the events ( that's means for each game the same number of the overall bet). Of course you cannot just summarize the probabilities but you have to come up with a statistical
    solution...
    Any suggestion for the step one and eventually also for the step two?
    Thanks ( I repeat, it's for funny but it's a challenge for developers..)

    Ok Stefan you're right I should have gone you more clues, but meanwhile I'm working...anyway I accepted the challenge..and thank you a lot to follow this fun situation ( the deadline is tomorrow at 8.00 am Greenwich time..) 
    Or do you mean each event results in one of two results:
    p(n) aka "over 100"
    q(n) aka "under 100 or equal"
    I mean exactly this, or yes (over 100.5 points) or not (under 100.5 points).
    I'm going to explain better the concept of the bet
    A B C D E F G H I L M.....till 38 letter.
    My bet A C D F G H I L M N ( I'm predicting the event that all these matches will be over 100.5).
    The script shoud retrieve the possibility to win having:
    38 matches over 100.5 on 38 total matches
    37/ 38
    36/38
    and so on. So far I calculated the right percentage of the events from 38 (over)/38 (total) till 10(over)/38(total).
    0.0000000004
    0.0000000138
    0.0000002560
    0.0000030715
    0.0000268760
    0.0001827569
    0.0010051632
    0.0045950318
    0.0178057482
    0.0593524939
    0.1721222324
    0.4381293189
    0.9857909675
    1.9715819350
    3.5206820268
    5.6330912430
    8.0975686617
    10.4792065034
    12.2257409207
    12.8692009691
    12.2257409207
    10.4792065034
    8.0975686617
    5.6330912430
    3.5206820268
    1.9715819350
    0.9857909675
    0.4381293189
    0.1721222324
    Now I should calculate the possibility to have 10 right on 38 matches over 100.5 ( 100% of course), 10 right on 37 over 100.5 and go on...
    Sorry if I'm not total clear but I'm running in different tasks..
    KALMAN I don't have so far any code I'm trying to come up with a solution and yes...it's fun

  • My Ipod touch recently fell into water, but once dried, it worked with seemingly little to no problems. Today, after working for at least an hour, the screen froze and is now not working, but the sounds are still functioning.

    I accidentally dropped my Ipod into the lake, at the beach yesterday, but i caught it early and it wasn't too soaked... i wiped it off for the most part, and most of the buttons and the screen worked fine! i was shocked, and there were a few glitches with the camera and the slide button on the lock screen, but otherwise it was greatly intact! so i gave it a rest, put it in my purse, and picked it up fifteen minutes later, and it was working 100% normally again! when i got home a few hours later, i put it in rice for a few hours, taking it out every once and a while to check my notifications... it still seemed to be working perfectly, so i just set it down out of the rice, assuming the moisture was gone. this morning, again, everything was working normally, no glitches, UNTIL, i opened my instagram app, and the screen froze, and it seemed like it had two separate screens, and i held the Sleep button down until the screen went black... then i tried turning it back on, etc. and it still didn't work, and so i plugged it into the computer, holding down the sleep and home buttons, and itunes identified it as in recovery mode, and started updating. i tried again to press the sleep and home butttons, maybe pressing only the home button, because I heard the Siri noise, as well as the charging sound, but the screen was still black.... i checked my iTunes, and lo and behold, it had identified my iPod, and synced it to the computer, as if it were normally functioning. However, the screen is still not working, and Siri is not working either. The sounds may be the only thing that's functioning. Should i send it in?

    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar              
    Apple will exchange your iPod for a refurbished one for $199 for 64 GB 4G, $99 for the other 4Gs, $99 for the 16 GB 5G and $149 for the other 5Gs. They do not fix yours.
      Apple - iPod Repair price
    Sometime it takes a little while for the water to damage the iPod.

  • Oracle To End Support for Java 7

    No More Free Updates for Java 7 after April 2015
    Users must sign long-term support deals or migrate to Java 8 to avoid 'enormous headache and disruption to millions of applications'
    Public updates for Java 7 -- including bug and security fixes -- will end this month, a situation that one security advocate says could impact millions of applications.
    "As outlined in the Oracle JDK [Java Development Kit] Support Roadmap, after April 2015, Oracle will not post further updates of Java SE [Standard Edition] 7 to its public download sites," Oracle's Java SE Support Roadmap states. "Customers who need continued access to critical bug fixes and security fixes as well as general maintenance for Java SE 7 or older versions can get long-term support through Oracle Java SE Support. The process of migrating users from Java 7 to Java 8 through the auto update feature is expected to take place after the January 2015 CPU release."
    [ The art of programming is changing rapidly. We help you navigate what's hot in programming and what's going cold and give insights into the technologies that are changing how developers work. | Keep up with hot topics in app dev with InfoWorld's Application Development newsletter. ]
    Oracle released Java SE 7 in July 2011; Java SE 8 was released in March 2014. Java, particularly on the client side, has been beset by security issues in recent years. But Oracle has taken many steps to address the issues and stressed that most of the problems dated back several years, before Oracle took over Java from Sun in 2010.
    Still, the impact of Oracle's cessation of public updates could be severe, an official at security firm Waratek, believes. Oracle's "rapid" end-of-life schedule for Java versions is great for innovation and language evolution, Waratek CTO John Matthew Holt said in an emailed statement. "However, there is a dangerous tradeoff; now millions of Java 7 applications will have to defend themselves against code-level vulnerabilities without the benefit of future fixes." Holt advocates either upgrades to Java 8 or use of Java Run-time Application Self Protection (RASP) technologies (Waratek is a RASP vendor).
    This week's security update from Oracle, meanwhile, marks the "proverbial 'end of the road' for Java 7 application security, Holt said. "After today, the only version of the Java Platform which will receive public security updates is Java 8.  This is huge news, and it is going to cause enormous headache and disruption to millions of application owners around the world."
    Contacted Tuesday afternoon for a comment on the end of public updates for Java SE 7, by late evening Oracle had not yet responded.
    The April 2015 Critical Patch Update released Tuesday by Oracle provides 98 new fixes for security issues across a wide range of product families, said Eric Maurice in an Oracle blog post. These range from Oracle Database to Oracle Fusion Middleware, Java SE, and MySQL. Fourteen of the security fixes are for Java SE.

    Java 7 has already been dead for quite a while. While you could still use it for Java apps on your system, Apple blocked its use in browsers long ago. You have to install version 8 if you need Java support for the web.

  • Business Components for Java - Pooling

    I need a little bit of clarification regarding business components for java...
    I would like to create a jdbc connection pool for my application to avoid the overhead of creating new jdbc connections each time a client connects.
    Since I'm using BC4J, and the jdbc connect is contained within the bc4j components, I connect to the database using:
    session.getTransaction().connect("jdbc:oracle:thin:test/test@ccmain:1521:clincare");
    Does the BC4J architecture do any connection pooling itself? My plan was to create a pool of ApplicationModules that could be easily and quickly accessed, but if bc4j already pools the jdbc connections internally, then I'm not sure I would gain any performance with my ApplicationModule pool.
    Any input would be appreciated! Thanks!

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Steve Muench ([email protected]):
    [b]Does the BC4J architecture do any connection pooling itself?
    Strictly speaking, in JDev/BC4J 3.1, the answer is no. BC4J 3.1 offer Application Module pooling and since AM's are paired one to one with connections, using a pool of AM's is pretty much the same as using a pool of connections.
    However, in JDev 3.2 we've dramatically improved the features for use in a high-throughput Web application scenario and in doing so have implemented a more flexible application module pooling mechanism as well as a connection pooling mechanism that work together to allow developers to exploit application module instances to retain pending state without "pinning" that pending state to a particular AM instance and without "pinning" a dedicated database connection.
    Early customer previews we've done on our 3.2 features have been receving rave reviews, so we'll excited to get it out to a wider audience this Fall.
    For now, you're best bet is to exploit the application module pooling mechanism.<HR></BLOCKQUOTE>
    Is JDev 3.2 going to include a support for registering application module not from the property file, but using specific database username and password for the underlying connection ?

  • Apple tools for game developers

    Gaming technology has driven Windows to where it is today. In many aspects I see Windows as nothing more than a very robust gaming platform. Microsoft's Direct X 10, though proprietary, is a very formidable tool for developers. Why doesn't Apple do more in courting and aiding gaming developers on their platform? I am seriously perplexed by this. I realize that the game developers that design for the Mac are very dedicated gamers who would love nothing more than make great gaming experiences on the Mac. Most put their hearts and souls into making games happen for the Mac, with little to no support from Apple.
    I've done some research into OpenGL implementation on the Mac and I'm surprised at how much Apple is missing in this arena. Especially since so many of their core UI technologies are steeped in OpenGL. Yet Apple tends to be slow in fully adopting and exploiting the newer OpenGL technologies as they emerge. Apple could be a very strong driving influence for OpenGL, but they seem, to me anyway, to have a sort of detached interest in making it happen. For instance, OpenGL 2.0 was ratified on October 22, 2004 and yet Apple has only implemented 70% of the feature-set??? OpenGL 2.1 was ratified on December 1, 2006 and they have only brought 30% of the features to OS X? I look at the drivers for the various cards and compare it against PC drivers and Apple only implements about 75% of what PC drivers have. This has got to be horrendous for game developers.
    I see all of this as a critical missed opportunity on Apple's part. I know that Mac game developers have to jump through a lot of hoops to bring PC games to the Mac because they simply do not have the tools that PC developers have. In my opinion this is inexcusable. Apple has a tremendous opportunity to make a singular gaming experience on the Mac. They have a vertical marketspace that has the potential to turn their machines into a gaming juggernaut, yet they have all the appearances of being laxadasical about the whole concept of gaming.
    I can only hope that Apple reads this and, more importantly, cares enough to do something about it.

    I use photoshop (you can get 6.0 at ebay for ~40-50 bucks - something similar for free would be gimp -> www.gimp.org), povray (www.povray.org), sodipodi (www.sodipodi.com), gmax (www.discreet.com), some selfwritten commandline tools for creating sheets and pngout for compression.
    If you need alot of animations it's much easier if you go the 3d route: modeling, texturing, animating. One model = tons of animations. It's also easy to create new animations if you need em. [I'm talking about pre rendered sprites like everyone knows from donkey kong]
    Well, you'll need alot of time until you can create decent art. And then you'll need alot of practise, because you are just way too slow.
    Here are some examples for whoring and showoff purpose ;)
    raytracing (povray)
    http://people.freenet.de/ki_onyx/ludo_mockup8.png
    http://people.freenet.de/ki_onyx/hq2cpma2r.png
    Pretty hard to do. It's all math. You have to write code in the SDL (scene descipting language). Note: the board on image 1 is drawn with Java2d functions - however, the color values were taken from a previous rendering.
    pixelated (mspaint, photoshop... whatsoever)
    http://people.freenet.de/ki_onyx/evil.gif
    http://people.freenet.de/ki_onyx/killbill4.gif
    http://people.freenet.de/ki_onyx/favicon2l3.gif
    Takes damn long. Even that tiny 16x16 icon took more than half an hour. You'll need lot's of practise for being fast (eg 30mins for image nr2 would be fast).
    svg(scalable vector graphics - sodipodi)
    http://people.freenet.de/ki_onyx/eye9c.png
    Takes also rather long. However it's easier and faster to do than pixel stuff. Also creating sub frames isn't that much work.
    photoshopping(uuuuh... photoshop and the like)
    http://people.freenet.de/ki_onyx/tr_menu.gif
    This one for example was done in some minutes. Noise, motion blur, some text there, rendering filter... done!
    Oh and having a scanner is nice. You can use scanned sketches for everything (except povray heh).

  • GUI toolkit for Java ME/ CDC devices

    I have written in my blog about:
    GUI toolkit for Java ME/ CDC devices: http://ovenordstrom.blogspot.com/2006/08/gui-toolkit-for-java-me-cdc-devices.html
    and
    ERCP - Embedded Rich Client Platform, soon with the first release of eRCP:
    http://ovenordstrom.blogspot.com/2006/08/ercp-embedded-rich-client-platform.html
    That perhaps is interesting for Java ME/PP developers
    Regards,
    Ove

    Hi there!
    I guess you should take a look at GTK+/Gnome development today.
    Cheers,
    Inge-Lars

  • Ebook for java

    hi i m new to java and start learning from today so i want then tell me the best ebook for a new bee of java
    if u have the link then send it also

    [Sun's basic Java tutorial|http://java.sun.com/docs/books/tutorial/]
    [Sun's New To Java Center|http://java.sun.com/learning/new2java/index.html]
    Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    jGuru
    A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch
    To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    [Yawmarks List|http://forums.devshed.com/java-help-9/resources-for-learning-java-249225.html]
    [The Java Developers Almanac|http://www.amazon.com/exec/obidos/tg/detail/-/0201752808?v=glance]
    [http://javaalmanac.com|http://javaalmanac.com]
    Bruce Eckel's [Thinking in Java(Available online.)|http://mindview.net/Books/DownloadSites]
    Joshua Bloch's [Effective Java|http://www.amazon.com/Effective-Java-2nd-Joshua-Bloch/dp/0321356683]
    Bert Bates and Kathy Sierra's [Head First Java|http://www.amazon.com/exec/obidos/tg/detail/-/0596004656?v=glance ]
    James Gosling's [The Java Programming Language|http://www.bookpool.com/sm/0321349806]
    Gosling is the creator of Java. It doesn't get much more authoritative than this.
    Joshua Bloch and Neal Gafter [Java Puzzlers.|http://www.javapuzzlers.com/]

Maybe you are looking for

  • Deployejb : Oracle 8.1.6 : Errors compiling the communication stubs

    Hi, I was able to deploy EJB using JDeveloper 3.1 in the Oracle 8i (1.1.6) DB.However, when I try it manually, it is giving errors. I was able to use deployejb tool succesfully with Oracle 8.1.5 DB.Is there some problem with Oracle 8.1.6 DB? This is

  • [DW-8]No me funciona la funcion captcha

    Hola, estoy probando poniendo captcha en mi web, pero estoy haciendo pruebas y no me funciona, lo que hago es el en form, es llamar a una funcion Comprobar que tiene en esa misma pagina, pero no me funciona, os pongo el codigo asi se ve mejor <body>

  • Only set the fisrt character

    For i = 1 To ocombo.Selected.Value     oMatrix.AddRow     oMatrix.Columns.item("#").Cells.item(oMatrix.RowCount).Specific.Value = i     oMatrix.Columns.item("ColEfec").Cells.item(oMatrix.RowCount).Specific.Value = "31" Next i print: colefect 1     2 

  • Combining internal tables

    Dear experts,    i need to put the below 4 internal table values into i_final internal table, SELECT warpl wstra plnnr plnal     FROM mpos INTO CORRESPONDING FIELDS OF TABLE i_mpos     WHERE warpl IN p_warpl. SELECT warpl abnum zaehl nplda terma stad

  • Query for Approvals on Documents series based.

    Hi Experts, SAP B1 8.81 I am Using the Purchase Quotation for the Purchase Requisition, like i  created a seperate Series as "PUR_REQ" for purchase requisition  documents . Here i want to give the approvals for the "PUR_REQ" series only in the purcha