ODI Context Issue

Hi
I am using ODI for data conversion from legacy. We have done development and testing on INSTANCE A and created the context for A. its worked fine. Now I am deploying all things on INSTANCE B and created contest B.While running the interface with context B is still referring the context A.It is creating flow table on instance A and showing error for instance B that flow table not exist.
This thing is working fine for some other conversion element with the steps. But for some conversion elements it throwing flow table error. Any input will be appreciated.
Edited by: VRai on Nov 16, 2008 7:11 AM

Hi VRai
Take a look if, at interface, the context isn't fixed.
Just click on each Interface table (source and target) and be sure that, at propriety window, the context is set to "Undefined"
Does it help you?

Similar Messages

  • ODI Licensing Issue

    Hi,
    we are using ODI 10.1.3.5 version. I am facing ODI Licensing Issue. Can you any one suggest me how to update Licensing and its cost of the tool ??.

    Hi ,
    You need to contact Oracle Sales team base out from your region .
    Get the contact details from
    http://www.oracle.com/us/corporate/contact/global-070511.html
    For more information about licensing visit
    http://www.oracle.com/corporate/pricing/index.html?origref=http://www.oracle.com/us/corporate/contact/global-070511.html
    http://www.oracle.com/corporate/lms/index.html?origref=http://www.oracle.com/us/corporate/contact/global-070511.html
    Thanks,
    Sutirtha

  • ODI 11g, Issue with Load plan variable in CASE WHEN STEP

    Hi,
    I am trying to retrieve value of the current context using the following code in refreshing variable:
    Variable name: Context
    Refreshing Code: select  '<%=odiRef.getContext( "CTX_Name" )%>'  from dual
    The variable is returning correct results when I refresh / Call it as part of Run Scenario step.
    Requirement: I want to use the variable Context in CASE step, depending on the value it results I want to execute a selective set of scenarios. I have defined case when steps per the requirements.
    Issue: The behavior of the variable is not as expected when used in CASE WHEN step. Load plan execution always triggers only ELSE part of CASE WHEN step.
    I have tried force refresh option in CASE STEP on the variable Context.
    Need your help and advice on how to fix the issue.
    Thank you,
    Bharani

    HI Bharani,
    Below link may helps you about load plan in ODI
    Help on Load Plan Execution
    Regards,
    Phanikanth

  • Graphical Message Mapping - context issue

    Hi experts,
    This is the source structure I have http://www.flickr.com/photos/45449397@N03/4273866518/
    Now, for the target segment, I need to do the following:
    For every block of EAN, I need to check the CHECK fields.
    So for EAN 1111, I see 4 X's. But I need to check the distinct values.
    So, 1 x for CHECK_1, 1 x for CHECK_2 and 1 X for CHECK_5.
    As soon as there is an X, I need to create a target. Even if there are several X values in the same column, I only need it once.
    --> target will be 3 different segment groups.
    For EAN 2222, I only need 1 target segment group.
    Please advice.
    Thanks a lot!
    Dimitri

    I was about to write this that you will face this blank issue.
    You have to remove those blank vaues. We have to choices to do that either we modify the current UDF or we write one more very samll advanced UDF of type "queue".
    If we go for option 2 then the new UDF2 code will be like this..
    while creating the udf just select the type as queue (you will see 3 options: single value, context & queue)
    I guess the default argument will be "var1", if yes you can leave it as it is and the just copy and paset the code.
    for (int i = 0; i < var1.length; i++ )
    if (! var1<i>.equals(""))
    result.addValue( var1<i> );
    Now the mapping will be something like this..
    Source --> old UDF--->RemoveContext--->new UDF --->Target.
    But if you like to go for option 1 then first change the type of UDF to Queue and then in the code modify the "return" statement e.g.
    if (RegTH.equals('X'))
    result.addValue( ExpTH );
    else if (RegHI.equals('X'))
    result.addValue( ExpHI );
    else if (RegLO.equals('X'))
    result.addValue( ExpLO );
    else if (RegPE.equals('X' ))
    result.addValue( ExpPE );
    else if (RegLOW.equals('X'))
    result.addValue( ExpLOW );
    result.addValue( ResultList.SUPPRESS );
    Note: for option 1 you have to set context of source value to their heighest level, so that there shouldn't be a context change. Or you can use RemoveContext.

  • ODI-HFM issue with decimal separator

    Hi all,
    We are extracting data from an HFM application A and loading into an HFM application B.
    Example:
    Data extracted from applicaiton A = 21.742.139,55
    Data loaded to application B (verified from Explore Data and Smart View) = 2.174.213.955,00
    Is data loading with ODI-HFM taking the regional settings?
    Any suggestions?
    If we extract data with HFM Client (logged on with the same user configured in HFM Data server) from application A and load it into application B, data is correct in application B.
    Current configuration is:
    - User preferences for HFM Application A
         * Decimal separator = ","
         * Thousands separator = "."
    - User preferences for HFM Application B
         * Decimal separator = ","
         * Thousands separator = "."
    - Regional settings of the server where the agent is running (English US)
         * Decimal separator = "."
         * Thousands separator = ","
    This setting is the same for all HFM application servers
    - ODI Datastore HFMDatastore
         * Decimal separator set to "," (this setting was changed to see if solved the issue)
    - ODI Datastore for staging table
         * Decimal separator set to "," (this setting was changed to see if solved the issue)
    - Language Settings for DB (American English)
    Thanks in advance!

    Hi Pls Use This
        For Decimal Separator other than . we need to Code to Convert , See This Code Below and Do the Code
    Private Function ReturnQty(ByVal Qty As String) As String
    Dim strQty As String
    Dim strSQL As String
    Dim strSeprtr As String
    Dim objRS As SAPbobsCOM.Recordset
    strSQL = "SELECT ThousSep FROM OADM"
    Set objRS = oSBC.oDICompany.GetBusinessObject(BoRecordset)
    objRS.DoQuery (strSQL)
    If Not objRS.EOF Then
            strSeprtr = objRS.Fields.Item("ThousSep").Value
    End If
    If strSeprtr = "," Then
    ReturnQty = Qty
    ElseIf strSeprtr = "'" And Len(Qty) <= 6 Then
    Qty = Replace(Qty, ",", ".")
    'Qty = Replace(Qty, ",", ".")
    ReturnQty = Qty
    Qty = Qty
    ElseIf strSeprtr = "'" Then
    Qty = Replace(Qty, "'", "")
    'Qty = Replace(Qty, ",", ".")
    ReturnQty = Qty
    Qty = Qty
    ElseIf strSeprtr = "." And Len(Qty) <= 6 Then
    Qty = Replace(Qty, ".", ",")
    Qty = Replace(Qty, ",", ".")
    ReturnQty = Qty
    ElseIf strSeprtr = "." Then
    Qty = Replace(Qty, ".", "")
    Qty = Replace(Qty, ",", ".")
    ReturnQty = Qty
    End If
    End Function
    Mohamed Zubair

  • ODI upgrade issue - 10.1.3.5 to 10.1.3.6

    Hi,
    I have tried to Upgrade to upgrade ODI 10.1.3.5 to version 10.1.3.6 using patch p9377717_101360_Generic.
    But facing issue while starting the master repository upgrade - the messages are coming as below -
    "error detected during repository upgrade "
    "com.sunopsis.tools.core.exception.SnpsRuntimeException: java.lang.NullPointerException" and so on...all weird messages.
    Can anybody please help me on this please?
    Also, I am upgrading ODI to 10.1.3.6 as we are supposed to load data into Essbase 11.1.2, will the existing version
    i.e. 10.1.3.5 will work with Essbase 11.1.2?

    Hi ORV,
    If I remember well, you can skip the repository creation as the upgrade assistant will upgrade your 10g cloned reps to 11g reps.
    You only need to install 11g standalone agent(s) to replace the 10g runtime agent(s).
    Regards,
    JeromeFr

  • Context issue in Jboss WAR

    I have Jb0ss 4.0.
    I have a folder structure like
    D:\jboss-4.0\server\strong_server\deploy\strong_ctx
    I have a war file named strong_ctx.war in the above directory
    Now i want to place one more war named stront_1.war in the same directory. But i am not able to find the context for the same
    Please throw some light on the context in JBoss and let me know how i can resolve the issue
    regards
    Aman

    Hi Bhargava,
    That measure would be "delegate measure". change that to SUM.
    For delegate measure we have to SUM function in WEBi variable. Otherwise multiple values cant be summed up.
    Muralidhar Reddy.

  • Security context issue when executing a SQL command in SQLCMD

    Simplified core issue below:
    I have myscript.sql that has:
    SELECT name FROM Sys.Databases
    GO
    USE mydatabase
    GO
    EXEC mystoredprocedure 'myparameter'
    GO
    When I open cmd.exe and use:
    SQLCMD -S localhost\myinstance -i script.sql
    It executes fine.
    When I open cmd.exe in C# using the Process class and execute the same command I get the following error:
    name
    master
    tempdb
    model
    msdb
    mydatabase
    (5 rows affected)
    Msg 916, Level 14, State 1, Server localhost\myinstance, Line 1
    The server principal "NT AUTHORITY\SYSTEM" is not able to access the database "mydatabase" under the current security context.
    Msg 2812, Level 16, State 62, Server localhost\myinstance, Line 1
    Could not find stored procedure 'mystoredprocedure'.
    And now the detailed explaination:
    I created an MSI which installs my custom application.
    During the bootstrap process, SQL Server 2012 Express is installed using the following parameters:
    /INSTANCEID="SQLEXPRESS"
    /ACTION="Install"
    /FEATURES=SQLEngine,Replication
    /HELP="False"
    /INDICATEPROGRESS="False"
    /Q="True"
    /QS="False"
    /ROLE="AllFeatures_WithDefaults"
    /ENU="True"
    /ERRORREPORTING="False"
    /SQMREPORTING=0
    /INSTANCENAME="SQLEXPRESS"
    /AGTSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
    /AGTSVCSTARTUPTYPE="Disabled"
    /ISSVCSTARTUPTYPE="Automatic"
    /ISSVCACCOUNT="NT AUTHORITY\NetworkService"
    /ASSVCSTARTUPTYPE="Automatic"
    /ASCOLLATION="Latin1_General_CI_AS"
    /ASDATADIR="Data"
    /ASBACKUPDIR="Backup"
    /ASTEMPDIR="Temp"
    /ASCONFIGDIR="Config"
    /ASPROVIDERMSOLAP="1"
    /SQLSVCSTARTUPTYPE="Automatic"
    /FILESTREAMLEVEL="0"
    /ENABLERANU="True"
    /SQLCOLLATION="SQL_Latin1_General_CP1_CI_AS"
    /SQLSVCACCOUNT="NT Authority\Network Service"
    /SECURITYMODE="SQL"
    /ADDCURRENTUSERASSQLADMIN="True"
    /RSSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
    /RSSVCSTARTUPTYPE="Automatic"
    /RSINSTALLMODE="FilesOnlyMode"
    /HIDECONSOLE
    /IACCEPTSQLSERVERLICENSETERMS
    /SAPWD="***************"
    The MSI then executes an Installer class DLL written in C# which restores a database to the SqlExpress instance.
    When the restore is completed, the Installer class then uses the Process class to launch CMD.exe and execute the SQL script using SQLCMD.
    Process vProcess = new Process();
    ProcessStartInfo vStartInfo = new ProcessStartInfo("cmd.exe");
    vStartInfo.Arguments = "/c set path=%path%;" + Context.Parameters["TargetDir"] + "\\; && sqlcmd -S LocalHost\\myinstance -i myscript.sql";
    vProcess.StartInfo = vStartInfo;
    vProcess.Start();
    vProcess.WaitForExit(30000);
    This is where I get the error mentioned above.
    However if I execute the same command manually by opening CMD.exe from the RUN command, it executes perfectly.
    I can not use -U or -P to supply a user / password, I MUST use integrated security.
    Additional info:
    Previously SQL Server 2008 Express has been in use for the bootstrapper, and this issue did not occur.
    The database the MSI restores is also built from SQL Server 2008. (Will be built from 2012 in the future.)
    Installation is performed on an account with administrative rights.
    Running the installer AS Administrator does not fix the issue.
    Any help would be greatly appreciated, as well please let me know if additional info is required.
    Thank you

    I'm having a similar issue where I'm using a batch file to execute commands to a group of servers. I can use the batch commands when updating MyDatabase but get the security context error when I try to update MyDatabase with a join to TheirDatabase except
    on servers where I am sysadmin.   Like I said, I can update MyDatabase as long as I don't join to TheirDatabase.
    Update A
    Set A.CCMCoderStaffSID = IsNull(B.StaffSID, -1)
    From MyDatabase.[R_Encounter].[VejdPfcsLinkageDataF19610x5] A
    Left Join ThierDatabase.Staff.Staff B on
    A.Sta3n = B.Sta3n and A.[CCMCoderF200IEN]= B.StaffIEN
    Error:
    Msg 916, Level 14, State 1, Server R04PHIDWH58, Line 1
    The server principal "MyDomain\ME" is not able to access the database "TheirDatabase" under the current security context.
    Line from batch:
    sqlcmd -S Server54 -d MyDatabase -i D:\ETLDevelopment\R04\Me\querytools\%RAWTablesScript%  -o D:\ETLDevelopment\R04\Me\UpdateSIDV1.txt

  • ODI Frustrating issue.

    Has anyone every come across this error:
    1 : 23000 : java.sql.SQLException: ORA-00001: unique constraint violated
    I ran my ODI a few times and it ran just fine, then i got some new data to run it against and i started to get this error and i continue to get this error...

    Hi TomCusick ,
    As said Ananda, ur tring to insert the same column values agian in the table(those columns specified as primary key).
    solution for this issue is
    1)Enhance the primary key by add some more column
    2)If you interested to update rest of the details of the same colum value records. then you can use IKM incremental update KM. use update mode to enabled.
    3) If you using the IKM control append KMs two option is there they are
    as I said in step1 and another one is removal of control option
    these solutions depend on your requirement.
    Thanks
    Madha

  • ODI - RKM Issue

    Hi,
    Am getting error while performing Reverse Engineering.
    system Configuration
    ODI 10.1.3.4.2
    Database: Oracle Enterprise Manager 10g
    Data Server Port : 11333
    Have confirmed that all required services are running properly as well as
    In case you want to take a look at error log, kindly check at the end of this post.
    Regards,
    Jitendra
    Error Log:
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 41, in ?
    com.hyperion.odi.planning.ODIPlanningException: java.lang.NullPointerException
         at com.hyperion.odi.planning.wrapper.PlanningWrapper.login(Unknown Source)
         at com.hyperion.odi.planning.ODIPlanningConnection.connect(Unknown Source)
         at com.hyperion.odi.common.ODIModelImporter.importModels(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java)
         at org.python.core.PyMethod.__call__(PyMethod.java)
         at org.python.core.PyObject.__call__(PyObject.java)
         at org.python.core.PyInstance.invoke(PyInstance.java)
         at org.python.pycode._pyx0.f$0(<string>:41)
         at org.python.pycode._pyx0.call_function(<string>)
         at org.python.core.PyTableCode.call(PyTableCode.java)
         at org.python.core.PyCode.call(PyCode.java)
         at org.python.core.Py.runCode(Py.java)
         at org.python.core.Py.exec(Py.java)
         at org.python.util.PythonInterpreter.exec(PythonInterpreter.java)
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:144)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.RuntimeException: java.lang.NullPointerException
         at com.hyperion.planning.HspJSHomeImpl.createSecurityAPI(Unknown Source)
         at com.hyperion.planning.HspJSHomeImpl.getSecurityAPI(Unknown Source)
         at com.hyperion.planning.HspJSHomeImpl.createHspJS(Unknown Source)
         at com.hyperion.planning.HspJSHomeImpl.getHspJSByApp(Unknown Source)
         at com.hyperion.planning.HspJSHomeImpl.getHspJSByApp(Unknown Source)
         at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
         at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at sun.rmi.server.UnicastServerRef.dispatch(Unknown Source)
         at sun.rmi.transport.Transport$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Unknown Source)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknown Source)
         at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
         at sun.rmi.server.UnicastRef.invoke(Unknown Source)
         at com.hyperion.planning.HyperionPlanningBean_Stub.Login(Unknown Source)
         ... 34 more
    com.hyperion.odi.planning.ODIPlanningException: com.hyperion.odi.planning.ODIPlanningException: java.lang.NullPointerException
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    -----------------

    Jitendra Bhagwat wrote:
    Thanks App & John.
    Now i can log onto Planning App.
    The issue was of Hyperion & Oracle Services. The services were running but without any effect. I just wonder how much patience is required to work with Hyperion & ODI, it took me several cycles of Start-Stop-Restart Services to get my Planning App. working.
    Now. my original problem still persist, error: Source not Found.
    I have gone through each and every step number of times, now any hints to troubleshoot this problem?
    Jitendra.It shouldn't need patience I have not come across these sort of stability issues, as long as the RMI service can communicate with the Planning application then usually there not many problems.
    Are you saying your error is now exactly the same as the first post??
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • ODI - UI Issue

    Hi,
    Could you please help me in understanding below issue.
    I have installed ODI 10.1.3.5 in my system and configured Master & Work repository successfully.
    I logged into Designer, when I right cilck on Package/ any object none of the options are coming.
    Thanks in advance.
    Regards,
    Uday

    Uday,
    Check the security manager and see if you have got yourself Designer Profile granted

  • Understanding ODI context

    I was reading about physical, logical schemas and context and came across one question.
    Logical schema is the alias for physical schema and we use logical schema on all our development work. eg if we need to change the credentials for the database then we need to change the physical schema only.
    Now what is the purpose of context?

    WAQ28 wrote:
    Thanks for explanation PeakIndicators.
    What do you mean by "If your Dev / Test / Prod environments have different source and targets" ?
    Please note that I am not doing any ODI project at the moment but I am learning this tool for the first time.On my project we have an eBusiness Suite Development environment, a Development Data Warehouse environment. I might define a context called 'Dev' which links these up.
    Then we have a seperate eBusiness Suite Test environment (we actually have 3 !) and a Test Datawarehouse environment, I might choose to define a context called 'Test' which links these up.
    Finally I have an eBusiness suite Production environment and a Production DataWarehouse, a context called 'Prod' to link these up.
    When Im developing interfaces I will run everything in the context of 'Dev' as I have contoll over the source data and I can mess around with the target system - The Datawarehouse.
    When I release the code to the testing team, they will play transactions in the eBiz Test environment and check the results in the Test DWH - They will run all the code in the context of 'Test'.
    Finally we will migrate the code into the Prod environment where the IT Support desk will monitor the operator log for everything running in a context of 'Prod'.
    Hope this helps.

  • Odi 10g Issue while implenting CDC on table

    Hi All,
    Am new to odi 10g ,
    Am getting following error while selecting journalize data only option in the interface
    Error:
    This data source is not journalized in this context .
    com.sunopsis.tools.core.exception.snpsSimpleMessageExcption:null
    Thanks
    Edited by: vam on Dec 24, 2012 1:03 AM

    Hi and welcome,
    You first have to journalize your datastore.
    You should follow a tutorial like this one : http://odiexperts.com/changed-data-capture-cdc/
    Hope it helps.
    Regards,
    JeromeFr

  • Xi4.1 Context Issue

    I have created a new universe using Information Design Tool 4.1 Build: 14.1.5.1568, this is my first full blown universe against an Oracle 11g database.
    It contains 69 tables, 119 joins and 12 contexts.  There are no issues in the DFX.  I have the customer table joined to 10 fact tables.  So the customer table is in 10 contexts plus an additional context just for the customer group of tables.
    When I try to pull just customer number into a webi report with nothing else, the query is joining customer to a fact table instead of just pulling the customer table.
    I am not getting prompted to select context.
    COMPARE_CONTEXTS_WITH_JOINS set to YES.
    Why aren't I just getting a select from customer in my webi report?
    Thank you,
    Roger

    We pulled in Decision First.  They took a look at my universe and found the issue.
    When creating filters, you have to go to the Properties tab and only select the options you want.  In my case, the filters are for use in reports, not the universe, so I had to uncheck "Use filter as mandatory in query"
    This solved my problem.

  • BPM Process Context Issue

    Hi Experts,
                   Can i use WDJ context as process context in BPM(Once i assigned WDJ component to a Task, i can able to see the WD context in Data types ) or we have to create a separate xsd in BPM. i came to know about this functionality so only asked.
                   Also i want to pass more values during starting of the process. I know it can be done through WS. Any other option is available?
    Regards,
    Arun

    Hi Arun,
    You are triggering the Process in WDJ with a webservice. so the values you assigned to the WS attributes in WD will be available in Start event of the Process.(not in the process context)
    Now you can have mapping between your start event and process context to get the data in process context and use it further steps.
    Hope it helps.
    Thanks.
    Priya

Maybe you are looking for