ODI Column Reverse Issue

When reverse engineering from an synonym on the columns tab I get a message the that reads "The directory HYODI specified in your schema does not exist." Does anyone know where I need to specifiy this? I've looking the logical architecture and I don't see anyplace where this would apply. Any help would be much appreciated.
Edited by: user10921375 on Mar 20, 2009 1:14 PM

Guru -
You described what my problem is. I followed the thread and added the includesynonyms and true to the property tab. Then saved, exited, and restarted ODI. I still receive the same error message. Would you suggest a reinstall of the driver?
The fact that is says the directory then my schema name is confusing? Why would it look for a directory with my logon name? My logical and physical are pointing correctly.
Edited by: user10921375 on Mar 23, 2009 8:25 AM

Similar Messages

  • ODI planning reverse issue

    hi,
    When i try to reverse the planning app using RKM Hyperion Planning.
    On reversing i could not find Version/Year/ Period as datastores after reverse.
    Im using 11.1.1.2.0.
    if it can be reversed automaticly, how can i load them into my model? add them manually?
    i saw some tickets here with same issue, but seems no useful answer, can someone help me.
    thank you

    Those are available from version 11.1.1.3
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Oracle APEX 4.0  -  Interactive Report - Table Column Filter Issue

    Environment: Oracle APEX 4.0  -  Interactive Report - Table Column header Filter Issue
    We have developed an interactive report using Oracle APEX 4.0, which contains a record count of around 3,000 Rows. All the rows values are unique in nature. When we try to filter the same with the help of column header filter option available in the interactive report,We get only 1000 records.
    Could some one help us, why this behaviour under APEX Table Column Header Filter as if it does not display beyond 1000 distinct values.
    Is there a way or workaround on how to get all the records in the column header filter?
    Thanks in advance.
    Krish

    Hi
    Thanks for the advice and this issue has been moved to the below URL
    Oracle APEX 4.0 - Interactive Report - Table Column Filter Issue Posted: No
    Krish

  • Finder Column Resizing Issue

    I've noticed that now, in Column view in Finder, if you resize a column to a larger size for example, and then click on a Folder, the next column will be the same size as the previous column that was made wider. However, most of the time, it is just that folder I needed to resize and the subsequent folders, I do not need to. Is there a way to change this behavior?

    Hello:
    Could you detail a little bit more about the column sizing issue you are having?

  • Material Reverse Issue

    I had a issue with a reverse issue 262 and it put the material into  914 bin(GI area for Production Order).We tried LT10 but error message 'System cannot find source bin".
    Please Help!
    Kenny

    Hi,
    If the quantity of quant in 914 is negative (-2pc) you cannot move it...that's all.
    You mentioned in your first message that you reversed the goods issue. If you reversed the goods issue and the stock level in 914 was zero before the reverse movement you should have a +quant in 914.
    Isn't it possible that you posted GI (e.g. mvt 261 10 pcs) --> the stock became negative --> you reversed only part of the GI quantity (e.g. 262 8 pcs) --> alltogether the stock level is negative (-2 pcs).
    Generally, if you post GI in this scenario:
    1. A negative quant appears in 914
    2. A TR is created (if you process the TR, a TO will be created and the stock will be transferred from "normal" storage type to 914)
    So, if you process the first TR (that is created for the GI) you will move the consumed qty in 914 (10 pcs). In this case you will have 8 pcs in the example.
    remarks:
    a) Whether a TR is created or not depends on your settings in WM/IM interface (SPRO > LE > WM > Interfaces > IM > Define Movement Types).
    b) You can check the created TRs in trx LB10
    Regards,
    Csaba

  • Is there still no fix to the column resizing issue?

    I checked the initial bug report about it and didn't see anything. I also didn't see it addressed in the most recent update notes. I know about the zoom workaround but that's really tedious. This is annoying me enough that I'm seriously considering dropping premium until it's fixed.

    Hello:
    Could you detail a little bit more about the column sizing issue you are having?

  • Odi 10g reverse Synonyms

    Hi everyone,
    I want to reverse oracle synonyms.I looked for these links:
    https://kr.forums.oracle.com/forums/thread.jspa?threadID=842533
    Can't Reverse-Engineering Synonyms from Oracle 10g
    First I have reversed just synonyms and ı can see records of synonyms when I clicked "view data" on model.
    I have added key=includeSynonyms and value = true on the topology data source.
    But I can't see columns of Synonyms.
    Could anyone help me to solve this problem?
    Regards

    Mostly you should always try to reverse engg a entity by connecting to the physical schema it exists into.
    which is the version of your ODI and Database.?

  • SCD Column Updation Issue

    Hi
    I have a query regarding updation of SCD columns.
    After executing the interface Actually I am able to get data in my target SCD columns
    Start_Date-:System Date
    End_Date-:2400-01-01 00:00:00.0
    End_Date-:1
    but if i make changes in my source data the End_Date and End_Date records are not reflecting with changes.
    I am using IKM "IKM Oracle Slowly Changing Dimension"
    In "Update existing rows" command code is :-
    update     <%=snpRef.getTable("L", "TARG_NAME", "A")%> T
    set     (
         <%=snpRef.getColList("", "T.[COL_NAME]", ",\n\t", "", "(((SCD_UPD) and !TRG) and REW)")%>
         <%=snpRef.getColList("", "T.[COL_NAME]", ",\n\t", "", "(((SCD_UPD) and TRG) and REW)")%>
         ) =      (
              select     <%=snpRef.getColList("", "X.[COL_NAME]",",\n\t\t\t","","(((SCD_UPD) and !TRG) and REW)")%>
                   <%=snpRef.getColList(",", "[EXPRESSION]",",\n\t\t\t","","(((SCD_UPD) and TRG) and REW)")%>
              from     <%=snpRef.getTable("L", "INT_NAME", "A")%> X
              where     <%=snpRef.getColList("", "X.[COL_NAME]\t= T.[COL_NAME]", "\n\t\tand\t", "", "SCD_NK")%>
              and     X.IND_UPDATE     = 'U'
    where     (<%=snpRef.getColList("", "T.[COL_NAME]", ", ", "", "SCD_NK")%>)
         in     (
              select     <%=snpRef.getColList("", "S.[COL_NAME]", ", ", "", "SCD_NK")%>
              from     <%=snpRef.getTable("L", "INT_NAME", "A")%> S
              where     S.IND_UPDATE     = 'U'
    <%=snpRef.getColList("and\t", "T.[COL_NAME]\t= 1", "\nand\t", "", "SCD_FLAG")%>
    <%=snpRef.getColList("and\t","[COL_NAME]\t= to_date ('01-01-2400', 'mm-dd-yyyy')","\nand\t","","SCD_END")%>
    Can anyone find where i am doing wrong??
    Thanks in advance
    Edited by: user10220907 on Dec 22, 2008 1:47 AM

    Hey rahulb216,
    Thanks for the question. If you are experiencing issues updating your iPhone, see this resource:
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    Thanks,
    Matt M.

  • Presentation variable in column formula issue

    Hi,
    I'm having an issue about putting a presentation variable in a column formula. I'm using obiee 11.1.1.7.141014
    I'm adding a text in a formula column where I use two presentation variables: pPeriodo and pAno
    pPeriodo invoques the month selected in a prompt and pAno the year. I have to compare different years, so in one member I use @{pAno} when is the selected year and @{pAno-1} when is the prior year.
    The result of this (please see the header of the 2nd column):
    The problem is when Icompare to next years. So my issue happens when I do an addition to the presentation variable: @{pAno+1}
    It doesn't do the sum; it concatenates the value as you can see in the following images
    If anyone have a workaround about this, please share.
    Regards,
    Miguel

    Hi Joven
    Try @{pAno}+1 instead of @{pAno+1}
    Regards
    Rajagopal

  • Accrual Reversal Issue -F.81 -Urgent please

    Hi,
    I have made a accrual document in the begining of september and tried to reverse in month end.
    But the issue issue..while trying to reverse ,the Accrual document is showing under Docs which cannnot be reversed.
    So what should i do  kindly help me..
    Thanks
    Pratima
    Edited by: SAPGURU on Oct 19, 2008 7:53 AM

    Hi thanks for your mail.
    I did the same by giving the referance number.but it is not showing under "which can be".even it is showing "which can not be" portion..
    under the document i am able to see one message "F5-152:"Document number 3000 1000000007 2008 was already assigned"
    this is the message which i am able to see under the document.
    For your information: in the above message 3000 is the company code.
    please advice me,is there any problem in document number.
    Thanks
    Prathima

  • ODI - Import & Export issue

    Hi
    I am using ODI in two environments (Development & Test, both are in different servers).
    In Development, i have Master repository with Internal ID = 0 & Work repository with Internal ID =1
    In Test environment, i have Master repository with Internal ID = 0 & Work repository with Internal ID =1
    I tried to Export the Project & Models from Development, it was successfully completed. I placed those files in Test environment path.
    I have succesfully imported the Models in the ODI Test environment. But, when i tried to Import Project, i faced the below error
    XML Import Error:
    com.sunopsis.core.m: This import action has been cancelled because it could damage your repository (problem with the identifier sequences)
    Can anyone help me what actions need to be taken to Import the Project without any issues in detail with the steps?
    Thanks
    Dhamu

    Hi Dhamu,
    Its a pure ID clash, since ur DEV and TEST repository ID are same, its should be different across environment , say DEV Master-0, Work-1 and TEST Master-2, Work-3 something like that.
    You need to flush the TEST repositories and create a new repositories with UNIQUE IDs.
    Have a look,
    Migrate ODI project - import forbidden
    Thanks,
    Guru

  • Incoming Payment Reversal issue

    I have a Incoming Payment that I need to reverse.  I reversed the Deposit,  but when I try to reverse the payment,
    a message is dieplayed "Can Not Cancel, One of Credit Vouchers was Cashed"
    The both the Invoice and Payment were generated in the current month.  There are no other transactions applied against the Invoice,
    What am I missing and how do I resolve this issue/ reverse the payment?
    Thanks in advance!!
    Dana

    Dana,
    Hope these threads could shade you some lights:
    Re: Bounce check (insufficient fund) in banking
    Re: A/R -NSF
    Re: Deposit and Incoming Payment
    Thanks.
    Gordon

  • Customer Incoming Payment Reversal issue

    Hi Friends,
    I cleared accounting document for customer incoming payment using F-28. and there is some problem so we want to reverse the same.
    how can we reverse the Customer Incoming Payment
    Thanks & Regards
    Vishal

    Hi,
    That menas one of the line item of your F-28 document has been cleared with another clearing document.
    Go to FB03 and enter your Doc no, CC, FY
    Click on the customer line item, and see there will be fields called cleareing document no and clearing date. Note down that document number.
    Now go to FBRA and give that clearing doc no and do reset and reversal.
    Then use FB08 to reverse your F-28 original entry.
    This will solve your issue.
    Thansk,
    Srinu

  • ODI SQL LDR issue

    Hi Guys,
    I am trying to load one csv file using sqlldr LKM and facing issue at Call Sqlldr step
    Error Message is:
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (most recent call last):
    File "<string>", line 22, in <module>
    Load Error: See Y:/BTLB_PLANS Product Codes ( A CODE LIST).log for details
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:322)
         at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:170)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java:2473)
         at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:48)
         at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:1)
         at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2913)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2625)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:561)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:464)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2093)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:366)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:300)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:292)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:855)
         at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)
         at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:83)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: Traceback (most recent call last):
    File "<string>", line 22, in <module>
    Load Error: See Y:/BTLB_PLANS Product Codes ( A CODE LIST).log for details
         at org.python.core.PyException.fillInStackTrace(PyException.java:70)
         at java.lang.Throwable.<init>(Throwable.java:181)
         at java.lang.Exception.<init>(Exception.java:29)
         at java.lang.RuntimeException.<init>(RuntimeException.java:32)
         at org.python.core.PyException.<init>(PyException.java:46)
         at org.python.core.PyException.doRaise(PyException.java:219)
         at org.python.core.Py.makeException(Py.java:1166)
         at org.python.core.Py.makeException(Py.java:1170)
         at org.python.pycode._pyx0.f$0(<string>:59)
         at org.python.pycode._pyx0.call_function(<string>)
         at org.python.core.PyTableCode.call(PyTableCode.java:165)
         at org.python.core.PyCode.call(PyCode.java:18)
         at org.python.core.Py.runCode(Py.java:1204)
         at org.python.core.Py.exec(Py.java:1248)
         at org.python.util.PythonInterpreter.exec(PythonInterpreter.java:172)
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:144)
         at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:322)
         at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:170)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java:2472)
         at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:47)
         at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:1)
         at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2913)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2625)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:558)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:464)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2093)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:366)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:300)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:292)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:855)
         at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)
         at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
         ... 1 more
    and Code:
    import java.lang.String
    import java.lang.Runtime as Runtime
    from jarray import array
    import java.io.File
    import os
    import re
    ctlfile = r"""Y:/BTLB_PLANS Product Codes ( A CODE LIST).ctl"""
    logfile = r"""Y:/BTLB_PLANS Product Codes ( A CODE LIST).log"""
    outfile = r"""Y:/BTLB_PLANS Product Codes ( A CODE LIST).out"""
    oracle_sid=''
    if len('UREPDEV')>0: oracle_sid = '@'+'UREPDEV'
    loadcmd = r"""sqlldr 'REDW_DA_OWNER/<@=snpRef.getInfo("DEST_PASS") @>%s' control='%s' log='%s' > "%s" """ % (oracle_sid,ctlfile, logfile, outfile)
    rc = os.system(loadcmd)
    if rc <> 0 and rc <> 2:
         raise "Load Error", "See %s for details" % logfile
    # Init Vars
    nbIns = 0
    nbRej = 0
    nbNull = 0
    strprt = ""
    maxAllowedError = r"""0"""
    c = 0
    flag = 0
    # Open log file
    f = open(logfile, "r")
    try:
         lines = f.readlines()
         for line in lines:
              if line.rstrip().upper().endswith(r"""REDW_DA_OWNER.TC$_0TEST:""".upper()):
                   flag = 1
                   c = 0
              if flag == 1:
                   if c > 0 and c <= 4:
                        if c == 1 :
                             nbIns = int(re.findall("\d+", line)[0])
                        elif c == 2:
                             nbRej = int(re.findall("\d+", line)[0])
                        elif c == 4:
                             nbNull = int(re.findall("\d+", line)[0])
                             break
              c+=1
         strprt = "\n\tIns:\t%s\n\tReject:\t%s\n\tNullField:\t%s" % (nbIns, nbRej, nbNull)
    finally:
         f.close()
    # if some rows has been rejected due to invalide data, check KM option LOA_ERRORS
    if rc == 2:
         if nbRej > int(maxAllowedError):
              raise strprt
              break
    I am using LKM File to Oracle(SQLLDR)
    Thanks in advance

    error is saying:
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (most recent call last):
    File "<string>", line 22, in <module>
    Load Error: See Y:/<file_name>.log for details
    and no log file is created for that.
    Few more things to add.
    We have 2 different boxes. 1. ODI box (different server address)
    2. DB box (different server address)
    and Sql developer is installed on DB box. I am able to use SQLLoader utility through SQL Developer.
    But when I am using ODI to use sql ldr through LKM SQL to Oracle (Sqlldr).
    It is getting failed at 6th step i.e. Call sqlldr.
    Error is : org.apache.bsf.BSFException: exception from Jython:
    Traceback (most recent call last):
    File "<string>", line 22, in <module>
    Load Error: See<file_name>.log for details
    but to my surprise all files were created at the folder except .log file.
    Can anybody help me to solve this issue.
    This is very urgent.
    Is this because sqlldr is not accessible to ODI then how .ctl & .bad files are created.
    I will really appreciate your help. it is bit urgent to solve this issue.
    Edited by: 965549 on Oct 28, 2012 10:36 AM

  • ODI agent creation issue

    Hi,
    I am trying to create ODI agent in Windows. I have followed the steps in ODI set up document. It has launched the server. Now I am trying to create that as a windows service. But I am getting following error message.
    I ran the followiing the command line
    <ODI_HOME>\bin\agentservice -i -s Sched_Agent 20910
    The error I am getting is
    "FATAL | wrapper | The argument 'Files\Java\jdk1.5.0_12\bin\java.exe' is not a valid property name-value pair."
    I have 10.1.3.5.5
    My ODI_JAVA_HOME is pointing to C:\Program Files\Java\jdk1.5.0_12. Is this the issue for the error
    Anyone knows why its happening.
    -app
    Edited by: user6401072 on Jul 28, 2010 11:35 AM

    The reason is becuase you JDK path is some thing like this c:\program files\Java\jdk1.5.0_12\bin\java.exe'
    so what is the happening becuase of space between program and files its not picking up the correct JDK path .
    Either change the path of JDK installation or
    go to your odiparam path and go to this line
    if "%ODI_JAVA_HOME%" == "" set ODI_JAVA_HOME="c:\program files\Java\jdk1.5.0_12"
    or
    if "%ODI_JAVA_HOME%" == "" set ODI_JAVA_HOME='c:\program files\Java\jdk1.5.0_12'
    i dont remember exactly whether single or double quotes but try and let me know if that helps you

