Oaf :one dout in creating EO

Hi friends
iam new to OAF learning one by one ....
My work done
I hav created a QueryPG ... without creating EO ... i hav just created CO,VO and AM for quering purpose for that
1)IN CO PFR,
first i get the value from the page and send the value to the AM
from AM i hav send it to VO.
In VO i hav right my logic for how to retrieve the value
now i can successfully able to Query the value from my DB
My question
**Now i want to insert a new row from the front end in the same .jpr*
1)for inserting or validation i want to create EO is it right? can i able to create an EO in the same .jpr now
2)After creating the EO .... do i want to create another VO.... (ie) VO based on EO?
3)In my QueryPG i hav set a button called "Create" wen clicking this button it should navigate to createPG
4)For inserting i hav created a Page called CreatePG with some of the field like personId,firstname,lastname,email,address etc in my CreatePG and i hav set a Button "Save" wen i click that Save Button means it should be saved to my DB
This is My task after complete that "QueryPG" now want to insert a new record into my DB
Pleaseeeeeeeeee help me doing my task
adv thanks
Thiliban

hi i Now i created a EO
and I hav created VO based on EO (ie) i have done like this after creating my EO... i Right click theEO and set =>new default VO ... after that i moved then VO to .server package and renamed as CreateVO.... is this right ?way to create VO based on EO?
after that in my mainCO i hav set the code for navigation but i am getting 500 internal server error
i hav set this code for navigation:
if (pageContext.getParameter("Create") != null)
System.out.println("Create button pressed");
pageContext.setForwardURL(
"OA.jsp?page=/gwp/oracle/apps/xxi/aaaemployee/webui/CreateEmpMainPG"
,null //not needed as we are retaining menu context
,OAWebBeanConstants.KEEP_MENU_CONTEXT
,null//not needed as we are retaining menu context
,null
,true//retain AM
,OAWebBeanConstants.ADD_BREAD_CRUMB_YES
,OAWebBeanConstants.IGNORE_MESSAGES);
and i am getting this error wen i click the Create button
500 Internal Server Error
java.lang.NoSuchMethodError: oracle.apps.fnd.framework.webui.OAAboutUtils.setPageInError(Ljavax/servlet/http/HttpSession;)V
     at OAErrorPage.jspService(OAErrorPage.jsp:11)
     [SRC:/OAErrorPage.jsp]
     at com.orionserver[Oracle9iAS (9.0.3.1.0) Containers for J2EE].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:119)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:547)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:518)
     at OA.jspService(OA.jsp:35)
     [SRC:/OA.jsp]
     at com.orionserver[Oracle9iAS (9.0.3.1.0) Containers for J2EE].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:209)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.GetParametersRequestDispatcher.forward(GetParametersRequestDispatcher.java:189)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.EvermindPageContext.forward(EvermindPageContext.java:199)
     at OA.jspService(OA.jsp:45)
     [SRC:/OA.jsp]
     at com.orionserver[Oracle9iAS (9.0.3.1.0) Containers for J2EE].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
     at com.evermind[Oracle9iAS (9.0.3.1.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
     at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
     at java.lang.Thread.run(Thread.java:534)

Similar Messages

  • In Final Cut Pro I was trying to move an Event Library from one hard drive to another as explained in the Help section.  After doing so, I received a message that my event is already open with the same identifier as the new one I just creat

    In Final Cut Pro I was trying to move an Event Library from one hard drive to another as explained in the Help section.  After doing so, I received a message that my event is already open with the same identifier as the new one I just created on the new disk.  It says the second document cannot be opened and to move one of these documents out of your Final Cut Events folder.  It also says to avoid this problem, copy events from within Final Cut Pro, but that is what I did in the first place.  What should I do to avoid the double opening conflict?

    What exactly are you doing and what version are you using with OS X 10.8?

  • Projects, is the Standard Functionality the one with COGS created?

    Korean Air manufactures AIRCRAFT components and delivers them to customers such as Boeing. It wants to implement ERP (R12) applying Oracle Projects Solution.
    Issue
    1. When Shipping Type Deliverable is created in Project Module and it is interface to Shipping Execution for Ship Confirm, COGS(Cost of Goods Sold ) for Shipping Item is created and it overlaps with cost of sales per Project/Task.
    Question
    *1. **When Shipping was done using deliverable of Shipping Type in Project Module, is the Standard Functionality the one with COGS created?*
    A. If the number 1 case is Standard Functionality, is there any option to prevent COGS creation?
    B. If the answer is no, by what kind of setup is it possible?
    C. Does Shipping of Project Module based on “non-asset based warehouse”?
    *2. What is the Integration mapping of Project Management, Shipping Execution, Inventory, AR, COGS etc?*
    The following are basic process.
    1. Quotation-> Contract -> Plan -> Production -> Delivery -> Revenue
    A. Using Deliverable in Projects
    2. Project: Agreement
    3. Task: Unit
    4. Purchasing Plan, Production Plan etc. executed based on Project/Task
    5. Cost calculation is calculated in Project/Task unit
    6. When Task (Tail Number) is completed, deliver to Boeing according to contract
    B. Interface through Shipping Execution
    C. Ship Confirm
    7. Based on cost revenue is recognized according to progression rate.
    A. Cost Collect
    B. Generate Draft Revenue
    8. Based on delivery or contract, account receivable is created and send to customer.
    A. Create Event per Task
    B. Generate Draft Revenue
    C. Interface Draft Revenue to Receivables.

    Hello Daniel,
    The PCI serial cards are not supported with LabVIEW RT for ETS targets and are not expected to work. We are looking into finding a way to add support for PCI serial devices in RT, but currently that support does not exist.
    One possible workaround would be to use a NI ENET-485-X device. The visa resource name will not be COMx in this case. Instead, you will need to enter the long name of ASRL::::::INSTR as documented in the NI-VISA help.
    I hope this helps. If you need to speak with your sales representative to resolve this issue, please follow this link. Have a great day.
    Regards,
    Kristi H
    National InstrumentsMessage Edited by Support on 01-18-2005 08:24 AM

  • Split one message and create N Files on target side based on FieldName

    Hi Experts
    How to split one message into N messages
    I have used BPM and I have put
    One Receiver Step
    One Transformation Step and
    One Send Step.
    In Receiver step I have used Correlation as Field2
    In Tansformation Step I have done One to One Mapping
    But In receiver Side only one File is creating.
    Message Structure is
    <Main_MT>.... 1...1
    ........<test>01</test>.... 1...1
    ...........<Sub_MT>...... 0...Unbound
    ................<Field1> </Field1>
    ................<Field2>123</Field>
    ..........</Sub_MT>
    ..........<Sub_MT>...... 0...Unbound
    ................<Field1> </Field1>
    ................<Field2>234</Field>
              </Sub_MT>
    </Main_MT>
    How to resolve this problem
    Thanks & Regards
    Sowmya

    Hey Jayson,
    I dint search the blogs using the keyword " mutiple mapping". The given two blogs I had used for creating my first 1:n mapping, so their names are by heart to me.
      I believe both the blogs provided by me help in creating the mutiple seperate messages on the target end.
    The Claus's blog covers more detailed mapping logic for message split and the Jin's blog covers the ID pieces needed to be configured when we want to create mutiple messages on the target end.
    Pardon me if I have misconstrued your point.
    Thanks,
    Pooja

  • Firefox is refusing to start. It says that my profile is missing, which it appears to be. Yet the way in which one goes about creating a new profile wont' work either. Anybody have a bloody clue what's going on and how to fix it?

    Firefox is refusing to start. It says that my profile is missing, which it appears to be. Yet the way in which one goes about creating a new profile wont' work either. Anybody have a bloody clue what's going on and how to fix it?

    AIR give you classes to detect an on-line or off-line status, it's in 
    this way for the sake of flexibility for instance what happens if you 
    only what to sync  data only on Saturdays at 2 am? If it were done 
    automatically that'll be a problem. And it isn't so complicated.
    You can download the SalesBuilder from AIR examples at www.adobe.com/devnet/air
      it's an application that does everything you have in mind.
    I don't understand your question abou file types.
    An AIR app can communicate with almost every backend served tech 
    CF, .Net, PHP, RoR.
    Sincerely,
    Michael
    El 14/05/2009, a las 8:48, IrishAIRMax <[email protected]> escribió:
    >
    I have to say that I'm loving the picture! well cool!
    >
    Sorry but I don't quiet understand. I thought AIR did the updating 
    automatically? I didn't realise the developer had to program the 
    logic of how the updates take place?  Is it a case in most AIR apps 
    that when online the app updates the server and once every intervel 
    (of however long) the local SQLite DB is synced to the more updated 
    server DB. Then when offline the developer has to sense that the app 
    is offline and store a log manually of the updates without any help 
    from AIR itself, and then update once it comes online again?
    >
    Can AIR link to anything more than a database on the server side 
    apart from webservices, for example .as files or any other file types?
    >
    What type of server is a Flex app stored on, is it a specific Adobe 
    server rather than a Java or .NET server?
    >
    Thank you so much for your last comment!
    IrishAIRMax
    >

  • One structure is created and using in 3 queries, i want to modify that stru

    hi gurus,
    one structure is created and using in 3 queries, i want to modify that structure in only one query but it will not effect other two.wat should i do for that?
    thanx in advace,
    i will assign points,
    srinivas.

    Hi srinivas,
       This scenario could be frequently seen in a project. I assume the structure you mentioned is saved as a global structure, then in the query which you want to modify, right click on the structure and choose "Remove Reference". This function copies the global structure to a local one, in which you can change it and the other two won't get affected.
       Hope this helps.
    Regards,
    Aaron

  • Why is one time vendors created

    Why is one time vendors created ?What is the use?How is it different from other vendors?

    One time vendors may be created for requesting quotations.- i.e RFQ, the use is u will be able to track to which vendors u have requestedd the quotations, u will be able to maintain the quotations and also compare the quotations.
    There may be several more reasons depending on the business needs. The above said is such one scenario.
    Let me know further if anything is required
    Regards,

  • Hi, I need to take my daughter off from our Apple account and set up her own. So, delete her from one account and create her own. Realize I sound imbecilic for not knowing how to do this. Any ideas? Thank you so much. Jules

    Hi, I need to take my daughter off from our Apple account and set up her own. So, delete her from one account and create her own. Realize I sound imbecilic for not knowing how to do this. Any ideas? Thank you so much. Jules

    You don't have to take her off your account exactly: she needs to sign out from your account on her computers and devices. Then she can obtain an Apple ID at http://appleid.apple.com and use it to sign into System Preferences or Settings>iCloud.
    However, there are some issue about this. If she has been syncing her calendars and contacts to your account then the data will disappear from her devices, but remain on your account. Individual calendars can be exported  as .ics files and reimported into her account, but if she has her contacts mixed up with yours she will have to enter them individually in the new account (or export yours, import them into hers, and delete the ones she doesn't want.
    More intractable is the email issue. She cannot move an address from your account to hers, so if she has been using a alias on your account to have her own address she cannot transfer it. She will have to create a new email address.

  • Delaying one minute before creating connection

    after getting this message - delaying one minute before creating
    connection - the system stuck.
    Does anyone know why?
    Thanks
    Yuval Avni

    sorry for the trouble, guys. just got it to work accepting all the defaults and just putting in the name of my computer as it appears in netstat for the connection name.
    I guess I still do have a smaller question: Can I choose different connection names or do they have to be the name of the server from which the database is running? I ask because I created 2 users from the home page for 2 different databases (1 from the book I'm working on 1 for my own creation), and it might be advantageous to name the connection differently for those 2 (?).

  • I changed my Apple ID, and i forgot the old one, and i created a new one, and when i tried to update my purchased items, and i cannot update my iphoto and imovie and garageBand, even i try to re purchase it, what can i do?

    I changed my Apple ID, and i forgot the old one, and i created a new one, and when i tried to update my purchased items, and i cannot update my iphoto and imovie and garageBand, even i try to re purchase it, what can i do?

    This is the iphone support forum. please ensure you post in the correct location

  • How can I build this cluster? I don't like the one I have created (too big)

    Hi everybody, I'm working with a Vision VI and the trouble is that I need to create a cluster to connect it to a terminal called Settings of the Vision VI (IMAQ Count objects). These settings includes booleans, long and unsigned word type values. I've seen this one in a pdf document:
    I like how it looks because it's in a reduced space.
    This is the one I've created:
    (Please ignore the red numbers 1 and 2)
    And the block diagram looks like this:
    If someone knows how make a VI as the first image, please post it.
    Thank you so much for your answers and comments.
    P.S. I use LabView 2009, maybe some features are not availables in newers versions.
    Impossible is nothing
    Solved!
    Go to Solution.

    You did not create a cluster, just some individual controls that you are bundling in the code. that's not the same!
    I would recommend a combination approach from what we heard so far.
    First, create a control on the subVI input. Now we know it has the correct type.
    Right-click each control you don't like and replace it with one from a different palette (modern, classic, system), making sure you keep the same datatype. Keep the wire connected to the subVI. If the wire breaks, you picked a wrong datatype. simply undo and try again. (This way, the cluster order should not change).
    Now rearrange the controls the way you want.
    Here's are two quick examples I just made from scratch.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    Settings.PNG ‏17 KB

  • After replacing a failed hard drive with new one I inadvertently created a different account name(home/user) than the one in the Time Machine backup. Now I cannot restore the photos in iPhoto. What are my options?

    After replacing a failed hard drive with new one I inadvertently created a different account name(home/user) than the one in the Time Machine backup. Now I cannot restore the photos in iPhoto. What are my options?

    The best thing to do would be to start over. Use Setup Assistant this time.
    Boot into Recovery, launch Disk Utility, and erase the startup volume. This operation will destroy all data on the volume. Quit Disk Utility and install OS X. If your Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade, so make a note of those before you begin.
    When you reboot, you'll be prompted to go through the initial setup process. That’s when you transfer the data from one of your backups. For a walkthrough, see here:
    Using Setup Assistant
    Don't transfer the Guest account, if it was enabled on the old system.
    Note: You need an always-on Ethernet or Wi-Fi connection to the Internet to use Recovery. It won’t work with USB or PPPoE modems, or with proxy servers, or with networks that require a certificate for authentication.

  • Can any one help in creating a sales order

    Can any one help in creating a sales order  using va01 transaction ?
    I have a reference sales order number .
    Reason why I need this sales order :- I need it to check my task.
    The task was to generate a routine using VOFM ,create a Ztable with fields:sales area and condition types .The routine is activated if the combination of condition types and sales area exists in the Ztable.
    Can anyone tell me what is relationship between the three :Ztable ,routine and sales order?

    VA01 - Create Sales Order
    Use these steps to create a sales (or project) order for the purpose of billing a cost reimbursable project. The sales order is the document that links the sponsor to the project.
    Get started (SAP menu path, fast path)
    Create sales order: initial screen
    Create project order: overview
    Create Variant to simplify VA01 data entry
    1. Get Started
    SAP menu path: (not in role ZSBM)
    SAP Fast Path
    At the Command Line, enter: /nVA01
    2. Create Sales Order: initial screen
    Order Type: (Use default = "ZPS" for Project Order)
    Organizational data: (Use defaults)
    Sales organization ("1000" for Sponsored Billing)
    Distribution channel ("10" for MIT Distribution Channel)
    Division ("10" for MIT Division)
    or ENTER
    The Create Project: Overview screen displays, as shown below.
    3. Create Project Order: overview
    Sold-to party (type in 10-digit sponsor ID number, as shown below)
    In Material field of first line item: (type PROJECT to identify as sales order for sponsor billing, as shown below)
    (or ENTER)
    Result: A field for entering the WBS element displays, as shown below.
    WBS element (type in 7-digit WBS number for project)
    Click on  or F11 to SAVE.
    A message states that Project order XXXX has been saved.
    4. Create Variant to simplify VA01 data entry
    Run VA01 as described in step 1, so that the "Create Project Order: overview" screen displays (shown at start of step 3).
    On Item Overview tab, scroll to right to find WBS element column (about half way across).
    Click on column title, WBS Element; hold and drag all the way to left; then drop next to Material column, as shown below.
    Click on tiny (multicolored) icon  above vertical scroll bar (shown above, to far right) to display Table Settings dialogue box, shown below.
    Under Maintain Variants, type name for Variant, for example "my_settings" (leaving Use as standard setting checked); click on Create; then click on Save button to close dialogue box.
    From now on, the WBS element column displays next to Material column when you run VA01.
    Check the path as
    http://web.mit.edu/cao/www/SB2002/CR/VA01.htm

  • How to add more than one datafile while creating tablespace

    how to add more than one datafile while creating tablespace. I know by using alter command i can add datafile but i want while creating tablespace

    Hi Dadivela,
    how to add more than one datafile while creating tablespace.Here is the syntax:
    !http://www.dba-oracle.com/images/create_tablespace.jpg!
    I do it like this:
    create tablespace myts
    datafile
    *'/u01/app/oracle/db1.dbf' size 100m,*
    *'/u02/app/oracle/db2.dbf' size 200m;*
    Here are my complete notes:
    http://www.dba-oracle.com/t_tablespace_create_alter.htm
    Hope this answers your question . . .
    Donald K. Burleosn
    Oracle Press author

  • Is there a desktop icon that takes one straight to Create a PDF?

    is there a desktop icon that takes one straight to Create a PDF?

    Hi,
    You can access CreatePDF from your computer more quickly in three ways:
    You can download and install the CreatePDF Desktop Application. More info is here. With this application, you can drag PDF files onto a desktop icon and have those converted to Office files. (If you subscribe to the CreatePDF service, this application will also allow you to create PDF files.)
    You can download and install the newest Adobe Reader and access the service using Reader's Tools Pane on right. Then, any time you have PDF open in Reader, you can (with a couple of clicks) convert that PDF to an Office file.
    You can drag the webpage icon from your browser to your desktop. This will create a shortcut to the CreatePDF website on your desktop. Here are some instructions for doing that using Internet Explorer or Firefox.
    Let us know if you have additional questions or issues.
    Dave

Maybe you are looking for

  • Substitution Variable in DataForm

    Hi All, I am using EPM 11.1.1.1.0. I am trying to define a member formula for a scenario. The formula has a substitution variable in it.When i validate the formula it gives me the following error: *Substitution variable [CurMonth] doesn't exist.*+ Is

  • Which base station do I need please ?

    Hi there I have an ibook G3, so I assume I have to use an 'Airport' card in it. If that's the case, what is the best option for a base station to give me the fastest possible speeds on my 2MB Broadband connection in UK. I will be linking my base stat

  • How to out Dynamic ref cursor from Procedure to Forms

    Hi I am trying to out Dynamic ref cursor from Procedure to Forms, But I am unable to do so. however cursor return the value within procedure but I am failed to capture the same in Forms Pl advice suggestion if any, Here I am attaching full procedure

  • Create Table based on RowSetIterator

    Hi, I have to create a ADF table based on RowSetIterator returned by one of the method in managed bean. Can someone please point me, on how can i do this using jdev 11.1.1.6. Regards

  • Url rewriting is creating a fuss for me

    Suppose one application is running on my machine and in between, I opened google by just writing the google address on the address bar. when i press the back button to go back to my same application, It shows me the another instance of my application