Using sqlldr when source data column is 4000 chars

I'm trying to load some data using sqlldr.
The table looks like this:
col1 number(10) primary key
col2 varchar2(100)
col3 varchar2(4000)
col4 varchar2(10)
col5 varchar2(1)
... and some more columns ...
For current purposes, I only need to load columns col1 through col3. The other columns will be NULL.
The source text data looks like this (tab-delimited) ...
col1-text<<<TAB>>>col2-text<<<TAB>>>col3-text
more-col3-text
more-col3-text
more-col3-text
more-col3-text
more-col3-text
END-OF-RECORD
There's nothing special about the source data for col1 and col2.
But the data for col3 is (usually) much longer than 4000 chars, so I just need to truncate it to fit varchar2(4000), right?
The control file looks like this ...
LOAD DATA
INFILE 'load.dat' "str 'END-OF-RECORD'"
TRUNCATE
INTO TABLE my_table
FIELDS TERMINATED BY "\t"
OPTIONALLY ENCLOSED BY '"'
TRAILING NULLCOLS
col1 "trim(:col1)",
col2 "trim(:col2)",
col3 char(10000) "substr(:col3,1,4000)"
I made the column 3 specification char(10000) to allow sqlldr to read text longer than 4000 chars.
And the subsequent directive is meant to truncate it to 4000 chars (to fit in the table column).
But I get this error ...
Record 1: Rejected - Error on table COL3.
ORA-01461: can bind a LONG value only for insert into a LONG column
The only solution I found was ugly.
I changed the control file to this ...
col3 char(4000) "substr(:col3,1,4000)"
And then I hand-edited (truncated) the source data for column 3 to be shorter than 4000 chars.
Painful and tedious!
Is there a way around this difficulty?
Note: I cannot use a CLOB for col3. There's no option to change the app, so col3 must remain varchar2(4000).

You can load the data into a staging table with a clob column, then insert into your target table using substr, as demonstated below. I have truncated the data display to save space.
-- load.dat:
1     col2-text     col3-text
more-col3-text
more-col3-text
more-col3-text
more-col3-text
more-col3-text
XYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
END-OF-RECORD-- test.ctl:
LOAD DATA
INFILE 'load.dat' "str 'END-OF-RECORD'"
TRUNCATE
INTO TABLE staging
FIELDS TERMINATED BY X'09'
OPTIONALLY ENCLOSED BY '"'
TRAILING NULLCOLS
col1 "trim(:col1)",
col2 "trim(:col2)",
col3 char(10000)
SCOTT@orcl_11gR2> create table staging
  2    (col1 varchar2(10),
  3       col2 varchar2(100),
  4       col3 clob)
  5  /
Table created.
SCOTT@orcl_11gR2> host sqlldr scott/tiger control=test.ctl log=test.log
SCOTT@orcl_11gR2> select * from staging
  2  /
COL1
COL2
COL3
1
col2-text
col3-text
more-col3-text
more-col3-text
more-col3-text
more-col3-text
more-col3-text
XYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
1 row selected.
SCOTT@orcl_11gR2> create table my_table
  2    (col1 varchar2(10) primary key,
  3       col2 varchar2(100),
  4       col3 varchar2(4000),
  5       col4 varchar2(10),
  6       col5 varchar2(1))
  7  /
Table created.
SCOTT@orcl_11gR2> insert into my_table (col1, col2, col3)
  2  select col1, col2, substr (col3, 1, 4000) from staging
  3  /
1 row created.
SCOTT@orcl_11gR2> select * from my_table
  2  /
COL1
COL2
COL3
COL4       C
1
col2-text
col3-text
more-col3-text
more-col3-text
more-col3-text
more-col3-text
more-col3-text
XYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
1 row selected.