Maybe you are looking for

  • Digital signatures and wet ink signatures

    HI all, I am in the process of converting our paper checklists into fillable pdf forms.  Everything is working well, but Im trying to get my head around digital signatures. Ideally I just want to click the signature part, choose a user from a list, e

  • MYOB AccountEdge - Sharing data file with remote Windows PC

    I use MYOB AccountEdge in a Mac environment at my office. Bookkeeper uses MYOB AccountEdge in a PC environment. We both would like to be able to have access to my MYOB data file. Simultaneous access to the file is not a requirement. We're not in the

  • Mainstage 2.1.3 - an error occurred Result code = -39

    mainstage 2.1.3 - an error occurred Result code = -39  . What does this mean. How can I find out what error messages mean. And what can I do to fix it. My session became very unstable- previously saved versions (lighter ) were stable but still got er

  • Images not opening on external monitors correctly

    I having an issue with CC. When electing in the preferences to not open image in Tabs. The images open with only about 25% of the image area showing. Forcing me to (command) 0 for full to screen preview or (command) +/- to see the image. I am not tal

  • Filenaming problem when publishing to hard disk in LR4

    I want to export (publish) a collection of photos from LR4 to a photo album on my iPad. I use the method that Russell Brown promotes in his nice video on the subject (for LR3). The key to making this work, as he points out, is to assign a sequential