Where can I learn JSP specific to ATG Dynamo?

I'm new to ATG Dynamo and I see I can use JSP as opposed to JHTML with the droplets. Where can I learn more on this JSP and droplets? Is there a tutorial out there? ATG site doesn't have much.

Hi Did you find any specific BOOK for ATG Dynamo... If So please send me an email or put the name in this list , Thanks

Similar Messages

  • Where can I learn working in Forms6i ?

    Hi all.
    Maybe someone can help me? Where can I learn, how to work and develop in Forms ?
    Thanks.

    next step is customizing your query:
    to restrict your query to a specific department:
    build a second form, buod a block based on the DEPT-table, by suere to include the deptno-column in your block, everyting elese the same a you did with you current form.
    create a button in your dept-block, integrate it in the layout and create a WHEN-BUTTON-PRESSED-trigger on it.
    In the trigger we will call your EMP-form, passing the current value of deptno, to restrict the query in the emp-module.
    -- Put the value of DEPTNO into a global
    :GLOBAL.DEPTNO:=:DEPT.DEPTNO;
    -- call the emp-form
    CALL_FORM('EMP', NO_HIDE, DO_REPLACE);In WHEN-NWE-FORM-INStANCE-trigger of EMP-module do:
    -- make sure GLOBAL.DEPTNO exists
    DEFAULT_VALUE(NULL, 'GLOBAL.DEPTNO');
    IF :GLOBAL.DEPTNO IS NOT NULL THEN
      -- restrict the query of the EMP-block
      SET_BLOCK_PROPERTY('EMP', ONETIME_WHERE, 'DEPTNO=' || :GLOBAL.DEPTNO);
      GO_BLOCK('EMP');
      -- automatic query
      EXECUTE_QUERY;
    END;As an addition, we will read the department name for each record and show it besides the deptno, to do so:
    - manually create a new item in your EMP-block, name it DSP_DNAME, put datatype and length to appropiate value of DNAME-column is table DEPT, set "Database Item" to no, integrate item in your layout
    - create a POST-EUQRE-trigger on the EMP-block to read the DNAME for each row.
    DECLARE
      CURSOR crDept IS
        SELECT DNAME
          FROM DEPT
         WHERE DEPTNO=:EMP.DEPTNO;
    BEGIN
      OPEN crDept;
      FETChb crDept INTo E:EMP.DSP_DNAME;
      CLOSE crDept;
    END;thats it for now...
    good luck

  • Where can I learn about the 'Base Warranty of Depot Service"

    There is a default warranty of one year with new T61 called 'Depot Service' Where can I learn more about it, what it covers and how does it work ?

    auzbee,
    You can start by taking a look at the "Service and Troubleshooting Guide-ThinkPad T61" and "ThinkPad Safety and Warranty Guide" booklets that come with the machine.
    Centex

  • Where can I learn Flash CS5.5 basic + Game development?

    Hey where can I learn Flash CS5.5 basics along with game development with the Adobe Gaming SDK?

    By the way i own the site 02geek.com its an online school for programing and we do focus a lot of our time in flash. if you want a step by step from 0 to geek type of training give my site a try

  • Where can I learn how to setup and use the new features in Mountain Lion?

    Where can I learn how to setup and use the new features in Mountain Lion?

    MacWorld has a Superguide, TidBITS has Take Control books, and probably a flock of other publishers have physical books.

  • From where can i download jsp-2.0.jar???

    I want to run a MyFaces Application on Weblogic 8.1 SP6.
    When adding an dynamic expression (e. g. #{ msg.application } in <h:outputText value="#{ msg.application }"></h:outputText>), i get the following exception:
    javax.faces.FacesException: ServletException in '/app/common/views/header.jsp': null
         at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:425)
         at org.apache.myfaces.tomahawk.application.jsp.JspTilesViewHandlerImpl.dispatch(JspTilesViewHandlerImpl.java:233)
         at org.apache.myfaces.tomahawk.application.jsp.JspTilesViewHandlerImpl.renderView(JspTilesViewHandlerImpl.java:219)
         at org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41)
         at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:132)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:140)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1077)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:330)
         at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:150)
         at jsp_servlet.__index._jspService(__index.java:130)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1077)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:7047)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3902)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2773)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    Caused by: javax.servlet.ServletException: ServletException in '/app/common/views/header.jsp': null
         at weblogic.servlet.jsp.PageContextImpl.handlePageException(PageContextImpl.java:323)
         at jsp_servlet._app.__launch._jspService(__launch.java:332)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1077)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:330)
         at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:419)
         ... 22 moreI read in some forums that adding jsp-2.0.jar to the WEB-INF/lib directory solves the problem.
    But ... from where can i download jsp-2.0.jar???
    It is not packaged in MyFaces, Struts, Tomcat ...
    Please help me
    Thank you

    This link was in the myFaces Wiki:
    http://mirrors.ibiblio.org/pub/mirrors/maven2/geronimo-spec/geronimo-spec-jsp/2.0-rc2/
    Illu

  • How or where I can connect photoelectric sensors on 7350 controller or Mid-7604. Also where can I learn about basic wiring connection of sensors Thanks

    How or where I can connect photoelectric sensors on 7350 controller or Mid-7604. Also where can I learn about basic wiring connection  of sensors Thanks

    Hello Hassan,
    Thank you for using National Instruments Discussion Forum.  It looks like this is a duplicate post.  If it isn't I apologize and please repost to clarify.  Otherwise please use THIS thread for the discussion.
    Regards,
    Mark T
    Applications Engineer
    National Instruments

  • Where can I learn Objective-C and Cocoa?

    I want to learn Objective-C and Cocoa to make apps. Can someone tell me please where can I learn these languages

    Hope this  site provides the info.
    http://training.apple.com/locations?q=&c=all&country=IN
    Best.

  • Will any body recommends where can l learn sap bw in ameerpet in hyderabadd

    will any body recommends where can l learn sap bw in ameerpet in hyderabadd

    > Hi Ali,
    >
    > According to my opinion, RR RAO is the best
    >  institute in our Hyderabad.

    >   It helps u more and more.
    >    Have a good life.
    >
    >                       ANJALI
    Hi Anjali,
    Request you not to promote biased training centers, rather you can refer siemens who are authorised training partners.
    Regards,
    Iqbal

  • Where can i learn about Boot Camp

    to all
    i would like to learn about boot camp and the risks of puttiong windows on my mac. some things i just need on windows.
    where can i read about it before i start to post dumb questions about virus software and the risk of virus, as i'm sure its been addressed somewhere..

    thanks for the reply The Hatter... but its not a case of not leaving my comfort zone, but getting the full facts first for what i want to do. I;m quite good at leaving my comfort zone thank you..
    currently trying to build a server at home with little experience
    teaching myself HTML and Javascript and writing 5 websites on the fly
    among many other things.. i just need to find out more about what i am doing before i do it so i understand what i am doing, and whether its the best use of my time.
    my laptop most certainly doesn't sit on a shelf. its been around the world, to far flung corners of jungles, remote islands in Thailand and never leaves my side. Its on al day working and on all night processing. infact it almost drowned with me when i was caught in a violent storm going between islands in Thailand. Naturally i put the laptop somewhere safe before saving myself from going overboard.

  • Where can I specify search specification for a BIP report?

    Hi,
    We are on 8.0.0.9 and integrated BIP with it. We converted Actuate reports to BIP reports. In actuate, we can specify what data to bring in to the report by using a search specification. In a BIP report, where can I specify the search specification? Is it in the integration object or in the application? We have a lot of reports that fetch data based on the child BCs using EXISTS query. How do we do the same thing in BIP?
    Any help is greatly appreciated,
    Thanks.

    If you want the flexibility of passing different data into the report you keep it the way you have it now and train users, e.g., run a PDQ first.
    For the scenario you just described where the report parameters seem to be consistent and you want to avoid user selection I would either build the report using the reports business service or build it directly in BI Publisher. I almost consistently use the reports business service now but if you asked me a year ago I would not have given the same answer. I suspect the reason I have changed is related to recently working with BIP dedicated to Siebel whereas in past projects I may have had a mix of Siebel/OBI/other data sources.
    The reports business service is quite simple to implement in workflow and the search specification you pass in is as a method argument, Bookmark.
    I suggest you read:
    Siebel BI Publisher 8 Reports Business Service [ID 823360.1]
    There is also a document called Siebel BI Publisher Integration Concepts which while not entirely valid since it was written before Siebel built their own button is a useful reference to understand where things happen. (Note, Siebel patch 8.1.1.5 moves things on again and I am not impressed with the white paper supporting that).
    There are also a decent references in blogs out on the internet regarding this, including ones from regular contributers to this forum (mroshaw for example) and one I referenced a lot myself wrote by a Dutch guy but I don't have the address to hand.
    Steve

  • Where can I learn Numbers scripting

    Hi
    I'd love to learn how to script Numbers with AppleScript, but all I managed to find was either general AppleScript tutorials or answers to very specific Numbers problems.
    Is there a book or a website where I could learn to script Numbers?
    Thanks

    There is nothing to my own knowledge.
    I will just add that you may go to my iDisk :
    <http://public.me.com/koenigyvan>
    Navigate to the folder entitled :
    For_iWork:iWork '09:for_Numbers09:
    You will be able to download a lot of scripts driving Numbers.
    Some are old (1st quarter 2009) but youwill be able to extract useful tips and of course, don't forget :
    (1) Numbers' Applescript dictionary
    (2) http://developer.apple.com/mac/library/documentation/AppleScript/Conceptual/Appl eScriptLangGuide/AppleScriptLanguageGuide.pdf
    I work with these two resources, no less, no more.
    Yvan KOENIG (VALLAURIS, France) vendredi 6 août 2010 19:43:33

  • Anyone from Melbourne? Where can I learn a bachelor using mac programs?

    Hi everyone
    I have been searching everywhere but can't find a straight answer to where I can learn a bachelor degree like a bachelor in multimedia learning programs like:
    final cut pro
    shake
    motion
    maya 7
    I will have completed an advanced diploma in multimedia at the greensborough NMIT in Melbourne, but want to continue to more advanced work in the mac world in the area of Melbourne, i live in the north eastern suburbs. I don't want to do short courses but courses that go into great depth and are recognized nationally.
    I have currently been looking at courses at Swinburne at either the Hawthorn or Prarahn campuses, they look alright but I still need to get more info on these.
    Thanks guys

    I question the value of doing several years formal education in an industry in which on the job experience is EVERYTHING. That said Enmore TAFE in Sydney offers a week-long Shake course once every few months - perhaps there's something similar in Melbourne. Otherwise just buy the Gnomon DVD's and learn them inside out. Knowing which buttons to push is all a uni course will do anyway. Broadly speaking it won't equip you with the knowledge to deal with unique problems. You can only learn that under fire on a job. Try the VFXTalk challenges - I found them a great way to force yourself to learn under a deadline. And of course there's the excellent Shake tutorials that come with the product.
    G5 Dual 2.7   Mac OS X (10.4.2)  

  • Where can I store portlet specific attribute?

    I have 2 equale portlets on one page. I need to save attribute specific for each of them. Where can I put this attributes?

    You can try portlet preferences like
    <portlet-preferences>
    <preference>
    <name>stockSymbols</name>
    <value>BEAS, MSFT</value>
    </preference>
    <preference>
    <name>refreshInterval</name>
    <value>600</value>
    </preference>
    </portlet-preferences>
    for details: http://dev2dev.bea.com/pub/a/2004/02/portlet_preferences.html

  • Network storage drive...where can I learn about these?

    I have so many questions, and frankly, the answers I've seen looking (briefly, admittedly) around these threads scare me.  Gee, Wally, what ever happened to Apple as the computer you didn't have to know computer programming to use?
    Now, before you all get your panties in a bunch telling me that I'm responsible for knowing how to use my hardware, I know...and I do want to know.
    So what I want to know now is how can I learn about the various types of "shares", and what they mean for hooking up a network drive for backup, etc.
    I have a WD 1TB drive which I believe uses "SMB", whatever that is.  It's got two folders on it currently, "Public" which I can access, and "WD Backup", which I can't.  I also can't seem to use it as a Time Machine drive, which is what I want to do with it.  And, or course, I can't re-format it, which I'd love to do as my wife hates the folder designations on it, and would like to have one folder called "iMac Backup" on it.
    Answers which don't involve Terminal will get extra points, but I've dealt with Terminal before, so take your best shot.  And ask for clarification if you need it.  Thanks.

    Unfortunately, networking and file-sharing aren't quite so simple in part because there's decades of history and dozens of companies involved in getting it into the current state. If you want dead-simple, you can get an Apple Time Capsule or AirPort with an external drive and be done with it. However, if you really want the most from network storage, you'll probably want to read up...
    WD make a number of drive, some network-attached, some not. We'll assume that you have one of their basic consumer network-attached drives.
    "SMB" stands for "Server Message Block" protocol and it was the local area network file-sharing protocol developed for Windows for Workgroups circa 1992 (it was later renamed CIFS - Common Internet File System - by Microsoft in 1996 because of the rising popularity of the Internet, despite the difficulty in getting it to work in anything but a small local network). SMB/CIFS is still widely used today for Microsoft Windows networks, though much of the equipment that serves those files are built on Linux or FreeBSD and not Windows.
    Access to shares on an SMB server (such as your hard disk) is controlled through a configuration utility provided with the drive or via a web application built into the device (that you access through your browser). Consult your manual. Generally speaking, however, SMB servers offer different ways of identifying whether or not you can access a share: 1) based on the computer connecting (in which case, everyone is considered the same user), or 2) based on a username/password combo. Generally a server will only operate in one mode. Shared directories can also allow or deny "guest" access (access without a password). All of this should be configurable through the drive utility or web application which you access with your web browser. Generally, an SMB server can only operate in one mode.
    It sounds like the Public directory is configured to allow guest access, and I'm guessing that "WD Backup" is a share that's password-protected and intended to be used with Western-Digital's own software of the same name. You should be able to add and create new directories as necessary through the provided utility or the web interface.
    You are correct, you cannot use Time Machine with an SMB file-sharing service. Time Machine will require AFP (Apple Filing Protocol) or NFS (Network File System) support. Western-Digital only has 3 network drives that support AFP and Time Machine: My Book Live, MyBook World, and WD ShareSpace. OS X also has some basic requirements about the performance and capabilities of network storage in order to use it with Time Machine, so you really want to look for drives that state up front that you can use Time Machine with them (for example, WD World Edition: http://www.wdc.com/wdproducts/updates/docs/en/appletimemachine.pdf )
    I'm not sure why you can't reformat the drive. This is supported on all WD products (though, if you've moved a bunch of data to it already, perhaps it would be a hassle).
    You can do backups of your Mac over SMB, but it's complicated by the fact that SMB is quite old and isn't capable of storing information about the file permissions, ownership, etc. It will be reliable for data files, but not for applications, etc. There's a work-around, of course. You can create a disk image on the SMB share using Disk Utility (make sure you create an HFS+ image) and backup to that. If you go that route, I would suggest either Carbon Copy Cloner or SuperDuper to perform your backups. They are true backup tools, not versioning tools like Time Machine.

Maybe you are looking for