Schema Assignment to WORKSPACE

Hi,
I developed Application in one of the custom Schema.
WORSPACE : DEMOSPACE
SCHEMA : DEMO
Can i assign one more existing schema to "DEMOSPACE" like OE,SCOTT,HR..
Best Regards
Perumal Swamy.R

Actualy while adding schema the process is
completed.Eh? You are one confusing person. So you are already able to successfully associate another schema to your workspace?! So why in the world are we talking about that part? Why not focus on your real problem.
Creation Method: As an application on a database
table
Table / View Owner DEMO (LOV Shows only DEMO
Schema which is the Workspace owner).Clearly, you are using HTML DB Version 1.6 (that is something else you should mention up-front to avoid confusion)
That Schema dropdown on that page is supposed to show you all the schemas associated with that workspace.
If it does not, maybe your userid is restricted to access only subset of all schemas available to the workspace.
Log in as a workspace admin and go to
Home>HTML DB Workspace Administration>Manage HTML DB Users>Existing Users>Edit User for the userid that you are logging in as.
Make sure that the "Accessible Schemas (null for all)" box is blank. This will ensure that the user will have be able to build applications using any of the schemas available to the workspace.

Similar Messages

  • Multiple schemas assigned to a workspace

    I'm trying to write an app that accesses other schemas besides the apex user I'm using. I can't figure out how to assign more than one schema to a workspace. All help is sincerely appreciated
    Rich

    you don't have to assign other schemas ... but you can access them.
    Suppose you have default schema X (x is user that own that schema) in worspace, tableA is in schema A and tableB is in schema B.
    Then you login as user A (that own schema A) and exceute:
    grant select on tableA to X;Then you login as user B(that own schema B) and exceute:
    grant select on tableB to X;Now you can as user X (whose schema is default in your workspace) select data from both tables: tableA and tableB as well.
    Login as X user and execute:
    select * from a.tableA;
    select * from b.tableB;If you want to ommit that schema prefix in front of table names, you can as user X execute:
    create synonym tableA on a.tableA;
    create synonym tableB on a.tableB;Now you can execute query like:
    select * from tableA;
    select * from tableB;but thoise object are not in schema X but in scema A and B...
    Hope this helps! The best way for other questions in this subject to place in other forum...

  • Permissions issue - schema assignment?

    Hi,
    Running application express 2, Oracle 9i (I know!)
    I'm looking into using apex as an alternative to crystal reports for some of our staff, they only use crystal to generate xls documents so apex should work fine for them. However I'm running into a permissions issue, most likely due to my lack of understander of how workspaces and schemas really work together.
    We have some internal tools written in APEX which I don't want these new developers to be able to mess with, so I've created a new workspace called "crystal", I've also created a schema "crystal_apex" which has been assigned to the crystal workspace. This schema/user has been granted select access on the various tables it needs to access in other tables via a role, "crystal_role" (this is pre-existing and gets granted to anyone who needs to log in via crystal).
    So, if I log into sqlplus as crystal_apex, I can happily run queries against the tables this user has access to via the role, however, access via the SQL Commands tool, any sql run against tables not in the crystal_apex schema fails. Even if I add another schema to the workspace, I can only query against that schema by changing the "schema" dropdown in the SQL Commands tool. If I do switch to using the other schema, the workspace now has full access to that schema, something I do not want, the crystal users have a very restricted level of access.
    Is it possible to query/create reports against schemas other than the one apex is connected as? If not, how can you do any cross schema queries (something very common in our database). I'm sure I have done this before in our other workspace, however I cannot recall how I set it up.
    It seems if I grant the rights directly to the schema (apex_crystal) rather than via a Role, then the permissions work fine, however only the schemas explicitly granted in apex show up in the query builder/object browser. Is there any way around this, or is this different in newer versions of apex?
    Any help in the right direction would be greatly appreciated.
    Edited by: nib000 on Aug 12, 2009 2:49 PM
    Edited by: nib000 on Aug 12, 2009 2:56 PM

    Hi,
    Since this is a somewhat related topic I am cross posting from another thread.
    I have successfully made a policy using dbms_fga, however am having trouble viewing the audit view based on dba_fga_audit_trail. I had the dba create a view based on the dba_fga_audit_trail limited to my schema--call it 'my_audit_view'. So she granted all on 'my_audit_view' to 'my_schema'. She also did same grants to my userid in Apex. I still cannot see the view in the Workspace -- 'table or view does not exist'. What does she need to do to make this audit view available to an apex user in this workspace? Does the grant actually have to be done to apex_public_user (hope not)?? It is interesting that I was able to create the policy from the Apex workspace SQL Worksheet:
    begin
    dbms_fga.add_policy(
    object_schema => 'my_schema',
    object_name => 'my_table',
    policy_name => 'my_table_audit',
    audit_condition => null,
    statement_types => 'insert, update,delete');
    end;
    And she showed me that the view does exist and shows the inserts, updates I performed subsequent to the execution of the above, but I cannot run the view myself at this point within my Apex workspace -- which has only 1 schema -- 'my_schema'
    Secondly, assuming I get beyond this issues of being able to see the view as a developer, if I want to create a report based on 'my_audit_view' in an application that an 'admin' type user can run on a page in an application (assuming the authorization is set up for the page), is there some other security step that has to be done to make audit view available to the application report??
    Thanks,
    Pat

  • Multiple schema for a  (workspace) user

    If I use XE and create a database user from the homepage/admin as system I get ( compared to an HTMLDB2.0 instance in an SE/EE-environment) a user with its workspace (the admin for this workspace). This user has his own schema and if he is logged in he can create application-users (HTMLDB-Users in this workspace).
    (1) But how can I add more than one schema to this workspace?
    I create a user TEST as system. got user TEST with schema TEST.
    I have a database schema (only database schema) DEMO and want assign this so that the (htmldb)User TEST can create applications based on the schema DEMO (thats possible in HMLDB2.0 with SE/EE).

    Thanks dietmar -
    I believed thats an restriction - but want to get an official statment from development... -> SCOTT?
    I know the basic workaround and then have to consider any changes in the mixed structure.
    It makes sense to have data separated in different schemas and have only one workspace for bundling different applications, because of same securityInterface,
    UserInterfaceDefaults... (easy delivering for departments, customers).
    If the restriction exist (for newbies makes it easier to understand htmldb&oracle),
    we have to accept.

  • Permit access withing schemas in single workspace?

    Hi All,
    I would like to provide access to all my schemas within one workspace.
    basically, SCHEMA "A" and "B" would have access to each other's objects in single workspace.
    Can someone detail how to do this?
    I tried using MANAGE WORKSPACE TO SCHEMA ASSIGNMENTS" and could not find a way to do this
    thanks

    Hello,
    You can assign multiple schmeas to a workspace. Please read [url http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21678/adm_mg_wrkspc.htm#AEADM245]Managing Workspace to Schema Assignments
    basically, SCHEMA "A" and "B" would have access to each other's objects in single workspace.If you want to access Schema-B objects from Schema-A, then you have to grant respective privilege to Schema-A from Schema-B. This is not specific to APEX.
    Regards,
    Hari

  • Adding "data owner" schema to apex workspace provided unexpected results

    Recently I added a "data owner" schema to an existing apex workspace thinking it was a god idea.
    As stated...
    the schema that I added was a "data owner" schema and I was only suppose to have select capability for apex reporting.
    After the schema was added to the workspace I felt I had owner privs on all of the schema objects and
    could create objects and insert and update table records.
    Needless to say... this is something that I do not want to do with tihs particular "data owner" schema BUT...
    this is something that I feel is really good.
    i.e. The Object Browser and Model are some excellent examples of the apex tool. :)I would just like to remove/block the insert/update capabilty against this particular schema from my workspace.
    Any ideas on how to remove the update capability from my workspace or is it even possible?thanks in advance... :)
    v/r
    RJones

    Ah, thanks I didn't see that section before.
    I put the procedure details in the box; declaring the variables and the code to determine the context values
    Logged in as a user and again as the schema owner (both with admin privs) I get this error back:
    ORA-01031: insufficient privileges
    Error ERR-1181 Unable to set VPD security context on page show.
    This is my procedure:
    Declare
    V_COUNT NUMBER;
    V_PRJ_USERNAME VARCHAR2(30);
    V_USERID NUMBER;
    V_PRJROLE VARCHAR2(30);
    BEGIN
    -- sets user name
    V_PRJ_USERNAME := v('APP_USER');
    V_PRJROLE := 'NO_ACCESS';
    BEGIN
    --gets user id from staff table
    SELECT staf_id
    INTO V_USERID
    FROM PRJ_STAFF
    WHERE staff_oracle_name = V_PRJ_USERNAME;
    Select count(*)
    into v_count
    FROM DBA_ROLE_PRIVS
    WHERE GRANTEE = V_PRJ_USERNAME
    AND GRANTED_ROLE='PRJJ_GUEST_RL';
    if v_count > 0 then
    V_PRJROLE := 'GUEST';
    end if;
    Select count(*)
    into v_count
    FROM DBA_ROLE_PRIVS
    WHERE GRANTEE = V_PRJ_USERNAME
    AND GRANTED_ROLE='PRJJ_DEVELOPER_RL' ;
    if v_count > 0 then
    V_PRJROLE := 'DEVELOPER';
    end if;
    Select count(*)
    into v_count
    FROM DBA_ROLE_PRIVS
    WHERE GRANTEE = V_PRJ_USERNAME
    AND GRANTED_ROLE='PRJJ_MANAGER_RL' ;
    if v_count > 0 then
    V_PRJROLE := 'MANAGER';
    end if;
    Select count(*)
    into v_count
    FROM DBA_ROLE_PRIVS
    WHERE GRANTEE = V_PRJ_USERNAME
    AND GRANTED_ROLE='PRJJ_ADMIN_RL' ;
    if v_count > 0 then
    V_PRJROLE := 'ADMIN';
    end if;
    DBMS_SESSION.SET_CONTEXT('PRJ_SEC_PKG','USER_NAME','V_PRJ_USERNAME');
    DBMS_SESSION.SET_CONTEXT('PRJ_SEC_PKG','USER_ID','V_USERID');
    DBMS_SESSION.SET_CONTEXT('PRJ_SEC_PKG','USER_ROLE','V_PRJROLE');
    END;
    END;
    Is there something wrong with my procedure?
    Edited by: JodyMorin on Mar 27, 2009 6:23 AM

  • No Categorization Schema assigned to application Area

    Hi Friends,
    I am getting following error message while creating a BP Contact persom from IC WebClient.
    "No Categorization Schema assigned to application Area(BUS_ACTIVITY, SUBJECT_PROFILE, ACT000001)"
    The BP's are getting created, but the message appears once we try to identify the account.
    I think I am missing some configuration.
    Can you pls help me on this ?
    Thanks and warm regards
    Purnendu

    Hi Maiti ,
    Category modeler provides you four fields in the order type you wish to see it these fileds can be used as per your requirements and you can set a logical drop down say if A is selected in the first field then what should appear in the second & so on .
    To activate
    1.Add the CRM BSP application CRMM_ERM_CAT
    2.Launch the category modeler
    3.Select the advanced search and then go
    4.Create new schema
    5.keep the status in general tab as draft,go to application area and select the service ticket(where you want to see it).Go to categories tab
    6.Here you create a sub note say product
    7.create a subnote to this which will appear in the next field when product is selected in the first....and so on.
    Now once the logical seq is set ,go to general tab and set the status to released.It takes 24 hours for the schema to be active .Once it is active you can see the fields in your application area

  • No categorization schema assigned to application area SERVICE_ORDER ...

    Hy guru,
    when i go to the service ticket in Interaction center Web Client, i canu2019t use the multilevel categorization.
    I have created in ic_manager a schema which I assigned the area application u201Cservice orderu201D, but when I go to the service ticket the following message error is shown:
    No categorization schema assigned to application area (SERVICE_ORDER, SUBJECT_PROFILE, SERVICE),
    and in the area u201Ccategorizationu201D, there is only the button u201CAuto Completeu201D disabilited.
    Can you help me???
    Thanks
    Virginia

    Ok, then go through it and do not forget to deploy your settings.
    For more information regarding the CM, check this [link|http://help.sap.com/saphelp_crm50/helpdata/en/cf/86c9c802dc4c92a9f8d43bdf5d426e/frameset.htm]
    I hope it will be helpful.
    Regards
    AleX
    Edited by: Alexandro St. Torro on Dec 1, 2008 5:38 PM

  • Error  No categorization schema assigned to application area (, , )

    hi all,
    i am getting the error( No categorization schema assigned to application area (, , ))
    in web ui while clicking on category drop down in service request.
    it is working fine before ehp1 enhancement but now it is showing error.
    but still functionality is working only error is displayed.
    plz tell me the required step for it.i have even tried note:1268739

    Did you resolved this issue? I am facing same error message now in EhP1...

  • Change Colur scheme in Hyperion Workspace

    Hi,
    How to change the color scheme in Hyperion Workspace (11.1.1.3) version.
    Thanks in Advance!!!

    Hi,
    How to change the color scheme in Hyperion Workspace (11.1.1.3) version.
    Thanks in Advance!!!

  • Change Colour scheme in Hyperion Workspace

    Hi,
    How to change the color scheme in Hyperion Workspace (11.1.1.3) version in different enviornments
    Thanks in Advance!!!

    Let me preface my reply with the statement that I have not done this in 11; however, I have in System 9. I'm expecting it is similar; however, I cannot guarantee it. The flip side is that it should only take a couple minutes to test this out.....
    The Hyperion products make use of CSS for applying themes to the web pages. The good news here is that if you at all handy with making changes to CSS files, you can make global changes relatively quickly to the site. In addition to controlling items like font colors, you can control font sizes, font types, spacing, background colors, dividers, etc, etc, etc. Additionally, the themes also include many of the common pieces of artwork/graphics used by the sites which you could change out if you wanted.
    The default theme used is theme_tadpole
    Depending on your specific environment, you'll find this folder in one of the following places:
    \BIPlus\AppServer\InstalledApps\workspace_static\themes\theme_tadpole\images_global\If you are not using a Web server, the filepath to logon_panel.gif is similar to this:
    or
    \BIPlus\AppServer\InstalledApps\WebLogic\8.1\Workspace\applications\workspace\themes\theme_tadpole (assumes you're running Weblogic 8.1 but you should get the idea)
    You will probably also see another theme, theme_tadpole_HC (I assume that stands for High Contrast).
    What you can do from this point is make changes to the theme_tadpole folder as you see fit. I will suggest the following :
    - Backup the original folder (duh!)
    - Get yourself a color wheel. The colors as defined in the CSS will be using Hex. #CC0011 is a shade of red. (Use a free site like http://www.colorpicker.com/ to enter the codes in the CSS to figure out what colors they are in "real life")
    - Decide what colors you want to replace and make a X-ref list
    - Get yourself a good text search/replace tool (i.e. http://www.powergrep.com/), search for the old color, and replace it everywhere in the theme folder. There are many references to the same colors in the CSS and unless you want to change them all manually.....
    Hope that helps.

  • ORA-20001: Invalid parsing schema for current workspace ID

    I recently upgraded Apex version from 4.0 to 4.2 successfully. Everything looks good except in one of the applications, I am running into
    ORA-20001: Invalid parsing schema for current workspace ID ( see below for detailed debug info). It seems this page region code is still looking at
    old apex scehma APEX_040000 instead of APEX_040200 somehow. Any ideas.
    is_internal_error: true
    apex_error_code: APEX.REGION.UNHANDLED_ERROR
    ora_sqlcode: -20001
    ora_sqlerrm: ORA-20001: Invalid parsing schema for current workspace ID
    component.type: APEX_APPLICATION_PAGE_REGIONS
    component.id: 21560330709310725
    component.name: Calendar
    error_backtrace:
    ORA-06512: at "APEX_040000.WWV_FLOW_ASSERT", line 377
    ORA-06512: at "APEX_040000.WWV_FLOW_ASSERT", line 386
    ORA-06512: at "APEX_040000.WWV_RENDER_CALENDAR2", line 462
    ORA-06512: at line 27
    ORA-06512: at "SYS.DBMS_SYS_SQL", line 1926
    ORA-06512: at "SYS.WWV_DBMS_SQL", line 1064
    ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 4613
    ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 3220
    OK

    Thanks Patrick. Just wanted to make you're referring to the below code. what package I would be using instead of 'wwv_render_calendar2.show'
    wwv_render_calendar2.show (
    p_query => q,
    p_max_rows => '5',
    p_heading_bgcolor => '#CCCC99',
    p_table_bgcolor => 'WHITE',
    p_monday_friday_only => 'NO',
    p_non_curr_month_attr => 'bgcolor="#F7F7E7"',
    p_month_font_face => 'Arial',
    p_month_font_size => '+1',
    p_month_font_color => 'BLUE',
    p_day_font_face => 'Arial',
    p_day_font_size => '+1',
    p_day_font_color => 'BLACK',
    p_cell_font_face => 'Arial',
    p_cell_font_size => '-2',
    p_cell_font_color => 'BLACK',
    p_page_width => '95%',
    p_show_month_above_tab => 'YES',
    p_min_blank_cell_height => '45',
    p_calendar_day_date_fmt => 'MM/DD/YYYY',
    p_cur_local_date => '');
    end;

  • Error - Invalid parsing schema for current workspace id

    Hello,
    Users logging into an application occasionally get a strange error: ORA-20104: create_collection_from_query_b Error:ORA-20001: Invalid parsing schema for current workspace ID.
    The error occurs during a post authentication process. Does anyone know what could cause these in general or why it might only occur during the first login of the day?
    Regards,
    Dan
    http://danielmcghan.us/
    http://sourceforge.net/projects/tapigen/

    Scott,
    Today the error mentioned in the last post occurred 3 times - the highest number in a single day yet. Also, to add to the dilemma, a new one occurred:
    ORA-20104: create_collection_from_query_b Error:ORA-20101: Application collection exists
    Knowing that the create collection process is called from a post authentication process I don't see how that the collection could exist for that session... Any ideas?
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • Invalid parsing schema for current workspace ID

    I have an application that captures different SQL statements (they make use of DB links) and dynamically executes them on demand.
    I use apex collections to get the result rows for the SQL and use them to both query on the UI as well as send out emails using the returned data. This is all OK and works fine.
    I then added another feature to my application where I support the scheduling of the running the SQL / sending out of the emails. It uses the same logic as I use from within the application but it fails with the following error ...
    Invalid parsing schema for current workspace ID
    when the SQL is being used to populate the collection.
    The scheduling is done using the apex plsql job scheduling package. It's as though the context that the job is running in is different from that of the application I created. The strange thing is that it can still see my tables that I created as the queries return data from my tables but for some reason seems to have an issue with the use of apex collections.
    Any ideas or suggestions would be greatly appreciated.

    Scott,
    Today the error mentioned in the last post occurred 3 times - the highest number in a single day yet. Also, to add to the dilemma, a new one occurred:
    ORA-20104: create_collection_from_query_b Error:ORA-20101: Application collection exists
    Knowing that the create collection process is called from a post authentication process I don't see how that the collection could exist for that session... Any ideas?
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • Requesting second schema for my workspace

    Hi,
    I am having a workspace on apex.oraclecorp.com. The workspace has one DB Schema which was created while requesting the workspace.
    Now I want to have second DB schema in my workspace. But I couldn't find any option to create a new DB schema in the workspace.
    Is there any process to request second DB schema in a workspace?
    Thanks & Regards,
    Harish

    Hi,
    You can not create new schemas by your self.
    I do not know if this works and Oracle will give you another schema
    Try request schema from
    Home>Administration>Manage Services>Request Database Schema
    Br, Jari

Maybe you are looking for

  • Extremley Frustrated with Apple's lack of being able to update my password!

    So, my problem is pretty self explanatory from the Subject heading. But here'e the whole story:      I decided to get a new ID for Apple because I got a new Ipod (my other one was stolen), and I ended up using the same password as the old ID (yeah, b

  • Cannot set item's price in new sales order using E-Commerce for ByDesign.

    Hello, I'm working on a program to create zero value sales orders in my companies SAP system to help track warranties.  Every portion of this program is straight forward except for setting an item's list price to zero.  I'm using C# .NET.  Below is m

  • Corrupt movie file

    After editing a movie for several weeks, I did something which hanged iMovie -- I think it was an undo. I had to force quit the app, but figured I could go back to the last saved version. When I go to open up the file in iMovie, the iMovie applicatio

  • [SOLVED]missing terminfo entry rxvt-unicode-256color

    i've installed rxvt-unicode-patched 9.18-3 from aur. first i could not open any terminal because of missing rxvt-unicode-256color terminfo entry in /usr/share/terminfo/r. i fixed this by adding URxvt*termName: rxvt-256color into .Xresources, but as f

  • Union All in a Subquery - Help

    Hello All, I am trying to create a Union All query but when i put a parameter in the where clause, i get an error. The Query is mentioned below: SELECT     T0.U_Srv_TechName, T0.ItemCode, T0.Dscription, SUM(T0.Quantity) AS [Bal Qty] FROM         (SEL