FDM 11.1.2 integration Import script error for strWorkTableName

Hello

I'm under FDM 11.1.2 with Essbase adapter connection ES11X-G4-G to Essbase 11.1.2.
Try to use the import integration script directly query a Microsoft SQL 2008 database.
Excerpt from script:
_________________________________________________________________
Function SQLImport (lngCatKey, dblPerKey, strLoc, strWorkTableName)

Dim cnss
Dim rs
Dim rsAppend
Dim DBLocation
Dim DBList
Dim SA
Dim SApswd
Dim strCNSS
Dim strSQL
Dim DateConvString

Define the cnss = CreateObject ("ADODB. Connection")
Set rs = CreateObject ("ADODB. Recordset')
Set rsAppend = DW. DataAccess.farsTable (strWorkTableName)
...
_________________________________________________________________

When I run the script via the Script on the Web Editor, I get:

Error: An error occurred while running the script:
-2147217865-data access error.
Online: 25

Line 25: Set rsAppend = DW. DataAccess.farsTable (strWorkTableName)

What is straight out of the guide of the administrator, hency my dilemma...

In addition, the error log contains the following error message:
* Start the journal entry for the Runtime Error FDM [2010-07-23 12:48:54] *.
-------------------------------------------------------------
ERROR:
Code...-2147217865
Description... Table does not exist.

Process... clsDataAccess.farsTable
The component... upsWDataWindowDM
Version.......................................... 1112
Thread........................................... 6620

IDENTIFICATION:
User............................................. XXXX
Name of the computer... XXXX
App Name......................................... XXXX
Client App....................................... WebClient

CONNECTION:
Provider......................................... SQLOLEDB
Database server... XXXX
Name of the database... XXXX
Trust connect... Fake
Connect status... Open connection

GLOBALS:
Location......................................... XXXX
Location ID... 749
Location Seg... 3
Category......................................... REAL
ID of the category... 12
Period... - Sept - 2009
Period ID........................................ 09/30/2009
POV Local........................................ True
Language......................................... 1033
User Level....................................... 1
All Partitions... True
Is Auditor....................................... Fake

No idea on the cause? Maybe something with the FDM installation.
Thank you in advance for your help!

Adam

Have you by chance tried to run the Workbench or the script of the web editor? If so, he would miss that the work table is not created until the import step is initialized.

Tags: Business Intelligence

Similar Questions

  • Integrated R Script error: cannot allocate vector of size 838,6 MB

    Hello

    I am using the linear model in Scripts embedded in R. In the linear model, there will be a column that depends on 7 selected variables. The table around a 115335 record. I get an error when I fire the select below saying query ' error RQuery: cannot allocate vector size Mo 838,6 '.

    Is there a limit on the number of records to move for prediction?

    My script looks like in below:

    Start

    sys.rqScriptDrop ('OOS_LD_Prediction');

    sys.rqScriptCreate ('OOS_LD_Prediction',

    "{function (dat, datastore_name)}

    MOD <-lm (OOS_LOST_DOLLARS ~ DAY_OF_WEEK + STORE + PEP_BRAND + ITM_VELOCITY_CLUSTER + STR_VELOCITY_CLUSTER + OOS_REASON + DAYS_OF_SUPPLY, dat)

    PRD <-predict (mod, dat = newdata)

    PRD [As.Integer (rownames (PRD))] <-prd

    RES <-cbind (dat, PRED = prd)

    }');

    end;

    /

    Select *.

    table (rqTableEval)

    cursor (select day_of_week, store, pep_brand, itm_velocity_cluster, str_velocity_cluster, oos_reason, days_of_supply, oos_lost_dollars

    of oos_aggr_fact).

    cursor (1 select as "ore.connect", "LP" as "datastore_name" of the double).

    ' select day_of_week, store, pep_brand, itm_velocity_cluster, str_velocity_cluster, oos_reason, days_of_supply, oos_lost_dollars, 1 PRED

    to oos_aggr_fact ',

    'OOS_LD_Prediction'));

    The error is generated:

    ORA - 20000:RQuery error

    Error: cannot allocate vector of size 838,6 MB

    ORA-06512: at "RQSYS. RQTABLEEVALIMPL', line 112

    ORA-06512: at "RQSYS. RQTABLEEVALIMPL', line 109

    20000.00000 - '%s '.

    Can someone help me with this please?

    Namrata,

    The key to the problem is STORE with 1408 distinct values. For STORING data, it is often that you want to predict a value for a particular STORE (in which case build you models of 1408), or group stores in regions (e.g., by State, County or country) and to build models on data associated with each region.

    To build 1 model by store, you can do this by using ore.groupApply.

    You can also build a map of the STORE of the REGION and use ore.groupApply by REGION.

    When you score, you select the template for the store in particular or the region.

    Mark

  • FDM integration Script error

    Hi Experts

    I want to import SQL data to FDM. When I ran the script for integration in FDM display < font color = "red" > "data access error. Online: 20 ' < / do >.

    I have created a. UDL file and connection test shows 'success.
    Which is exactly the problem that I don't know.
    1. the case where I am doing wrong?
    2. He must give to this path of the udl file in the Application of FDM?

    Below is the screenshot of the error of FDM

    http://www.Flickr.com/photos/84027801@N04/7692782026/in/photostream



    Here's the Script of integration

    Note: I changed the below < font color = "red" > red < / police > color highlighted fields in the script.


    -------------------------------------------------------------------
    Function SQLIntegration (lngCatKey, dblPerKey, strLoc, strWorkTableName)
    ‘------------------------------------------------------------------
    ' FDM integration Import Script:
    "Created by: Admin"
    "Creation date: 19/04/2004 14:18:39.
    ' Object: this integration import script connects to the example
    "SQL Server Northwind sample database and imports
    "the Orders in FDM table data source.
    ‘-----------------------------------------------------------------
    Dim cnSS ' ADO connection object
    Dim strSQL ' SQL string
    Dim rs ' Source system recordset
    Dim rsAppend ' FDM recordset
    ' Initialization of ADO objects
    Define the cnSS = CreateObject ("ADODB. Connection")
    Set rs = CreateObject ("ADODB. Recordset')
    'Open recordset object FDM work table can be added '.
    Set rsAppend = DW. DataAccess.farsTableAppend (strWorkTableName)
    'Connect to the SQL Server Northwind (our data source) database
    Dim StrConn
    strConn = "Provider = SQLOLEDB.1; Integrated Security = SSPI; Persist Security
    Info = False; »
    strConn = strConn & "Initial Catalog = < font color ="red"> Northwind < / police >; Data Source = < font color = "red" > LocalHost < / police >; »
    CNSS. Open strConn
    ' Create the source query string
    strSQL = "" Select * ".
    strSQL = strSQL & "FROM Orders"
    ' Recordset open source
    RS. Open strSQL, cnSS
    "Look for the data in the source system.
    If rs.bof AND rs.eof then
    "Give the error message
    RES. PlngActionType = 2
    RES. PstrActionValue = "no records to load!
    'Assign the return value of function '.
    SQLIntegration = False
    Exit Function
    End If
    ' Loops through the records in the source in the database Northwind (orders table) and
    Add to the FDM work table
    If it is rs.bof and not rs.eof then
    While Not rs.eof
    rsAppend.AddNew
    rsAppend.Fields ("PartitionKey") = RES. PlngLocKey
    rsAppend.Fields ("CatKey") = lngCatKey
    rsAppend.Fields ("PeriodKey") = dblPerKey
    rsAppend.Fields ("DataView") = "CDA".
    rsAppend.Fields ("Amount") = rs.fields ("Freight"). Value
    rsAppend.Fields ("Account") = rs.fields ("CustomerID"). Value
    rsAppend.Fields ("Entity") = rs.fields ("ShipCountry"). Value
    rsAppend.Fields ("Desc1") = rs.fields ("ShipName"). Value
    rsAppend.Update
    RS. MoveNext
    Loop
    End If
    "Give the success message
    RES. PlngActionType = 2
    RES. PstrActionValue = "import successful SQL!"
    'Assign the return value.
    SQLIntegration = True
    End Function
    --------------------------------------------------------------------


    Please do the needful.

    If you have any document integration FDM step by step, please share me to my email id [email protected]

    concerning
    Smilee

    Because you use Select *, I don't see what are the names of the fields in the SOR table. Did you double check that the domain name (dblAmt) for the amount in the table in the SOR field is correct?

    Published by: user10757003 on November 14, 2012 14:27

  • Gives the Script import FDM of oracle RDB to import - import has failed. Data not valid or empty content.

    Hi all

    I create an FDM interface to extract data from Oracle RDB and onto an essbase database. I feel that if you have to shoot the script import data of RDB, you must create an integration. So I created a script to import integration based on the example given in the FDM Document admin.

    The Script is as below:

    Function PSIP_TEST (lngCatKey, dblPerKey, strLoc, strWorkTableName)

    '------------------------------------------------------------------

    "Import oracle Hyperion FDM integration script:

    '

    ' Created By: admin

    "Creation date: 18/02/2014-18:00:33.

    '

    ' Object:

    '

    '------------------------------------------------------------------

    Dim cnSS ' ADODB. Connection

    Dim strSQL ' SQL string

    Dim rs ' Recordset

    Dim rsAppend ' tTB table add rs object

    'Initialize objects.

    Define the cnSS = CreateObject ("ADODB. Connection")

    Set rs = CreateObject ("ADODB. Recordset')

    Set rsAppend = DW. DataAccess.farsTableAppend (strWorkTableName)

    "To connect to the Oracle database

    CNSS. Open "Provider = OraOLEDB.Oracle.1; Password = PSIP_TST; Persist Security Info = True; User ID = PSIP_TST; Data Source = PSIP.

    ' Create the query string

    strSQL = "SELECT YEAR, COST_CENTRE, PROGRAMME_CODE, PROJECT_CODE, ACCOUNTS, AMOUNT FROM VW_PSIP_EBUDGET_ESTIMATES.

    «Get data»

    RS. Open strSQL, cnSS

    "Locate the data.

    If rs.bof and rs.eof then

    RES. PlngActionType = 2

    RES. PstrActionValue = "no records to load!

    Exit Function

    End If

    ' Loop through records and add table APCs to place DB

    If it is rs.bof and not rs.eof then

    While Not rs.eof

    rsAppend.AddNew

    rsAppend.Fields ("PartitionKey") = RES. PlngLocKey

    rsAppend.Fields ("CatKey") = RES. PlngCatKey

    rsAppend.Fields ("PeriodKey") = RES. PdtePerKey

    rsAppend.Fields ("DataView") = "CDA".

    rsAppend.Fields ("CalcAcctType") = 9

    rsAppend.Fields ("Account") = rs.fields ("ACCOUNTS"). Value

    rsAppend.Fields ("Entity") = rs.fields ("COST_CENTRE"). Value

    rsAppend.Fields ("UD1") = rs.fields ("COST_CENTRE"). Value

    rsAppend.Fields ("node2") = rs.fields ("PROGRAMME_CODE"). Value

    rsAppend.Fields ("UD3") = rs.fields ("PROJECT_CODE"). Value

    rsAppend.Fields ("Amount") = rs.fields ("Amount"). Value

    rsAppend.Update

    RS. MoveNext

    Loop

    End If

    "Loaded files

    RES. PlngActionType = 6

    RES. PstrActionValue = "import successfully!

    'Assign the return value.

    SQLIntegration = True

    End Function

    When I run the Script in the Script Editor, I get the following error:

    Error: An error occurred while running the script:

    -2147467259-data access error.

    Online: 19

    If I see in the error log, it is as follows:

    ERROR:

    Code... - 2147467259

    Description... ORA-00903: invalid table name

    Process... clsDataAccess.farsTableAppend

    The component... upsWDataWindowDM

    Version.......................................... 1112

    Thread........................................... 41900

    Nude of the line. 19 is as follows: Set rsAppend = DW. DataAccess.farsTableAppend (strWorkTableName) and, therefore, I thought that perhaps this is when I run the script in the Script Editor, perhaps that the value of the variable "strWorkTableName" does not get filled it is why it gives an error.

    So I ran the import stage in the Workflow, and Got the following error:

    Error: Failed to import. Data not valid or empty content.

    and there is no entry in the error log.

    I'm lost, need your help please.

    One last thing, I would like to ask is kindly please post if my connection string is correct, either:

    CNSS. Open "Provider = OraOLEDB.Oracle.1; Password = PSIP_TST; Persist Security Info = True; User ID = PSIP_TST; Data Source = PSIP.

    I read that FDM is a 32-bit product and will require a connection 32-bit oledb provider.

    FDM here is installed on a 64-bit computer and the provider that is used here in the connection string is 64-bit.


    Please help, my work here came to a fixed support. Kindly help

    That would mean that your 32-bit TNSNAMES. ORA file does not have a good connect descriptor for what you provide in the UDL file.

    Check your TNSNAMES 32bits. ORA file and make sure you have a good connect descriptor for the Oracle database.

  • Error using DW import script. Utilities.fParseString: Type mismatch: 'CLng.

    Is it possible to use CLng FDM import Scripts to convert a String data type to a Long data type, so that it can be evaluated numerically? Currently, I get the following error:

    Error:
    "Error: an error occurred importing the file."
    Detail: Type mismatch: 'CLng.
    Online: 13 "


    Script:
    Function TBNetwork (strField, strRecord)

    Dim Inga
    Inga = CLng (DW. Utilities.fParseString (strRecord, 8, 3, ","))

    If Inga > 62100 then
    TBNetwork = "Greater".
    On the other
    TBNetwork = "lower to."
    End If

    End Function


    CSV data file:
    Field1, Field2, Field3, Field4 sphere5, case Field6, Field7, Field8
    101, B1000, 62100, L0000, 401, C00001, IY002, '-10,000,000.00.
    101, B1000, 62100, L0000, 401, C00002, IY003, '-6,646,939.00 '.
    101, B1000, 62100, L0000, 401, C00003, IY004, '-55,100,000.00 '.

    Published by: Jubei on May 4, 2012 15:02

    What is the header line?

    Try

    Function TBNetwork (strField, strRecord)

    Dim Inga
    Inga = DW. Utilities.fParseString (strRecord, 8, 3, ',')

    If IsNumeric (Inga) then
    If CLng (Inga) > 62100 then
    TBNetwork = "Greater".
    On the other
    TBNetwork = "lower to."
    End If
    On the other
    RES. PblnSkip = True
    End If
    End Function

  • Conditional Script error map FDM

    Hi all

    We can import the data of EBS to HFM however ERPI using FDM.

    We used conditional Basic scripts of the ebs to FDM data import.

    This scripts used in FDM for PEAK dimension between the logic of script.script conditional mapping is a particular account are linked to accounts of Intercomapny transactions we have member of PCI card

    can someone help me on this:

    It is error:
    * Start the journal entry for the Runtime Error FDM [2011-12-12 15:10:18] *.
    -------------------------------------------------------------
    ERROR:
    Code............................................. 1014
    Description... Card conditional Script error: expected "End" to line (2)

    Script:
    If varValues (14) = "113401" then Result = "21_ADNIP."
    Another result = "[ICP NO] '"
    End if
    Rule = I1

    Process... clsImpProcessMgr.fLoadAndProcessFile
    The component... upsWObjectsDM
    Version.......................................... 1112
    Thread........................................... 13888

    IDENTIFICATION:
    User............................................. admin
    Name of the computer... ADNIPHYPUAT01
    App Name......................................... FDMHFM
    Client App....................................... WebClient

    CONNECTION:
    Provider......................................... ORAOLEDB. ORACLE
    Database server...
    Name of the database... HYPUAT
    Trust connect... Fake
    Connect status... Open connection

    GLOBALS:
    Location......................................... HFMGLLOAD
    Location ID... 750
    Location Seg... 4
    Category......................................... WLCAT
    ID of the category... 12
    Period........................................... May - 2011
    Period ID........................................ 31/05/2011
    POV Local........................................ Fake
    Language......................................... 1033
    User Level....................................... 1
    All Partitions... True
    Is Auditor....................................... Fake


    Thank you.
    Srini

    Hi, please try the mapping script again have the "result =" statement on a new line, as:

    If varValues (14) = "113401" then
    Result = "21_ADNIP."
    On the other
    Result = "[ICP NO] '"
    End if

    Kind regards
    Jeroen

  • Script error (whtopic.js) when opening a topic that contains an integrated video (iFrame)

    Hello!

    Made first: RoboHelp HTML 11.0.4.291 / SSL = WebHelp / 8.1 Windows / IE 11.0.9600.18283. And I searched on this forum (and the entire CANVAS, actually) for a response, but nothing helped.

    And: English is not my mother tongue and I work with the German version of RoboHelp. I hope you understand my problem though. ;-)

    I work with a project that contains the card ID for opening sensitive to the context of the subjects. All of a sudden, we seem to have a problem when a context sensitive topic is open, but only, when this topic includes integrated video (iFrame), which is linked to our YouTube channel (when I delete the embedded video, the error no longer appears, so the reason for this problem must be the video). I get a script error about the whtopic.jsfile, but this script error is not really useful, because it shows 0 for the line, the character and its code (see Image below):

    WebHelp_ScriptError.png

    When I click Yes in the error message, the subject appears correctly and I can play the embedded video, but the navigation pane is not displayed. I have to click on view in the upper left corner, and then everything seems to be ok.

    Someone has an idea what causes this problem? And how can I avoid this script error message? If I can't solve this problem, I think I'll remove all the videos embedded and just provide a link to the video on YouTube.

    Your help is very appreciated.

    Thank you and greetings from Switzerland,

    Kurt

    Even if I sent two html files to Willam, he is unable to reproduce this error.

    I therefore close this thread, although it unfortunately has not been resolved.

    @Willam: thank you very much for your support!

  • Error of the API in the import script

    I'm trying to concatenate the result of a search of the dimension on the string of the source account. I have attached the script below to the account dimension in the import format using a data pump import script.
    ____________________________
    ' Function CCRule (strField, strRecord)

    Dim StrCC

    StrCC = (DW. Utilities.fParseString(strRecord,8,3,","))

    If StrCC = "" then "

    CCRule = StrField

    On the other

    StrField = CCRule + '_' + API. SqlMgr.fMapItemLookup(800,"UD5",StrCC)

    End If
    End Function
    _______________________________________________________


    When I run this script I get the error "object required «API"»

    Please let me know your thoughts on what I'm doing wrong here.

    Thank you

    the only thing I want to point out is to look at the performance of this. There are ways to do better if it is 'no '.

    Also, if she answered your problem do not hesitate to award points. If I get 1000 points do I get free a slinky or something. :-)

  • Use target category and period of FDM import script

    Hi all


    I write an import script where I want to validate that the target of the period and the target category are filled in the tables of control for the selected perspective.

    Export action, I can use the strTper and the strTCat, but I need to check in the event script ImportAction.

    Someone at - it a suggestion how to find these values?

    Thanks in advance,

    Marc

    Res.pstrper, res.pstrcat to get the pov element.

    For members of the target, use the accelerator.

  • couldn't update for windows XP / IE Script errors

    My OS is XP Professional 2003 and there has never been an automatic priority update Windows do not install so far. The update is KB981793. I looked and it is essentially an update of time thingy for the computer, however, since the first failure to load it keeps loading in my bar, next to my clock and tells me that the updates are ready for my computer and it is constantly the same one that fails. So no matter how many times I try to install it, 5 min later, he's back and I cannot make install or get out. My computer has all the current updates and SP3 is installed.
    My second problem now, I hope that when you know what you are doing, is a simple explanation and fix. I'm getting now constantly an "IE Script error" on virtually every Web page I'm opening.  A few pages that I must accept the run script 2 to 10 times button to clear all the Script error pop up that took place on this page. I do not understand what a script error is actually or where it is produced or, more importantly, how messed up he tells me my computer or a program is. 6 months ago I maybe got 1 or 2 errors per week, in the last days 4-6, it is multiplied by experience of script. The current pop-up reads "an error has occurred in the script on this page." Then he asks "do you want to continue running the script on this page? Yes or no, and of course you say yes, so you can continue then within 5-10 seconds later, a small pop up in the corner said "IE has encountered a problem and needs to close", then he said "this tab has been recovered. A problem with this webpage caused IE to close and reopen the tab. "That is usually held twice in a row. Then you're almost through with Internet Explorer running and you will need to re launch.  Can you give me pls advise on what I should do. TYVM

    A1. See the section "Updates since the previous cumulative Windows time zone update" on this page:http://support.microsoft.com/kb/981793

    If you do NOT live in one of these zones, you can hide this update optional, not security.

    A2. You will find support for IE in this forum: http://social.answers.microsoft.com/Forums/en-US/InternetExplorer/threads

    That being said...

    IE tools | Internet Options | Advanced | Disable the debug script)<=check nable="" this="" option);="" display="" a="" notification="" about="" every="" script="" error=""><=uncheck isable="" this="" option)="" |="" ok="" your="" way="">

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • Upgrade Express on 7, that an error has occurred in the script on this page. Line 0. Char from 0. Script error. code 0. "with a URL

    Hello

    After looking on any 3rd party retailers appear Anytime Upgrade key for 7 to professional.

    When I try Anytime Upgrade system that is integrated and use 'go online to choose Windows7 edition which is best', an error box comes in reading "an error has occurred in the script on this page. Line 0. Char from 0. Script error. code 0. "with a URL.

    When I try the store I find nothing either. Can I deduce that Microsoft no longer sell upgrades between versions of windows 7?

    Whenever upgrades have long past gone

    Finally unless you are interested in win-10 which is.

    Many win-7 pro autour on Newegg and Amazon, but they are not at level only oem / system integrator.

    You could buy one and a new ssd / HDD to install on and use the original win-7 to move to 10 - win

    Then passed to win-10 pro for 99.us.

  • Run-time error '380': a script engine for the specified language cannot be created.

    I have a brand new Dell Inspiron, Windows 7 Professional.  I'm trying to load a training program that I already use on a Lenova running Vista 32 bit Service Pack 2.  The load starts and then pops up this error message.  I tried to start the compatibility mode for older software but no change.

    Any thoughts would be appreciated.

    You have installed Windows 7 SP1?

    Error "Script engine for this specified language does not exist, #380.. When you try to run an integration
    http://support.Microsoft.com/kb/859712

    http://www.Google.com.au/search?q=%22specified+language+%22+380&SourceID=IE7&RLS=com.Microsoft:-to the: IE-address & ie = & oe = & redir_esc = & ei = mciAfUh7yHBg-CVToqLI-E

    Try right click on the actual Setup.exe and choosing the option "Run As Administrator"?  Perform, even if your user name is an administrator.

    Have you tried right clicking on the shortcut to the program or the .exe and select "Run As Administrator"?  Perform, even if your user name is an administrator.

  • FDM - a script engine for the specified language cannot be created.

    Hello

    When I try to log into the application of FDM, I get the error message below. FDM - 11.1.1.3 application version. I restarted all services and tried to log in again. But getting same error message.  It was working fine before. Please could you help me solve the problem.

    "Error: an error occurred in the logging on the system." -A script engine for the specified language cannot be created. »

    Thank you

    Michel K

    Your vbscript.dll is corrupt. Replace with a good copy and register again via cmd regsvr32.

  • BeanShell script error: Parse error

    Hi all

    I'm dropping database objects by using the ODI process and keep the tech like JAVA Shellbean

    Below is the code I use:

    < @.

    import java. IO;

    import java.sql. *;

    import java.lang. *;

    String url="jdbc:oracle:thin:@dummy:1521:Test; »

    String ID = "Test1";

    Pass the string = "Test2."

    Connection myCon1 = java.sql.DriverManager.getConnection (url, id, pass);

    Connection myCon2 = java.sql.DriverManager.getConnection (url, id, pass);

    Statement myStmt1 = myCon1.createStatement ();

    Statement myStmt2 = myCon2.createStatement ();

    String sql1 = "SELECT OBJECT_NAME, OBJECT_TYPE USER_OBJECTS_T";

    ResultSet rs = myStmt1.executeQuery (sql1);

    String type = null;

    String name = null;

    Sql2 string = null;

    String joins = null;

    try {}


    While (RS. Next())

    {

    type = rs.getString (1);

    name = rs.getString (2);

    SQL2 = 'DROP' + type + "" + name);

    myStmt2.executeUpdate (sql2);

    }

    RS. Close();

    myStmt2.close ();

    myStmt1.close ();

    myCon1.close ();

    myCon2.close ();

    }

    catch (SQLException e)

    {

    out.println (e.getMessage ());

    }

    @ >

    When I run the above code, he throws below error:

    org.apache.bsf.BSFException: BeanShell script error: parse error at line 1, column 36.  Met: 950 info OSB: own on line database: column 0: columnNo

    at bsh.util.BeanShellBSFEngine.eval (unknown Source)

    at bsh.util.BeanShellBSFEngine.exec (unknown Source)

    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:580)

    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:468)

    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2128)

    to 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)

    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$ 0 (StartSessRequestProcessor.java:292)

    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$ StartSessTask.doExecute (StartSessRequestProcessor.java:855)

    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)

    to oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$ 2.run(DefaultAgentTaskExecutor.java:83)

    at java.lang.Thread.run(Thread.java:662)

    But when you analyze the root on that cause, I found that the problem the code below

    SQL2 = 'DROP' + type + "" + name);

    myStmt2.executeUpdate (sql2); get the error at this stage

    Let me know, if one aware or how to clear this error.

    Thanks in advance!

    By Fabien

    you have these the wrong way round

    type = rs.getString (1);

    name = rs.getString (2);

    Switch to

    type = rs.getString (2);

    name = rs.getString (1);

    and it should work.

  • Web ADI - project Import Transaction error

    Dear Experts,

    I'm new Oracle EBS, I would use the import project operation to import certain project expenses.

    So far, I am able to download the excel template (responsibility: Desktop Integration Manager-> manage integrators) on my desk.

    After I enter all the necessary data in the excel file and then try to download, I get an error: invalid descriptive flexfield.

    Link to print error screen: http://s10.postimg.org/eax3f0j7t/Project_Import_Transaction_Error.jpg

    I know the error referring to the data in the column "Category FDF" is?

    And how know what should I write in this column 'Category DFF'?

    * By the way, I am able to get into the project (project-> batch-> Enter-> pre-approved expenses) expenditures without de FACTO seizure 'category.

    I really appreciate someone's help. Sorry if my question is stupid, because I can not resolve the error for quite sometimes.

    Thanks in advance!

    Hello

    Check the FDF to item and uncheck the display segment context flag.  Once done freeze the flexfield and re - test the question.

    Kind regards

    Raghavan Guillaumin

Maybe you are looking for