Alias Calculation

Hi Gurus,
I got a doubt in a query I´m creating here.
That´s the point:
I need to list all table partitions which are older than sysdate - 2 days, because I´ll need to drop them.
I got a query where I´m able to see all date of all partitions.
select table_name,
partition_name,
trim (
'''' from regexp_substr (
extractvalue (
dbms_xmlgen.
getxmltype (
'select high_value from all_tab_partitions where table_name='''
|| table_name
|| ''' and table_owner = '''
|| table_owner
|| ''' and partition_name = '''
|| partition_name
|| ''''),
'//text()'),
high_value_in_date_format
from all_tab_partitions
where table_name = 'EVENTS' and table_owner = 'ESECDBA'
TABLE_NAME PARTITION_NAME
HIGH_VALUE_IN_DATE_FORMAT
EVENTS P_20100303090000
2010-03-03 09:00:00
EVENTS P_20100303110000
2010-03-03 11:00:00
EVENTS P_20100303130000
2010-03-03 13:00:00
TABLE_NAME PARTITION_NAME
HIGH_VALUE_IN_DATE_FORMAT
EVENTS P_20100303150000
2010-03-03 15:00:00
EVENTS P_20100303170000
2010-03-03 17:00:00
EVENTS P_20100303190000
2010-03-03 19:00:00
TABLE_NAME PARTITION_NAME
HIGH_VALUE_IN_DATE_FORMAT
EVENTS P_20100303210000
2010-03-03 21:00:00
EVENTS P_20100303230000
2010-03-03 23:00:00
EVENTS P_FILLER_24
2009-11-26 03:00:00
TABLE_NAME PARTITION_NAME
HIGH_VALUE_IN_DATE_FORMAT
EVENTS P_MAX
EVENTS P_MIN
2009-11-18 03:00:00
1175 rows selected.
The date which I need to compare I store in alias high_value_in_date_format but I´m not able to do a simple compare with it, as:
SQL> select table_name,
2 partition_name,
3 trim (
4 '''' from regexp_substr (
5 extractvalue (
6 dbms_xmlgen.
7 getxmltype (
8 'select high_value from all_tab_partitions where table_name='''
9 || table_name
10 || ''' and table_owner = '''
11 || table_owner
12 || ''' and partition_name = '''
13 || partition_name
14 || ''''),
15 '//text()'),
16 '''.*?'''))
17 high_value_in_date_format
18 from all_tab_partitions
19 where table_name = 'EVENTS'
20 and table_owner = 'ESECDBA'
21 and high_value_in_date_format < to_date ('sysdate', 'syyyy-mm-dd hh24:mi:ss')-2;
where table_name = 'EVENTS'
ERROR at line 19:
ORA-00904: "HIGH_VALUE_IN_DATE_FORMAT": invalid identifier
Is there a way to use the values returned in high_value_in_date_format to compare with sysdate - 2 days ???
Thanks in advance!
Regards,
Leonardo

Nicolas,
I solved the error including the "to_char" function.
select * from (select table_name,
partition_name,
trim (
'''' from regexp_substr (
extractvalue (
dbms_xmlgen.
getxmltype (
'select high_value from all_tab_partitions where table_name='''
|| table_name
|| ''' and table_owner = '''
|| table_owner
|| ''' and partition_name = '''
|| partition_name
|| ''''),
'//text()'),
high_value_in_date_format
from all_tab_partitions
where table_name = 'EVENTS' and table_owner = 'ESECDBA')
where high_value_in_date_format < to_char (to_date(sysdate -2))
order by table_name, partition_name
But I checked with I´m receiving the newest partitions of the table mentioned but this is another problem...
For example:
SQL> select sysdate from dual;
SYSDATE
25-FEB-10
When I query the select, I got all partitions, including the recent created partitions, as above:
TABLE      PARTITION_NAME        HIGH_VALUE_IN_DATE_FORMAT
EVENTS     P_20100303190000     2010-03-03 19:00:00
EVENTS     P_20100303210000     2010-03-03 21:00:00
EVENTS     P_20100303230000     2010-03-03 23:00:00
Thanks a lot to help me.
Regards,
Leonardo

Similar Messages

  • Lost Calculator application

    Hello,
    I'm brand new to the Apple world (Windows convert) and so far, I've been quite happy. Having fun seeing what I can do, etc. but I have one small problem.
    I put an alias to the calculator on my desktop and it's always worked fine. Today I clicked on it and a dialog box comes up saying "The alias 'Calculator' could not be opened, because the original item cannot be found. I clicked on the box that says "Fix Alias" but it asks "what item do I want the alias to open."
    I've used finder to search for the calulator but it can't find it anywhere on the computer. (I believe it used to be in Applications\Utilities.
    If it's really gone, is there anyway to reinstall it? Any ideas where it could've gone to? (It's not in the trash).
    Mac Mini   Mac OS X (10.3.9)  

    643/3089
    Hi beeker25,
    Welcome to Discussions!
    If it's gone, you should be able to extract it from your install discs using Pacifist,
    but,
    let's first check if you still have it somewhere:
    Restart your Mac from the Panther install DVD (or CD), and run
    Disk Utility > Repair Disk
    (find DU from a menu, just after the first OS reinstall step: do not reinstall OS, obviously).
    A directory Repair with DiskWarrior would be even more efficient.
    This DU or DW repair, in case because of a Directory problem, OS X "thinks" it's gone...
    Oh, and of course when you were looking for it through the alias icon, you tried also "Show Original"?
    Good luck!
    Axl

  • Use column alias in another calculation

    Database:Oracle Database 11g Enterprise Edition Release 11.2.0.3.0
    Is there a way to use a column alias in an another calculation within the
    same query? Since I am using some long and complex logic to compute total1
    and total2, I don't want to repeat the same logic to compute the ratio of
    those two columns. do you have any suggestion other than nested sub-query or view?
    select
    total1 = sum(case(long complex logic)),
    total2 = sum(case(another long complex logic)),
    ratio = total1/total2
    thanks in advance

    Jimmie_M wrote:
    Database:Oracle Database 11g Enterprise Edition Release 11.2.0.3.0
    Is there a way to use a column alias in an another calculation within the
    same query? Since I am using some long and complex logic to compute total1
    and total2, I don't want to repeat the same logic to compute the ratio of
    those two columns. do you have any suggestion other than nested sub-query or view?
    select
    total1 = sum(case(long complex logic)),
    total2 = sum(case(another long complex logic)),
    ratio = total1/total2
    thanks in advanceHi,
    Use oracle's with clause
    WITH test_data
    AS
    SELECT sum(case(long complex logic)) total1,
    sum(case(another long complex logic)) total2
    from your_table_name
    SELECT total1/total2
    from test_data
    WHERE....Regards,
    Achyut Kotekal

  • Using column alias for calculations in same select list

    Hi All,
    I want to use a calculated column of query to create further calculated columns in same query using column alias. I have to do so because the calculation is too big to write it everytime.
    e.g.
    Select decode(Month, 1, Tran_January, 2, Tran_February, ....) as MonthTran,
    Month, Year,
    round(MonthTran/Intrest_rate, 2) as Amount <---(using previous alias)
    from ledger;
    Thanks in advance,
    Mona

    Probably the easiest way of doing this is to write an inline view, viz
    SELECT l.Month
           , l.Year
           , round(mt.MonthTran/l.Intrest_rate, 2) AS Amount
    FROM   ledger l
           , (SELECT x.pk_col, decode(Month, 1, Tran_January, 2, Tran_February, ....) AS MonthTran
              FROM ledger x) mt
    WHERE  l.pk_colunm = mt.pk_colunm
    ; If you have any criteria in a WHERE clause on ledger you shouldn't need to repeat them providing LEDGER does have a primary key column. You may need to tweak it a bit for performance, if LEDGER is a big table.
    Cheers, APC
    Cheers, APC

  • Last Year Inovice Total need to be calculated in a new column in OBIEE 11g

    Hi,
    I have a measure Net Invoiced Amount, and now my client is asking to get a new column in which last year's Net Invoiced Amount total needs to be calculated.
    We need to select the Dates dynamically, it is 2012, so the column should the invoiced amount total for 2011, if it is 2013 then amount should be 2012. Can we do this in RPD. If so, please tell me how.

    Hi,
    Method1:
    TIMESTAMPADD( SQL_TSI_DAY , -1, TIMESTAMPADD( SQL_TSI_DAY , EXTRACT( DAY_OF_YEAR FROM DATE Column) * -(1) + 1,
    DATE Column))
    Note: create alias table from your fact (call it as fact table name_YTD) Join th aliases to the dimension tables exactly like how your normal fact table is joined to the aliases, except for the time dimension.
    Method 2: by using Time series functions (Ago fxn)
    Ago(<<Measure>>, <<Level>>, <<Number of Periods>>)
    Example:Ago("Human Resources"."Fact - Absence"."# Days" , "Human Resources"."Time"."Year" , 1)
    Method 3: if your using obiee11g --> from analysis itself you cand solve it
    AGO(expr, [time_level], offset)
    Thanks
    Deva

  • Alias sizes huge, html files have "exec" icons

    [Note: I posted this query on Feb 15 to the discussion page "Using your MacBook Pro (Late 2008 and 2009)". After I got no response, I realized my topic is probably a Leopard--Finder issue rather than a MacBook Pro one. So here it is:]
    Help! My desktop prefs are confused and/or corrupted, I think:
    * ALIASES I've made today from ordinary html or txt files are weighing in at 104k to 188kb -- and aliases made from folders are a whopping 508k!
    * Also, some of the aliases I make from HTML docs are displaying the 'Unix executable' icon (instead of Firefox or even generic HTML icons).
    This seems to have begun happening after I copied a bunch of old docs & folders from an archive CD onto my MacBook Pro a few days ago... apparently many of these files are confusing or unrecognizable to the Desktop because the icon that is displayed for them the same 'Unix executable' icon that I'm seeing with some of the aliases.
    All of these older files were created with apps running under "Classic OS" (OS 7.6 to 9.2). Some open and some won't. Most carry no 3-letter file type extensions, or their extensions don't match any of my current apps (such as Microsoft Works .wbk -- which both TextEdit & NeoOffice opened with no problem).
    For the docs that won't open, I'm hoping to find some software that will at least extract text and/or images -- Any recommendations out there?
    This MacBook Pro was purchased new in Aug 2009, and is running Leopard OS 10.5.8 (I haven't yet updated to SnowLeopard although I have the CD from Apple).
    Under the older systems, if the Desktop icons started getting weird, I only had to restart with certain keys held down (Option? Control? I've forgotten) and the problem would usually be solved. I'm less fluent in the OS X system architecture, so I don't know if a simple routine exists to fix this!

    I posted the same in the other post, sorry about the duplicate reply.
    My calculator alias is 108 kb, others vary 40, 144, 32 kb. I don't know why they vary. Perhaps some have longer pathnames to the app.
    If the Desktop icons started getting weird, I only had to restart with certain keys held down (Option? Control? I've forgotten!) and the problem would usually be solved.
    Your OS is not malfunctioning. Leopard no longer supports Classic software. It does not know what to do with these extensionless files, so it is just guessing the files might be UNIX.
    You could use 'cat' in Terminal to see their contents but if they are compiled that won't reveal anything useful. It would be easier to open them with the Classic applications that made if that is still possible.

  • How to distinguish the specific member alias in HP outline?

    Because they use different calculation scripts, I need to recognize the member alias with two
    different suffix:"-new" and "-old" in the same dimension. However, the @MATCH function could not meet
    my requirement, because I need substitute ANY NUMBER of characters at the BEGINNING of the pattern.
    Could any other function satisfy my requirement?
    ps: here is the syntax of @MATCH which couldn't match my need.
    @MATCH (mbrName|genName|levName, "pattern")
    "pattern"
    The character pattern to search for, including a wildcard character (* or ?).
    ? substitutes one occurrence of any character. You can use ? anywhere in the pattern.
    * substitutes any number of characters. You can use * only at the end of the pattern.
    To include spaces in the character pattern, enclose the pattern in double quotation marks ("").

    UDA is the solution we are considering.
    we also considered about using Share member to construct a virtual hierarchy.
    Is there any function which could directly slove this problem?
    Edited by: DerekX on 2010-7-1 上午4:43

  • "Notepad" is Not Listed as a Choice for a ShortCut on Alias 2 (Samsung Sch u750)

    Can't SetUp a ShortCut for "NotePad" on Alias 2 (Samsung  Sch u750). When I select "Settings & Tools" then  6.Phone Settings, 2.Set ShortCuts,  Then I discover that "NotePad" is not among the 44 menu choices - there's a gap in the list after "New Video Msg" - before "Online Album"  I am able to set
    short cuts (on each of the directional keys) to things such as  Calendar, Calculator, Alarm, etc.

    Can't SetUp a ShortCut for "NotePad" on Alias 2 (Samsung  Sch u750). When I select "Settings & Tools" then  6.Phone Settings, 2.Set ShortCuts,  Then I discover that "NotePad" is not among the 44 menu choices - there's a gap in the list after "New Video Msg" - before "Online Album"  I am able to set
    short cuts (on each of the directional keys) to things such as  Calendar, Calculator, Alarm, etc.

  • @ALIAS in FIX Statement

    Hi,
    Can I use @ALIAS function in FIX statement? When i try to do it it says "Error: 1200315 Error parsing formula for [FIX STATEMENT] (line 1): invalid object type". If not is there any work around for it?
    Thanks.

    Hi Glenn,
    Thanks for the swift reply.
    Here is my scenario, we do end of week analysis and our period dimension is as below,
    2010 (~) <20> (Label Only)
    2010-05-19 (~) (Alias: Week_3_May)
    2010-05-12 (~) (Alias: Week_2_May)
    2010-05-05 (~) (Alias: Week_1_May)
    2010-04-28 (~) (Alias: Week_4_April)
    2010-04-21 (~) (Alias: Week_3_April)
    2010-04-14 (~) (Alias: Week_2_April)
    and there is a different calculation for every week. So what I am trying to do is having a substitution variable CurrMnth with value "May" and then in the calculation use the @CONCATENATE("Week_3_",&CurrMnth) and do the endof week calculation on that member. Does that work?
    If not is there any function we can pick the first member, second member etc individually under a parent?

  • Using SQL alias column names in same SQL

    Hi,
    I am converting some Teradata SQL queries and these queries have the ability to use column defined aliases within the same query, something like :
    SQL> select 'test' as alias1, 'test2' as alias2, alias1 from dual
    Does anyone know how I can get Oracle to do this ????
    Many thanks
    Ben

    Hi,
    Yes I did think of that - its just the queries calculated columns are quite large - sample below show a value calculated currently based on alias names - just trying to find an easier way to apply.
    I was hoping for some magical syntax that has eluded me !
    Ben
    (exp(case when (constant_contrib + fsnumber_contrib + herolevel_contrib + is_colmans_contrib + is_heinz_contrib + is_short_life1_contrib + is_short_life2_contrib + is_short_life3_contrib + logcount_prod_contrib + offer_shelf_cap_contrib + promointensity_contrib + std_shelf_cap_contrib + xforprice_add_1_contrib + ( (power(sh_ms_variables.xfspr,1)) * formula_coefficients.coeff_xfspr1 ) + ( (power(sh_ms_variables.xfspr,2)) * formula_coefficients.coeff_xfspr2 ) + ( (power(sh_ms_variables.xfspr,3)) * formula_coefficients.coeff_xfspr3 ) + ( (power(sh_ms_variables.xfspr,4)) * formula_coefficients.coeff_xfspr4 ) + ( sh_ntnl_variables.xnfor2 * formula_coefficients.coeff_xnfor2 ) + ( sh_ms_variables.xnforfs1 * formula_coefficients.coeff_xnforfs1 ) + ( sh_ms_variables.xnforfs2 * formula_coefficients.coeff_xnforfs2 ) + ( sh_ms_variables.xnforfspl * formula_coefficients.coeff_xnforfspl ) + ( sh_ntnl_variables.xnforpl * formula_coefficients.coeff_xnforpl ) + ( (power(sh_ms_variables.xpr,1)) * formula_coefficients.coeff_xpr1 ) + ( (power(sh_ms_variables.xpr,2)) * formula_coefficients.coeff_xpr2 ) + ( (power(sh_ms_variables.xpr,3)) * formula_coefficients.coeff_xpr3 ) + ( (power(sh_ms_variables.xpr,4)) * formula_coefficients.coeff_xpr4 )) < 500 then (constant_contrib + fsnumber_contrib + herolevel_contrib + is_colmans_contrib + is_heinz_contrib + is_short_life1_contrib + is_short_life2_contrib + is_short_life3_contrib + logcount_prod_contrib + offer_shelf_cap_contrib + promointensity_contrib + std_shelf_cap_contrib + xforprice_add_1_contrib + ( (power(sh_ms_variables.xfspr,1)) * formula_coefficients.coeff_xfspr1 ) + ( (power(sh_ms_variables.xfspr,2)) * formula_coefficients.coeff_xfspr2 ) + ( (power(sh_ms_variables.xfspr,3)) * formula_coefficients.coeff_xfspr3 ) + ( (power(sh_ms_variables.xfspr,4)) * formula_coefficients.coeff_xfspr4 ) + ( sh_ntnl_variables.xnfor2 * formula_coefficients.coeff_xnfor2 ) + ( sh_ms_variables.xnforfs1 * formula_coefficients.coeff_xnforfs1 ) + ( sh_ms_variables.xnforfs2 * formula_coefficients.coeff_xnforfs2 ) + ( sh_ms_variables.xnforfspl * formula_coefficients.coeff_xnforfspl ) + ( sh_ntnl_variables.xnforpl * formula_coefficients.coeff_xnforpl ) + ( (power(sh_ms_variables.xpr,1)) * formula_coefficients.coeff_xpr1 ) + ( (power(sh_ms_variables.xpr,2)) * formula_coefficients.coeff_xpr2 ) + ( (power(sh_ms_variables.xpr,3)) * formula_coefficients.coeff_xpr3 ) + ( (power(sh_ms_variables.xpr,4)) * formula_coefficients.coeff_xpr4 )) else 500 end ) - 1) AS uplift,
    Edited by: user485052 on Dec 10, 2010 3:08 AM

  • View link between calculated attributes

    Hi all,
    I'm having a problem with a view link. See, I'm linking two view objects on attributes that are calculated. The two view objects are result of sql query (not EO based) - plus, this attribute is present in the SQL query and in the db table for both view object.
    The SQL query is like, for both view object :
    select to_char(DATE_FO, 'dd/MM/yyyy), a, b, from ...
    And, as I said, I made a view link on these attributes. The cardinality is 1 to *.
    When testing the ApplicationModule, I'm getting
    (oracle.jbo.SQLStmtException) JBO-27122: SQL error during statement preparation. SELECT ....... ) QRSLT WHERE DATETOCHAR = :Bind_ToCharGdaCrahDateCrahDdMm
    ----- Level 1: Detail 0 -----
    (java.sql.SQLException) ORA-00904: "DATETOCHAR" : identificateur non valide
    DATETOCHAR is the alias of the calcultated attribute in detail vo.
    Please help ! Also I've been reading Steve's article : urlhttp://radio.weblogs.com/0118231/2003/11/13.html[url] ; what is jbo.viewlink.consistent property exactly ?
    Regards
    Luc

    Hi again,
    ok I found it ... I needed to add an alias in the SQL query and override the default sql where clause in the view link. Something weird btw, because the alias in the sql query seems to be not bind to the alias property in the attribute properties... and it add another attribute. But it works fine.
    Therefore, if Steve muench might explain jbo.viewlink.consistent property, I'm stil interested in knowing that :)
    Luc

  • Substitution variables in a calculation - Analyzer

    I have a report set up in Analyzer and I am using substitution variables. the first column is the current month (&curr_mon) and the secomd column is the prior month (&prior_mon). I want to add a third column that would subtract the first two and give me a variance. but when I add a calculation it doesn't give me the substitution variables to pick from, it gives me the actual value such as 'July'. therefore, the calculation will not dynamically change each month. Any ideas??

    Put the variance calc in your outline. We have several such calcs, such as "$ Var to PM" and "% Var to PM", that we update every month in the outline. The only other way to do it is to update your alias to say "Current Month", "Prior Month", etc., so the names remain constant and the calc can be done in Analyzer.

  • How to use Alias name in OData service in SAP HANA

    Hi,
         I need to change one column name with alias of another name in odata service definition or odata url running in rest client. I am trying to give alias name with as key in the service definition like sql query.
    ex:
    There is one table with column name of PRODUCT_ID. I exporting that table via odata service to SAP UI. In the UI i dont want the product id column as PRODUCT_ID. It should be ike "Prodcut". Like we are using in SQL example
    select "PRODUCT_ID" as "Product" from "producttab";
    But i can't use as key for alias name. So i am getting syntax error.
    I have tried in rest client also ie executing odata file in rest based service. But i got error only.
    If anyone knows about this alias name in odata service, Please help me to resolve this issue..

    Hi Thomas
         Thanks for your reply.
         Actually in odata service definition i am using attribute and calculation views only. But in some case from the model view itself i need to use some alias names to the UI through odata service.
         For example in attribute view i have some columns with name col1,col2... I am getting those columns in UI using  odata service, for particular col2 column i need to change column name as product. And i am using the same view as source of another odata service in that service i need to change that column name as productname.
         In that case i need alias name usage. So that only i am searching alias keyword in odata service.
         Is there any possibility to use alias names in odata service.

  • How Achieve timedseries calculations with out using AGO And ToDate function

    Hi,,
    1)
    How Achieve timedseries calculations with out using AGO And ToDate functionion
    this question asking in interview ..is it possible..?
    if yes please response as soon as possible..
    2) i have 2 cloumns Product and value...
    client requirement is they need ranks based on Value ..in dashboard .using dashboard prompt..edit box...if user enter any number (ex :5 ) report should show top 5 ranks if he enter 20 should be top 20 ranks..
    how to achive this ?
    thanks,
    raj

    Consider yor first question:
    1. Yes, we can create timeseries measures without using AGO and TODATE
    1. Create ALIAS of fact tabe in the physical layer
    2. Join the Time id from the ALIAS fact table with the YAGO_MONTH_ID column from your time dimension table (For calculating Year Ago variants) similarly join with MAGO_MONTH_ID column for Month Ago measures.
    3.Pull the ALIAS tables as an additional Logical table source in the Lgical layer
    4.Keep the mapping of the columns from the ALIAS table as its is
    5. For e.g If you pick Revenue from the Year Ago Alias table it will give you the "Prior Year Revenue"
    See if this helps you

  • Calculated items to be created on rows as well as on columns of a pivot tab

    Hello Experts,
    My Report has 3 columns . First is Hierarchy(parent-child) column, second is Fiscal Month and third a measure. I have multiple groups and calculated items added in selection pane for the Hierarchy column.
    I created a pivot table using above 3 columns where in rows bucket I have hierarchy column,in columns bucket I have Fiscal Month and in the measures bucket I have the measure.
    Now when I try to create a calculated item on Fiscal Month like $-1-$-2, I get the following error.
    Error Codes: OAMP2OPY:U5V5TIAH
    DXE expression interpreter error. Invalid "alias" attribute value. Source name: . XML: <sawxd:expr xmlns:sawxd="com.siebel.analytics.web/expressiondxe/v1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sawq="com.siebel.analytics.web/querydxe/v1.1" xsi:type="sawq:field" alias="s_2"/>
    To add, the report works fine when I remove the calculated items based on Hierarcial column.
    Please help to resolve this issue and identify the root cause.
    Thanks and regards.
    Edited by: 900085 on Sep 1, 2012 4:38 AM

    This is a bug with Oracle now. Find the details below.
    Bug 14580738 : ERROR : OAMP2OPY:U5V5TIAH WHEN ADD CALCULATED ITEM IN 2 SECTIONS AND USE $ SIGIN

Maybe you are looking for

  • Flash From Within, now won't charge.  Please help

    I have a 17 inch PowerBook 1.33, running the latest everything. I had my laptop plugged in (its a relatively new charger too, replaced recently) and was typing away with the laptop sitting on my lap. I went to put it on the table in front of me, and

  • Jdeveloper 10.1.2.1.0 - IAS 10.1.2.0.2 Deployment problems

    Hello to all.. I don't know why I can't deploy the JSP/struts project to my IAS? I have made 2 web application (struts) and also I have created WAR file.. If I deploy the first application all is ok but when I like to deploy the second one i get erro

  • Adding dynamic panels

    My application needs to dynamically decide how many components will be present in the panel depending on the clauses. For each clause, I have designed a seperate panel,(its design is fixed) . But the number of clause panels to be included in the main

  • Can I put OS X Yosemite on my 2010 macbook pro with current operating system 10.6.8?

    Can I put OS X Yosemite on my 2010 macbook pro with current operating system OS X10.6.8?  I just bought a new printer and it requires minimum 10.7

  • LDB for infotypes 2001,2002 , 2003 ...04 ?

    Is there any LDB for the infotypes 2001,2002,2003,2004 ... Thanks, JR. Edited by: jeeva raj on Mar 13, 2009 12:00 PM