Drill Through report not working for large data

Hi,
In SSRS 2008 R2, I have a main report and a drill through report from one of the main report's column. The drill through report works mostly except if the data is too large i.e. more than 1 million records. How to fix this problem?
Thanks,
Jkrishna

Nope. WHat I meant was not to show the entire data in child report (ie your 1 million records). Instead add extra parameter as PageNumber. By default set it as 1 when you navigate to child report (default value)
Then in query behind use a ROW_NUMBER based logic like below
SELECT *
FROM
SELEC ROW_NUMBER() OVER (ORDER BY <combination of unique valued column(s)>) AS Rn,...
Your existing query other columns
)t
WHERE Rn BETWEEN ((@PageNo-1) * 1000) + 1 AND @PageNo * 1000
Assuming you want 1000 per page
So when it renders it will show first 1000 records. Add a NextPage icon to report footer and when clicked add a jump to report functionality to same report but with PageNumber parameter value as
=Parameters!PageNumber.Value + 1
and it will then give you second page data etc 
Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Similar Messages

  • Drill through reports not working

    Hi All,
    I am trying the drill through functionality in a report which is pretty straight forward, I am using a parent report and in it I am using one of the text boxes to drill down to another report by passing its parameter to the child report, Both the parent
    and the child report are in the same project only. But I am getting an issue while clicking on the text box in the parent report to drill down to the child report saying
    "An Error occurred during local report processing
    Error in the application
    Could not find the file <Child File Location>" (Verified the Child file location which is in fact correct)
    Please help me out guys !!
    Thanks,
    Prakazz

    Hi ImPrakazz,
    According to the error message, I think the child file may has been deleted while the cache file of the child file has not been deleted.
    Based on my thought, I test the issue and cannot produce it completely. In my test, I design a drillthough report, and the parent report and child report are located in the same project. When I delete the child file, the parent report can run while there
    is an error which shows "Could not find the child file". If I only deploy the parent report to report server, it will show the error which looks like "ReportItem cannot be found".
    In this case, you can check whether the child file exists on the corresoding path. If the issue persists, please post the details, for example: report in Native mode or sharepoint mode, the edition of SQL Server Reporting Sevices and so on.
    Thanks for your understanding.
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • Clob is not working for bulk data files in PL/SQL XML program

    Hi Odie,
    we took your help to fix the our issue before
    "https://forums.oracle.com/forums/thread.jspa?threadID=2238458&tstart=105"
    working fine for : program is working for smaller size data.
    Issue : now we have problem with the largr size data .
    getting the below error:
    Arguments
    P_dir_name='/tmp'
    P_file_name='CCBGO.COLO_CNG.RESPONSES.20120802.00054131826'
    Environment will now switch to UTF-8 code-set.
    Parts of this log file may not display correctly
    as a result. This is an expected behavior.
    XML_REPORTS_XENVIRONMENT is :
    /apps/applmgr/product/OFDEV/ofdevora/806/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to /apps/applmgr/product/OFDEV/ofdevora/806/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    stat_low = 8B
    stat_high = 0
    emsg:was terminated by signal 11
    Appreciated for your earlier support.
    Kindly suggest .
    Many Thanks,
    Ramesh.

    Thanks ALex,
    your are true it is concurrent program error ,
    but it is working for small amount of data and generating the output and it is not working for larger data.
    i have placed the code which i have used kindly suggest where i am going wrong.
    i am calling the .rdf through the concurrent program, i've used the below query in RDF
    select
    BATCHHEADER
    ,BATCHTRAILER
    ,RqUID
    ,Severity
    ,PmtRefId
    ,StatusDesc
    ,ErrorDesc
    ,AsOfDate
    ,AsOfTime
    ,RqUID1
    ,SPRefId
    from table(CL_CXFRFXFH_PKG.rcacknowledgments(:P_dir_name,:P_file_name));
    kindly find the below code for the package CL_CXFRFXFH_PKG.
    ==========================
    CREATE OR REPLACE package body APPS.CL_CXFRFXFH_PKG is
    function rcacknowledgments (p_directory in varchar2, p_filename in varchar2)
    return TRecordTable pipelined
    is
    nb_rec number := 1;
    tmp_xml clob;
    tmp_file clob;
    rec TRecord;
    begin
    dbms_lob.createtemporary(tmp_file, true);
    tmp_file := dbms_xslprocessor.read2clob(p_directory, p_filename);
    rec.BATCHHEADER := regexp_replace(tmp_file, '.*<BATCHHEADER>(.*)</BATCHHEADER>.*', '\1', 1, 1, 'n');
    rec.BATCHTRAILER := regexp_replace(tmp_file, '.*<BATCHTRAILER>(.*)</BATCHTRAILER>.*', '\1', 1, 1, 'n');
    loop
    tmp_xml := regexp_substr(tmp_file, '<\?xml[^?]+\?>\s*<([^>]+)>.*?</\1>', 1, nb_rec, 'n');
    exit when length(tmp_xml) = 0;
    --dbms_output.put_line(tmp_rec);
    nb_rec := nb_rec + 1;
    select RqUID, Severity, PmtRefId, StatusDesc, ErrorDesc, AsOfDate, AsOfTime, RqUID1, SPRefId
    into rec.RqUID
    , rec.Severity
    , rec.PmtRefId
    , rec.StatusDesc
    , rec.ErrorDesc
    , rec.AsOfDate
    , rec.AsOfTime
    , rec.RqUID1
    , rec.SPRefId
    from xmltable(
    '/CMA/BankSvcRq' passing xmltype(tmp_xml)
    columns RqUID varchar2(3000) path 'RqUID'
    , Severity varchar2(3000) path 'XferAddRs/Status/Severity'
    , PmtRefId varchar2(3000) path 'XferAddRs/Status/PmtRefId'
    , StatusDesc varchar2(3000) path 'XferAddRs/Status/StatusDesc'
    , ErrorDesc varchar2(3000) path 'XferAddRs/Status/ErrorDesc'
    , AsOfDate varchar2(3000) path 'XferAddRs/Status/AsOfDate'
    , AsOfTime varchar2(3000) path 'XferAddRs/Status/AsOfTime'
    , RqUID1 varchar2(3000) path 'XferAddRs/RqUID'
    , SPRefId varchar2(3000) path 'XferAddRs/SPRefId'
    pipe row ( rec );
    end loop;
    dbms_lob.freetemporary(tmp_file);
    return;
    end;
    end;
    ============================================
    Many Thanks,
    Ramesh.

  • Drill down report not working in 1og report

    hi all,
    Drill down report not working in 1og.
    in 6i it working good but 10g not working .
    plz help any one.
    thanks

    Hello,
    For detailled instructions about hyperlinks :
    Oracle® Reports Building Reports
    10g Release 2 (10.1.2)
    B13895-01
    3.6.10.1.8 Creating a hyperlink using the Property Inspector
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b13895/orbr_howto.htm#i1062802
    Regards

  • Drill down is not working for Pivot tables,but working for chart

    I have two reports and trying to navigate betwen summary report to detail report. But details report is displaying all the records .The filter condition is not working and displaying all the filters .I have Case statement in my filter.But the summary report column where the filter condition is applied is aggregated in the RPD level. Does this might be the reason ?. Is it passing different type of data type to details report ?. The filter condition is not working for Pivot table .But Chart is working fine and displaying the only selected records based on the filter condition.
    Please help me with the below issue.

    Hi sil174sss,
    Per my understanding you are experiencing the issue with the excel report which have add the drill down action, after export to excel only the expanded nodes included and the collapsed nodes is not shown, right?
    Generally, if we expand the nodes before export to excel then the excel will display the expanded details row and keep collapsed the details row which haven't expand, but we have the toggle "+","-" on the left of the Excel to help
    control the expand and collapse, when you click the "+" you can expand the collapsed notes to see the details rows.
    I have tested on my local environment with different version of SSRS and can always see the "+","-" as below:
    On the Top left corner you can find the "1","2", this help to control the "Collapse All" and "Expand All".
    If you can't see the "+","-" in the excel, the issue can be caused by the Excel version you are currently using, and also excel have limit support of this, please provide us the Excel version information and the SSRS version. You
    can reference to this similar thread:
    lost collapsing columns when export to excel
    Please try to export other drill down report to excel and check if they work fine, if they did, the issue can be caused by the drill down action you have added in this report is not correctly, if possible, please try to redesign the report.
    Article below about how to add  Expand/Collapse Action to an Item for your reference:
    http://msdn.microsoft.com/en-us/library/dd220405.aspx
    If your problem still exists, please feel free to ask
    Regards
    Vicky Liu

  • Drill Through to HFM Works for One Location, Not Another - Same Adapter

    Good morning all -
    I have two locations that both use the same adapter to load to the same HFM application. One location produces the drill through files, one does not.
    I've seen several posts about needing separate applications for multiple adapters, but surely this doesn't apply if the adapter is the same? Am I missing a location specific setting somewhere?
    Thanks in advance,
    Sarah

    This was a stupid mistake on my part. I looked through the output and never saw the A, B, C files get produced, so I assumed it never worked. I failed to notice that we had also always had .err files, which prevents drill through files from being created. I answered my own question on the phone with Oracle support. :)
    Thanks for your response.

  • Drill Through does not work if clicked from email attachment

    Hello,
    Drill through when clicked from the report attached in the email, takes me to the home folder in the Report Server. That's the <URL Root> setup in the Reporting Services. I checked the solutions, but those don't work for me. One of them said to use
    'Go To URL' in the 'Action' property of the text box, but JavaScript is not recognized when I tried to enter '="javascript:void(window.open('http://.........."  Please help.
    Thanks,
    jkrish

    Hi jkrish,
    Based on your description, are experiencing the issue when you  click in the report which will  link you to the home folder of the Report Server and the report was attached to an email, You adding the URL like this: ="javascript:void(window.open('http://..........”)" 
    which doesn’t work in the email’s report, right?
    I have tested on my local environment and can reproduce your problem in the email’s report, but it is fine in the report server ,the problem due to the JavaScript protocol can work only with an exact page. So, when you try to open an blank page to enter
    the URL it will not work.
    You can find more details steps to check the issue:
    Open a blank Internet Explorer, type the following URL in the address box:
    javascript:void(window.open('http://www.microsoft.com', '_blank'))
    The URL can’t work fine.
    Open a page such as :www.microsoft.com, and then replace the URL with the following URL:
    javascript:void(window.open('http://www.microsoft.com', '_blank')
    At this time, the Internet Explorer will open the home page of Microsoft.com in a new window. It means we can use the URL in Reporting Service well but can’t work in the email attached report.
    If your SQL Server version is 2008 R2 or Higher you can Using this expressions in the “GO To URL”:
    Expression: =IIF(Globals!RenderFormat.IsInteractive = true, "javascript:void(window.open('http://www.microsoft.com', '_blank'))", "http://www.microsoft.com")
    This mean if you run the report in Report Server and click the link, you will open the URL using : "javascript:void(window.open('http://www.microsoft.com', '_blank'))",otherwise it will using this URL: "http://www.microsoft.com")
    If the version is lower than 2008 R2 and will not support the “RenderFormat.IsInteractive = ”, you can add directly the URL (Example:=”Http://<ServerName>/ReportServer” ) in the “Go To URL” to make it work fine in the email attached report.
    Similar thread for your reference:
    SSRS 2005 Jump to URL javascript:void window.open fails in
    Excel 2003
    If you still have any question, please feel free to ask.
    Regards
    Vicky Liu

  • Database Variant to Data.vi not working for the Date datatype with LV 8.2?

    I'm moving a large body of LV database code from LV 7.1 to 8.2 and find that the Database Variant to Data.vi is not working correctly when used with the Date datatype. It works fine with 8.0, and the common Variant to Data works also. Am I missing something? Thanks in advance for any assistance. Wes

    Thanks for the prompt reply Crystal,
    The data is stored in an Oracle database using the DATE type. I'm querying many rows along with other columns and converting each of the values as necessary for each column with the 'Database Variant to Data' vi. Only conversion to Timestamp is no longer working as of version 8.2. I recognize that plain Variant to Data works but I have many (100's) of VIs to change if that is the only solution (not the end of the world). Most often the dates are originally generated in the database using PL/SQL procedures calling SYSDATE which look like: 5/1/2006 11:56:26 AM (in TOAD anyway) which I then need to read into LV as type Timestamp.
    Regards, Wes.

  • Download software site not working for Financial Data Quality

    Hi
    Financial data quality management site download site not working. it's showing error message below error message.
    Error message: "We're sorry,the page you requested was not found.We have recorded this error (404) to help us fix the problem"
    Site: http://www.oracle.com/technetwork/middleware/bi-foundation/downloads/hyperion-fin-data-quality-111130-085525.html
    regards
    Anil

    Hi Ferro;
    As far as I can see Apple doesn't have to fix anything with Software Update because it is working perfectly for myself and the users I help to support.
    So maybe if you can give us more details; such as what error messages are you getting, what have you done so far to solve this problem.
    Allan

  • I cannot get my thunderbird box to work since upgrade. addons not working for larger files

    When I try to use box for larger attachments ,it is not working and just keeps trying to load . I have checked my box account and spoken to there tech and he said it is not on their end ?

    I don't have any direct experience with D-Link equipment, but I may be able to provide some general advice. See if you can use a Web browser to connect to the D-Link's configuration screen. This probably involves visiting a URL such as http://www.192.168.0.1 . If you haven't changed the sign-on parameters, a quick Google search should find them for you.
    Once there, note as many configuration details as you can find. You'll need those to configure your Time Capsule.
    Use the AirPort Utility to configure the Time Capsule.
    One last thing: It's quite possible that the Verizon network will have locked onto the "MAC" address of your D-Link router. Something needs to be done to reset this. If there's a separate box at your house that came with the FIOS equipment that's "upstream" from the D-Link router, I'd cycle power on it to see if that does the job. Otherwise you'll probably need to call Verizon to ask them to reset things once your Time Capsule is installed in place of the D-Link router.

  • Repository variable is not working for prompted date

    Hi experts..
    I have created one repository variable sum(amount1), but it is not filtering according to date local.... i need to filter it according to date local.

    Thanks for reply..
    I need to calculate the value in A1 = Amount in A in each row is how much % of SUM(A) ..and want to show in chart..

  • XL Reporter not working for MS Office 2007

    Hi
    We have SAP B1-2005 with (PL35, XL Reporter 6.80.01), after installing XL Reporter we got the error as Microsoft Excel is required but not installed, for which we had browsed the forums and got the below said solutions
    1. Uninstall XLR completely.
    2. in SQL Server Studio Management, delete IX MetaDB database
    3. Uninstall Office 2007
    4. Install Office 2007
    5. Open SAP Business One and install XL Reporter.
    After doing the above said process we are still getting the same error.
    Please help us to resolve.
    Regards
    Shanker

    There is no problem running XLR with MS Office 2007.
    There is only one exception: XLR does not run with MS Office 2007 in the Small Business Edition!
    To handle the security problems you have: You have to allow macros in Excel, since a great part of XLR is realized as macros in Excel. And perhaps you have to set the security in Excel to a less secury level than you have.
    Sorry, but currently I can't tell you the exact security settings in MS Excel 2007  I use to run XLR. Since they differ from the settings in MS Excel 2003 and the machine I have installed MS Officew 2007 is crashed.
    To solve your problems maybe you should set the security to the lowest level. If XLR is running set the security stepwise to a higher level until there arise problems. This is just an idea, since I can't tell you the exact settings.
    Hope it helps!
    Frank

  • Granting privilege through role not working for PL/SQL

    Version: 11.2.0.2
    In our shop, we don't grant privileges directly to a user, we grant it to a role and grant that role to the intended grantee.
    Granting privileges through a role seems to be fine with SQL Engine. But it doesn't work from PL/SQL engine.
    In the below example GLS_DEV user is granted SELECT access on SCOTT.pets table through a role called tstrole. GLS_DEV can select this table from SQL. But PL/SQL Engine doesn't seem to know this.
    Reproducing the issue:
    SQL> show user
    USER is "SCOTT"
    SQL> select * from pets;
    NAME
    PLUTO
    SQL> conn / as sysdba
    Connected.
    SQL> create user GLS_DEV identified by test1234 default tablespace TSTDATA;
    User created.
    SQL> alter user GLS_DEV quota 25m on TSTDATA;
    User altered.
    SQL> grant create session, resource to GLS_DEV;
    Grant succeeded.
    --- Granting SELECT privilege on scott.pets to tstrole and then grant this role to GLS_DEV.
    SQL> conn / as sysdba
    Connected.
    SQL>
    SQL> create role tstrole;
    Role created.
    SQL> grant select on scott.pets to tstrole;
    Grant succeeded.
    SQL> grant tstrole to GLS_DEV;
    Grant succeeded.
    SQL> conn GLS_DEV/test1234
    Connected.
    SQL>
    SQL> select * From scott.pets;
    NAME
    PLUTO
    ---- All fine till here. From SQL engine , GLS_DEV user can SELECT scott.pets table.
    --- Now , I am going to create a PL/SQL object in GLS_DEV which tries to refer scott.pets
    SQL> show user
    USER is "GLS_DEV"
    create or replace procedure my_proc
    is
    myvariable varchar2(35);
    begin
         select name into myvariable from scott.pets ;
         dbms_output.put_line(myvariable);
    end my_proc;
    Warning: Procedure created with compilation errors.
    SQL> show errors
    Errors for PROCEDURE MY_PROC:
    LINE/COL ERROR
    6/2      PL/SQL: SQL Statement ignored
    6/41     PL/SQL: ORA-01031: insufficient privileges
    SQL>
    SQL> 6
      6*    select name into myvariable from scott.pets ;
    --- PL/SQL Engine doesn't seem to know that GLS_DEV has select privilege on scott.pets indirectly granted through a role
    --- Fix
    --- Instead of granting privilege through a role, I am granting the SELECT privilege on scott.pets to GLS_DEV directly.
    --- The error goes away, I can compile and execute the procedure !!
    SQL> conn / as sysdba
    Connected.
    SQL>
    SQL> grant select on scott.pets to GLS_DEV;
    Grant succeeded.
    SQL> conn GLS_DEV/test1234
    Connected.
    SQL>
    SQL> create or replace procedure my_proc
    is
    myvariable varchar2(35);
    begin
            select name into myvariable from scott.pets ;
            dbms_output.put_line(myvariable);
    end my_proc;  2    3    4    5    6    7    8    9   10
    11  /
    Procedure created.
    SQL> set serveroutput on
    SQL> exec my_proc;
    PLUTO
    PL/SQL procedure successfully completed.Has anyone encountered the same issue ?

    You really should start your own new thread for this question instead of resurrecting an old one, but to answer your question.
    There are two things going on here. First, there are a number of aler session commands that can be used by any user regardless of what privileges they are granted. Although I do not have the entire list at hand, things like nls_date_format and current_schema are available to all users, sort of like the grants to public in the data dictionary.
    Second, when you use execute immediate, the PL/SQL engine never really sees the statement, as far as the compiler is concerned it is just a string. It is only when the string is passed to the sql engine that permissions are checked, and there roles are not enabled.
    SQL> create role t_role;
    Role created.
    SQL> grant select on ops$oracle.t to t_role;
    Grant succeeded.
    SQL> create user a identified by a default tablespace users;
    User created.
    SQL> grant create session, create procedure to a;
    Grant succeeded.
    SQL> grant t_role to a;
    Grant succeeded.
    SQL> connect a/a
    Connected.
    SQL> select * from ops$oracle.t;
            ID DESCR
             1 One
             1 Un
    SQL> create function f (p_descr in varchar2) return number as
      2     l_num number;
      3  begin
      4     select id into l_num
      5     from ops$oracle.t
      6     where descr = p_descr;
      7     return l_num;
      8  end;
      9  /
    Warning: Function created with compilation errors.
    SQL> show error
    Errors for FUNCTION F:
    LINE/COL ERROR
    4/4      PL/SQL: SQL Statement ignored
    5/20     PL/SQL: ORA-00942: table or view does not exist
    SQL> create or replace function f (p_descr in varchar2) return number as
      2     l_num number;
      3  begin
      4     execute immediate 'select id from ops$oracle.t where descr = :b1'
      5                       into l_num using p_descr;
      6     return l_num;
      7  end;
      8  /
    Function created.
    SQL> select f('One') from dual;
    select f('One') from dual
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ORA-06512: at "A.F", line 4John

  • FR reports not working for new planning application

    Situation:
    Hyperion 9.2.0
    New planning application created and also registered to share services. One existing group have role assigned as 'Interactive User' and not able to perform operations on workspace (FR), FR Studio and Smart view. (Note: Admin can perform such activities and there is no error.)
    Key user receiving mention below messages while accessing FR report from workspace and using FR studio for particular report related to only new application. The existing FR reports on different planning application working fine working fine from workspace and FR studio. Here are the errors:
    *Workspace Error [Only for new application report]*
    [Wed Aug 24 15:04:35 2011]Local////Error(1051440) Analytical Services user [abcd] Authentication Fails against the Shared Services Server with Error [Failed to authenticate user abcd against provider Native Directory]
    *FR Studio [Only for new application report]*
    Error connecting to database connection XYZ: [Wed Aug 24 15:08:50 2011]<Server Name///abcd/Error(1051025) User abcd is not permitted to access application XYZ
    Smart View Error (Only for new application connection)
    Cannot open cube view. OLAP Error (1051025): User abcd is not permitted to access application XYZ.
    Analysis
    While looking Essbase, I identified that under security (User/Groups), group that have access as interactive user is not listed. Only I can see the groups that have admin roles. However I can see all other planning application successfully displayed groups associated to particular question.
    Please help to resolve the issue. I am new to this concept, so the detailed level description will help me lot
    Thanks
    Edited by: user10070515 on Aug 25, 2011 4:25 AM

    Hi
    Thanks For the replies.
    After the data is copied into the layout. User is changing the values of few key figures and saving. A new line item is created in the cube with the new values.
    Ex
    Cust ....qty.....Value....Revenue
    c100....10........100.....1000
    Changing the value in layout
    Cust ....qty.....Value....Revenue
    c100....10........150.....1000
    After saving in the cube
    Cust ....qty.....Value....Revenue
    c100....10........100.....1000
    c100....0........50..........0
    When the user execute the report revenue is not populating correctly. And i was expecing 150 *10 = 1500. I understood the issue. Can anyone tell me how can i achieve without updating the quantity how can i get this?
    Thanks
    Annie

  • Developer portal reporting not working for all rooms ?

    Seeing something interesting:
    In https://portal.collaboration.adobelivecycle.com/ I'm seeing reports that are generating only for rooms that were manually created ( I created them through dev portal, the rest of the rooms are dynamically created ):
    All dynamically generated room have the following reports:
    All manually created rooms have the following reports:
    Alex G.

    Recorded session reports ( Dev Portal > My Recordings > Report ( button ) ).
    Dynamic rooms - the process is basically keep a cache of 100 rooms, create more if we go below that number. This helps us always have enough rooms. So it's possible we've requested a room 6 months ago and it's going to be used eventually. Is it because the room was generated a while back ( since reports are showing Aug 1 - Aug 12 timeline ), while the room could have been created before that span of time ?
    Those sessions were recorded yesterday so should have had plenty of time to get the data.
    Thanks!
    Alex G.

Maybe you are looking for

  • AE CS4 bounces in the dock and won't open

    Hi guys, I already read this other post but my problem is slightly different: I had installed a trial version of CS4 Master Collection, now I purchased the license so I uninstalled the older version and run the Cleanup Script. Well, so after the inst

  • Transaction code KOAB

    Transaction code KOAB is open for change even if client is closed. Will it be possible to change the setting of this transaction code so that , it will be open in change mode only when client is open.

  • Anchor Link for an Image

    Hi There I am trying to create an anchor link in a site that I have built and need it to link to an image rather than a piece of text.  Does anyone know how you do this please I am using CS4 - thanks. G (Question - are Chocolate Chip Cookies bad for

  • Itunes plus adds a tv episode to purchase

    I ordered an album in itunes plus - I am having the same problem as many others - 12 of the songs go into waiting or partial download and just sit til i get an error saying "download interrupted - check purchases in view menu". I do and the downloads

  • Avoid pressing save button while conversion

    Hi All, I am using FlashPaper at my work. I need a help from you all , to convert the files to .swf or .pdf is there any possibility to convert directly except the following possibilities. 1) using ant for batch of files dir conversion 2) using the w