JSP, BC4J, AM: where/when are the PCST tables created

Hi all.
I am currently needing to access a second database instance from my BC4J JSP application, and so I have added a new Application Module to my project.
For some reason that I don't understand, the wizard doesn't ask you what connection to use. So I have changed it by going into Configuration for the AM and setting it.
Now I want to go into the Test AM. Even though I right-click on the AM and choose Test, the "Oracle Business Component Browser" still can't figure out which module I want to test (??), so I choose my new module. It then correctly chooses the JDBC connection I have assigned and I connect. The browser opens fine although there is nothing to see because I haven't created any components yet.
If I now choose File/Save, I get an error. First it does appear to successfully create the PCOLL_CONTROL table (assuming your connection has table creation rights - Doh!). No problems. However the error I get is "Could not update row into table PCST_TXN, id 1" and the details of that are "table or view does not exist" which is true - the PCST_TXN table doesn't exist. Does anyone know why? I assume that both tables should have been created automatically. What happened to my PCST_TXN table?? There is almost nothing in the help on these two tables, when they are created, how they are used etc. Can anyone give me a greater insight into them and the process I am failing to go through???
Thanks a lot,
Simon Cullen
null

Each application module configuration can use a different connection. You need to create a new configuration and select this configuration in the ApplicationModule Tag of your jsp application.

