Import/Convert reports from different software.

Post Author: cchang
CA Forum: General
I am a recent hire to a company that is using Relation&Report Writer for database reporting.  Previous to my hiring the company purchased Crystal to replace the current report writer because of it's limitations.  The problem I have is I don't want to rewrite all the existing reports but would like to use Crystal exclusively and get rid of the old writer.  I would like to know if anyone has ever tried importing or cnverting old reports to Crystal?  Is it even possible?  Thanks!

Hi Ella,
You can exclude universes and connections to get import while importing , import only reports if those reports using same universe.

Similar Messages

  • Convert report from SAP to Excel

    Hi All,
    How to convert report from SAP to Excel.Here now taking default text(.txt) format.But we want defualt taking (.xls) format only.
    Regards
    Usha

    hi usha
    u can even export the text in txt format and later right click and open with excel , u wont be able to directly import it into excel as it is not giving u any option to upload in excel directly
    Regards,
    Manish

  • Convert report from 4.6c to 4.0b

    I want to convert report from 4.6c to 4.0B ..can somebody tell me the steps or coding i shud do for that.The output shud b same of that report.
    How can I do that??

    hi hARISH,
    what I would do is to copy the report into 4.0B (one to one) and would do a syntax check. If there are errors, I would correct. Of course if such FMs are called which don't exist in 4.0B you could be in trouble and have to look for a workaround.
    hope this helps
    ec
    Message was edited by:
            Eric Cartman

  • Import Data Table from Different DB Schema in BI Administration

    Here is my scenario:
    Tables are imported from different DB schema in Administration. They are then joined together.
    When I select fields from more than one schema in BI Answer, incorrect result is returned.
    Below is the SQL it returns:
    -------------------- Sending query to database named DW_TESTING (id: <<15875>>):
    select D1.c4 as c1,
    D1.c5 as c2,
    D1.c2 as c3,
    D1.c1 as c4,
    D1.c3 as c5
    from
    *(select D1.c1 as c1,*
    D1.c2 as c2,
    D1.c3 as c3,
    D1.c4 as c4,
    D1.c5 as c5
    from
    *(select sum(T34.PRODUCT_SALES) as c1,*
    T52.DESCRIPTION as c2,
    T52.BE_TYPE as c3,
    T137.YEAR as c4,
    T137.QUARTER as c5,
    ROW_NUMBER() OVER (PARTITION BY T52.BE_TYPE, T137.QUARTER ORDER BY T52.BE_TYPE ASC, T137.QUARTER ASC) as c6
    from
    BEADMIN.BE_MASTER T52,
    DWADMIN.DATE_MASTER T137,
    BEADMIN.BE_DAILY_SALES T34
    where  ( T34.BE_TYPE = T52.BE_TYPE and T34.SALES_DATE = T137.CALENDAR_DATE )
    group by T52.BE_TYPE, T52.DESCRIPTION, T137.YEAR, T137.QUARTER
    *) D1*
    where  ( D1.c6 = 1 )
    *) D1*
    order by c2
    +++Administrator:7e0000:7e001f:----2009/06/08 17:22:09
    -------------------- Sending query to database named DW_TESTING (id: <<15938>>):
    select D2.c2 as c1,
    D2.c3 as c2,
    D2.c1 as c3
    from
    *(select D1.c1 as c1,*
    D1.c2 as c2,
    D1.c3 as c3
    from
    *(select sum(T109.PRODUCT_SALES) as c1,*
    T137.YEAR as c2,
    T137.QUARTER as c3,
    ROW_NUMBER() OVER (PARTITION BY T137.QUARTER ORDER BY T137.QUARTER ASC) as c4
    from
    DWADMIN.DATE_MASTER T137,
    DWADMIN.DAILY_SALES T109
    where  ( T109.SALES_DATE = T137.CALENDAR_DATE )
    group by T137.YEAR, T137.QUARTER
    *) D1*
    where  ( D1.c4 = 1 )
    *) D2*
    order by c2
    It seems that query has been seperated into two, and doesn't have relationship between each others.
    However, I also tested the same situation in other environment, and it returns correct result. I found that the query hasn't been seperated into two, but one. The query is as below:
    -------------------- Sending query to database named BI (id: <<2392>>):
    WITH
    SAWITH0 AS (select D1.c1 as c1,
    D1.c2 as c2,
    D1.c3 as c3,
    D1.c4 as c4
    from
    *(select sum(T29.PRODUCT_SALES) as c1,*
    T96.DESCRIPTION as c2,
    T120.YEAR as c3,
    T120.QUARTER as c4,
    ROW_NUMBER() OVER (PARTITION BY T96.DESCRIPTION, T120.QUARTER ORDER BY T96.DESCRIPTION ASC, T120.QUARTER ASC) as c5
    from
    SIMULATION.BE_MASTER T96,
    SIMULATION.DATE_MASTER T120,
    BIEE.BE_DAILY_SALES T29
    where  ( T29.BE_TYPE = T96.BE_TYPE and T29.SALES_DATE = T120.CALENDAR_DATE )
    group by T96.DESCRIPTION, T120.YEAR, T120.QUARTER
    *) D1*
    where  ( D1.c5 = 1 ) ),
    SAWITH1 AS (select D1.c1 as c1,
    D1.c2 as c2,
    D1.c3 as c3
    from
    *(select sum(T102.PRODUCT_SALES) as c1,*
    T120.YEAR as c2,
    T120.QUARTER as c3,
    ROW_NUMBER() OVER (PARTITION BY T120.QUARTER ORDER BY T120.QUARTER ASC) as c4
    from
    SIMULATION.DATE_MASTER T120,
    SIMULATION.DAILY_SALES T102
    where  ( T102.SALES_DATE = T120.CALENDAR_DATE )
    group by T120.YEAR, T120.QUARTER
    *) D1*
    where  ( D1.c4 = 1 ) )
    select distinct case  when SAWITH0.c3 is not null then SAWITH0.c3 when SAWITH1.c2 is not null then SAWITH1.c2 end  as c1,
    case  when SAWITH0.c4 is not null then SAWITH0.c4 when SAWITH1.c3 is not null then SAWITH1.c3 end  as c2,
    SAWITH0.c2 as c3,
    SAWITH1.c1 as c4,
    SAWITH0.c1 as c5
    from
    SAWITH0 full outer join SAWITH1 On nvl(SAWITH0.c4 , 8) = nvl(SAWITH1.c3 , 8) and nvl(SAWITH0.c4 , 9) = nvl(SAWITH1.c3 , 9)
    order by c1, c2, c3
    This query returns correct result and seems reasonable.
    Assume that the setup in BI Administration is the same for both environment, why the first situation returns query that are separated?

    I have made the same remark but not with two different environment and same design.
    What can influence the construction of two queries ?
    Here some ideas :
    - if you have of course two connections pools (I assume not)
    - if in our database features (double click on the icon and choose the tab feature), full outer join is not supported
    But I have this two requirement on my laptop and I can see that I have also two sql fired.
    What you can do is to make a comparison of your two repository.
    In the administration tool, File/Compare.
    The result will be very interesting.

  • Imported Crystal Reports from CE10 with specified server group problem

    We have Crystal Reports on a CE10 Environment where we have assigned and scheduled them to different server groups in order to throttle workload and maintain customer service levels.  When importing these reports to BO XI 3.1, it appears to bring over the server group with the report (it's visible in the CMC) but when a normal user goes to do a schedule on the report in InfoView, it fails, unless they go to the Scheduling Server Group' area on the report schedule options and select 'use first available server'.  All of the other options were greyed out.  If I log in as an account that is the member of the 'Administrators' group, it shows the option 'Only user servers belonging to the selected group'.  Am I missing a permission/security setting?  The user doing the scheduling has the 'Schedule' security profile on the report.

    Must grant user rights to view server groups and servers in order to allow for scheduling to specific server groups or servers

  • Consolidate report from different contexts

    Hello, is there a way to build a report that consolidates virtual indicators from different contexts?

    One approach would be to build a set of PAS measures that bring together the data, and then report from those measures.

  • Report from different connection pools

    Hi All
    My requirement is as below.
    When USER1 logs in and builds a report from a subject area then the data is fetched from connection_pool1 and when user 2 logs in and builds the same report then data is fetched from connection_pool2.
    The data are in identical table structures in both connection pools but for user2 there is a restriction on the volume of data hence can this dynamic feature be implemented? and How.
    thanks
    swastik

    We cannot do this dynamically,We need to change this manually
    Connection Pool ---- Permissions
    Mark if helps,
    Thanks,

  • Importing Expense Report from legacy to Oracle Payables??

    All,
    I need to import ER from legacy to payables. I used ap_expense_reports_headers_all & ap_expense_report_lines_all tables. But the "Expense Report Program" is not picking up the data from the tables though i populated all the required columns of the tables!!! When i open the "View Output" it says "The conc.request did not create an output file"!!!
    Can anyone tell me what could be the reason behind the failure of the program?
    Do I need to populate anyother column to resolve this issue?
    Detailed response is highly appreciated.
    thanks in advance,
    Sen

    Steps to import into AP
    Navigate to the Accounts Payable Responsibility
    Go to View -> Requests -> Submit a New Request -> Single Request -> OK
    Submit the Expense Report Export Program, after specifying all the mandatory parameters
    Source parameter should 'Oracle Internet Expenses'
    To view the expense report created
    Navigate to the Accounts Payable Responsibility attached to the User
    Go to Invoices -> Entry -> Invoices
    In the Invoice Workbench Window query the Invoice Num field with the Name of the Expense Report created in the previous step. The Invoice is displayed in the Invoice Workbench with the Type as Expense Report

  • Polish after unicode convertion - Language from different codepage how-to

    Hi,
    we have just convert a sendbox system from ASCII (SAP 1100 codepage) to Unicode (SAP ECC 6.0, Solaris 10 SPARC, Oracle 10.2.0.4, ecc.).
    In ASCII, TCPDB table contais 1100 codepage, now is empty, is it OK?
    Now we would try to install Polish language.... so I load it from SMLT from 000 client, apply delta support packges, run supplementation and then add L into istance profile, it OK? ... must I install also Polish locale into Solaris? ... any other work?
    Regards.

    > Now we would try to install Polish language.... so I load it from SMLT from 000 client, apply delta support packges, run supplementation and then add L into istance profile, it OK?
    - execute program RSCPINST, add "PL" and activate the changes
    - open RZ10, edit your profile, "Basic maintenance" and select PL, save and restart instance
    - then add the language as described with SMLT (import, delta support package, supplementation and client distribution for your production client)
    > ... must I install also Polish locale into Solaris? ... any other work?
    No. You are now in Unicode, the necessary libraries are the libicu* libraries in your kernel directory, those are the (if you want) locales for the operating system. So nothing more is necessary.
    To display the polish characters correctly in the SAPGUI you need to
    - install the polish codepage on the frontend system
    - switch the default from "Arial Monospace" to some other font that supports Latin-2 (such as Courier New)
    Markus

  • CS3: Any way to Batch convert files from different directories?

    Using CS3. I want to open a bunch of TIF files and re-save using different file options. The only way I know to do this is with File > Automate > Batch. But that only works if the destination folder for all files is the same. It's not.
    Ideally I would not need to first open the files in Photoshop. Perhaps something with Bridge will work. Tools > Photoshop > Image Processor looks promising. There's even an option called "Save in same location", which does not do what it says so is totally useless.

    >Bridge and Finder. They might both be running, but they are two programs that aren't Photoshop to do one simple thing Photoshop should do already by version 11.
    The whole point is that Bridge is supposed to be used as an integral part of the CS4 SUITE.
    I keep Bridge CS4 running at ALL times (it uses a minute amount of resources when it is just in standby mode) and I consider it to be an essential adjunct to Photoshop particularly if you deal with digital camera files.
    I use its "Get Photos from Camera" to download from my card reader in preference to Nikon's download program; and I open whole batches of RAW files for processing in Bridge-hosted ACR 5.2.
    ACR 5.2 also handles scanned Tiffs and JPEGs.
    And I use Bridge to output Web Galleries; attach files to e-mails; collect aliases of all the files of any kind (and from any folder) that are needed for a particular project into a single Collection: and generally to organize file storage throughout my System.
    The only thing that I can't yet do directly from Bridge is to burn a Collection to a CD or DVD.
    Hopefully, someone like David Franzen will create a Script to do that too?

  • Import XML files from different server

    Hi All,
    We have successfully used JavaScript to import local XML files and generated the PDF files on InDesign Server CS4.
    Now, we need to import the XML files which are dynamically generated on the other Server. (Data Managemnt Server).
    Wondering what's the best way to do this?
    Can we pass the whole XML file content as a JavaScript Parameter? What about images?
    or Can Javascript Import an external XML file via HTTP, other protocol?
    The worst case I guess is to have a script to upload XML files onto InDesign Server........
    Also, is it possible to return the generated PDF back to Data Management Server (XML file Server)?
    Thanks,
    xin

    Hi ,
    Check the FM : /SAPDMC/LSM_F4_SERVER_FILE.
    Inside this FM , subroutine below exists.The main program for routine is /SAPDMC/LLSMW_AUX_020F02.
    Call this routine from your program. You will get the length in bytes from the field len of table pt_file.
    data:
      begin of gs_file,
        directory(75) type c,              " name of directory.
                                           " (possibly truncated.)
        name(75)    type c,                " name of entry.
                                           " (possibly truncated.)
        type(10)    type c,                " type of entry: directory, file
        *len(8)      type p,                " length in bytes*
        owner(8)    type c,                " owner of the entry
        mtime(6)    type p,                " last modification date,
                                           " seconds since 1970
        mode(9)     type c,                " like "rwx-r-x--x":
                                           " protection mode
        errno(3)    type c,
        errmsg(40)  type c,
        mod_date    type d,
        mod_time(8) type c,                " hh:mm:ss
        subrc like sy-subrc,
    end of gs_file.
    DATA : pt_file LIKE TABLE OF gs_file.
    DATa : p_ok.
      PERFORM /sapdmc/llsmw_aux_020f02(directory_contents_get)
      TABLES   pt_file
                                USING    '/TMP' ""!!! Here is your filepath
                                CHANGING p_ok

  • How do i convert reports from Oracle reports to Oracle BI Publisher

    Hi,
    In the process of converting the reports to Bi Publisher ,I got stuck at executing the command . culd anyone correct the command plz.
    I am getting an error while executing the command . No Class found exception....
    D:\>java.exe -classpath D:\oraclebi\oc4j_bi\j2ee\home\applications\xmlpserver\xm
    lpserver\web-inf\lib\xdocore.jar;D:\oraclebi\oc4j_bi\j2ee\home\applications\xmlp
    server\xmlpserver\web-inf\lib\collections.jar;d:\oraclebi\oc4j_bi\j2ee\home\appl
    ications\xmlpserver\xmlpserver\web-inf\lib\aolj.jar;d:\oraclebi\oc4j_bi\j2ee\hom
    e\applications\xmlpserver\xmlpserver\web-inf\lib\xmlpserv2.jar
    oracle.apps.xdo.rdfparser.bipbatchconversion
    -source d:\oracle\reports\tools\open60\plsqllib
    -target d:\oracle\reports\tools\open60\plsqllib\output -debug

    Can you attach the full ClassNotFound Exception line? Eg ClassNotFound oracle.x.y.z.SomeClass

  • Ajax Dynamic Conntent -- pull report from different page

    Hi All,
    I am reposting my question, the previous thread was hacked by Fifi :-) . I am trying to implement Denes's solution in this Pulling Dynamic Conntent . Somehow I am getting java script error "unknown runtime error". on page load itself. It is giving error at the code html_GetElement('ReportDrop').innerHTML = gReturn;
    I believe I am missing some of the referenced java script files.
    Any help please ?
    I have kept my application on Apex.oracle.come
    workspace : edw_apex
    manish/manish
    Thanks
    Manish

    Finally I figured out the page template was missing, which was causing the issue. Just overwrote the body and footer of the template from this Make a copy of exiting page template and replace the body part with the code below:
    <htmldb:SUCCESS_MESSAGE><div id="SUCCESS_MESSAGE">#SUCCESS_MESSAGE#</div></htmldb:SUCCESS_MESSAGE>
    <htmldb:NOTIFICATION_MESSAGE><div id="NOTIFICATION_MESSAGE">#NOTIFICATION_MESSAGE#</div></htmldb:NOTIFICATION_MESSAGE>
    <htmldb:GLOBAL_NOTIFICATION><div id="GLOBAL_NOTIFICATION">#GLOBAL_NOTIFICATION#</div></htmldb:GLOBAL_NOTIFICATION>
    <htmldb:REGION_POSITION_01><div id="REGION_POSITION_01">#REGION_POSITION_01#</div></htmldb:REGION_POSITION_01>
    <htmldb:REGION_POSITION_02><div id="REGION_POSITION_02">#REGION_POSITION_02#</div></htmldb:REGION_POSITION_02>
    <htmldb:REGION_POSITION_03><div id="REGION_POSITION_03">#REGION_POSITION_03#</div></htmldb:REGION_POSITION_03>
    <htmldb:REGION_POSITION_04><div id="REGION_POSITION_04">#REGION_POSITION_04#</div></htmldb:REGION_POSITION_04>
    <htmldb:REGION_POSITION_05><div id="REGION_POSITION_05">#REGION_POSITION_05#</div></htmldb:REGION_POSITION_05>
    <htmldb:REGION_POSITION_06><div id="REGION_POSITION_06">#REGION_POSITION_06#</div></htmldb:REGION_POSITION_06>
    <htmldb:REGION_POSITION_08><div id="REGION_POSITION_08">#REGION_POSITION_08#</div></htmldb:REGION_POSITION_08>
    <htmldb:BOX_BODY><div id="BOX_BODY">#BOX_BODY#</div></htmldb:BOX_BODY>
    Replace the footer part with the code
    #FORM_CLOSE#</body></html>Thanks again !!
    --Manish                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to import MP3's from other software/folders into itunes...

    I just got an iPod Nano. I have A LOT of music stored on/in "MusicMatch" on my Dell computer. Is there any 'easy' way to take all of that music and import it into itunes??? Thanks!

    http://docs.info.apple.com/article.html?artnum=93390

  • I am not able to convert proper images when i convert them from different file format. plzz help me out

    hey there as i am facing some issue regarding conversion of older images to new file format..

    Can you please provide some details and specifics?
    What program are you working with? What format of video or images are you working with and what format are your trying to save them to?

Maybe you are looking for

  • "at" UNIX Command in Java Program

    Friends, 1. "at" command in UNIX execute Unix command at a scheduled time. 2. For each user there will be a table maintained internally which can be accessed by "at" with "-l" argument. 3. A mail will be sent to the owner with the output of the comma

  • How can we split the image when its added dynamically ?

    Hi Experts, I have an image where i'm calling a DAL in Entry tab Data section under section level properties.As you know that will execute during Entry process.In that DAL i'm Adding an image based on the user choice during entry. When image added th

  • Maximum number of pages in Smartforms/Sapscript

    Hi I have to print some very large invoices (between 1000 and 3000 pages) and it does not work with Adobe forms. So I would like to know approximately the maximum number of pages that it is possible to print in Smartforms and Sapscript. And then if p

  • Pixelated images while playing back a video shot on my iPhone4s

    Shot a video of my kid playing soccer and when watching on playback mode on either iphoto or imovie it comes out all pixelated images...

  • Pricing Calculation in my sales order.

    Hello Gurus, Goodmoring. There  are some rquirements in  pricing  procedure: There are two pricing condition types in pricing procedure,i.e  one  condition type is to calculate on quantity base and another  to calculate on gross wt, but in my sales o