Package called in OBIEE11g

Hi,
what do we call a package(cognos) in OBIEE? is it Answers or dashboard
Thanks,
RM

MK,S0081
i dont think so. Because a package in cognos that they create it,run it,copy it and publish it. So is there anything similar to package(what we have in cognos) in OBIEE ? or we dont have anything like that
refer to the below link for some detail about package
[http://publib.boulder.ibm.com/infocenter/c8fpm/v8r4m0/index.jsp?topic=/com.ibm.swg.im.cognos.contrib_admin.8.4.0.doc/contrib_admin_id8751createpublishpackage.html]

Similar Messages

  • DB Adapter Package call vs Pure SQL call

    Hi ,
    We need to call few SQL select statements from BPEL via DB adapter. The SQL may fetch few thousands (1k to 50k possibly) records. We are now analyzing the possible pros and cons in terms of performance of DB Adapter package call vs direct pure SQL call.
    Can you pleas give us any suggestion on it.
    Regards,
    Debanjan

    you can use the code as per your requirement
    but you need to do some performance tuning
    http://biemond.blogspot.com/2010/08/things-you-need-to-do-for-owsm-11g.html

  • Muliple package calls on aftercommit causing duplicate records

    I have a jsp page inserting into table A. The app module has an aftercommit method that calls a package using createCallableStatement. This package call inserts into table B.
    We found duplicate records were being created in table B. The create time is the same in the 2 duplicate records. To try to prevent the duplicates I put a check in the package before the insert to see if the record already exists then don't insert. This did not stop the duplicates. This implies that there are 2 instances of the package executing in parallel in different sessions. They can't see each others uncommitted inserts and so go ahead and insert.
    Is this possible? Could it be creating multiple sessions?

    Hi,
    to work with multiple sessions, there have to be multiple database sessions. While e.g AM pooling could have additional connections to t he database open, I don't see how a commit of one session invokes the same on another
    Frank

  • Package calling other package and passing back the control to calling package

    I have to loop through n number of package from a master package, any idea how to implement this?
    Master package Calling child package in for each loop , here I need to loop through n no or rec from a table and each record needs a call to child package and return control back to calling pkg.. need to do this till the end of all the records in a table.
    Child package1 -- Called perform some task and return control back to master package
    Child package2 -- Called perform some task and return control back to master package
    Child package n -- Called perform some task and return control back to master package
    Thanks
    Neil

    You'll need following
    1. A Execute SQL Task to retrieve the list of child packages to be called from table. Use your query inside, set ResultSet option as FullResultset and map the resultset index 0 to a object variable you create inside in the ResultSet tab.
    2. Use For Each Loop with ADO enumerator and map to earlier created object variable. Inside create variables to retrieve individual column values out one of which will contain package name
    3. Add a Execute Package Task inside the loop, choose Location as filesystem and map the Connection property to variable containing package name in expession window as per below
    I assume the table stores the full path of package variable otherwise you need to add another variable to hold the path and a third variable to concatenate path + packagename to get the fully qualified package path value and assign it to execute package
    task.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Package Calling Error

    Hi frndz,
    In my scenario I am calling a custom package inside another custom package and there is one issue in calling package. When there is a modification in inner package , the issue occurs..
    ISSUE:
    PL/SQL ERROR:
    ORA-06508: PL/SQL: could not find program unit being called.
    CAUSE:
    The issue arises when there is a modification in inner package.

    Check if the inner package spec and body are in a Valid state. You can use the following SQL :
    select object_name,object_type,status from all_objects where object_name like '%<YOUR_PACKAGE_NAME>%' and object_type like '%PACKAGE%'
    If the state of the spec or the body is INVALID, then correct the errors and recompile and try again.
    In case if it is VALID then drop the inner package and create it again and it should work.

  • Exception Handling in packages called from forms

    I am running 10g forms that have many calls to packages/procedures in the database. I am seeing hanging processes on the web server (even after forms processes are stopped) and 1 of the causes Oracle listed was not having proper exception handling in the procesdures. Do I need to add an Exception (' when others then null') to my package specs to handle this?

    "Do I need to add an Exception (' when others then null') to my package specs to handle this? "
    That will hide the problem not handle it. You really need is to find out where the code is failing...
    There is a method for logging message for debugging here...
    http://oracle-developer.net/display.php?id=424
    An another which is less good for a live system (the one above lets you set different levels of importance for logs messages and can be turned on or off for each user) but looks easier to implement in case you might be in a hurry...
    Re: Zdebug -- Download a Forms debugging message tool

  • Oracle 9.2.0.6 Jdbc Package Call

    We have the following problem:
    calling from Java application (with driver classes12.jar or ojdbc14.jar) a package
    procedure (that contains another package procedure call), an error ORA-6502 occured.
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small.
    Using Oracle Client (SqlNet driver) with sqlplus or Sql Navigator the same package procedure don't return any errors.
    We have
    Oracle Server 9.2.0.6 on Windows 2003 Server.
    JDK 1.5
    Thanks.
    Alessandro

    Alessandro,
    I don't think Oracle's JDBC drivers support JDK 1.5 yet.
    Have you tried using JDK 1.4 instead? Does it also give you the same error?
    Good Luck,
    Avi.

  • How to trace packages called from frontend UI

    Hi All,
    Is there any way where we can trace the packages that are being called from the Frontend screens like UI screens written in Java.
    Appreciate your help.
    Thanks,
    MK.

    v$session contains PLSQL_ENTRY_OBJECT_ID and PLSQL_ENTRY_SUBPROGRAM_ID that you can join to dba_objects to find the package and procedure initially called, and likewise PLSQL_OBJECT_ID and PLSQL_SUBPROGRAM_ID for the curently executing procedure.
    Also the MODULE, ACTION and CLIENT_INFO attributes will of course have been set by the Java application, right?

  • Unable to compile a package calling a package procedure in different schema

    Hello,
    I'm unable to compile a package referencing a package located in another schema. I get the message: PLS-00201: identifier 'pkg1' must be declared
    Facts:
    0. I'm running Oracle DB 10.2.0.4.0 Enterprise Edition
    1. There is one schema ('schema1') containing a package ('pkg1').
    2. This package 'pkg1' has a public synonym ('pkg1' as well).
    3. The EXECUTE grant is given to a role ('role1').
    4. There is another schema 'schema2', which is granted the role 'role1' (and set as default).
    5. This schema 'schema2' contains a package ('pkg2').
    6. This package 'pkg2' calls a procedure of 'pkg1'.
    7. When compiling 'pkg2', I get error message saying 'pkg1' does not exist.
    Of course, if I execute 'GRANT EXECUTE ON pkg1 TO PUBLIC' or 'GRANT EXECUTE ON pkg1 TO schema2', I can compile the package 'pkg2'. But I don't want this.
    And what's weird is that, connected as 'schema2', I can execute the statement 'execute pkg1.proc1' without any trouble. So I guess the role setup is okay.
    What would let me compile 'pkg2' properly?
    Regards,
    Arnaud

    user3347638 wrote:
    Hello,
    I'm unable to compile a package referencing a package located in another schema. I get the message: PLS-00201: identifier 'pkg1' must be declared
    Facts:
    0. I'm running Oracle DB 10.2.0.4.0 Enterprise Edition
    1. There is one schema ('schema1') containing a package ('pkg1').
    2. This package 'pkg1' has a public synonym ('pkg1' as well).
    3. The EXECUTE grant is given to a role ('role1').
    4. There is another schema 'schema2', which is granted the role 'role1' (and set as default).
    5. This schema 'schema2' contains a package ('pkg2').
    6. This package 'pkg2' calls a procedure of 'pkg1'.
    7. When compiling 'pkg2', I get error message saying 'pkg1' does not exist.
    Of course, if I execute 'GRANT EXECUTE ON pkg1 TO PUBLIC' or 'GRANT EXECUTE ON pkg1 TO schema2', I can compile the package 'pkg2'. But I don't want this.
    And what's weird is that, connected as 'schema2', I can execute the statement 'execute pkg1.proc1' without any trouble. So I guess the role setup is okay.
    What would let me compile 'pkg2' properly?
    Regards,
    Arnaudprivileges acquired via ROLE do NOT apply within named PL/SQL procedures.
    above is just a restriction built into PL/SQL.
    accept it & get on with reality

  • ODI Package + Calling via Unix wrapper

    Hi,
    I am new to ODI... Can you please help me on this.
    On Overall architecture we are 3 products
    1. ODI for staging to target transformaton
    2. AbInitio conduct>IT for dependency analyisis and as work flow ( It can call Unix scripts, programs, SQL etc)
    3. dServies a scheduling product ( Which will schedule the Conduct>IT workflow)
    My question is can we wrapper the ODI Packages in UNIX and pass on the parameters? ( What i want to achieve is i want to put these wrappers in AbInitio workflow product).
    Can you please share with me any sample Unix script calling the ODI Packages via Unix wrappers; if we can do it?
    Many thanks

    Hi,
    Check this out
    http://www.oracle.com/technology/products/oracle-data-integrator/10.1.3/htdocs/documentation/oracledi_getting_started.pdf
    http://www.oracle.com/technology/products/oracle-data-integrator/10.1.3/htdocs/documentation/oracledi_users.pdf
    http://www.oracle.com/technology/obe/fusion_middleware/ODI/index.html
    Thanks,
    Sutirtha

  • Package calls //please help

    I basically have two packages or projects. One is project 1 & and the other is project 2. What I'm basically trying to do is call or get project's 1 classes and methods into project 2. I mainly want project 2 to be able to use project 1 because I have a transaction controller that will in the beginning of the program, askk whether you would like to run project 1 or project 2. Can someone please help?

    Okay what I'm basically saying is that I want to use the contents of another project in a different project. So for example, in project 2, I will have a window that will ask the user for the transaction they would like to run. One transaction button will lead to the use case in project 2. The other transaction button should take the user to the use case back in project 1. This is where I'm stuck. I don't understand how to bring the contents of project 1 into project 2. Hope this clarifies it. Thanks for any help. I appreciate it.

  • [solved] Upgrade failing for a package called device-mapper

    Hi All,
    I am using archlinux in a VirtualBox to get used to it. Now, I tried to upgrade (after a month or so) with following command
    pacman -Syu
    I get following errors
    error: failed to commit transaction (invalid or corrupted package)
    device-mapper-1.02.31-1-i686.pkg.tar.gz is invalid or corrupted
    Errors occurred, no packages were upgraded
    Any help is welcome.
    regards,
    rangalo
    Last edited by rangalo (2009-04-22 09:32:48)

    Hi,
    Thanks for the quick response... I am given the choice to remove the package but it still complains about it being corrupted..
    I also deleted it manually and running the update again gives following.
    :: File device-mapper-1.02.31-1-i686.pkg.tar.gz is corrupted. Do you want to delete it? [Y/n] Y
    error: failed to commit transaction (invalid or corrupted package)
    device-mapper-1.02.31-1-i686.pkg.tar.gz is invalid or corrupted
    Errors occurred, no packages were upgraded.
    Last edited by rangalo (2009-04-21 14:32:35)

  • Ssis package calling two scripts in different application

    i tried it but ts picking only the first one.Has anyone created a ssis package to cal a script in different appliction

    Hello,
    Typically the modifyscript is something like this:
    TASK(Execute formulas,USER,%USER%)
    TASK(Execute formulas,APPSET,%APPSET%)
    TASK(Execute formulas,APP,%APP%)
    TASK(Execute formulas,SELECTION,%SELECTIONFILE%)
    TASK(Execute formulas,LOGICFILE,%APPPATH%\..\AdminApp\%APP%\Script.lgf)
    TASK(Execute formulas,RUNMODE,1)
    TASK(Execute formulas,LOGICMODE,1)
    TASK(Execute formulas,CHECKLCK,%CHECKLCK%)
    The values enclosed between %% are variables. By default the value of %APP%  variable is current application.
    The good: you can replace the variable with specific application name so the package can execute te logic correctly.
    The bad: %SELECTIONFILE% which contains the scope for the calculation is based on the current application.
    The ugly: you need to experiment on your own, I haven't seen this being done before.
    More appropriate solution would be creating special logic using *RUNLOGIC instruction. This helps you to control different dimensionality of the apps.
    Cheers!
    Madis

  • How can I obtain a package called "WBRectifyMaps"?

    I need this package (WBRectifyMaps) to fix duplicate and wrong entries in a OWB Design Repository.
    My OWB client version: 10.1.0.2.0
    My OWB client repository: 10.1.0.1.0
    PS: I can't migrate to 10.2 version by now. This fix is a temporary solution.

    I need this package (WBRectifyMaps) to fix duplicate and wrong entries in a OWB Design Repository.
    My OWB client version: 10.1.0.2.0
    My OWB client repository: 10.1.0.1.0
    PS: I can't migrate to 10.2 version by now. This fix is a temporary solution.

  • Using package call in insert statement.

    insert into
    as_portal_credentials_test
    values('id', 'key','expid',UTL_RAW.CAST_TO_RAW('zTMwv2.[[?~d'))                                                                                                                                                                                                               

    Where are you using the insert statement? The ErrorDescription  variable is only available inside OnError,OnWarning and OnInformation event handlers
    http://msdn.microsoft.com/en-IN/library/ms141788.aspx
    Also you need to use insert statement as below
    INSERT INTO dbo.LOAD_ERR (LOAD_ERR_ID,
    LOAD_ERR_DTL,
    loadtime)
    VALUES (NEXT VALUE FOR dbo.LOAD_ERR_SEQ,
    getdate())
    and map parameter0 to  @[System::ErrorDescription] in parameters tab
    another way is to set SQLSourceType
    as Variable and set a variable for the query with below expression as
    "INSERT INTO dbo.LOAD_ERR (LOAD_ERR_ID,
    LOAD_ERR_DTL,
    loadtime)
    VALUES (NEXT VALUE FOR dbo.LOAD_ERR_SEQ,'" +
    @[System::ErrorDescription] + "',
    getdate())"
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Maybe you are looking for

  • Error while runnin oaf page from local machine using jdeveloper

    this is the error stack... Error Page Exception Details. oracle.apps.fnd.framework.OAException: Application: FND, Message Name: SYSTEM-ERROR. Tokens: MESSAGE = Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=153093632)(ERR=12505)(ERROR_STA

  • Infopackage Abap Routine (Selection based on other fields?)

    Dear Friends, I know that Abap routine is used in infopackage to select or restrict using complex data selection. My requirement is to restrict Material no field based on 4 other fields. Is that possible? Actual condition is  to load Material no only

  • Edit payload in SXMB_moni

    Hi, Is anyone did edited the payload in sxmb_moni and restarted the message? I read in many threads that it is possible to do.....could any one let me know how to do? regards.

  • Install Adobe illustrator cc 2014 and I have no desktop icons when I save my work to my desktop

    I have installed Adobe illustrator cc 2014 and I have no desktop icons when I save my work to my desk top.  I have a white square and the file name and thats it.  What is wrong?  I have no other illustrator programs on my computer.

  • Structure of the sender Data Type

    hi; i have two tables and want to fetch data from both in one go using sender JDBC adapter. Can any one tell me the structure of the sender Data Type if Table1 has A1,A2,A3 as fields and Table2 has B1,B2,B3 as fields. i want to fetch only A1,A2 field