Similar Messages

  • When are the movies available in Finland?

    When are the movies available in Finland?? I live in Finland and I think it is SO unfair not to have the same services because you live in a different country. I bought my Ipad to get movies and I CAN'T!!

    This is due to licensing and other issues in each country and the same applies to music. Some music sold via the iTunes store in the US is not available via the iTunes store in every country and the same via the iTunes store in every country where available.
    Apple has no control over this whatsoever.

  • When are the 5c replacement lenses coming in?

    when are the 5c replacement lenses coming in?

    i dropped my phone and shattered the glass.. both of my local Apple stores do not have the replacement glass and do not know when they are coming in.. Also they do not have a waiting list.. The expect me to call everyday..
    However, what I find interesting is that they are getting new iphone 5c's in everyday.. where are they getting that glass

  • When are the faster i7 quad core (2.7ghz) chips going to ship in the MacBook Pros, Intel announced them over a month ago.  Trying to make a buying decision.

    When are the faster i7 quad core (2.7ghz) chips going to ship in the MacBook Pros, Intel announced them over a month ago.  Trying to make a buying decision.

    We can't speculate, when it appears it will appear.
    Are these mobile processors? Because that will answer your question right there.

  • When are the new features in PS six cloud available

    When are the new features in Photoshop 6 cloud available

    Blog post on the current Creative Cloud member-only product updates here http://blogs.adobe.com/creativecloud/photoshop-version-13-1-available-now-for-creative-clo ud-members/.
    Blog post on Photoshop CC here http://blogs.adobe.com/photoshopdotcom/2013/05/photoshop-cc-for-creative-cloud-members-com ing-soon.html.

  • When are the "education" cheaper iMacs hiting the market ?

    Hi there,
    I'm actually planning on getting the iMac 20, but the news about the price reduction of the 17" for Students, etc. made me wet my pants out of happines.
    I just checked now and in the Education store the prices are still the same.
    When are the new prices for the 17" iMacs going to be available ?
    Any guess about the 20" iMac getting a price reduction as well ?
    That would be a heck of a x-mas gift from Mac to compete against the new Vista PCs end of the year.
    Cheers! cj.

    So.... then what ?
    On that Link(article) is even more confusing cuz it starts saying it was pulled out... blah, blah, blah and ends saying is available through the Apple Education Store, who many here already confirmed it is not!
    Are we all getting locos? or maybe Appl has its PMS and doesn't know what to do with the whole thing.
    Maybe after so much interest they pulled it out and they are waiting for end of year sales to put it again and compete with the new Vista PCs...
    ...i know i keep up with my "Hope Apple give us a great deal by x-mas to convince us of buying a Mac and not a new Vista PC" conspiration theory.
    But hey.... we all can dream, right?!

  • HAVE iTunes GIFT CARD--WHERE/WHEN IS THE CODE ENTERED?

    HAVE iTunes GIFT CARD--WHERE/WHEN IS THE CODE ENTERED?

    Disregard. found the convenient redemption link
    and already credited my account

  • How can I pass multiple condition in where clause with the join table?

    Hi:
    I need to collect several inputs at run time, and query the record according to the input.
    How can I pass multiple conditions in where clause with the join table?
    Thanks in advance for any help.
    Regards,
    TD

    If you are using SQL-Plus or Reports you can use lexical parameters like:
    SELECT * FROM emp &condition;
    When you run the query it will ask for value of condition and you can enter what every you want. Here is a really fun query:
    SELECT &columns FROM &tables &condition;
    But if you are using Forms. Then you have to change the condition by SET_BLOCK_PROPERTY.
    Best of luck!

  • What are the Update tables?

    In LO Delta scenario, Data posted parallel into document tables and update tables. What are the Document tables? What are the Update tables?
    Give example for Application 11, which is document tables, and update tables?

    Hello Mannev,
    Document tables are the actual application tables where the data is posted when you post a document in R/3.
    Examples can be MSEG, VBRK etc.
    Update tables are the intermediate tables which store data read from document tables. The V3 runs collects deltas in form of LUWs from these update tables and populates the delta queues.
    hope this helps..
    thanks,

  • What are the tools to create a digital magazine for ipad version and how can be place it in newsstand?

    Hello..
    "what are the tools to create a digital magazine for ipad version and how can be place it in newsstand?"
    I am very tired after done a week of R&D on this issue..
    But i doesn't get any fair solution for this one..
    I hope this is best option to place my issue here to get quick solution..
    Thanks and Regards..

    We are all users here.
    There is no one here from Apple.
    In order for you to develop and distribute content for the iPad, you need to become an apps developer.
    Not sure where you sign up for this or who you have to call.
    There should be a place on Apple's site that refers to a section of the site if you want to be an Apple iOS content developer.
    It cost, I believe $99 U.S. to become an Apple apps developer. You'll agree to Apple's Non-disclosure rules.  You'll receive Apple's app/software developers kit,and access to Apple's app developer site.
    No one here is going to be able to help you.
    Good Luck.

  • Last week what are the new indexes created in my database

    last week what are the new indexes created in my database.How can I know?
    Thanks

    Please try this:
    SELECT t.name AS TableName ,
    ind.name AS IndexName ,
    col.name AS ColumnName ,
    STATS_DATE(t.object_id, ind.index_id) AS IndexCreationDate
    FROM sys.indexes ind
    INNER JOIN sys.index_columns ic ON ind.object_id = ic.object_id
    AND ind.index_id = ic.index_id
    INNER JOIN sys.columns col ON ic.object_id = col.object_id
    AND ic.column_id = col.column_id
    INNER JOIN sys.tables t ON ind.object_id = t.object_id
    WHERE ind.is_primary_key = 0
    AND ind.is_unique = 0
    AND ind.is_unique_constraint = 0
    AND t.is_ms_shipped = 0
    AND STATS_DATE(t.object_id, ind.index_id) > ( GETDATE() - 7 ) ;
    T-SQL Articles
    T-SQL e-book by TechNet Wiki Community
    T-SQL blog

  • When does the horizontalScrollBar get created on a List?

    When does the horizontalScrollBar get created on a List?
    The scroller is created, but the scrollbar isn't created yet and I get an error:
    I have a spark List:
    <s:List id="list" creationComplete="creationCompleteHandler(event)">
            <s:layout>
                <s:HorizontalLayout  />
            </s:layout>
    </s:List>
    private function creationCompleteHandler(event:FlexEvent):void {
         (event.currentTarget as List).scroller.addEventListener( FlexEvent.UPDATE_COMPLETE, onScrollerComplete );
    // these don't trigger anything!
    //    (event.currentTarget as List).scroller.addEventListener(FlexEvent.CREATION_COMPLETE , onScrollerComplete );
    //    (event.currentTarget as List).scroller.addEventListener(Event.ADDED_TO_STAGE , onScrollerComplete );
    private function onScrollerComplete(event:Event):void {
         // horizontalScrollBar still null at this point - how can I use it?   
         // I want to set the style, but it's not created yet!
         // event.currentTarget.scroller.horizontalScrollBar.setStyle("repeatInterval", 600);

    I just realized that
    this.setIconImage(new ImageIcon("image.jpg").getImage())
    did not create the icon for my saved files.
    So what did create it? I did not program it!
    However, I happen to have an icon file Ananya.ico where I have my java project. I use if for my installation file. Did Java use this icon?
    Please help! Thanks!

  • When is the ear file created , is it on deploy or when the project is built

    When is the ear file created , is it on deploy or when the project is built
    in which case whats the path on the file system??

    Hi Saket,
       The ear file is created when you do the following. DC Build of the project, Deploy and Run application, Deploy when there are changes made after last deployment, When you deploy for the first time, Create Archive option etc.
       A sample path of the ear file is as follows
    Workspace\CE711SP1.jdi\LocalDevelopment\DCs\demo.sap.com\actionvalidationtest\_comp\gen\default\deploy
    @Siva Thanks for pointing out the mistake. A Webdynpro build or rebuild will not create the ear file. But a DC build will create the ear file though. I have corrected my post.
    Hope this helps,
    Sanyev
    Edited by: Sanyev Babu on Feb 15, 2009 10:25 PM

  • When does the actual balance create in gl_balance table?

    Hi,
    I have question on gl_balance table. when does the actual balance create in gl_balance table?
    We are in Oct-11 period and I can see 'E' and 'B' balance data have been created in gl_balance table for future peiord, such as 'Nov-11' .. However, there is no data for 'A' period. Is that right?
    Thank you for your help!
    DeeDee Wu

    Octavio,
    Thank you for your response.
    Do you mean that ‘Actual’ balance for Nov. period will not be in there until Nov. period is opened and have some journals posted?
    Can you help me to understand following data?
    There is one code combination has been closed in 'May' and has Jun period data with last_updated_date = '28-Apr-2010'. Is that Jun data created at 28-Apr-2010 or copied from May data when Jun. period opened?
    CC period LAST_UPDATE_DATE period LAST_UPDATE_DATE period LAST_UPDATE_DATE
    838826 Apr-10 28-APR-10 May-10 28-APR-10 Jun-10 28-APR-10
    Thank you!
    DeeDee Wu

  • When are you going to create a captcha that does not reguire bc

    When are you going to create a captcha that does not reguire bc

    CAPTCHA for non-BC forms and other forms improvements will be high on the list for consideration for the release following 8.0 .
    You can post in "Ideas for Features" - need to have CAPTCHA abilities for non-BC sites .
    Here is the link:
    http://forums.adobe.com/message/6114695#6114695
    Thanks,
    Surjeet

Maybe you are looking for

  • CRVS2010 Beta - Error: No valid Report Source is available

    I am new to using crystal reports in .NET so any (un-jargoned) help is much welcomed and appreciated. I am implementing an web application on a Windows XP machine using VS2010 and have downloaded and installed the CR4VS2010 beta 2 and the CRforNET40_

  • Error in using file adapter valves

    Hi, I'm working on Oracle SOA Suite 11g (11.1.1.4). I'm doing an exercise on using adapter valves for encryption. I need to write an encrypted file using File adapter. I created pipeline.xml and also specified property in jca file. And added bpm-infr

  • In lion can I clear the list of applications that have requested Location Services under System Preferences...Security

    In Lion, can I clear the list of applications that have requested Location Services under System Preferences...Security & Privacy-Privacy? I have uninstalled an application but the name of the app is still showing up in this list of apps.  I have dis

  • SQL queries in JSP

    Does anyone know how to create a JSP which allows the user to input data into a simple database and then allow the user to input SQL queries? I can do this in a servlet but must hard code the query. It would be great to be able to type in differnet q

  • Return Invoice

    Hi, We created return order with ref. to previous invoice and we changed excise duties. with ref. to that we done retun delivery, at the time of creating invoice system is not picking excise duties as per my return order it is picking that duties fro