Similar Messages

  • Using number datatype for date column

    Hi
    Is there a side effect for using "number" datatype for "date" column?
    If so, what is the disadvantage?
    Many thanks

    Hi,
    Ora_83 wrote:
    Hi
    Is there a side effect for using "number" datatype for "date" column?
    If so, what is the disadvantage?Yes, there's a definite disadvantage.
    Oracle provides date arithmetic and a number of functions for manipulating DATEs. None of them work with numbers.
    For example,
    SELECT    TRUNC (order_date, 'MONTH')     AS order_month
    ,       AVG (ship_date - order_date)     AS avg_delay
    FROM       orders
    GROUP BY  TRUNC (order_date, 'MONTH')
    ;order_month involves a DATE function; it's pretty easy to find the month that conatins order_date.
    avg_delay involves date arithmetic. It's extrememly easy to find how much the time passed between order_date and ship_date.
    Depending on how you code dates as numbers, doing either one of the above may be just as easy, but doing the other will be very difficult. You'll waste a lot of effort converting the NUMBERs to real DATEs whenever you need to manipulate them.
    Validation can be very difficult for NUMBERs, also.
    Watch this forum. It's a rare day when there's not some question about how to get around a problem caused by storing dates in a NUMBER (or VARCHAR2) column. Don't add to that. Always use DATE columns for dates.

  • Using CURRENT_DATE function in DATE column

    Hi
    I am not able to use CURRENT_DATE function in my target DATE column.I am getting error like "EDATE": invalid identifier with defintion as 'Insert PK error'. This column is not there in the source table.
    Data Transfer from Oracle to Oracle
    IKM = SQL Incremental Update
    CKM = SQL Check
    LKM = LKM SQL to SQL

    Hi Shaishavi,
    check your Target datastore in Model whether it contains the DATE column or Not.
    have you use this Date column in PK?.
    Colud you please sent me the Error command which you have faced? And tell me about the interface detaily.
    Thanks,
    Madha.

  • Start scenario when source data change

    Hi,
    is it possible to start a scenario when a data on one table changes on the source DB ?
    For example, an application change a timestamp on a table in the source db, this change triggers the start of the ODI scenario.
    Many thanks,
    Olivier

    Olivier,
    Can you create a database trigger on that table and populate a row in another table indicating that the timestamp on the table has changed.
    Then, you can use OdiWaitForData tool from toolbox in the package as a Starting step and connect its OK with odiStartScen tool which further invokes the scenario that you want to execute.

  • How to use sqlldr for loading data in Oracle 10g xe.

    I want to load data using SQL*LOADER in Oracle DB from a .csv file but it doesn't seems to be working can anyony please help me.I am not get getting how to use sqlldr.
    in CMD in giving this command
    sqlldr hr/hr control='c:/data/record.ctr'
    record.ctr>>load data
    infile 'c:\data\record.csv'
              into table record
    fields terminated by "," optionally enclosed by '"'          
    ( Name,uday, hemant )
    sql table in data base>>CREATE TABLE "RECORD"
    (     "NAME" VARCHAR2(50),
         "UDAY" VARCHAR2(50),
         "HEMANT" VARCHAR2(50)
    record.csv>>name,uday,hemant
    c1,45454,84894
    c2,489654,21322
    can you please tell me how can i get this simple example run.

    C:\>sqlldr scott/tiger
    control = data.ctl
    SQL*Loader: Release 10.1.0.2.0 - Production on Thu Sep 14 17:06:46 2006
    Copyright (c) 1982, 2004, Oracle.  All rights reserved.
    Commit point reached - logical record count 3
    SQL> conn scott/tiger
    Connected.
    SQL> create table data (col1 varchar2(40),col2 varchar2(40),col3 varchar2(40));
    Table created.
    SQL> select * from data;
    COL1                 COL2                 COL3
    name                 uday                 hemant
    c1                   45454                84894
    c2                   489654               21322
    SQL>
    data.csv
    name,uday,hemant
    c1,45454,84894
    c2,489654,21322data.ctl
    load data
    infile 'c:\data.csv'
    append
    into table data
    fields terminated by ','
    optionally enclosed by '"'
    (col1,col2,col3)i hope it will solve ur problem

  • Using CASE WHEN for Essbase column in OBIEE 11g

    Hi all,
    I have a business model in OBIEE 11g, taking the source from Essbase 11. The measures of the Essbase cube in the physical layer is flattened, and the aggregations for the measures are set to SUM.
    The Product dimension has 5 generations. In Product logical table, I created a logical column called "Product Grouping" using a simple CASE WHEN formula:
    CASE
    WHEN "TEST"."Product"."Gen5,Product" IN ('100-10', '100-20', '200-10', '300-10') THEN 'Group 1'
    WHEN "TEST"."Product"."Gen5,Product" IN ('100-30', '200-20') THEN 'Group 2'
    ELSE 'Group 3'
    END
    Problems:
    1. If I don't place this "Product Grouping" in the logical level/hierarchy, I got error in the report when I simply show Product Grouping and a measure.
    2. If I place this "Product Grouping" in the logical level/hierarchy (on the 5th level), no more error in the report when I simply show "Product Grouping" and a measure. The measure value also shows the correct SUM (group by). However, when I add "Gen1,Product" the "Product Grouping" and the measure value suddenly becomes not grouped by.
    Has anyone ever tried and encountered something like this? Any thoughts?
    Thank you very much!

    Hi Deepak, thansk for the suggestion.
    However, I can't use calculated item for this report because:
    1. incorrect result will be shown when my measures involve a formula to derive a percentage value.
    2. calculated item is not available if we do "combine requests" (or union) in 11g.
    Any thoughts anyone on how to solve this? Is this just me, or it's a bug?
    Thank you very much.

  • Overlapping data when more data column chart SSRS

    Hi guys,
    In my ssrs report the column chart  display is not good when more number of datas are viewed.How to overcum this issue
    I searched more on this issue no good solution found.
    I attached screenshot for this report,
    any suggestions pls
    Thanks,
    R.B

    Hi R.B,
    I can reproduce the issue in my local environment. If there are more column data with adjacent values in the chart, the label will be overlapped due to the insufficient space. In this scenario, there are several properties you can use to try to get the labels
    to fit better. Click the data point to open the Properties Windows, then go to the SmartLabels node.
    Expand the "NoMoveDirections" node. This will give us a lot of directions that we can use to restrict the directions that the labels can move in. We can try to change directions to see if it helps.
    Try to enlarge the chart size and use the method below to adjust the column size, it will free up more space to contain the label.
    http://www.bidn.com/blogs/ChrisAlbrektson/bidn-blog/1832/ssrs-adjust-bar-chart-width
    If we want to remove the black arrow, we can refer to the following thread:
    http://social.technet.microsoft.com/Forums/en-US/e3019086-4f72-4898-ba86-2e7c97c8fae4/ssrs-series-lable-overlaping-issue?forum=sqlreportingservices
    Alternatively, we can use Tooltip property to instead of actually displaying. Type the same expression with Value field in the Tooltip property.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Error: columns are not equal when writeback data from Essbase to Oracle

    I got an error when writeback Budget data from Essbase to Oracle that: The number of columns returned by script [14] is less than the source data columns exposed [15] while my returned columns from script is 15
    My report script:
    <Sym
    {MISSINGTEXT ""}
    { SUPMISSINGROWS }
    //{SUPPAGEHEADING}
    {SUPBRACKETS}
    {SUPFEED}
    {SUPCOMMAS}
    { TABDELIMIT }
    { NAMESON }
    { ROWREPEAT }
    { NOINDENTGEN }
    {DECIMAL 0}
    //<COLUMN ("Version")
    <ROW ("Account","Sector","Resident / Non-Resident","HSP_Rates","Year","Profit_Center","Period","SubAccount","Currency","Branch","Scenario","Elements","Spare","Version")
    <IDESCENDANTS "Account"
    "S_NA"
    "R_0"
    "HSP_InputValue"
    "FY11"
    "Jan" "Feb" "Mar" "Apr" "May""Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"
    <IDESCENDANTS "Profit_Center"
    "T_00"
    "Local"
    "P_682"
    "B_01"
    "Budget"
    "Amount"
    "E_0000"
    "Approved"
    *

    the solution to uncomment -> //{SUPPAGEHEADING}

  • Want to use sequence object of oracle when loading data in sql loader

    Hi,
    I want to use sequence when loading data in sqll loader, but the problem is i could not use sequence object of oracle to load the data by sql loader, i can use sequence of sql loader.
    I want to use sequence object because in later entries this sequence object will be used.If i use sequence of sql loader how can i use oracle sequence object
    Is there any other option

    I have a simillar problem, I also want to use a sequence when loading data by the SQL Loader.
    My control file is:
    load data
    infile '0testdata.txt'
    into table robertl.tbltest
    fields terminated by X'09'
    trailing nullcols
    (redbrojunos,
    broj,
    dolazak,
    odlazak nullif odlazak=blanks,
    komentar nullif komentar=blanks)
    And the datafile is:
    robertl.brojilo.nextval     1368     17.06.2003 08:02:46     17.06.2003 16:17:18     
    robertl.brojilo.nextval     2363     17.06.2003 08:18:18     17.06.2003 16:21:52     
    robertl.brojilo.nextval     7821     17.06.2003 08:29:22     17.06.2003 16:21:59     
    robertl.brojilo.nextval     0408     17.06.2003 11:20:27     17.06.2003 18:33:00     ispit
    robertl.brojilo.nextval     1111     17.06.2003 11:30:58     17.06.2003 16:09:34     Odlazak na ispit
    robertl.brojilo.nextval     6129     17.06.2003 14:02:42     17.06.2003 16:23:23     seminar
    But all records were rejected by the Loader, for every record I get the error:
    Record 1: Rejected - Error on table ROBERTL.TBLTEST, column REDBROJUNOS.
    ORA-01722: invalid number

  • Literal too long when 4000 chars

    I get an error that literal too long when trying to insert a record to a clob or varchar2 field when the string is over 4000 chars.
    How to resolve this problem. I'd like to be able to treat this insert the same as all other inserts rather than make a special case out of it so no special processing would be needed.
    The application reads from an html form textarea and inserts the value of the text area along with the other fields of the form to a database.

    Hi,
    The maximum length of VARCHAR2 data is 4000 bytes.
    You can't store more than 4000 bytes in varchar2 column.
    CLOB can store upto 4GB of data.
    You can check the LOB Datatype sample for details on how to insert data into CLOB.
    The sample is located at
    [url http://otn.oracle.com/sample_code/tech/java/sqlj_jdbc/files/advanced/LOBSample/LOBSample.java.html] LOB Datatype source
    Check the loadSamples method which shows how to insert data into CLOB using empty_clob() method.
    Hope this helps.
    For furthur clarifications please post your question at
    [url http://forums.oracle.com/forums/forum.jsp?forum=75]SQL and PL/SQL Forum
    Regards,
    Anupama
    [url http://otn.oracle.com/sample_code/content.html]OTN Sample Code[url ]

  • Need Help: Use Combox Box + List Builder + Column chart!

    Hi experts,
    I'm a novice in Xcelsius but i met some problems in encountering it, therefore, i would like to seek some assistance from the experts, Thanks!
    These are my data for F1 race. And I have 10 years data and below is an example of my data. I would be using 2 years data as an example first.
    Year     Country      Driver     Point     Laps     Time/Retired     No.of Driver     Position
    2009     Australia     Jenson Button     10     58     1:34:15.784     22     1
    2009     Australia     Rubens Barrichello     8     58     +0.8s     23     2
    2009     Australia     Jarno Trulli     6     58     +1.6s     9     3
    2009     Australia     Timo Glock     5     58     +4.4s     10     4
    2009     Australia     Fernando Alonso     4     58     +4.8s     7     5
    2009     Malaysia     Jenson Button     5     31     55:30.622     22     1
    2009     Malaysia     Nick Heidfeld     4     31     +22.7s     6     2
    2009     Malaysia     Timo Glock     3     31     +23.5s     10     3
    2009     Malaysia     Jarno Trulli     2.5     31     +46.1s     9     4
    2009     Malaysia     Rubens Barrichello     2     31     +47.3s     23     5
    2009     China     Sebastian Vettel     10     56     1:57:43.485     15     1
    2009     China     Mark Webber     8     56     +10.9s     14     2
    2009     China     Jenson Button     6     56     +44.9s     22     3
    2009     China     Rubens Barrichello     5     56     +63.7s     23     4
    2009     China     Heikki Kovalainen     4     56     +65.1s     2     5
    2009     Bahrain      Jenson Button     10     57     1:31:48.182     22     1
    2009     Bahrain      Sebastian Vettel     8     57     +7.1s     15     2
    2009     Bahrain      Jarno Trulli     6     57     +9.1s     9     3
    2009     Bahrain      Lewis Hamilton     5     57     +22.0s     1     4
    2009     Bahrain      Rubens Barrichello     4     57     +37.7s     23     5
    2009     Spain     Jenson Button     10     66     1:37:19.202     22     1
    2009     Spain     Rubens Barrichello     8     66     +13.0s     23     2
    2009     Spain     Mark Webber     6     66     +13.9s     14     3
    2009     Spain     Sebastian Vettel     5     66     +18.9s     15     4
    2009     Spain     Fernando Alonso     4     66     +43.1s     7     5
    2009     Monaco     Jenson Button     10     78     1:40:44.282     22     1
    2009     Monaco     Rubens Barrichello     8     78     +7.6s     23     2
    2009     Monaco     Kimi Raikkonen     6     78     +13.4s     4     3
    2009     Monaco     Felipe Massa     5     78     +15.1s     3     4
    2009     Monaco     Mark Webber     4     78     +15.7s     14     5
    2009     Turkey     Jenson Button     10     58     1:26:24:848     22     1
    2009     Turkey     Mark Webber     8     58     +6.7s     14     2
    2009     Turkey     Sebastian Vettel     6     58     +7.4s     15     3
    2009     Turkey     Jarno Trulli     5     58     +27.8s     9     4
    2009     Turkey     Nico Rosberg     4     58     +31.5s     16     5
    2010     Bahrain      Fernando Alonso     25     49     1:39:20.396     8     1
    2010     Bahrain      Felipe Massa     18     49     +16.0s     7     2
    2010     Bahrain      Lewis Hamilton     15     49     +23.1s     2     3
    2010     Bahrain      Sebastian Vettel     12     49     +38.7s     5     4
    2010     Bahrain      Nico Rosberg     10     49     +40.2s     4     5
    2010     Australia     Jenson Button     25     58     1:33:36.531     1     1
    2010     Australia     Robert Kubica     18     58     +12.0s     11     2
    2010     Australia     Felipe Massa     15     58     +14.4s     7     3
    2010     Australia     Fernando Alonso     12     58     +16.3s     8     4
    2010     Australia     Nico Rosberg     10     58     +16.6s     4     5
    2010     Malaysia     Sebastian Vettel     25     56     1:33:48.412     5     1
    2010     Malaysia     Mark Webber     18     56     +4.8s     6     2
    2010     Malaysia     Nico Rosberg     15     56     +13.5s     4     3
    2010     Malaysia     Robert Kubica     12     56     +18.5s     11     4
    2010     Malaysia     Adrian Sutil     10     56     +21.0s     14     5
    2010     China     Jenson Button     25     56     1:46:42.163     1     1
    2010     China     Lewis Hamilton     18     56     +1.5s     2     2
    2010     China     Nico Rosberg     15     56     +9.4s     4     3
    2010     China     Fernando Alonso     12     56     +11.8s     8     4
    2010     China     Robert Kubica     10     56     +22.2s     11     5
    2010     Spain     Mark Webber     25     66     1:35:44.101     6     1
    2010     Spain     Fernando Alonso     18     66     +24.0s     8     2
    2010     Spain     Sebastian Vettel     15     66     +51.3s     5     3
    2010     Spain     Michael Schumacher     12     66     +62.1s     3     4
    2010     Spain     Jenson Button     10     66     +63.7s     1     5
    2010     Monaco     Mark Webber     25     78     1:50:13.355     6     1
    2010     Monaco     Sebastian Vettel     18     78     +0.4s     5     2
    2010     Monaco     Robert Kubica     15     78     +1.6s     11     3
    2010     Monaco     Felipe Massa     12     78     +2.6s     7     4
    2010     Monaco     Lewis Hamilton     10     78     +4.3s     2     5
    2010     Turkey     Lewis Hamilton     25     58     1:28:47.620     2     1
    2010     Turkey     Jenson Button     18     58     +2.6s     1     2
    2010     Turkey     Mark Webber     15     58     +24.2s     6     3
    2010     Turkey     Michael Schumacher     12     58     +31.1s     3     4
    2010     Turkey     Nico Rosberg     10     58     +32.2s     4     5
    2010     Canada     Lewis Hamilton     25     70     1:33:53.456     2     1
    2010     Canada     Jenson Button     18     70     +2.2s     1     2
    2010     Canada     Fernando Alonso     15     70     +9.2s     8     3
    2010     Canada     Sebastian Vettel     12     70     +37.8s     5     4
    2010     Canada     Mark Webber     10     70     +39.2s     6     5
    2010     Europe     Sebastian Vettel     25     57     1:40:29.571     5     1
    2010     Europe     Lewis Hamilton     18     57     +5.0s     2     2
    2010     Europe     Jenson Button     15     57     +12.6s     1     3
    2010     Europe     Rubens Barrichello     12     57     +25.6s     9     4
    2010     Europe     Robert Kubica     10     57     +27.1s     11     5
    Basically, my requirement is to have year 2009 and 2011 in my component "Combo Box" and when user choose Year 2010, the source data under the component "List builder" shows the FILTERED countries (since i have duplicated countries here) under year 2010 only.
    So user can choose the correct countries and view the details of the countries that he/she choose for year 2010 at the column chart.
    Pls feel free to clear your doubts if any.
    Your assistance will be appreciated!!
    Thanks alot!
    Best regards,
    htoh

    Hi Sanjay,
    Appreciate your quick response.
    However this is what i've set for my combo box and list builder:
    Combo box:
    Insertion Type: Filtered rows
    Source data: Column A & B (Year,Country)
    Destination: Some empty cells
    List builder:
    Insertion type: Row (I can't find Filtered rows as an option)
    Source data: From the empty cells i mentioned above ***
    Destination: Another Empty cells.
    Is there anything wrong with my settings? Pls help, thanks a lot!
    Best regards,
    htoh

  • Performance tuning -index on big table on date column

    Hi,
    I am working on Oracle 10g with Oracle Apps 11i on Sun.
    we have a large non-partition table "GL_JE_HEADERS" with 7 million rows.
    Now we want to run the query for selecting rows using between clause on date column.
    I have created Btree index on the this table.
    Now how can I tune the query? Which hint should I use for the query?
    Thanks,
    rane

    Hi Rane,
    Now how can I tune the query?Indexes on DATE datatypes are tricky, as the SQL queries must match the index!
    For example, an index on ship_date would NOT match a query:
    WHERE trunc(ship_date) > trunc(sysdate-7);
    WHERE to_char(ship_date,’YYYY-MM-DD’) = ‘2004-01-04’;
    You may need to create an function-basd index, so that the DATE reference in your SQL matches the index:
    http://www.dba-oracle.com/oracle_tips_index_scan_fbi_sql.htm
    To start testing, go into SQL*Plus and "set autotrace on" and run the queries.
    Then confirm that your index is being used.
    Which hint should I use for the query?Hints are a last resort!
    Your query is fully tuned when it fetches the rows you need with a minimum of block touches (logical reads, consistent gets).
    See here for details:
    http://www.dba-oracle.com/art_sql_tune.htm
    Hope this helps . . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference"
    http://www.rampant-books.com/book_2005_1_awr_proactive_tuning.htm

  • Source data is blank

    Hi,
    We are using Web ADI to generate letters in Fastpath -> Assignment form in HR.
    We follow the following steps
    1. Create a view in apps schema.
    2. Create HR Integrator
    3. Create the Form function association
    4. Shutdown and restart the instance.
    5. Define a layout for the Integrator.
    6. Navigate to Fastpath Assignment -> Click on Export Data icon -> Select the Integrator name from the dropdown -> Download the souce data in the excel file.
    6. This excel is used as a source data for mail merge with the word document which is used to generate the letters.
    We have used these steps successfully for at least 10 different integrators.
    Recently, I am trying to create a new integrator but the source file that I am downloading is blank. It is not getting any data.
    But the view is running fine in sqlplus and returning data.
    I have used the same view earlier for other Integrators and it was working fine. This time I just added a few more columns.
    Any idea why the source is coming blank ?
    Any help would be highly appreciated.
    Regards,
    -Deb

    I'd be ensuring the the Web ADI Logging Level was set to Trace. Then run through a download and check the log file to see what errors/warnings are occuring.
    This probably isn't the type of error that and end-user would appreciate. It also sounds like its a development type error. So the assumption is that the log file would be where a developer would like. Rather than redirecting it out to a limited amount of space within the end-user UI.

  • Multiple Data Columns in one report column

    How do I list multiple columns returned from a select vertically within one report column. For instance, I have three statuses for a project that I want to list, I'd like to list the three statuses within one status column. I remember seeing this somewhere but cannot find it now. Example:
    Status Column
    Budget: Green
    Schedule: Red
    Issues: Yellow

    additionally you could use HTML expressions. When editing your report, click on the column you want to use for displaying multiple data columns. This will take you to the report columns attributes page, there you can type in something like the following into the HTML expression field, referencing other report columns using #COLUMN_NAME# substitutions:
    #BUDGET#
    #SCHEDULE#
    #ISSUES#
    this is assuming your column aliases are named BUDGET, SCHEDULE and ISSUES. You can then just hide the columns that you don't want to see because the data is already shown using the HTML expression.
    Regards,
    Marc

  • Data column (for posting period) converted to COMPARISON COLUMN

    Hi all,
    I use 'posting period'(derived from fiscal period/year) in the data column and assigned CHAR-posting period to a variable (the value is 1.2.3....12) in the planning level.
    When I execute my layout, I got an error message: Data column 2 will be converted into a comparison column.
    Diagnosis:
    You have entered variable ZFIU004 in data column 2 and provided it with an offset. This results in values arising for variable ZFIU004, which are no longer within the selection, which was defined for the variable.
    Can someone please advise me?

    Hi,
    What is the selection maintained for posting period on the level.
    thanks

Maybe you are looking for

  • My phone is stuck on the apple symbol. It connects to iTunes still, but it won't actually turn back on.

    Main apple symbol when the phone is turning on is stuck like that. It's been like that for the past 30 minutes. What do I do?

  • NVL function

    Hello: I have a problem with the query below. It works fine in PL/SQL. but run throgh VB6.0. I will get the following error. ORA-01858 a non-numeric character found where a digit was expected The query is as follows: SELECT grower.regcomp_id, grower.

  • Are these console messages a problem?

    I am seeing console messages that I have not seen before. I am not having any problems that I know of, but these 3 types of messages (from multiple apps) keep popping up in my console: MDS Error: unable to create user DBs in /var/... Could not initia

  • There is no reset security question option

    i am trying to reset my secuirty questions but there is no reset option? i have added another email as a recue one but still nothing?

  • User exit in VL02N saving

    Hi! Can anyone please tell me, which user exit is running during the VL02N delivery saving?  I can check the user exits, but I don't know which one is executed when I save the document. I'll reward only the useful answers, please read the thread care