3.1 activity universe error - incorrect objects returned for a universe

we built a simple query to show activity per universe (see below).  the result set is showing objects that are not contained in the universe specified.  does anyone know if there are know errors in the oracle activity universe?
thanks in advance
shawn jones
sql generated by bo from the activity universe 3.1:
SELECT
  DERIVED_UNIVERSE_NAME.Detail_Text,
  DERIVED_OBJECT_NAME.Detail_Text
FROM
  select
     AUDIT_EVENT.Server_CUID, AUDIT_EVENT.Event_ID, RTRIM(To_CHAR(AUDIT_DETAIL.Detail_Text),CHR(0)) as Detail_Text
from
     AUDIT_EVENT, AUDIT_DETAIL
where
     (AUDIT_EVENT.Server_CUID = AUDIT_DETAIL.Server_CUID) and
     (AUDIT_EVENT.Event_ID = AUDIT_DETAIL.Event_ID) and
     (AUDIT_DETAIL.Detail_Type_ID = 2)
  )  DERIVED_UNIVERSE_NAME,
  select
     AUDIT_EVENT.Server_CUID, AUDIT_EVENT.Event_ID, RTRIM(To_CHAR(AUDIT_DETAIL.Detail_Text),CHR(0)) as Detail_Text
from
     AUDIT_EVENT, AUDIT_DETAIL
where
     (AUDIT_EVENT.Server_CUID = AUDIT_DETAIL.Server_CUID) and
     (AUDIT_EVENT.Event_ID = AUDIT_DETAIL.Event_ID) and
     (AUDIT_DETAIL.Detail_Type_ID = 3)
  )  DERIVED_OBJECT_NAME,
  AUDIT_EVENT
WHERE
  ( AUDIT_EVENT.Event_ID=DERIVED_OBJECT_NAME.Event_ID and AUDIT_EVENT.Server_CUID=DERIVED_OBJECT_NAME.Server_CUID  )
  AND  ( AUDIT_EVENT.Event_ID=DERIVED_UNIVERSE_NAME.Event_ID and AUDIT_EVENT.Server_CUID=DERIVED_UNIVERSE_NAME.Server_CUID  )
  AND 
   DERIVED_UNIVERSE_NAME.Detail_Text  In  ( 'Qwest Usage Gross Margin'  )
   AND
   AUDIT_EVENT.Start_Timestamp  >=  '01-06-2009 00:00:00'
   AND
   AUDIT_EVENT.Duration  >  0

Thanks Rupali.. 
I guess we can migrate 3.1 into 4.0 but can not save it in UNX....
However I solved this issue.  Its JDBC.SBO issue...

