Missing role "business_explorer_showcase" in EP7 NW2004s

I cannot find the role "business_explorer_showcase" in EP7 which is necessary for integration with BI 7.0. Per an earlier thread (Not find the 'business_explorer_showcase'  role in EP7.0), I searched for "bi_showcase" but with no luck.
Based on documentation, my hunch is that you need KM installed to have this role available. Can anyone shed any light?
Thanks,
Matt

Hi Matt
You need to install BI-Java and KM, this will solve your problem.
Regards,
Morten

Similar Messages

  • Forums installation and missing roles

    hello,
    i've installed a portal with and users are from ABAP Source.
    then i've added forums application.
    all is fine, i've created my iviews from template.
    the problem i'm facing is concerning the forum iview for assigning an initial forums system administrator.
    the documentation say that this iviews must be assigned to a role with at leat one user with the following roles :
    JiveAdminDefinitionRole
    Administrators
    but these roles doesn't exists in my portal!
    my portal administrator has role SAP_J2EE_ADMIN, that's all
    how to create those missing roles?
    thanks in advance
    best regards

    Hi Olivier Ziller,
    Appreciate if you can share your findings on the "missing of JiveAdminDefinitionRole" . Can you give me step by step solution.
    Thank you.
    Regards,
    Naimah

  • Missing Role Grants after datapump

    Hello OTN-Community,
    I have a problem with datapump. I am using some include filters to get the relevant data exported. One of these filters inlcudes the ROLES of my database which starts with a certain expression.
    After the export into another database these roles exists but all of the role grants and the grants to other users misses. The object grants are exported correctly.
    What am I doing wrong?
    The export script:
    declare
    /*some declare specification are not copyed*/
    cursor curSchema is
    select
    distinct
    t.Mdbn_Name Name
    from
    ProphetMaster.Dat_MdBn t
    where
    Upper(t.MDBN_Name) not in ('****', '***');
    begin
    -- Schemas festlegen
    SchemaList := '''****'',''***''';
    if ExportAllProphetUsers then
    for recSchema in  curSchema loop
          SchemaList := SchemaList||','''||recSchema.Name||''''; 
    end loop;
    end if;
    -- Dateigröße
    FileSizeStr := to_char(MaxFileSize)||'M';
    -- Verzeichnis
    DirectoryName := 'PHT_PUMP_DIR';
    execute immediate  'create or replace directory "'||DirectoryName||'" as '''|| PumpDir||''''; 
    -- JobName
    JobName := 'PHT_EXPORT'||DateStr;
    -- Filename
    if not FilenameWithDateTime then
    DateStr :='';
    end if;
    Filename := 'PHTDB'||DateStr||'_%U.DMP';
    Logfilename := JobName||'.LOG';
    -- Job festlegen und Ausführen
    h1 := dbms_datapump.open (operation => 'EXPORT', job_mode => 'FULL', job_name => JobName, version => 'COMPATIBLE');
    dbms_datapump.set_parallel(handle => h1, degree => ParallelExecutions);
    dbms_datapump.add_file(handle => h1, filename =>  Logfilename, directory => DirectoryName, filetype => 3);
    dbms_datapump.set_parameter(handle => h1, name => 'KEEP_MASTER', value => 0);
    --10g
    --dbms_datapump.add_file(handle => h1, filename => Filename, directory => DirectoryName, filesize => FileSizeStr, filetype => 1);
    --11g
    dbms_datapump.add_file(handle => h1, filename => Filename, directory => DirectoryName, filesize => FileSizeStr, filetype => 1, reusefile =>OverwriteFiles);
    dbms_datapump.set_parameter(handle => h1, name => 'INCLUDE_METADATA', value => 1);
    dbms_datapump.set_parameter(handle => h1, name => 'DATA_ACCESS_METHOD', value => 'AUTOMATIC');
    -- Include Schemas
    --dbms_datapump.metadata_filter(handle => h1, name => 'NAME_EXPR', value => 'IN('||SchemaList||')', object_type => 'DATABASE_EXPORT/SCHEMA');
    dbms_datapump.metadata_filter(handle => h1, name => 'NAME_EXPR', value => 'IN('||SchemaList||')', object_type => 'DATABASE_EXPORT/SCHEMA');
    dbms_datapump.metadata_filter(handle => h1, name => 'INCLUDE_PATH_EXPR', value => 'IN(''DATABASE_EXPORT/SCHEMA'')');
    --Include Profiles
    dbms_datapump.metadata_filter(handle => h1, name => 'NAME_EXPR', value => 'like ''PROFILE_%''', object_type => 'PROFILE');
    dbms_datapump.metadata_filter(handle => h1, name => 'INCLUDE_PATH_EXPR', value => 'IN(''PROFILE'')');
    --Include Roles  
    dbms_datapump.metadata_filter(handle => h1, name => 'NAME_EXPR', value => 'like ''***%''', object_type => 'ROLE');
    dbms_datapump.metadata_filter(handle => h1, name => 'INCLUDE_PATH_EXPR', value => 'IN(''ROLE'')');
    -- Größenabschätzung
    dbms_datapump.set_parameter(handle => h1, name => 'ESTIMATE', value => 'BLOCKS');
    --Start Job
    dbms_output.put_line('Import Job started; Logfile: '|| LogFileName);
    dbms_datapump.start_job(handle => h1, skip_current => 0, abort_step => 0);
    -- Wait for ending and finishing job
    dbms_datapump.wait_for_job(handle=>h1,job_state =>job_state);
    dbms_output.put_line('Job has completed');
    dbms_output.put_line('Final job state = ' || job_state);
    dbms_datapump.detach(handle => h1);
    The Import Script:
    begin
    dbms_output.Enable(buffer_size => null);
    -- Verzeichnis
    DirectoryName := 'PHT_PUMP_DIR';
    execute immediate  'create or replace directory "'||DirectoryName||'" as '''|| PumpDir||''''; 
    -- JobName
    JobName := 'PHT_IMPORT'|| to_char(sysdate,'_yyyy-MM-DD-HH24-MI');
    --FileNames
    Filename    := 'PHTDB'||FileNameDateStr||'_%U.DMP';
    LogFilename := JobName||'.LOG';
    h1 := dbms_datapump.open (operation => 'IMPORT', job_mode => 'FULL', job_name => JobName, version => 'COMPATIBLE');
    --Wenn der Datapumpimport auf einer Standardversion ausgeführt wird, muss diese Aufrufzeizeile genutzt werden   
      --h1 := dbms_datapump.open (operation => 'IMPORT', job_mode => 'FULL', job_name => JobName, version => '10.2');
    dbms_datapump.set_parallel(handle => h1, degree => ParallelExecutions);
    dbms_datapump.add_file(handle => h1, filename =>  Logfilename, directory => DirectoryName, filetype => 3);
    dbms_datapump.set_parameter(handle => h1, name => 'KEEP_MASTER', value => 0);
    dbms_datapump.add_file(handle => h1, filename =>  Filename, directory => DirectoryName,  filetype => 1);
    dbms_datapump.set_parameter(handle => h1, name => 'INCLUDE_METADATA', value => 1);
    dbms_datapump.set_parameter(handle => h1, name => 'DATA_ACCESS_METHOD', value => 'AUTOMATIC');
    dbms_datapump.set_parameter(handle => h1, name => 'REUSE_DATAFILES', value => 0);
    dbms_datapump.set_parameter(handle => h1, name => 'TABLE_EXISTS_ACTION', value => 'REPLACE');
    dbms_datapump.set_parameter(handle => h1, name => 'SKIP_UNUSABLE_INDEXES', value => 0);
    --Start Job
    dbms_output.put_line('Import Job started; Logfile: '|| LogFileName);
    dbms_datapump.start_job(handle => h1, skip_current => 0, abort_step => 0);
    -- Wait for ending and finishing job
    dbms_datapump.wait_for_job(handle=>h1,job_state =>job_state);
    dbms_output.put_line('Job has completed');
    dbms_output.put_line('Final job state = ' || job_state);
    dbms_datapump.detach(handle => h1);

    Has no one any idea?

  • Missing Role when saving CR object in BW

    Hi all,
    I am trying to save a CR created on BW query. However, using the SAP toolbar save prompts no role in the window to save the report to.
    Can someone plz suggest where did I miss something. I have roles created and assigned to this user in content admin WB for content admin. Folder security in BOE is also configured with proper authrozation as per inst guide.
    Please advise.
    Regards.

    Hi all,
    I am trying to save a CR created on BW query. However, using the SAP toolbar save prompts no role in the window to save the report to.
    Can someone plz suggest where did I miss something. I have roles created and assigned to this user in content admin WB for content admin. Folder security in BOE is also configured with proper authrozation as per inst guide.
    Please advise.
    Regards.

  • Portal roles and Authorization in NW2004s

    Hi Gurus,
    In earlier Portal implementation of ESS/MSS which was ITS based we used to maintain roles in EP by doing a role upload and maintaining authorizations in the backend R/3 system and if any new changes being made in the role is being distributed to the r/3 system using system administrator -> Permissions -> sap authorization and role distributions are sent to R/3. where we can go to W3PR transaction can create authorization profile for that role there.
    Now my question is in ESS/MSS implementation based on Web dynpro how are portal roles and authorization maintained?
    please do tell me as to how they are maintained in the NW2004s implementations.
    Regards,
    Ramesh

    plz take a break for few minutes and start.... u will get it..

  • Identify the missing role or priviledge

    Hi, good day.
    Anytime you try to create an object or do any operation that outputs "ORA-01031: insufficient privileges", is there a fast thing to do so you can detect which role / priviledge is missing and preventing you from creating or doing the action?
    For example, I'm trying to create a materialized view now, but it 's giving me "ORA-01031 error"
    Thanks in advance

    You might want to check to see what roles and privileges your currently logged on user has using session_roles and session_privs.
    Here is a short article that lists the basic views to determine privilege related information:
    How do I find out which users have the rights, or privileges, to access a given object ?
    http://www.jlcomp.demon.co.uk/faq/privileges.html
    HTH -- Mark D Powell --

  • Runtime error in Business planning role on portal EP7.0

    Hi all,
    We are using the BI integrtaed planning role from portal.( Ep 7.0) and backend system is BI7.0.
    1)I added the role com.sap.ip.bi.business_planning_showcase to the user
    2) I created the JCO connections
    BI_MODELDATA
    ● BI_METADATA
    ● WD_ALV_MODELDATA_DEST
    ● WD_ALV_METADATA_DEST
    3)In spro of BI7.0 settings for starting planning modeler I gave the url of the portal.
    Now when open the BI planning role it is throwing the error
    com.sapportals.portal.prt.runtime.PortalRuntimeException: Failed in WD JNDI lookup. javax.naming.NameNotFoundException: No child found in WebDynproContext with name biplanstartpage .
    Any suggestions please.
    Thanx and regards,
    rajesh

    Hi,
    If you are using Ep 6.0 Sp 15 then you have to deploy the BIKIT for Sp 13 on the portal using SDM.
    This will solve Your  problem.
    Regards,
    Naveen Gupta

  • Missing roles in Shared Services 9.3.1

    We are going through an install of 9.3.1 at a clients site. Planning is working correctly with shared services, but Financial Reporting is throwing this error found in SharedServices_security.log:
    2008-05-02 11:53:50,718 [ExecuteThread: '13' for queue: 'weblogic.kernel.Default'] WARN com.hyperion.css.spi.impl.nv.NativeProvider.getHierarchicalRoleTree(Ljava.util.Map;Ljava.lang.String;Lcom.hyperion.css.common.CSSRoleNode;Ljava.lang.String;Lcom.hyperion.css.spi.util.jndi.CSSDirContext;Ljava.util.Locale;Ljava.util.ResourceBundle;)V(Optimized Method) - Exception getting Child Roles in hierarchy due to Illegal or invalid id.dflt passed in. Please check the argument.
    When attempting to connect from Financial Reporting Studio or Workspace we get an error stating:
    "You are not authorized to use this functionality. Contact your administrator."
    We are running WebLogic 8.1 service pack 4 on Windows Enterprise server 2003 sp1.
    If anyone has seen or worked through this error, please respond.

    Got resolution on the error. Look for css-9_3_1.dll in HYPERION_HOME\common\css\9.3.1\bin on the server where Financial Reporting is installed. This dll enables FR to communicate with NTLM. Oracle support stated that "This dll is not included in the PATH by default because nobody uses NTLM anymore." When I asked them why it was not documented despite the fact that NTLM continues to be listed prominently as a supported authentication repository, they had no reply. Watch for this one to bite you!!!

  • Change R/3 client after EP7 / NW2004s double stack installation (UME settin

    Hello everyone,
    we have install NW2004s with choosing usage type EP as double stack installation (means ABAP and Java) and using SAP R/3 as user persistence. At the install point, only the client 001 is known / can be used. After the installation (EP test runs without errors) we do a client copy to create a ABAP client (100) for usage as CUA/ User store. Later we patch also the ABAP and Java to SP6. Now the UME settings of the EP ar still pointing  to the client 001. But we want to use the client 100. Question is, where should we change the client -> in the Portal, system administration -> system configuration -> UME configuration -> R/3 or in the visual administrator of the WAS ?? Is there some concerns to change this HUME settings ?? (means JAVA will hangs or.... ?? Have any body some experience with this or tips ??
    thanks
    mario

    Hi Luis,
    yes this works with no Problems. Following steps you should take / recomended to do:
    1. take your ABAP client Copy from Client 001 to your new Client on which now resident your UME
    2. look if all EP related User (J2EE_admin, maybe ADS_user..) and also the User which you have created are copy to the new client
    3. Go in the Portal to System Administration, SystemConfiguration, then UME Settings, and Change in the SAP Config the Client 001 to your new Client. Before Save take a connection test
    4. Aslo you can do this Change with the visual Admin, but we do this in the EP System Admin iView
    5. Restart the Portal / WAS
    Tipp: If the connection-test faild later (we had this also) it works nevertheless o.k. as long you had the right settings - maybe thats a bug in the UME settings of SPS6
    mario

  • Role assignment into EP7

    hello,
    could you tell me the reasons why when we try to assign a role to a user and then save it ... the action is never complete ! whereas when we assign the same user to the same role and save it ...it works fine !!
    our portal is bound to a ldap ! users are stored only into the ldap !
    best regards,
    and thank you !
    Olivier.

    As per SAP NOTE 881440, the names of physical attributes should always
    be written with small letters even if they are written differently in
    the LDAP schema definition. So please change the attribute to
    small letters -> upload the modified XML file to server -> restart the
    server and check if this could resolve your issue.
    If the issue persist, please provide the following information.
    1. Please upload the modified UME config file again.
    2. Please reproduce the issue, and provide the exact time, user and the
    latest default trace file under
    /sapmnt/<SID>/<instance>/j2ee/cluster/server<n>/log folder.
    3. I'm not very clear about what the "whereas when we assign the same
    user to the same role and save it .it works fine" mean. Could you
    please provide the step by step screen shot with some description?

  • Missing Role&Policy defined in DD during migration WL8.5 to WL9.2

    I'm in the midst of migrating our application to WL9.2. We are using roles and policy defined in the Deployment Descriptors (working fine under WL8.5).
    In WL9.2 I've configured the Security Realm with "DD Only" option, so the role & policy will get loaded during the startup.
    However, I'm getting the following warnings:
    <4-May-2007 1:46:59 o'clock PM EDT> <Warning> <Security> <BEA-090669> <Ignored deployment of policy for resource "type=<ejb>, application=ARIS, module=CommonApp_wl.jar, ejb=PartyService, method=viewParty, methodInterface=Remote, signature={long,long}">
    <4-May-2007 1:46:59 o'clock PM EDT> <Warning> <Security> <BEA-090669> <Ignored deployment of policy for resource "type=<ejb>, application=ARIS, module=CommonApp_wl.jar, ejb=PartyService, method=addParty, methodInterface=Remote, signature={long,ca.on.gov.mto.rus.clientManagement.business.service.PartyValue,ca.on.gov.mto.rus.clientManagement.business.service.PartyRelationshipValue}">
    <4-May-2007 1:46:59 o'clock PM EDT> <Warning> <Security> <BEA-090669> <Ignored deployment of policy for resource "type=<ejb>, application=ARIS, module=CommonApp_wl.jar, ejb=PartyService, method=updateParty, methodInterface=Remote, signature={long,ca.on.gov.mto.rus.clientManagement.business.service.PartyValue}">
    <4-May-2007 1:46:59 o'clock PM EDT> <Warning> <Security> <BEA-090668> <Ignored deployment of role "createParty" for resource "type=<ejb>, application=ARIS, module=CommonApp_wl.jar">
    <4-May-2007 1:46:59 o'clock PM EDT> <Warning> <Security> <BEA-090668> <Ignored deployment of role "viewParty" for resource "type=<ejb>, application=ARIS, module=CommonApp_wl.jar">
    <4-May-2007 1:46:59 o'clock PM EDT> <Warning> <Security> <BEA-090668> <Ignored deployment of role "viewAddress" for resource "type=<ejb>, application=ARIS, module=CommonApp_wl.jar">

    Does the account get provisioned when you try to provision the same resource manually (via 'Add/Provision Resource') ? ?
    If your role is getting assigned correctly then their is atleast no problem with the membership rules. Is the role tied to the Access Policy correctly. This is a basic and clean configuration which should work. Verify your system configurations again.
    - Access Policy should have ResObj1 in the Resources to be provisioned by this access policy section
    - Access policy should also have BasicRole in the Roles for this access policy section

  • Missing Roles in workbook

    The basis team installed the Enchancement Package on BW Sandbox last month.  When I tried to open the workbook, it only show only one role, but it should be showing others roles.   Also, when I tried to save a workbook and assign to a role, I do see the complete list of the roles.
    On the SAP menu (backend tools), I do see complete list of the roles on the user menu.  I did check the user setting and its roles, and the roles are active (not expired).
    I am wondering how to fix the problem, and I am wondering will the latest support pack for frontend will solve it or what other thing we need to do?

    Hi Glenn,
    Please check the following:
    The settings in SSM_CUST defines a compress mechanism for the user menu
    known as "Redundancy avoidance" and described in notes 357877 and 357693
    Redundancy avoidance deletes easy access menu entries for doubled
    transaction codes whenever SSM_CUST contains
    1. an entry CONDENSE_MENU with PATH = 'YES' and
    2. either an entry DELETE_DOUBLE_TCODE with PATH = 'YES' or no entry
    DELETE_DOUBLE_TCODES, at all.
    If you don't want doubled transaction codes to be deleted, then simply
    add an entry DELETE_DOUBLE_TCODES with PATH = 'NO' into table SSM_CUST.
    Please enter
    DELETE_DOUBLE_TCODES with PATH = 'NO' into table SSM_CUST
    and retest this issue...
    many thanks
    Orla.

  • User Missing Roles

    Hi. We have some problem with user roles, all the existing portal users have 'lost' their roles. we have created 1 new role, RoleA, and assign to all the users. but now, all the users only have portal_user role. we got the following error on the log file:
    Apr 25, 2005 11:05:17 AM # Client_Thread_45     Fatal           ADAPTER: Corporate Authentication Server: JNDI Exception in Search. Search Filter: (&(objectclass=PortalRole)(|(MemberAssignment=V0000100115))) System Msg: javax.naming.NamingException: [LDAP: error code 80 - NDS error: no additional information available (-6029)]; remaining name '' METHOD: readRoleContextForPrincipal #
    Apr 25, 2005 11:05:17 AM # Client_Thread_45     Fatal           Cannot populateData for userWPUser default_namespace: corporateLDAP
    WPPrincipal:
    uniqueId  ... V0000100115
    locked    ... false
    populated ... false
    trusted ... false
    Role      ...
         portal_user
    Group     ...
    Namespace ...
         corporateLDAP
              lastname
                   ABC Company
    WPUser: (V0000100115)[com.sapportals.portal.security.usermanagement.WPUser@-138387590]
    AuthorizationFlags: {}
    transient data: [java.util.Hashtable@-328562808]
    Error getting Roles for V0000100115 METHOD:  n.a.  #
    Please help. Thank you.

    hi. thanks for your reply. all roles have been checked as entry point. but still i don't see it on top level navigation.
    i tried something just now. i opened 2 browsers, one login as super admin, and one login as userid A. as super admin, i assigned Role A to userid A, save it. Then as userid A, i refresh the browser and i can see Role A page. I open a 3rd browser now, login as another userid A. in the 3rd browser, i can't see the Role A page. On previous browser login as userid A, after refresh, now i can't see the Role A page. and i checked back the super admin, now userid A doesn't have Role A assigned.
    what goes wrong? appreciate any help.

  • Missing roles in CC 5.2

    Hi Experts..!
    We have CC 5.2 working... but lately the role sync (incremental) is deleting some roles.. when they actually in the system.
    We want to  be able to see all the backend's roles, what can we do to make this possible?
    could you help us, pls.
    Thank in advanced
    This is an example of the job's log:
    INFO: --- Data Extractor -
    com.virsa.cc.dataextractor.bo.DataExtractorSAP@44e336f8
    Jan 30, 2008 5:02:54 PM com.virsa.cc.xsys.bg.BatchRiskAnalysis getBAPIRoleData
    INFO: -- Last Run Date is 2008-01-30
    Jan 30, 2008 5:02:54 PM com.virsa.cc.xsys.bg.BatchRiskAnalysis getBAPIRoleData
    INFO: -- Current Date is 2008-01-30
    Jan 30, 2008 5:03:44 PM com.virsa.cc.xsys.bg.BatchRiskAnalysis insertBAPIRoleData
    INFO:       Gen Obj Returned returned from the BAPI  92
    Jan 30, 2008 5:03:44 PM com.virsa.cscext.dao.CSCDAO populateGenObjRoleProfile
    INFO: Update Z_FIAA_VISUALACTIVO_026 of RPDCLNT800
    Jan 30, 2008 5:03:44 PM com.virsa.cscext.dao.CSCDAO populateGenObjRoleProfile
    INFO: Update Z_FIAA_VISUALACTIVO_604 of RPDCLNT800
    Jan 30, 2008 5:03:45 PM com.virsa.cscext.dao.CSCDAO populateGenObjRoleProfile
    INFO: Update Z_FIAA_VISUALACTIVO_707 of RPDCLNT800
    Jan 30, 2008 5:03:45 PM com.virsa.cscext.dao.CSCDAO populateGenObjRoleProfile
    INFO: Update Z_MMIM_GENERREPORPT_CENT of RPDCLNT800
    Jan 30, 2008 5:03:45 PM com.virsa.cscext.dao.CSCDAO populateGenObjRoleProfile
    INFO: Delete P of RPDCLNT800
    Jan 30, 2008 5:03:45 PM com.virsa.cscext.dao.CSCDAO deleteObjInOtherTables
    INFO: Delete P from ALL tables
    Jan 30, 2008 5:03:45 PM com.virsa.cscext.dao.CSCDAO populateGenObjRoleProfile
    INFO: Delete SAP_BC_BMT_WFM_DEVELOPER of RPDCLNT800
    Jan 30, 2008 5:03:45 PM com.virsa.cscext.dao.CSCDAO deleteObjInOtherTables

    Lizeth-
    You can try a Full Sync and only execute it on the Role level; our numbers are always off when we do the incremental sync, so that is why I always do a full sync...
    Ankur

  • ELM - Contact person is missing role

    Hi Experts,
    Actually we are using ELM to import prospects with contact person. But Contact persons are not created with role Contact person.
    How do I change this behavior? Do I have to use badi CRM_MKTLIST_BADI, or is there a standard option?
    Best regards,
    Cristina

    yes, once I have meet the same situation,  I add the custimze code in ELM BADI, to add a role when create BP.
    You can realize the BADI to replace the standard one and input your code.

Maybe you are looking for

  • Can I get the Dust Jacket and the Great Cover Look of iPhoto in Aperture?

    Hello, I am a huge fan of iPhoto (and most of the other Apple products.) I am using Aperture 2 and I recently created and ordered a book using it. I was blown away by the page layout options, however, I was greatly disappointed when I received my boo

  • Write/read image to avi file, VI works incorrectl​y from the second run

    Hi everybody, in my labview I write image from IMAQ USB to avi file and read image from avi file, the VI runs correctly at the first run then after that it goes wrong, I can write/read only one frame and it terminates automatically. Does anybody know

  • How to restrict the BBPMAININT t code with diplay mode in srm system.

    Hi experts, I want to restrict the T code BBPMAININT : Maintain Business Partner with DISPLAY mode in SRM system? Action Taken:1. I have restricted with "03 Activity"  of all check and maintainauthorization objects for this  tocde . 2. I have perform

  • Table Control in SAP NetWeaver 2004

    Hello, I have a requirement for table control in SAP NetWeaver2004 Webdynpro for java (sp16), where i need a kindoff tablepopins as provided in 2004s.Is there anyway i can get it done or if there is any workaround to achieve  the same with sp16 NetWe

  • Execution of Dybamic Xsql pages

    Hello all, I am interested to know whether execution of dynamic xsql pages is possible? What I mean is, whether it is mandatory to have the physical xsql page on the disk? Can we dynamically form a xsql page and submit it (Without specifying URL) to