Can I develop the online Admission application without using the AAWS feature?

People,

Hello. I have implemented PeopleSoft Campus Solution 9.0 revision 5 for a University.

I need to develop an application for Admission online for future student to apply for admission.

My installations of PeopleSoft are below:

Server machine: Oracle Linux 5.10 (64-bit)

Client computer: Windows XP Professional (64 edition) with the Internet Explorer browser

Architecture Internet Oracle Linux 5.10 Server:

(1) database server: Oracle Database 11 g version 11.1.0.6.0 is

(2) the server application: Tuxedo 11 g

(3) web Server: Web Logic 10.3.6.0 and JDK 1.7.0_09

(4) browser: Firefox Mozila

(5) two Instances of huge database on the database server: 8.53 PeopleTools and Campus Solution 9.0.

To develop the application for Admission online, I made the 4 parties with WebLogic 10.3.6 and JDK 1.7.0_09 as below:

(1) install ADR (Application Development Runtime) 11.1.1.6.0 (64-bit)

(2) install the RCU 11.1.1.6.0 to create the scheme of OWSM_MDS (32 bit)

(3) create a WebLogic 'Domain_CS' domain in WebLgoic 10.3.6.0 in support of MARC 11.1.1.6.0.

(4) install JDeveloper 11 g 11.1.1.6.0 Studio Edition including WebLogic 10.3.5.0.

The application for Admission online is developed in JDeveloper 11g 11.1.1.6.0 Studio Edition and WebLogic Server 10.3.5.0.

His EAR file will be deployed in Production WebLogic Server 10.3.6.0 in PeopleSoft Internet Architecture.

As a general rule, Web Application is connected directly with database Tables.

But in PeopleSoft, application for Admission online does not connect with database Tables directly. He must connect with AAWS (Admission Application Web Service) and through AAWS gets to the DB tables.

From my point of view, we can connect directly the admission application online with its Instance Tables of database and do not need to connect with AAWS. It is easier to connect with DB directly to AAWS. In other words, do not use characteristic AAWS.

My question is:

May I develop the application for Admission online linking directly with database Tables and do not use the feature of AAWS?

Thanks in advance.

People,

Hello. The problem is solved by myself. We use AAWS because constraints are built. Thank you.

Tags: Oracle Applications