Similar Messages

  • Error in BAPI RETURN for Service Contract

    Hi,
      I get an error in the BAPI Return for the Uploading the Service Contracts by LSMW. The Error Message is E BS No status object is available for &.Also want to know can we upload multiple line of header text for a Contract by this BAPI. If so then how would I do this , as the BAPI structure BAPISDTEXT has textline upto 132 characters. And I am take only one file in LSMW where the header & details come alongwith text. Or could also tell me the file structure of for the data upload. The legacy system sends multiple text in the header for a Contract.For Eg.
    Header1 Detail1 Text1
    HEader1 Detail2 Text2
    Header1 Detail3 Text3
    So I would need this text1TEXT2text3 in the Header Text of the Contracts. Or do I need the change the file structure. Many thanks for your time and help.

    Thanks Nablan, I could do that for multiple header coming in file. But I have a question for you on BAdI ALM_ME_006_GOODSMVT. I have implemented this BAdI , and this BAdI is called by a function Module ALM_MEREP_006_CREATE. When I test this FM giving the Material , Orderid and Movement type entries, this BAdI is triggered when giving a breakpoint. I've given this code for changing the movement type to 961. Cause the stanadrd scenario does not maintain Movement type 961 in Mobile Asset Management. The Movement type 961 for unplanned Materials comes to SAP and changes to 261 as maiantained by TCOKO table. To bypass this & retain the movement type 961 in SAP I'm using this BAdI. Currently this is what I'm doing and am stuck in the method interface how do I call the method.
    method IF_EX_ALM_ME_006_GOODSMVT~CREATE .
    break-point.
    *DATA : i_ce_goodsmovement TYPE REFERENCE
              ALM_ME_CUSTOMER_ENHANCEMENT.
    DATA : lr_badi_goods_movement TYPE REF TO if_ex_alm_me_006_goodsmvt.
    DATA : ls_user_data TYPE ALM_ME_USER_DATA-USERID.
    *DATA : goods_movement TYPE ALM_ME_MATERIAL_MOVEMENT.
    CALL METHOD lr_badi_goods_movement->create
      EXPORTING
           ce_goodsmovement = ce_goodsmovement
      IMPORTING
           user_data        = ls_user_data
           custom_user_data = ls_ce_user_data
           goods_movement   = goods_movement
      changing
           return           = return[].
    CALL FUNCTION 'ALM_ME_COMMIT_OR_ROLLBACK'
           TABLES
                return = return.
    endmethod.
    Please help me to get the data in this method. How do I call this.

  • Ignore dimension build error Incorrect Parent For Member (3307)

    Hello,
    Is it possible to ignore the following error:
    Incorrect Parent [XYZ] For Member ABC (3307)
    The error appears because the member is in outline already. Is there a way to ignore that error?
    Thanks in advance

    The reason for the error is  you have multiple rows in your dimension build file with conflicting information.   One row says to associate the member with parent A and another row says to associate it with Parent B.   TimG's suggestion to set them ember to allow moves would get rid of the error, but the member will be associated with the last row in your data.   If you do not allow moves (as it appears you have) there is no way to turn off the error. In your case it is what I call a soft error, you know about it, but don't want to do anything about it.   I would suggest you clean up your data so it does not cause this issue. It is troublesome to me when the incoming data has this type of inconsistency and the solution is to ignore it

  • Incorrect index structure for IVBEP1

    Hi Gurus,
    Please provide your inputs on below issue:
    When one our users tries to delete an item from sales order, he gets error "Incorrect index structure for IVBEP1". He then gets out of the transaction and gets in again and on the second attempt system alows him to delete that item.
    This issue is with this particular user only.
    What might be the problem ? is it ABAP or BASIS issue?
    Thanks in advance for your inputs,
    Naminator

    Hi,
    For Sales order change - VA02, You can use BADI - BAPI_SALESORDER_CHANGE .  You can modify Hedare and line level data using following BADI for VA02 .
    Sample as follows,
    it_order_item_in-itm_number = 000010.
    it_order_item_in-short_text = '000010 '.
    APPEND it_order_item_in .
    it_order_item_inx-itm_number = stab_val-item_no .
    it_order_item_inx-updateflag = 'U' .
    it_order_item_inx-short_text =  'X' .
    APPEND it_order_item_inx .
        CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
          EXPORTING
            salesdocument    =   Sales Order Number
            order_header_inx = st_order_header_inx
            order_header_in  = st_order_header_in
          TABLES
            return           = it_return
            order_item_in    = it_order_item_in
            order_item_inx   = it_order_item_inx.
    Thanks,
    Rehan
    Edited by: Rehan Nishantha Gunaratne on Jan 24, 2012 3:50 AM

  • Hi expert,Incorrect connection string for addon

    hi expert
    I am getting error when connect  my addon in client pc.
    my addon working fine in server at client side.
    but in client i m getting error "Incorrect connection string for addon".in my addon i am using crystal report and two sap b1 user form. thanks in adva.
    regards
    Rajkumar Gupta
    Edited by: Rajkumar Gupta on May 23, 2009 12:49 PM

    Hi Rajkumar,
    Sometimes this error message is related to the UI server. Please see note 808354 or 852031 and see if this has any effect.
    If not, please post up a code sample so we can take a look,
    Regards,
    Niall

  • Activatable object must provide an activation constructor error

    Hi everybody,
    while I'm trying to calling a simple activatable object, I got this error
    rmi://localhost:1099/MyActivatableServer
    Found a reference to the object that extend IMyRemoteInterface and Activatable
    Invoking the remote method of this object
    RemoteException
    java.rmi.activation.ActivateFailedException: activation failed; nested exception is:
         java.rmi.activation.ActivationException: Activatable object must provide an activation constructor; nested exception is:
         java.lang.NoSuchMethodException: Progetto3.MyActivatableServer.<init>(java.rmi.activation.ActivationID, java.rmi.MarshalledObject)
         at sun.rmi.server.ActivatableRef.activate(ActivatableRef.java:285)
         at sun.rmi.server.ActivatableRef.invoke(ActivatableRef.java:114)
         at Progetto3.MyActivatableServer_Stub.chiamamiInRemoto(Unknown Source)
         at Progetto3.Client.run(Client.java:52)
         at Progetto3.Client.main(Client.java:78)
    Caused by: java.rmi.activation.ActivationException: Activatable object must provide an activation constructor; nested exception is:
         java.lang.NoSuchMethodException: Progetto3.MyActivatableServer.<init>(java.rmi.activation.ActivationID, java.rmi.MarshalledObject)
         at sun.rmi.server.ActivationGroupImpl.newInstance(ActivationGroupImpl.java:273)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:294)
         at sun.rmi.transport.Transport$1.run(Transport.java:153)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
         at java.lang.Thread.run(Thread.java:595)
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:247)
         at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:223)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:126)
         at java.rmi.activation.ActivationGroup_Stub.newInstance(Unknown Source)
         at sun.rmi.server.Activation$ObjectEntry.activate(Activation.java:1277)
         at sun.rmi.server.Activation$GroupEntry.activate(Activation.java:972)
         at sun.rmi.server.Activation$ActivatorImpl.activate(Activation.java:243)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:294)
         at sun.rmi.transport.Transport$1.run(Transport.java:153)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
         at java.lang.Thread.run(Thread.java:595)
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:247)
         at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:223)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:126)
         at java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:179)
         at java.rmi.server.RemoteObjectInvocationHandler.invoke(RemoteObjectInvocationHandler.java:132)
         at $Proxy0.activate(Unknown Source)
         at java.rmi.activation.ActivationID.activate(ActivationID.java:96)
         at sun.rmi.server.ActivatableRef.activate(ActivatableRef.java:258)
         ... 4 more
    Caused by: java.lang.NoSuchMethodException: Progetto3.MyActivatableServer.<init>(java.rmi.activation.ActivationID, java.rmi.MarshalledObject)
         at java.lang.Class.getConstructor0(Class.java:2647)
         at java.lang.Class.getDeclaredConstructor(Class.java:1953)
         at sun.rmi.server.ActivationGroupImpl$1.run(ActivationGroupImpl.java:228)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.server.ActivationGroupImpl.newInstance(ActivationGroupImpl.java:222)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:294)
         at sun.rmi.transport.Transport$1.run(Transport.java:153)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
         at java.lang.Thread.run(Thread.java:595)
    I can't figure out what constructor it need, because there is already a default constructor in the remote object implementation.
    do anybody have an idea?
    I'm going to post the program code in the reply.

    here is the client code
    public class Client implements Runnable {
         private String server;
         private long ms;
         private String msg;
         public Client(String server, long ms, String msg) {
              //server address
              this.server = server;
              //time in ms need for the activatable object
              this.ms = ms;
              //the message to print out
              this.msg = msg;
              public void run() {
              //create a securitymanager
              System.setSecurityManager(new RMISecurityManager());
             try {
                   String location = "rmi://" + server + "/MyActivatableServer";
                   System.out.println(location);
                   //lookup on server
                   IMyRemoteInterface mri = (IMyRemoteInterface)Naming.lookup(location);
                   System.out.println("Found a reference to the object that extend IMyRemoteInterface and Activatable ");
                   int risultato = 0;
                   System.out.println("Invoking the remote method of this object");
                    //call the method "chiamamiInRemoto" of the remote activatable object
                   risultato = mri.chiamamiInRemoto(ms, msg);
                   System.out.println("Fine dell'invocazione remota");
                   if (risultato != 0)
                        System.out.println("ok");
                   else
                        System.out.println("no ok");
              } catch (MalformedURLException e) {
                   System.out.println("MalformedUrlException");
                   e.printStackTrace();
              } catch (RemoteException e) {
                   System.out.println("RemoteException");
                   e.printStackTrace();
              } catch (NotBoundException e) {
                   System.out.println("NotBoundException");
                   e.printStackTrace();
              } catch (AccessControlException e){
                   System.out.println("AccessControlException");
                   e.printStackTrace();
              } catch (Exception e){
                   System.out.println("Other Exception");
                   e.printStackTrace();
         public static void main(String[] args) {
              Client cliente = new Client("localhost:1099",150,"hello");
              cliente.run();
    }the server interface that the activatable implements is simply
    public interface IMyRemoteInterface extends Remote {
         public int chiamamiInRemoto(long ms, String msg) throws RemoteException;
    }and the activatable object's implementation is
    public class MyActivatableServer extends Activatable implements IMyRemoteInterface {
         //il threadpool per gestire le chiamate arrivate
         private final ExecutorService pool;
         //per accedere al variabile indice, bisogna prima sincronizzarsi su questo lock
         private Object objLock;
         //un indice che tiene conto di quanti thread sono stati creati per gestire l'invocazione del client
         private int indice;
         public MyActivatableServer(ActivationID id, int data)
                   throws RemoteException {
              super(id, data);
              objLock = new Object();
              indice = 1;
              //il pool creato � di tipo CachedThreadPool, che aggiunge un nuovo thread al pool
              //nel caso in cui i thread presenti non siano disponibili per una nuova chiamata.
              pool = Executors.newCachedThreadPool();
         public int chiamamiInRemoto(long ms, String msg)
              throws RemoteException {
    //doing something here and return an Integer number
    }the setup java file is
    public class MyActivatableServerSetup {
         public static void main(String[] args) {
              System.setSecurityManager(new RMISecurityManager());
              //create an instance of ActivationGroup
              Properties props = new Properties();
              props.put("java.security.policy","d:\\policy");
              System.out.println(props.getProperty("java.security.policy"));
              ActivationGroupDesc.CommandEnvironment ace = null;
              ActivationGroupDesc ActivationGruppo = new ActivationGroupDesc(props, ace);
              try {
                   //registration
                   ActivationGroupID agID = ActivationGroup.getSystem().registerGroup(ActivationGruppo);
                   //location define l'URL where class are
                   String location = "file:///d:\\progetti\\Progetto\\bin\\";
                   //Other parameters need for the constructor of ActivationDesc
                   MarshalledObject data = null;
                   ActivationDesc desc = new ActivationDesc(agID,"Progetto3.MyActivatableServer",location,data);
                   //Registration to rmid
                   IMyRemoteInterface mri = (IMyRemoteInterface)Activatable.register(desc);
                   System.out.println("obtain stub for MyActivatableServer");
                   //Bind the stub
                   Naming.rebind("MyActivatableServer", mri);
                   System.out.println("Esportato MyActivatableServer");
              } catch (RemoteException e) {
                   System.out.println("RemoteException al Setup");
                   e.printStackTrace();
              } catch (UnknownGroupException e) {
                   System.out.println("UnknownGroupException al Setup");
                   e.printStackTrace();
              } catch (MalformedURLException e) {
                   System.out.println("MalformedURLException al Setup");
                   e.printStackTrace();
              } catch (ActivationException e) {
                   System.out.println("ActivationException al Setup");
                   e.printStackTrace();
              System.exit(0);
    }I can start the rmiregistry and rmid without problem, I can't esecute the setup of activatable object without problem, but when I try esecuting the client, the activation constructor error appear.
    I really can't figure out what is this constructor, doesn't I already implemented in my activatableServer yet? with public MyActivatableServer(ActivationID id, int data)
                   throws RemoteException {thanks in advance for everybody.

  • Error while activating a routine  "no object list"

    hi
    I am getting a error while activating a routine Rv50c601
    "There is no object list for INCLUDEs"  Please suggest on the error and resoulution
    regards
    Nishant

    Try running program RV80HGEN.
    Regards,
    Naiimesh Patel

  • How to Include Warnings/Error messages in Return Service Data Object

    Hello All,
    I am using Jdeveloper 11.1.1.3.0, ADF BC. and want to publish Service-Enabled application modules, specifically I want to publish a custome method in the application module as a web service.
    While going through Enable support for Service Interface wizard as explained in developer guide, in step 7 I read this
    >
    7. To expose service information messages such as warnings and exceptions for a custom method or warnings for process operation methods, select Include Warnings in Return Service Data Object. For example, you might want display an informational message when a method returns the total employee compensation and the total is outside of the desired range.
    If Include Warnings is not selected, no informational messages will be returned with the service response. This option is only enabled when the method does not return a view row or a list
    of view rows. When the method returns view rows, the underlying view object determines whether the method supports warnings, as described Section 11.2.4, "How to Service-Enable Individual View Objects." The informational messages (and warnings) are reported as part of the return object. JDeveloper generates appropriate wrappers as the return objects, and the wrappers contain the actual method return and the informational messages.
    >
    I am interested in this part: For example, you might want display an informational message when a method returns the total employee compensation and the total is outside of the desired range.
    To do this, I write a method in the application module
    public Number getEmpSal(Number empId){
            EmployeesViewImpl employeesView1 = this.getEmployeesView1();
            //this is the bind variable setter
            employeesView1.setEmpId(empId);
            employeesView1.executeQuery();
            EmployeesViewRowImpl first = (EmployeesViewRowImpl)employeesView1.first();
           return first!=null ? first.getSalary() : null;
    }and I selected the Include Warnings in Return Service Data Object check box. but how and where can I expose the error or warning message?
    Note:
    I tried to throw an exception in the method
    public Number getEmpSal(Number empId){
            EmployeesViewImpl employeesView1 = this.getEmployeesView1();
            //this is the bind variable setter
            employeesView1.setEmpId(empId);
            employeesView1.executeQuery();
            EmployeesViewRowImpl first = (EmployeesViewRowImpl)employeesView1.first();
            if(first!=null && (first.getSalary()!=null || first.getSalary().compareTo(1000)==1))
                throw new JboException("out of range salary");
             return first!=null ? first.getSalary() : null;
    }and when I test the web service for some employee I get this response:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
         <env:Body>
              <env:Fault>
                   <faultcode>env:Server</faultcode>
                   <faultstring>out of range salary</faultstring>
                   <detail><tns:ServiceErrorMessage xmlns:tns="http://xmlns.oracle.com/adf/svc/errors/" xmlns:xsi=      "http://www.w3.org/2001/XMLSchema-instance"><tns:code/><tns:message>out of range  salary</tns:message><tns:severity>SEVERITY_ERROR</tns:severity><tns:exceptionClassName>oracle.jbo.JboException</tns:exceptionClassName></tns:ServiceErrorMessage>
                   </detail>
              </env:Fault>
         </env:Body>
    </env:Envelope>but is this the right approach or there is another place to show error/warning messages?
    Edited by: Mohammad Jabr on Apr 16, 2012 1:17 PM

    This is fine if you raise exception from your code. It will be raised as a server fault only.

  • Copy activity fails while copying/reading sql object return type

    Hi,
    Please help me by providing some information for the following issue
    i am executing a db adapter in BPEL service ,i am calling a stored procedure it returns a object type . i can see the outputparameters retrun values in the audit(BPEL console) but i am unable to copy the object return type using assign copy operation.
    it shows parser error.Please find below mentioned error information.
    fault message:
    ULNAPP_JW_100_02_OutputVariable>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="OutputParameters">
    -<db:OutputParameters xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:db="http://xmlns.oracle.com/pcbpel/adapter/db/DEVJ2EE/ULNAPP_JW_100_02/EDIT/">
    -<IV_EDI_REC_T>
    <EDI_EDIT>CNLNCE_APP_EDIT_00
    </EDI_EDIT>
    <EDI_SUPER_PRODUCT_TYPE_CD>CN
    </EDI_SUPER_PRODUCT_TYPE_CD>
    <EDI_PRODUCT_TYPE_CD>LN
    </EDI_PRODUCT_TYPE_CD>
    <EDI_FUNDING_TYPE_CD>CE
    </EDI_FUNDING_TYPE_CD>
    <EDI_PTC_COMPANY>ALL
    </EDI_PTC_COMPANY>
    <EDI_PCB_BRANCH>ALL
    </EDI_PCB_BRANCH>
    <EDI_STATE_CD>ALL
    </EDI_STATE_CD>
    <EDI_PRD_PRODUCT>ALL
    </EDI_PRD_PRODUCT>
    <EDI_EDIT_TYPE_CD>ORG-ENTRY
    </EDI_EDIT_TYPE_CD>
    <EDI_ENABLED_IND>Y
    </EDI_ENABLED_IND>
    <CREATED_BY>SETUP
    </CREATED_BY>
    <CREATION_DATE>2008-01-30T17:02:35.000+05:30
    </CREATION_DATE>
    <LAST_UPDATED_BY>SETUP
    </LAST_UPDATED_BY>
    <LAST_UPDATE_DATE>2008-01-30T17:02:35.000+05:30
    </LAST_UPDATE_DATE>
    <EDI_RESULT_CD>ERROR
    </EDI_RESULT_CD>
    <EDI_OVR_RESPONSIBILITY_CD>UNDEFINED
    </EDI_OVR_RESPONSIBILITY_CD>
    <EDI_ERE_ID>102688
    </EDI_ERE_ID>
    </IV_EDI_REC_T>
    <IV_RESULT>0
    </IV_RESULT>
    <IV_ERR_DESC xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
    </db:OutputParameters>
    </part>
    <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="response-headers">[]
    </part>
    </ULNAPP_JW_100_02_OutputVariable>
    </messages>
    Assign_1
    [2008/04/10 20:01:50] Updated variable "TMP_Output"More...
    -<TMP_Output>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="OutputParameters">
    -<OutputParameters xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/DEVJ2EE/ULNAPP_JW_100_02/EDIT/">
    -<IV_EDI_REC_T xmlns="">
    <EDI_EDIT>CNLNCE_APP_EDIT_00
    </EDI_EDIT>
    <EDI_SUPER_PRODUCT_TYPE_CD>CN
    </EDI_SUPER_PRODUCT_TYPE_CD>
    <EDI_PRODUCT_TYPE_CD>LN
    </EDI_PRODUCT_TYPE_CD>
    <EDI_FUNDING_TYPE_CD>CE
    </EDI_FUNDING_TYPE_CD>
    <EDI_PTC_COMPANY>ALL
    </EDI_PTC_COMPANY>
    <EDI_PCB_BRANCH>ALL
    </EDI_PCB_BRANCH>
    <EDI_STATE_CD>ALL
    </EDI_STATE_CD>
    <EDI_PRD_PRODUCT>ALL
    </EDI_PRD_PRODUCT>
    <EDI_EDIT_TYPE_CD>ORG-ENTRY
    </EDI_EDIT_TYPE_CD>
    <EDI_ENABLED_IND>Y
    </EDI_ENABLED_IND>
    <CREATED_BY>SETUP
    </CREATED_BY>
    <CREATION_DATE>2008-01-30T17:02:35.000+05:30
    </CREATION_DATE>
    <LAST_UPDATED_BY>SETUP
    </LAST_UPDATED_BY>
    <LAST_UPDATE_DATE>2008-01-30T17:02:35.000+05:30
    </LAST_UPDATE_DATE>
    <EDI_RESULT_CD>ERROR
    </EDI_RESULT_CD>
    <EDI_OVR_RESPONSIBILITY_CD>UNDEFINED
    </EDI_OVR_RESPONSIBILITY_CD>
    <EDI_ERE_ID>102688
    </EDI_ERE_ID>
    </IV_EDI_REC_T>
    <IV_RESULT xmlns="">0
    </IV_RESULT>
    <IV_ERR_DESC xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns=""/>
    </OutputParameters>
    </part>
    </TMP_Output>
    </sequence>
    </flow>
    <switch>
    Assign_Output (faulted)
    [2008/04/10 20:01:50] Error in evaluate <from> expression at line "399". The result is empty for the XPath expression : "/ns9:OutputParameters/ns9:IV_RESULT". More...
    oracle.xml.parser.v2.XMLElement@d2838
    [2008/04/10 20:01:50] "{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure" has been thrown.less
    -<selectionFailure xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/">
    -<part name="summary">
    <summary>
    empty variable/expression result.
    xpath variable/expression expression "/ns9:OutputParameters/ns9:IV_RESULT" is empty at line 399, when attempting reading/copying it.
    Please make sure the variable/expression result "/ns9:OutputParameters/ns9:IV_RESULT" is not empty.
    </summary>
    </part>
    </selectionFailure
    Thanks in advance,

    I'm having a similar problem where I'm unable to copy data from a single element from a response from a stored procedure (through an ESB service). If I copy the entire response xml to another variable it works fine however.
    Working code:
    <variable name="VariableOut" messageType="ns10:OutputParameters_reply"/>
    <assign name="assignStatusCode">
    <copy>
    <from variable="VariableOut" part="OutputParameters" query="/ns11:OutputParameters/ns11:EnclosureOutput/ns11:P_STATUS_CODE"/>
    <to variable="statusCodeFromEnclosures"/>
    </copy>
    </assign>
    results in:
    Updated variable "VariableOut"
    <invokeAPPS_DB_Enclosures_Out_execute_OutputVariable>
    <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="OutputParameters">
    <OutputParameters xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/DOC_INT/DOC_INV_ENCLOSURE_PKG/SEND_ENCLOSURES/">
    <P_ENCLOSURES xsi:nil="true"/>
    <P_STATUS_CODE>1</P_STATUS_CODE>
    <P_STATUS_TEXT>My text</P_STATUS_TEXT>
    </OutputParameters>
    </part>
    </invokeAPPS_DB_Enclosures_Out_execute_OutputVariable>
    Not working code:
    <variable name="statusCodeFromEnclosures" type="xsd:unsignedInt"/>
    <assign name="assignStatusCode">
    <copy>
    <from variable="VariableOut" part="OutputParameters" query="/ns11:OutputParameters/ns11:EnclosureOutput/ns11:P_STATUS_CODE"/>
    <to variable="statusCodeFromEnclosures"/>
    </copy>
    </assign>
    results in:
    Error in evaluate <from> expression at line "195". The result is empty for the XPath expression : "/ns11:OutputParameters/ns11:EnclosureOutput/ns11:P_STATUS_CODE".
    oracle.xml.parser.v2.XMLElement@14d4901

  • Error Message: Object could not be activated

    Hello experts,
    Once I try to activate a DSO the system shows the following message:
    Object ZZABCDE could not be activated;
    The errors  are:
    -The creation of the export data source failed (RSBM035),
    whilst generating the export Infosource, the metadata for a datasourcemust be generated. An error arose when doing this.
    -ERROR CALL_FUNCTION_SECSTORE_ERROR occur ed. P1=PB9CLNT100 P2=PB9CLNT100 P3=/RFC/
    The system I am using was copied from an other system, could such errors be due to missing elements in the configuration of the system?
    thank you in advance

    Hi,
    I assume that this is due to the system Copy.
    Since there is always an export DataSOurce generetad to ODS or DSO, the myself-System needs to be setup properly.
    Check if the Sourcesystem connection to the MYSELF-System (your BI) is maintained properly after system-copy.
    If not, contact your admin.
    If your'e not working with sap-all/sap-new, you should also check authorisation.
    hth
    Sven

  • Help with error "No activation of relationship to object..."

    Has anyone experienced this error while transporting a work flow to another environment?
    "No activation of relationship to object O 55000321 in pl.version 55000321"
    Please help resolve.

    Hi Vincent,
    How did u solve this!
    Regards,
    Bharat

  • Active X Error when running web checkout/web reports

    Hi,
    I am installing BO Planning X1.5 against a SQL Server database.
    However, I am getting an Active X error when trying to launch web checkout/web reports.
    I get to the log on page and then get the error message:
    "There was an error initializing the ActiveX client"
    Do you know why this would be? (I am able to get to the web checkout/web reports from the server, however not on any client machine)
    Thanks.

    Hi Ravi,
    from Note 917950:
    Test Standard Web Template in BI (both directions)
    This test will check the ABAP to Java and Java to ABAP communication. Additionally, this check will ensure that the new Java-based BEx Web runtime is working.
    1. Run Report RS_TEMPLATE_MAINTAIN_70
    2. Enter Template ID 0ANALYSIS_PATTERN
    3. Choose Program / Execute
    4. Choose Analyse / Validate
    5. Choose Analyse / Execute in Debug Mode
    A Web Browser is opened and you have to logon to the Portal. Finally, an empty Analysis Pattern (without data) should appear.
    Error messages during executing Web Template
    If only a blank screen or message "Access Denied" appears, see note 872043.
    If message "Error while loading the Web template "0ANALYSIS_PATTERN" (return value "5")" appears, activate Content (see topic Additional Information below).
    --> I think you have to activate the Content....
    Activate Web Template of BI Content
    Please perform the following steps to activate a Web Template of BI Content:
    1. Logon to BI System
    2. Start transaction Data Warehouse Workbench (transaction code RSA1)
    3. Choose register Business Content (left pane)
    4. Select Object Types
    5. Expand BEx Web Template in tree (middle pane)
    6. Double click on Select Objects
    7. Choose 0ANALYSIS_PATTERN (or any other Web Template of the BI Content)
    8. Object will be transferred to right pane
    9. Press button Install / Install to activate the Web Template
    Now, you can execute the activated Web Template.
    Links:
    "0ANALYSIS_PATTERN"
    Re: template  0ANALYSIS_PATTERN returns errors
    Error loading template 0ANALYSIS_PATTERN while broadacasting through WAD
    917950 - SAP NetWeaver 2004s: Setting Up BEx Web
    [SAP NetWeaver Setting Up BEx Web|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/ca6de811-0c01-0010-43b2-c64584eef943]
    Re: Question about Bex Web Setup
    Regards
    Andreas

  • DateValidator, Configuration error: Incorrect formatting string

    Hi guys,
    I am struggling with a DateValidator issue, I hope someone can help me
    Here is the parts of code needed to check what's wrong:
    public const DATE_FORMAT:String = "DD/MMMM/YYYY";
    <mx:DateFormatter id="dateFormatter" formatString="{DATE_FORMAT}" />
    <mx:DateValidator
    id="firstDateValidator" inputFormat="{DATE_FORMAT}" required="true"
    source="{firstDate}" property="text" />
    <mx:DateFiel id="firstDate" labelFunction="doLabel" />
    private function doLabel(item:Date):String
         return dateFormatter.format(item);
    I need to format and validate the following example: 13/January/2011
    When I use DATE_FORMAT = "DD/MM/YYYY", I have no problem to format and validate the Datefield, I have 13/01/2011.
    But when I use DATE_FORMAT = "DD/MMMM/YYYY", I have the following error message with the validator (the formatter is working well):
    Configuration error: Incorrect formatting string.
    Thank you very much for your help.

    Standard Flex validator out of the box is very fragile when it comes to validate "non-standard" date formats. You should extend this DateValidator with your own version like I do, that re-implements "format" function call and rewrites private function "validateFormatString" from the the scratch.
    Here is the my implementation of this function:
    private static function validateFormatString(validator : DateRangeValidator,
                                                         separatorSign : String,
                                                         formatPartsArray : Array,
                                                         baseField : String) : ValidationResult {
                var formatPartsValidationObject : Object = {dayValid : false,
                    monthValid : false,
                    yearValid : false};
                var formatsLength : int = formatPartsArray.length;
                var mask:String;           
                for (var i : int  = 0; i < formatsLength; i++) {
                    mask = formatPartsArray[i];               
                    switch (mask) {
                        case "M" :
                        case "MM" :
                        case "MMM" :                       
                        case "MMMM" :
                            formatPartsValidationObject.monthValid = true;
                            break;
                        case "YY" :
                        case "YYYY" :
                            formatPartsValidationObject.yearValid = true;
                            break;                   
                        case "D" :
                        case "DD" :                   
                            formatPartsValidationObject.dayValid = true;                       
                            break;                       
                if (formatPartsValidationObject.monthValid &&
                    formatPartsValidationObject.dayValid &&
                    formatPartsValidationObject.yearValid) {
                    return null; // Passes format validation
                } else {
                    return new ValidationResult(
                        true, baseField, "format",
                        validator.formatError);
    formatPartsArray is calculated as follows:  
    var formatPartsArray : Array = inputFormat.split("/");

  • Error "424 Object Required" when opening journal report using HFM 11.1.2.1

    Hi experts,
    I've installed EPM 11.1.2.1 along with Hyperion Financial Management and Financial Reporting on an virtual machine (OS is windows server 2008),
    when I logon to workspace and tried to open an journal report in HFM-Format, appears error message as follows:
    An error has occurred. Please contact your administrator
    Error Number:424
    Error Description: Object required
    Error Source: Microsoft VBScript runtime error
    Page On which Error Occurred:../reports/CheckStatus.asp
    I've checked oracle support and found article ID 967025.1 describing almost the same issue of mine,
    but the suggested solution was to add workspace and HFM web server to trusted site. (I'm using IE9)
    I did so as well as other recommended browser settings but still the error remains.
    The article said the solution was applied to Version 9.2.0.0 to 11.1.1.3, so I'm not sure if version 11.1.2.1 has other causes or solutions.
    Could experts provide any ideas?

    I believe you might have already done with the below steps, but please reconfirm:
    1) Ensure, that both the Hyperion Workspace URL AND the HFM webservername i.e(Http://<hfmwebservername>/hfm) is added in the sites button in the Trusted sites option. under Security tab.
    2) Here is a list of Internet Explorer settings which are recommended to be set on the client machine:
    1. Configure browser to check for new version every time user visits a page
    * Open Internet Explorer
    * Go to Tools > Internet options > General
    In 'Browsing history' section select 'Every time I visit the webpage'
    * Click Ok, then Apply.
    2. Disable default pop-up blocking
    * Open Internet Explorer
    * Go to Tools > Internet options > Privacy tab
    Uncheck 'Turn on Pop-up Blocker'
    3. Add workspace URL to trusted sites
    * Open Internet Explorer
    * Go to Tools > Internet options > Security tab
    * Select Trusted sites from Select a zone to view or change security settings.
    * Type your workspace URL in form http://workspaceserver:portnumber in 'Add this website to the zone'
    * Uncheck 'Require server verification (https:) for all sites in this zone'
    * Click Add, then Close.
    * Click Ok and Apply.
    4. Minimize security setting for trusted sites
    * Open Internet Explorer
    * Go to Tools > Internet options > Security tab
    * Select Trusted Sites from select a zone to view or change security settings
    * Select custom level
    * From Reset to list select Low
    * Click Ok
    * Click Apply, then Ok
    5. Customize security settings
    * Open Internet Explorer
    * Go to Tools > Internet options > Security Tab > Custom Level
    * In 'Miscellaneous' section enable the option "Allow script-initiated windows without size or position constraints"
    * In 'ActiveX controls and plug-ins' section enable “Run ActiveX controls and plug-ins” and “Script ActiveX controls marked safe for scripting.”
    6. Enable option "Always allow session cookies".
    * Open Internet Explorer
    * Go to Tools > Internet options > Privacy Tab > Advanced > Check the "Override automatic cookie handling" and accept the first and third party cookies and check the "Always allow session cookies" option.
    7. Disable option "Enable Native XMLHTTP".
    * Open Internet Explorer
    * Go to Tools > Internet options > Advanced Tab > Uncheck the option "Enable Native XMLHTTP"
    If still facing the same issue, perform the below action plan:
    1) Give full permission to Filetransferfolder and try generating the reports.
    2) Add the Everyone user and dcom user to BIPubSystemReports.
    DCOM Config-> BIPubSystemReports-> Security tab-> add the users in Launch and Activation Permission, Access permissions and Configuration Permissions.
    Best regards.

  • Error ACLContainer: 65315 does NOT EXIST in  the Object Cache for parentID:

    Expert,
    I did the following steps to upgrade the OWB repository from 10g to 11g
    • Created a dummy workspace in the 11.2 repository
    • Created users in the destination environment
    • Run Repository Assistant against the 11.1 source database
    • Then selected *“Export entire repository to a file”* and selected the MDL(10g) to import
    After 99% of completing I have got the below error
    Error ACLContainer: 65315 does NOT EXIST in  the Object Cache for parentID: 65314
    Please let me know the solution.
    Thanks,
    Balaa...

    Hi I had the same error and worked on it for almost a week with no success but there is few work around for this try it it might work for you.
    Step 1>Run a health check on OWB 10.2 enviroment(make sure you clone your OWB 10.2 enviroment and then do this healthcheck ,these checks are tricky )
    refer
    Note 559542.1 Health Check of the Oracle Warehouse Builder 10.2 Metadata Repository
    This will give you info about your missing ACL
    Step 2> download these two scripts fixLostACLContainer.sql ,fixAllACLContainers.sql
    please refer :
    Note 559542.1 Health Check of the Oracle Warehouse Builder 10.2 Metadata Repository
    OWB 10.2 - Internal ERROR: Can not find the ACL container for object (Doc ID 460411.1)
    Note 754763.1 Repository Cleanup Script for OWB 10.2 and OWB 11.1
    Note 460411.1 Opening Map Returns Cannot find ACL Containter for Object
    Note 1165068.1 Internal Error: Can Not Find The ACL Containter For for object:CMPPhysical Object
    It might resolve this ACL issue but it did not work for me.
    If none of these work then
    Perform export from design center of OWB 10.2 and import through design center of OWB 11.2.(ONLY OPTION)
    It worked for me.
    Varun

Maybe you are looking for

  • Profit center line items are not displaying in KE5Z

    HI Eperts, we are executing tcode KE5Z. System is not displaying any line items. because we have missed out in configuration updation of line items and on line transfer check boxes activation in 1KEF. please advise how we have to retreive whole data

  • Error of Creating Data Server for XML

    Hi all, When I want to create a new data server for XML in ODI, the error occur. error information: connection failed java.sql.SQLException: Unexpected token: EMP_TABLE in statement [create EMP_TABLE] My JDBC url is: jdbc:snps:xml?f=../demo/xml/MOP/M

  • Constants reading in abap report

    Hello All, i have developed a custom report which is having the feilds like pernr,workdate,time these all fields it is fetching from catsdb table adn displaying it in alv grid display,now my requirement is i need to display a consta called break time

  • I have the following message on my iPad: "iPad is disabled connect ti iTunes"

    I have the following message on my iPad: "iPad is disabled connect to iTunes" but when I connect to iTunes i have a message asking me to log on my iPad. I cannot slide my iPad to key in the passcode. what should I do?

  • Chronological key and hierarchy

    Hi Team, I have few questions on OBIEE can any body reply please Is it possible to create two hierarchy for one dimension table...? Can we create one hierarchy for two dimensional table..? why we have to enable the cronological key for time series fu