Added Schemas can be viewed in SQL workshop but can't while creating Form

Hi Friends
We are using APEX 3.1 and Oracle 10.2.0 at back end.
I can assign other schemas to a work space successfully.
The Problem is that
Added schemas can be viewed in SQL Workshop (SQL commands)
But can not view the added schemas in the list when want to create a form based on table
Regards
Jazib

Jazib,
When you select an application the application's Owner attribute determines which tables/views you see in the wizard LOVs. If your application owner (parsing schema) is FOO and you want to create a form on table BAR.T then you have to grant select on BAR.T to FOO.
Scott

Similar Messages

  • Added can be viewed in SQL Workshop but can't when want to create form

    Hi Friends
    We are using APEX 3.1 and Oracle 10.2.0 at back end.
    I can assign other schemas to a work space successfully.
    The Problem is that
    Added schemas can be viewed in SQL Workshop (SQL commands)
    But can not view the added schemas in the list when want to create a form based on table
    Regards
    Jazib

    Closed: duplicate post.

  • You sent me a notice letting me know that adobe forms central will not continue any more. What tool will replace it? How can I continue creating forms? Thanks for your responses.

    You sent me a notice letting me know that adobe forms central will not continue any more. What tool will replace it? How can I continue creating forms? Thanks for your responses.

    Hello Chalo,
    There are many FormsCentral alternatives. Our solution, JotForm, has the most complete Import Wizard both for your forms and for your response database.
    http://www.jotform.com/formscentral/

  • How to create a view in sql workshop depending on an application item value

    Hello,
    How coud I create a view in SQL worshop based on an application item value? For example select id, name
    from gg_provider
    where user = ' || :USER
    So basically each user would have it's own view. But it does not work like that. I think when I use :USER then the database takes database user not the user logged in to apex application. How would be possible to use application user to create the view?
    Thank you very much.

    Instead of
    :APP_USER
    use
    v('APP_USER')
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Select works in SQL Workshop, but not as an LOV

    I want all venues to appear in my LOV
    With their affiliated Performing Arts Center, if one exists.
    I get the perfect results when I run it in SQL Workshop.
    When I try to create the LOV, I'm told it's invalid, because it includes an in-line query and the first FROM clause must not belong in the in-line query.
    Not quite sure what it means, but I'm sure I don't know how to fix it...
    SELECT
    v.VENUE_NAME, p.pac_name d,
    v.VENUE_ID r
    from pac p, VENUES v
    where v.venue_pacid = p.pac_id(+)
    thanks
    Marion

    I'm told it's invalid, because it includes an in-line query and the first FROM clause must not belong in the in-line query.Think that's just an example of why a query might be invalid, as this query clearly doesn't have that.
    Jari's right, it has to only return 2 columns, so the venue and PAC values need merged somehow, like:
    SELECT
             v.VENUE_NAME || nvl2(p.pac_name, ' (', null) || p.pac_name || nvl2(p.pac_name, ')', null) d,
             v.VENUE_ID r
    from     pac p, VENUES v
    where    v.venue_pacid = p.pac_id (+)

  • SQL works in SQL workshop but not in APEX

    Hi All,
    I'm trying some sample sql to get around the 32k limit in APEX and even though the sql works in SQLWorkshop, when I use it as a source for textarea object in APEX I get an error. Here's the SQL:
    declare
    l_code clob := empty_clob;
    l_clob_source2 clob;
    offset int:=1;
    begin
         select replace("CHNL_PRTNR_XML_TRAN"."XML_TRAN", '<', '<') into l_code from "CHNL_PRTNR_XML_TRAN" where "CHNL_PRTNR_XML_TRAN"."VITRIA_DROP_OFF_SEQ_ID" = :P2_TRAN_ID;
    loop
    l_clob_source2 := dbms_lob.substr(l_code,4000,offset);
    htp.prn(l_clob_source2);
    exit when offset + 4000 >= nvl(dbms_lob.getlength (l_code),0);
    offset := offset + 4000;
    end loop;
    end;
    Here's the error message I get APEX:
    ORA-06550: line 13, column 17: PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following: ; The symbol ";" was substituted for "end-of-file" to continue.
    Error ERR-1019 Error computing item default value: page=2 name=P2_XMLTRAN.

    Try to set it to SQL Query (PL/SQL-Functions Body), then it should work

  • Getting error CJS-00084 SQL Statement or script failed while creating a DB

    Hi All,
    I ma trying to install IDES CRM 4.0 with Oracle DB and process went fine till the point of central instance installation. I am at the final step of installing the database instance and got an error while it is performing different steps of it.
    At the step CREATE ORACLE DATABASE, i got the below error message:
    CJS-00084  SQL statement or script failed. DIAGNOSIS: Error message: ORA-01092: ORACLE instance terminated. Disconnection forced
    Can someone help me to resolve this?
    Thanks
    Vijay

    -> did you follow all steps correctly? for example did you say NO when runinstaller asks for database creation?
    -> which operating system are you on?
    GreetZ, AH

  • Difference of sql query in SQL Workshop and SQL Report (case when sum(...

    Hi ,
    I need some help, pls.
    The follwg report runs in SQL Workshop - but gives errors in the sql-query report in HTMLDB:
    SQL-Workshop:
    select
    case
    when SUM(S.POTENTIAL_GROWTH)> 1 and SUM(S.POTENTIAL_GROWTH) < 4 then 'Ok'
    when SUM(S.POTENTIAL_GROWTH)> 4 and SUM(S.POTENTIAL_GROWTH) < 8 then 'SoSo'
    when SUM(S.POTENTIAL_GROWTH)> 8 and SUM(S.POTENTIAL_GROWTH) < 12 then 'Very Good'
    else 'too much'
    end
    from "SEGMENTATION" S
    In an HTMLDB SQL-Query Report I added Aliases (as requested for HTML) but still gives the error:
    <<Query cannot be parsed, please check the syntax of your query. (ORA-00920: invalid relational operator) >>
    the code:
    select
    case
    when SUM(S.POTENTIAL_GROWTH) pot_growth > 1 and SUM(S.POTENTIAL_GROWTH)pot_growth < 4 then 'Ok'
    when SUM(S.POTENTIAL_GROWTH)pot_growth > 4 and SUM(S.POTENTIAL_GROWTH)pot_growth < 8 then 'SoSo'
    when SUM(S.POTENTIAL_GROWTH)pot_growth > 8 and SUM(S.POTENTIAL_GROWTH)pot_growth < 12 then 'Very Good'
    else 'too much'
    end
    from "SEGMENTATION" S
    any halp from the gurus wud be very much appreciated.
    TIA
    Bernhard

    Still you did not give the alias for the case when column. For that only you should give the alias
    select
    case
    when SUM(S.POTENTIAL_GROWTH) pot_growth &gt; 1 and SUM(S.POTENTIAL_GROWTH)pot_growth &lt; 4 then 'Ok'
    when SUM(S.POTENTIAL_GROWTH)pot_growth &gt; 4 and SUM(S.POTENTIAL_GROWTH)pot_growth &lt; 8 then 'SoSo'
    when SUM(S.POTENTIAL_GROWTH)pot_growth &gt; 8 and SUM(S.POTENTIAL_GROWTH)pot_growth &lt; 12 then 'Very Good'
    else 'too much'
    end "GROWTH"
    from "SEGMENTATION" S

  • LOV shows no results, but SQL Workshop does.

    Hello,
    I am using a select list with a named LOV. The select statement returns results when executed with SQL Workshop, but when I use the named LOV with any select item it allways shows no results.
    I already checked the assigned schema and everything seems to be correct.
    Is this a bug in APEX 3.2.1 ?
    Best regards
    Tareq

    I would try a couple of things:
    1. Trying passing the query into a report region to get a better look at what it is returning - at least it will rule out a problem with LOV per se i.e. if it doesn't run as a straight report then we know its query-related.
    2. create a before header process to output the value of apex_util.get_default_schema to ensure that a valid value is returned. Something along these lines:
    begin
       wwv_flow.debug('apex_util.get_default_schema: '|| nvl(apex_util.get_default_schema,'invalid value');
    end;If you re-run the page with 'Debug' switched on, you should see if a result is returned - this may well return a different value to what you were expecting.
    On that note, obviously I have no idea what your application is trying to ultimately achieve, but I wonder if the default schema user is what you are looking for. The reason I say this is surely you would always have the same user (namely 'PUBLIC' or whatever DAD user you use to link to your oracle db) - unless you have multpile DADs and different instances referencing the same p_users_db table, I don't see how this is helpful to you.
    Edited by: JoelC on 26-Apr-2010 09:19

  • Getting Error while creating Calculation view.

    Hi Expert,
    I was trying to create one simple calculation view using SQL script but getting below error.
    /********* Begin Procedure Script ************/
    BEGIN
    create type var_out1 as table (ebeln varchar(10),menge decimal);
            var_out  = CE_COLUMN_TABLE ("SAPEH2"."EKKO",[EBELN,AEDAT] );
            var_out1 = CE_COLUMN_TABLE ("SAPEH2"."EKPO",[EBELN,MENGE] );
            var_out2 - CE_UNION_ALL (:var_out1,:var_out2);
    END
    /********* End Procedure Script ************/
    I thought , i might need to declare a table type for output table var_out1 and var_out2. I tried by declaring table like below couldn't get any success.
    create type var_out1 as table (ebeln varchar(10),menge decimal);
    create type var_out2 as table (ebeln varchar(10), aedat DATE ,menge decimal);
    error:
    Message :
         Internal deployment of object failed;Repository: Encountered an error in repository runtime extension;Internal Error:Deploy Calculation View: SQL: sql syntax error: CREATE TYPE is not allowed in SQLScript: line 5 col 2 (at pos 277)nSet Schema DDL statement: set schema "SAPEH2"nType DDL: create type "_SYS_BIC"."pkg-sapuser03.test_giri/CA_SALES1/proc/tabletype/VAR_OUT" as table ("EBELN" VARCHAR(10), "AEDAT" DATE, "MENGE" DECIMAL(13,3))nProcedure DDL: create procedure "_SYS_BIC"."pkg-sapuser03.test_giri/CA_SALES1/proc" ( OUT var_out "_SYS_BIC"."pkg-sapuser03.test_giri/CA_SALES1/proc/tabletype/VAR_OUT" ) language sqlscript sql security definer reads sql data as  n /********* Begin Procedure Script ***********/ n BEGIN n n create type var_out1 as table (ebeln varchar(10),menge decimal);n create type var_out2 as table (ebeln varchar(10), aedat DATE ,menge decimal);n n t   var_out  = CE_COLUMN_TABLE ("SAPEH2"."EKKO",[EBELN,AEDAT] );n t   var_out1 = CE_COLUMN_TABLE ("SAPEH2"."EKPO",[EBELN,MENGE] );n t   var_out2 - CE_UNION_ALL (:var_out1,:var_out2);nnEND /******** End Procedure Script ************/n
    Could you please help me to understand the cause of this?
    Thanks,
    Girdhari

    Hi Lars,
    Thanks for the reply.
    If i understood correctly , you are suggesting to create var_out1 and var_out2 in output ? If yes can you please guide me on how to do that? I tried but did not find anything suitable to declare table.
    Thanks,
    Girdhari

  • Error while creating planned order in product view

    I am getting following error when I try to create planned order for a product in a Location  manually in product view using /SAPAPO/RRP5.
    Error occurred while creating order
    Message no. /SAPAPO/RRP251
    I checked the product and resource. Everything looks good.
    Block is available in the resource WMP1_2041_001 for characteristics specified in planned order.
    Product master and PDS look good.
    In the planning log, I see the following error message.
    Plan explosion failed for product LBRA1050-661 in location 2041
    Message no. /SAPAPO/RRP718
    I have not found SAP notes for above error.
    Can you pl let me know what this is due to?
    Thanks,
    Srini

    Srini,
    The message was created as a result of several notes, such as 1582997.  There are others.
    The implication is that you have an invalid source somewhere in your BOM.  Maybe a bad component part, maybe a bad transportation lane, maybe an invalid BOM, or maybe a bad PPM/PDS.
    If you can't find the problem using logical troubleshooting steps, have one of your programmers debug.  Have him put breakpoints in FM  /SAPAPO/RRP_PLORD_CREATE .  If you are particularly lucky, you will find a developer that understands German, because all the internal comments in this FM are in German.
    Best regards,
    DB49

  • SQL Server 2012 is prompting wrong message while creating new instance.

    Summary:
    While performing two task simultaneously 1) deleting existing SQL Server 2008 r2 instance 2) Creating SQL Server 2012 Instance. I received wrong message.
    Explanation:
    I have SQL Server 2012 setup in my server. By mistake I created SQL Server 2008 r2 instance.
    Now simultaneously I was performing two task 1) deleting SQL Server 2008 r2 instance 2) Creating SQL Server 2012 Instance.
    While creating SQL Server 2012 instance i received popup message "Another SQL Server 2012 setup is running but the running setup was not SQL Server 2012, it was SQL Server 2008 r2.
     

    Hello,
    You should not run two SQL Server setups at the same time. In fact, SQL Server has a rule to verify there is no pending restart because of an installation/uninstallation in progress.
    Please cancel the installation of SQL Server and continue uninstalling the SQL Server 2008 R2 instance.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Can Acrobt XI fillable forms be downloaded from a website

    I just installed Acrobat XI. I want to have a filliable order form for my customers. Can forms created in FormsCenetral be used like forms in Acrobat X? Can I place them on my website with a link on a webpage for my customers to download, fill in, and return? Thanks. Jim

    They can if you save them as PDFs (File > Save As PDF Form). You can of couse create forms in Acrobat 11 just as you could with previous versions.
    For Reader users, the forms will have to be Reader-enabled with Acrobat (File > Save As Other > Reader Extended PDF > Enable More Tools) so that they can be saved. Reader 11, however, is able to save a non-enabled form.

  • Schema name while creating db link

    Hi
    What is schema name for sqlserver source in owb need to provided while creating db link.
    reagrds
    rajesh

    No One to respond me??

  • Apex 4.0 - Can see view data in SQL*Plus but no data in Object Browser

    Hi There,
    I have just started using Apex 4.o and migrated some apps. I have an issue with a report, but see the same issue with Object browser, which is easier to describe.
    I have a view:
    create or replace view V_PLJ_USERDEF_CODES (
             CODE_SET_ID,
             CODE_SET_CODE,
             CODE_SET_DESC,
             CODE_ID,
             CODE_SYS_CODE,
             CODE_VALUE,
             CODE_DESC,
             DISPLAY_SEQ,
             DISPLAY_FLAG,
             LANGUAGE_CODE) as
      select CS.CODE_SET_ID,
             CS.CODE_SET_CODE,
             CS.CODE_SET_DESC,
             C.CODE_ID,
             C.CODE_SYS_CODE,
             C.CODE_VALUE,
             C.CODE_DESC,
             C.DISPLAY_SEQ,
             C.DISPLAY_FLAG,
             C.LANGUAGE_CODE
        from PLJ_CODES C,
             PLJ_CODE_SETS CS
       where C.CODE_SET_ID         = CS.CODE_SET_ID
         and CS.CODE_SET_TYPE_CODE = SYS_CONTEXT('PLJUMPSTART','C_USERDEF_CODE_SET');This returns data in SQL*Plus, but no data in Object Browser OR report region based on this view.
    Workspace parses in the same schema as tested in SQL*Plus.
    If, in report, I swap out view, and use underlying table - no problem.
    Any ideas -
    thanks
    P

    Hi all,
    Thanks for getting back so promptly.
    It just seems weird to me, as tables are just fine, but not views.
    In the underlying schema:
    SQL> sho user
    USER is "ICSREPORTING"
    SQL> select count(*) from plj_codes;
      COUNT(*)
           107
    SQL> select count(*) from v_plj_userdef_codes;
      COUNT(*)
            29And in the APEX schema
    SQL> sho user
    USER is "APEX_040000"
    SQL> select count(*) from icsreporting.plj_codes;
    select count(*) from icsreporting.plj_codes
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL> select count(*) from icsreporting.v_plj_userdef_codes;
    select count(*) from icsreporting.v_plj_userdef_codes
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL>However, in SQL browser, I can see the data in PLJ_CODES but in V_PLJ_USERDEF_CODES, just the message "This view has no data". Indeed, it is like this for all views.
    I even explicitly granted access to APEX_040000 but no good.
    In fact, I would like to know more about how Apex gets access to do DML against the underlying parsing schema(s).
    This is a little frustrating though. It worked just fine in lots of apps in version 2.1 to 3.2
    Am I missing something
    paul
    p.s I knew there would be a question about the context, but I had already checked that. :)
    Edited by: PJ on Nov 19, 2010 4:09 AM

Maybe you are looking for

  • How to create tablespaces in Windows

    using Oracle 10g XE on Windows how do I create tablespaces on Windows?

  • Publish fails with Adobe NetworkInfo extension (iOS)

    We are trying to add NetworkInfo support to our iOS app to display a warning if the user is on mobile instead of WiFi. I've tried adding the Adobe NetworkInfo Native Extension (from the "binary" zip at http://www.adobe.com/devnet/air/native-extension

  • Zen MX 'random play all' problems

    !Zen MX 'random play all' problemso Hello, 2 newbies here, Maz (who is typing)?and mum Wendy (whose player is having problems). I have a Zen in an older version and I've never had many problems but my mum recently got a 6gb?Zen MX (version .00.09)?an

  • Error message at SC Header level

    Hello, I've made changes to check for approval notes to be mandatory when a shopping cart is rejected using the CHECK BAdI. The message doesn't come up when rejecting at header level, only when rejecting at item level is then that it comes up. Your a

  • Setup will not run

    Ipad 3. IOS 7.0.4.  Everytime I open setup it closes immediately.  Tried full reset three times.  No luck.  Can't erase and restore as Find My Phone is on and need to turn it off to erase and restore via backup.  Have to use setup to turn off Find My