Similar Questions

  • How can I access Siri on my iMac without using the icon?

    How can I access Siri on my iMac without using the icon?  Can I say "Hey Siri"?

    There is no option "Hey Siri" on a Mac because they do not have the necessary pickups. You must use the icon in the menu bar or Dock.

  • How can I download adobe first 11 items without using the DVD?

    How can I download Adobe Premiere elements 11 without using the installer from the DVD

    PE 10, 11, 12, 13 - https://helpx.adobe.com/premiere-elements/kb/premiere-elements-downloads.html

    You can also download the demo version of the software through the page linked below and then use your current serial number to activate it.

    Don't forget to follow the steps described in the Note: very important Instructions in the section on the pages of this site download and have cookies turned on in your browser, otherwise the download will not work correctly.

    Photoshop/Premiere Elements 11: l http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm

  • How can I download software Adobe, like Dreamweaver, without use of cloud to Adobe?

    Greetings,

    How can I download software Adobe, like Dreamweaver, without using cloud Adobe?. I need the application .exe to install this software on a PC, which is not an Internet connection.

    Hi Anderson,

    You can try to download Dreamweaver CC among the direct download links available at: http://prodesigntools.com/adobe-cc-direct-download-links.html

    Please make sure that you follow the steps mentioned on the page before you start the download.

    Kind regards

    Rave

  • Campus solution 9.0: Online Admission Application Web Page

    People,

    Hello. I implement Campus Solution 9.0 revision 5 for a University. I'm developing a Page for Admission online on the Web Application for prospective students to apply for admission.

    It seems that Campus Solution 9.0 Feature Pack 3 AAWS on Self Service service.

    See Oracle shows Admission Applications Web Services for PeopleSoft Enterprise Campus Solutions

    But I do not see Feature Pack 3 download on http://eDelivery.Oracle.com .

    My question is:

    People give document and guideline to develop the Page of Web Application of Admission online for prospective students to apply for admission?

    Thanks in advance.

    Try this and let us know the results:

    1. first of all, make sure that the pssqlora.dll file is correctly located under % PS_HOME%\bin\client\win86.
    2. Server Scheduler and Application process requires once 64 bit and 32 bit Oracle database Clients.to to run. Make sure it is added on ALL these servers.
    3. then, is to reconfigure the application servers and servers of process scheduler to update the psappsrv.env file.
    Select set up this domain in the domain PeopleSoft PSADMIN Administration menu.
    B. Reconfigurez the Application Server domain to add the 32 or 64-bit client for the path.
    C. recharge area of the application server configuration, and then restart the domain.
    D. Repeat for batch servers.
    4. after reloading area of Application Server & Process Scheduler configurations, verify that the path of psappsrv.env now contains references to directories of binary 32 bits and 64 bits.
    5. run the Test call PeopleTools Remote.

  • help in the application without using the pivot function

    Hi gurus,

    Can you please help write the query without using the PIVOT function.
     WITH indata AS
             (SELECT 1 sn, '123:456,789,323:456,213,344,345:5454' x
                from dual
              UNION ALL
              SELECT 2, 'abcd:fgrfr,rfrf,rfred,tg:tg,tg:ophhh,op,vdfgbh:poijn' x from dual),
            instr AS
             (SELECT a.SN,
                     rownum RN,
                     B.column_value || CASE
                       WHEN B.column_value NOT LIKE '%:%' THEN
                        ':'
                     END column_value 
                FROM indata a,
                     TABLE(CAST(multiset
                                (SELECT trim(SUBSTR(x,
                                                    (CASE LEVEL
                                                      WHEN 1 THEN
                                                       1
                                                      ELSE
                                                       instr(x, ',', 1, LEVEL - 1) + 1
                                                    END),
                                                    (CASE instr(x, ',', 1, LEVEL)
                                                      WHEN 0 then
                                                       4000
                                                      ELSE
                                                       instr(x, ',', 1, LEVEL) - 1 -
                                                       (CASE LEVEL
                                                          WHEN 1 THEN
                                                           0
                                                          ELSE
                                                           instr(x,
                                                                 ',',
                                                                 1,
                                                                 level - 1)
                                                        END)
                                                    END)))
                                   FROM dual
                                 CONNECT BY level <=
                                            LENGTH(x) -
                                            LENGTH(REPLACE(x, ',', '')) + 1) AS
                                sys.odcivarchar2list)) b)
            SELECT  col1_val2,
                    col1_val1,
                    col2_val2,
                    col2_val1,              
                   systimestamp
              FROM (select SN,
                          ROW_NUMBER() over(partition by SN order by RN) RN,
                           SUBSTR(column_value, INSTR(column_value, ':') + 1) VAL1,
                           substr(column_value, 1, instr(column_value, ':') - 1) val2
                      FROM instr ) PIVOT(MAX(VAL1) VAL1, MAX(VAL2) VAL2 FOR SN IN(1 as col1,2 as col2));
    Thanks in advance!...

    Any help would be appreciated.

    user590978 wrote:

    Can you please help write the query without using the PIVOT function.

    with indata as (
                    select 1 sn,'123:456,789,323:456,213,344,345:5454' x from dual union all
                    select 2, 'abcd:fgrfr,rfrf,rfred,tg:tg,tg:ophhh,op,vdfgbh:poijn' x from dual
                   ),
             t1 as (
                    select  x
                      from  indata
                      where sn = 1
                   ),
             t2 as (
                    select  x
                      from  indata
                      where sn = 2
                   ),
             t3 as (
                    select  level lvl,
                            substr(
                                   x,
                                   instr(',' || x,',',1,level),
                                   instr(x || ',',',',1,level) - instr(',' || x,',',1,level)
                                  ) col1
                      from  t1
                      connect by level <= length(x) - length(translate(x,'A,','A')) + 1
                   ),
             t4 as (
                    select  level lvl,
                            substr(
                                   x,
                                   instr(',' || x,',',1,level),
                                   instr(x || ',',',',1,level) - instr(',' || x,',',1,level)
                                  ) col2
                      from  t2
                      connect by level <= length(x) - length(translate(x,'A,','A')) + 1
                   ),
             t5 as (
                    select  lvl,
                            substr(col1,1,instr(col1 || ':',':') - 1) col1_val1,
                            substr(col1,instr(col1 || ':',':') + 1) col1_val2
                      from  t3
                   ),
             t6 as (
                    select  lvl,
                            substr(col2,1,instr(col2 || ':',':') - 1) col2_val1,
                            substr(col2,instr(col2 || ':',':') + 1) col2_val2
                      from  t4
                   )
    select  col1_val1,
            col1_val2,
            col2_val1,
            col2_val2,
            systimestamp
      from      t5
            full join
                t6
            on (
                t6.lvl = t5.lvl
               )
      order by coalesce(t5.lvl,t6.lvl)
    /
    
    COL1_VAL1  COL1_VAL2  COL2_VAL1  COL2_VAL2  SYSTIMESTAMP
    ---------- ---------- ---------- ---------- -------------------------------------
    123        456        abcd       fgrfr      23-OCT-12 11.50.12.015000 AM -04:00
    789                   rfrf                  23-OCT-12 11.50.12.015000 AM -04:00
    323        456        rfred                 23-OCT-12 11.50.12.015000 AM -04:00
    213                   tg         tg         23-OCT-12 11.50.12.015000 AM -04:00
    344                   tg         ophhh      23-OCT-12 11.50.12.015000 AM -04:00
    345        5454       op                    23-OCT-12 11.50.12.015000 AM -04:00
                          vdfgbh     poijn      23-OCT-12 11.50.12.015000 AM -04:00
    
    7 rows selected.
    
    SQL> 
    

    SY.

  • online shopping application site using fusion web application and permits required for delivery?

    Hello

    I will develop a shopping site online for a supermarket based on customer's request.

    My site would need to be established with images of objects on different perspectives, filters to sort the required items and online purchase demand operations too. (Similar to the site like ebay, flipkart).

    For that kind of requirement, it will be possible to develop using FUSION WEB APPLICATION without restrictions?

    If possible, do I need to have a LICENSE for the delivery of the application or project to my customer?

    Kindly give your valuable suggestions.

    -TechniM

    It is up to you to decide if the functionality offered by ADF Essentials is good enough for your needs or you need some things that adds the complete ADF (for example, the control data for the Web or Mobile ADF service).

    You can embed other solutions for ADF Essentials application security, so that your application can still be fixed. (example - http://andrejusb.blogspot.co.at/2012/10/adf-essentials-security-implementation.html )

    With regard to accommodation - do a google search for Glassfish server price list. Remember that you will probably need to take into account the load on your application to decide what type of server configuration, you will need.

    The extent of support - you can buy support for Oracle Oracle ADF - check Oracle price list for more details.

  • Can change us line selected in ADF without using click to edit table feature.

    JDEV 12.1.3.0

    Hi Experts,

    Is there a way we can select a row in the table and click the button change the Panel collection. While the row becomes editable.

    Whatever row, we select and click on the edit button. This line becomes editable thattime only. Otherwise always disabled.

    Without using click to modify the ADF table feature.

    Thank you

    AR

    I had similar usecase

    Maybe you can tweek this blog to meet your needs

    Born in DeBug: press the Edit button to make editable line Table.

  • can I connect my hp cp1518ni network without using a ethernet cable?

    Can I connect wireless, or I have to use an ethernet cable?

    Hello

    Based on this, your printer is not ready to network, it uses the USB port so adding component (wired or wireless) network may cost more to buy a new printer. A cheaper option is to purchase a wireless as one of theseprint server.

    Kind regards.

  • can u we take online redo log backups using RMAN... can you guide me

    can u we take online redo logs using RMAN backups... in 1og

    RMAN does not backup online redo logs.

  • Three questions.  The heart rate monitor now plays nice with the third-party applications?  Can you run these third-party applications, without the link to your phone?  How much storage?

    My experience with the original watch is that the heartbeat was working fine with apps in the House but does not work well with third-party applications.  Aboriginal health applications were sub par at best.  In addition, he wouldn't these third party apps (Strava), unless you were related to your phone.  A new doesn't do me much good if it is always the case.  Finally, it's great that you can bind your helmet now but what storage is the watch have?  I am not unrealistic, its understandable if its not much, but I hope that it is enough that a few apps and music enough to pass through a 4 hour tour.

    1 WatchOS3 made major changes in this area, and 3rd party applications get access to things like HR. OS3 also makes everything much more receptive. 3rd party applications will need to be updated to play with the HR monitor.

    2. you can run applications 3rd party without the phone with you, but for your type of application, you'll want a series 2 with GPS watch. The likes of Runkeeper OK working in the older shows, but without GPS, they do not really work you need. New - 3rd third party apps will need updates to work with the GPS watch. OS3 software has been available to developers for a while now, so I expect software updates only very quickly. I don't know if or when 3rd parties had access to the equipment and GPS devices, s, then it may be some while before they have series 2 updates.

    3. you can store 2 GB of music. How much music that is depends of course format and quality, but certainly several hours.

    Hope that helps

  • When I click on "View history" I completely lose the Firefox menu bar, I can't even quit the application without using a keyboard shortcut.

    The question describes all this: when I select "view history", the menu bar disappears, so I have no way of navigation, there is no arrow to the left, nothing. I quit Firefox, but only using the Mac keyboard shortcut. I can go back to a previous window only by moving the historic window and I can close this previous window - there is a button for this - but there is NOTHING that will allow me to change, or close, the historical window. My only option is to leave the program.

    Both of your corrections helped. The first reminded me that I could simply use command-W to close the library window, because it did not show a close"" button. But your second response on rename these two files really made the tour of Firefox back to his old self once more. Now, everything is back to normal. Thank you.

  • How can I connect to Windows XP Pro without using the user name and password?

    I received led optiplex 745 and they all two windows pro installed but I can't open windows pro because I don't have the previous user password.
    How to open windows pro without usin the previous username and password
    Help, please

    Unfortunately, we do not know if you are allowed access to the operating system or someone trying to hack illegally into.

  • How to launch an application in another application without using the framework of the call

    Suppose that if I develop an application, and I need to launch another application (provided I have the single app id) within this application, what is best to do.

    I plan to use threads and run another app in a thread. But how do I run the app (is there a call specific methodto)? What other information do I need, except for the app id?

    A quick search on this topic would have shown you that unless you are a trusted partner of BlackBerry you have not needed access to the api at this...

    http://supportforums.BlackBerry.com/T5/native-development/sys-inject-events/m-p/2575865/highlight/tr...
    http://supportforums.BlackBerry.com/T5/native-development/automatic-input-control-sys-inject-events/...

    Even the sticky above would have helped...

    http://supportforums.BlackBerry.com/T5/native-development/FOSS-automated-testing-for-BB10-Cascades/t...

  • How can I copy bookmarks from another PC without using the restoration is not to lose the curtrent PC each

    I want to copy favorites from another PC, do not use the restore function inorder does not remove bookmarks on current PC

    Export to a HTML file, and then import the HTML file to the other computer, which will add bookmarks to existing ones.

Maybe you are looking for