Query Output Formatting Help

Hello All,
I'm having problems trying to format the output of one of my queries. I'm new to SQL and I consider my writing the query a HUGE win.... but I can't seem to get the correct output format.
Per the code below, it is outputting the Last Name (lname) of the employee, a count of what I want, and the overall rank.  I would like to concatenate the employee number (emp#) the first (fname) and last name (lname) together into the same column in the output.
The concatenation code would be something like the below.
Desired concatenation:
emp# || ' - ' || lname || ', ' || fname AS EMPLOYEE
I'm using Oracle 11g Express. Please let me know if you need any supporting information to assist you.
I appreciate all your help!!! Thank you.
Query
SELECT EMPLOYEE, PREPARED,
RANK() OVER (ORDER BY Prepared DESC) AS rank
FROM (SELECT lname EMPLOYEE , COUNT(DISTINCT reportnum) PREPARED
      FROM employee
      LEFT OUTER JOIN faultreport USING (empno)
      GROUP BY lname
      ORDER BY Prepared DESC)
WHERE rownum < 15;

Hi,
8bb7968b-e6ae-456c-8459-f418352e9e0a wrote:
Hello All,
I'm having problems trying to format the output of one of my queries. I'm new to SQL and I consider my writing the query a HUGE win.... but I can't seem to get the correct output format.
Per the code below, it is outputting the Last Name (lname) of the employee, a count of what I want, and the overall rank.  I would like to concatenate the employee number (emp#) the first (fname) and last name (lname) together into the same column in the output.
The concatenation code would be something like the below.
Desired concatenation:
emp# || ' - ' || lname || ', ' || fname AS EMPLOYEE
I'm using Oracle 11g Express. Please let me know if you need any supporting information to assist you.
Whenever you have a problem, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all the tables involved, and the results you want from that data.
Explain, using specific examples, how you get those results from that data.
Always say what version of Oracle you're using (e.g. 11.2.0.2.0).
See the forum FAQ: https://forums.oracle.com/message/9362002
I appreciate all your help!!! Thank you.
Query
SELECT EMPLOYEE, PREPARED,
RANK() OVER (ORDER BY Prepared DESC) AS rank
FROM (SELECT lname EMPLOYEE , COUNT(DISTINCT reportnum) PREPARED
      FROM employee
      LEFT OUTER JOIN faultreport USING (empno)
      GROUP BY lname
      ORDER BY Prepared DESC)
WHERE rownum < 15;
It looks like you've found the right way to concatenate the columns.  How to use that in your query depends on your data, and what you want the query to do with that data.
If you GROUP BY lname, what do you want the concatenated value to be when different rows having the same lname have different fnames and/or emp#s?
Do you want to GROUP BY the new concatenated employee instead of lname?

Similar Messages

  • APEX BIP report query output format - not able to set with a variable

    I have a Named Columns (RTF) report that is working great, but I can't control the output format with a variable. I can set the "Output Format" in the Report Query Attributes, but it doesn't work when I set the report output format to "Derive from item". No matter what the item contains, I always get PDF output. I can see the variable in my session, but it doesn't control the output format. I have tried using the values "xml", "XML", "rtf", and "RTF".
    Any help would be appreciated...

    My guess is that an exception is being thrown for some rows. Since you've stubbed out your catch phrase to do nothing you're not going to have any visibility into what exception was thrown. You need to put some kind of logging in the catch phrase to see
    what is happening.

  • Enhancement Req (v4.0): Report Query- Output Format- Derive from Item

    Brief Introduction
    I have 1 major request I would like to make (and 2 lesser ones). The first, I would like to specify custom available output formats for 'Report Query' objects, as well as Reports Regions, Interactive Reports, etc. I believe that this could easily be an instance setting in the Report Server region of the internal workspace, or per workspace / application. Even if not supported on the system wide level, I would recommend that the "Derived from Item" output format "Return Value" be allowed to be returned unaltered to the Report Server. I know that the type is returned as "_xf", and for my purposes I would REALLY like to be able to get something other than the defaults.
    Use Case
    I am creating a custom JasperReports integration (for which I will be launching a public SaaS beta extremely soon). It uses the standard Apex reporting objects (Queries, Layouts, Print Buttons, etc). JasperReports templates are uploaded as Report Layouts and everything works fine. I am, however, wanting to implement as many output formats as are available to me in Jasper...that means Word 07, Excel 07, ODS, ODT, etc. For the items that take a print server override I can handle this in other ways (even though this appears broken [see below]), but for the standard report queries this isn't available. I would basically like the option to define the set of available output formats for the report server, and what the "_xf" returned for each one is.
    Minor Requests
    - Replace Uploaded Templates: If a template is used often and updated, then it has to be changed everywhere...minor irritation.
    - Customize Report Server URL for the Workspace or Application: For SaaS instances, workspace developers may license or have access to reporting solutions that are not (and should not be) available to all of the Oracle instance's workspaces, or may conflict with a service that is already provided by the instance administrators.
    Broken
    When I use the print server override, with the "Use Headers From" option, it appears that neither my content type, nor my content disposition headers are being sent back to the client. This is the work around solution for the non-standard types issue I am requesting enhancement on, so I would like to know what I can do to get this working immediately.
    Additional Info
    As it stands, if the site is available, feel free to sign up for the beta. The beta keys will be exported soon to the instance and made available. Instructions on setup will also follow:
    https://apex.vendelinc.com/apex/f?p=home

    Hi, please did you get any solution to this issue? I am having similar challenge right now.
    select     EMP.DEPTNO as DEPTNO,
         DEPT.DNAME as DNAME,
         EMP.EMPNO as EMPNO,
         EMP.ENAME as ENAME,
         EMP.JOB as JOB,
         EMP.MGR as MGR,
         EMP.HIREDATE as HIREDATE,
         EMP.SAL as SAL
    from     SCOTT.DEPT DEPT,
         SCOTT.EMP EMP
    where EMP.DEPTNO=DEPT.DEPTNO
    and      DEPT.DNAME =upper(:dname)
    This run perfectly in sql developer, toad, and even inside publisher if I login directly to publisher to create report.
    Generating this same query in shared component query builder and testing it returns no data found. If I remove the last line, it works. but with the last line, it return no data found. It seems no one has been able to provide solution to this issue

  • Formatting SQL query as of iSQL*PLUS query output format through PL/SQL

    This is my procedure through which i m sending an e-mail. In my e-mail i want to show output from error log query. I can show it in simple text but i want the output for the error log to be formatted as the query result is formated in iSQLPlus.
    In simple words instead of the message i want to send the query result which is formatted as iSqlPlus query output. Thankx in advance. Please provide a simple solution that iSqlPlus engine recieves my any given query and gives the formatted output for that query in the e-mail
    DECLARE
    conn utl_smtp.connection;
    v_log number;
    BEGIN
    conn := demo_mail.begin_mail(
    sender => '<sender-email>',
    recipients => '<recipient-email>',
    subject => 'HTML E-mail Test',
    mime_type => 'text/html');
    </h1>
    -- This method will be used for oracle error reporting');
    demo_mail.write_text(
    conn => conn,
    message => '<h1>Hi! This is a <i>test msg</i>);
    demo_mail.end_mail( conn => conn );
    END;

    oe@ORA102>
        select * from
        (select rownum r1, p.promo_id, promo_name from promotions p where rownum <5)
        full outer join
        (select rownum r2, w.warehouse_id from warehouses w where rownum <4)
       on (r1 = r2)
    oe@ORA102>/
            R1   PROMO_ID PROMO_NAME                   R2 WAREHOUSE_ID
             1          1 everyday low price            1            1
             2          2 blowout sale                  2            2
                                                        3            3
    oe@ORA102>But there should be "some connection" between the result sets, otherwise the resulting result set become unpredictable / meaning less.
    I am joining on ROWNUM, Do you want every row from emp related to every row from stocks (like a cartesian join)?
    Trying to understand the requirement.
    vr,
    Sudhakar B.

  • Query output format changing from GRID to LIST

    Hi experts,
    I am ading an additional table to an Infoset (SQ02) and selcting some of its fields in corresponding query(SQ01) for display.
    Now when I am trying to execute the query I am getting error message at bottom as below:
    'The line sequence does not correspond to the data source's hierarchy . List is only displayed in simple format for correction purposes.   Please check the sequence. Button  allows you to color list fields according to the hierarchy.'
    Also when I execute this query the output is coming in list display format instead of grid display which was earlier coming.
    Please help!
    Thanks,
    ~Sachin

    Hi Sachin,
    Please see the following thread.  Hope this helps.
    http://www.sapfans.com/forums/viewtopic.php?f=13&t=328315
    Best Regards,
    Archana

  • Query output format

    Hello
    I would like to have this out put:
    PID PCODE P_NUMBER L_NAME USED     NEW
    191 TI4-35304     4-3530 POS     6     2
                   TCC      0     1
    192 PI4-36701     4-3670 POS     4     23
                   TCC     0     18
    193 TI4-34906     4-3490 POS     0     1
         TCC 0     4

    Please, provide more info about your actual data, and business rule to obtain the desired output.
    Well, I've just seen that you post an other thread on same subject :
    Re: I would like this output
    Nicolas.
    Message was edited by:
    N. Gasparotto

  • About Query Output

    Why the Query Output format changed from 'Layout' to 'SAP List Viewer' after added some codes?
    How to modify it back?
    Edited by: abpjoel on Dec 2, 2010 2:45 AM

    你好!
    如果可以的话,你可以给我样例吗? 我想在我们的系统里,查一下有没有这个问题。
    还有你们系统的basis support package可以告诉我吗?

  • Need help on format for query output

    I am new to SQL Developer.
    When I run a query in the worksheet, sometimes the results are in table format and sometimes they are in text format. I would like to have the output always in table format, as it is easier to save to Excel that way.
    Is there a setting for this? Or can someone explain to me what triggers the format to change for some queries?
    I am using SQL D 3.1.07 Build MAIN-07.42 and accessing an instance on 11.2.0.2.

    Hi,
    Welcome to the forum!
    If you look carefully at the worksheet's toolbar, you will notice two green arrowhead icons on the left side: one larger and one smaller imposed over a lined paper image. How they work:
    1. The larger renders the query result in a grid format (what you call table format). Hover over it with the mouse and see: Run Statement (Ctrl+Enter)
    2. The smaller renders the query result in script output format. Hover over it with the mouse and see: Run Script (F5)
    Regards,
    Gary
    SQL Developer Team
    Edited by: Gary Graham on May 17, 2013 10:38 AM
    Also, if you use Run Statement to execute code that is inherently script-like, it will treat as if you used Run Script

  • Missing output format radio button in SAP Query

    Hi SAP Gurus
    We have SAP Query which as created in 4,6c. After the upgrade to ECC 6.0 We found that the output format radio button is mising in SAP Query. We are unable to choose teh output format. How can we have the radio button back?
    Appreciate yr help
    Rgds..Sanjay

    Dear Sanjay
    Refer OSS Notes 723577 and 132813, may be this notes helpfull.

  • Issue with Saving the Query output data in Excel format

    Hi,
    Recnetly we had upgraded from 4.6c to ECC 6.0.
    In ECc 6.0 environment, when user try to export the query output , we are getting only XML option to save the data.
    But user want to save the data in EXcel format, he was able to do that in 4.6C.
    pleas eprovide some inputs, on this issue.
    Thanks,
    Sanketh.

    I cannot for the life of me imagine, why a link to a post in the 'Business One Forum' where one uses ODBC to transfer query-data to MicroSoft Excel is of relevance to the OPs question, even if the same is not a security issue.
    Never mind. [note 40155|https://service.sap.com/sap/support/notes/402155] deals with various symptoms in the ALV-Excel combination as as of release 4.6C. There are various others, mostly in components BC-SRV-ALV and BC-ABA-LI - also: I remember that when we upgraded from 4.5B to 4.7C there was an issue with Excel-templates -> the solution was in the release notes somewhere. So, in addition to SMP you might want to check the release notes and/or upgrade guide for solutions.
    And yes, moderators ... this is not a security issue, this should go to ECC-Applications/Upgrade.

  • Help deciding best output format and workflow to obtain it.

    I’ve volunteered to create a class video for my son’s school.  The majority of my source footage (~80%) is DV NTSC 720x480i 16:9 29.97 fps shot on a Sony DSR-PDX10.  The remainder consists of 1920x1080p 59.941 fps, 1280x720p 119.89 fps, and 1280x720p 59.941 fps, all shot with a GoPro 3.  I need to deliver the final product on discs to the students/parents, though I can be flexible as to whether it is SD DVD or HD Blu-Ray.  I have Adobe CS6 Production Premium suite of applications and I’m not opposed to purchasing other products/add-ons in the couple of hundred dollar range if they’d be of a significant help.
    I’m trying to figure out what output format would give the best quality and the workflow to achieve it.  I’ve been perusing the internet looking for help, but it has gotten a bit overwhelming and there doesn’t seem to be a definitive answer out there.
    I’m wondering since most of my footage is 720x480i, should that be my output format and just down-convert or crop the HD footage.  Or since most folks will be viewing on HDTV’s (which would up-convert an SD-DVD anyhow), should my output format be HD and should I up-convert the SD footage myself.  In any case, when and how should I do the up/down converting, interlacing/de-interlacing, and converting to/from square/non-square pixels (before importing into Premiere, on the timeline, with 3rd party converters, on export or in Encore with AME, etc).
    Any advice or suggestions would be most certainly appreciated.

    If most of the footage is SD, I'd just make the call to work SD and go out to DVD. You shouldn't have too much of an issue using the GoPro footage on an SD timeline I don't think. Just keep an eye on your frame edges and scale up if the PAR mixing is introducing any letter/pillarboxing.
    But I wouldn't export out in DV AVI format for your final export. DV AVI is quite lossy. Sure, most of your footage is already DV, but if you're adding any titles they'll get really gunked up. Instead, go directly out of Premiere into your DVD formats (MPEG2-DVD with NTSC DV Wide preset).

  • D51wkdmp.exe output format query

    When i run d51wkdmp.exe to get the report details ,the syntax i see is
    d51wkdmp <Workbook_Name> <Output_File> <DB|FS> <Connect_String> <Eul_Schema> -f
    and the example given is "d51wkdmp "Video Tutorial Workbook" video.txt DB disco/[email protected] disco "
    where video.txt is the output file.can i create an xml output file i.e Can i give the cmd like
    "d51wkdmp "Video Tutorial Workbook" video.cml DB disco/[email protected] disco "?
    Will it give me output in an xml format or .txt is the only output format that can be used?

    Hi
    The utility will only give you output in text format I'm afraid. It's just a quick way of seeing what a workbook is up to.
    Best wishes
    Michael

  • Help : Complex Output Format

    Hi there
    Using Data in TAB_DTL for an APPID, I need to generate a Report in the following format.
    CREATE TABLE TAB_DTL
    APPDATE          DATE,
    AMOUNT          NUMBER(12,2),
    STATUS          VARCHAR2(1),
    RATE          NUMBER(5,2)
    INSERT INTO TAB_DTL ( APPDATE, AMOUNT, STATUS, RATE ) VALUES TO_DATE( '13/09/2011 10:50:45 AM','DD/MM/YYYY HH:MI:SS AM'), 500000, 'D', 13 );
    INSERT INTO TAB_DTL ( APPDATE, AMOUNT, STATUS, RATE ) VALUES TO_DATE( '09/11/2011 1:15:30 PM','DD/MM/YYYY HH:MI:SS AM'), 5000, 'R', 13 );
    INSERT INTO TAB_DTL ( APPDATE, AMOUNT, STATUS, RATE ) VALUES TO_DATE( '15/12/2011 3:20:31 PM','DD/MM/YYYY HH:MI:SS AM'), 5000, 'R', 13 );
    INSERT INTO TAB_DTL ( APPDATE, AMOUNT, STATUS, RATE ) VALUES TO_DATE( '05/01/2012 10:25:11 AM','DD/MM/YYYY HH:MI:SS AM'), 5000, 'R', 13 );
    INSERT INTO TAB_DTL ( APPDATE, AMOUNT, STATUS, RATE ) VALUES TO_DATE( '02/02/2012 4:23:34 PM','DD/MM/YYYY HH:MI:SS AM'), 5000, 'R', 13 );
    INSERT INTO TAB_DTL ( APPDATE, AMOUNT, STATUS, RATE ) VALUES TO_DATE( '05/03/2012 11:15:45 AM','DD/MM/YYYY HH:MI:SS AM'), 5000, 'R', 13 );
    INSERT INTO TAB_DTL ( APPDATE, AMOUNT, STATUS, RATE ) VALUES TO_DATE( '30/03/2012 11:55:10 AM','DD/MM/YYYY HH:MI:SS AM'), 5000, 'R', 13 );
    INSERT INTO TAB_DTL ( APPDATE, AMOUNT, STATUS, RATE ) VALUES TO_DATE( '31/03/2012 11:59:00 AM','DD/MM/YYYY HH:MI:SS AM'), 470000, 'B', 13 );
    OUTPUT FORMAT :
    APPDATE                    DR          CR     BALANCE          ACCAMT     DAYS     CUMM     
    13/09/2011 10:50:45 AM          5,00,000.00     0     5,00,000.00     10301     58     10301
    09/11/2011 1:15:30 PM          0          5000     4,95,000.00     6330     36     16631
    15/12/2011 3:20:31 PM          0          5000     4,90,000.00     3655     21     20286
    05/01/2012 10:25:11 AM           0          5000     4,85,000.00     4823     28     25109
    02/02/2012 4:23:34 PM          0          5000     4,80,000.00     5456     32     30565
    05/03/2012 11:15:45 AM          0          5000     4,75,000.00     4218     25     34783
    30/03/2012 11:55:10 AM          0          5000     4,70,000.00     334     2     35117
    31/03/2012 11:59:00 AM          0          0     4,70,000.00     35117Logic for computation of A) DAYS : Difference in Days from the next succeeding Date
                   B) ACCAMT : Balance * (Difference in Days from the next Date) * Rate / Days in the Financial Year
    Using CASE / LEAD SQLs, can the same be accomplished.
    Thanks

    # If appdate is 31-MAR-YYYY and time portion is > 11:59:AM THEN we will treat it as 01-APR-2012 otherwise the we will ignore the timestamp of appdate
    SELECT TO_CHAR (tab_dtl_vw.appdate, 'DD/MM/YY fmHHfm:MI:SS AM') appdate,
           CASE
               WHEN round(tab_dtl_vw.dr,2) < 10000 THEN to_char(round(tab_dtl_vw.dr,2))
               ELSE TO_CHAR(round(tab_dtl_vw.dr,2),'FM99,99,99,99,99,99,99,999.00')
           END dr,
           CASE
               WHEN round(tab_dtl_vw.cr,2) <10000 THEN to_char(round(tab_dtl_vw.cr,2))
               ELSE TO_CHAR(round(tab_dtl_vw.cr,2),'FM99,99,99,99,99,99,99,999.00')
           END cr,
           CASE
               WHEN round(tab_dtl_vw.balance,2) <10000 THEN to_char(round(tab_dtl_vw.balance,2))
               ELSE TO_CHAR(round(tab_dtl_vw.balance,2),'FM99,99,99,99,99,99,99,999.00')
           END balance,
           tab_dtl_vw.days,
           CASE
               WHEN tab_dtl_vw.days IS NOT NULL THEN ROUND ((tab_dtl_vw.balance * tab_dtl_vw.days * tab_dtl_vw.rate) / (tab_dtl_vw.daysinyear*100))
               ELSE SUM(ROUND((tab_dtl_vw.balance * tab_dtl_vw.days * tab_dtl_vw.rate) / (tab_dtl_vw.daysinyear*100)))
                       OVER(ORDER BY tab_dtl_vw.appdate)
           END accamt,
           CASE
               WHEN tab_dtl_vw.days IS NOT NULL THEN SUM(ROUND((tab_dtl_vw.balance * tab_dtl_vw.days * tab_dtl_vw.rate) / (tab_dtl_vw.daysinyear*100)))
               OVER(ORDER BY tab_dtl_vw.appdate)
               ELSE NULL
           END cummamt
    FROM
      ( SELECT appdate ,
                   CASE  WHEN status = 'D' THEN amount   ELSE 0  END AS dr ,
                   CASE   WHEN status = 'R' THEN amount  ELSE 0  END AS Cr ,
                   SUM (amount * CASE WHEN status = 'D' THEN 1 WHEN status = 'R' THEN -1 END) OVER (ORDER BY appdate) AS balance ,
                   CEIL (LEAD(appdate) OVER (ORDER BY appdate) - appdate ) AS days ,
                   rate ,
                   CASE 
                       WHEN (appdate >= '01-APR-' || TO_CHAR(appdate,'YYYY')  AND
                       TO_CHAR(LAST_DAY('01-FEB-' || (TO_CHAR(appdate,'YYYY') + 1)),'DD-MON') = '29-FEB')
                              THEN 366
                        WHEN TO_CHAR(LAST_DAY('01-FEB-' || TO_CHAR(appdate,'YYYY')),'DD-MON') = '29-FEB'
                               THEN 366
                        ELSE 365
                    END daysinyear
           FROM (SELECT CASE WHEN (TO_CHAR(TRUNC(APPDATE),'DD-MON') = '31-MAR' AND APPDATE > TRUNC(APPDATE - 1/2 - 60/86400)) THEN TRUNC(APPDATE) +1 ELSE TRUNC(APPDATE) END appdate,
                        status,
                        amount,
                        rate
                  FROM  tab_dtl
         ) tab_dtl_vw
    ORDER BY tab_dtl_vw.appdate ASC
    Output
    APPDATE              DR         CR         BALANCE                                        DAYS     ACCAMT    CUMMAMT
    13/09/11 12:00:00 AM 5,00,000.0 0          5,00,000.00                                      57      10123      10123
    09/11/11 12:00:00 AM 0          5000       4,95,000.00                                      36       6330      16453
    15/12/11 12:00:00 AM 0          5000       4,90,000.00                                      21       3655      20108
    05/01/12 12:00:00 AM 0          5000       4,85,000.00                                      28       4823      24931
    02/02/12 12:00:00 AM 0          5000       4,80,000.00                                      32       5456      30387
    05/03/12 12:00:00 AM 0          5000       4,75,000.00                                      25       4218      34605
    30/03/12 12:00:00 AM 0          5000       4,70,000.00                                       2        334      34939
    01/04/12 12:00:00 AM 0          0          4,70,000.00                                              34939
    {code}
    Edited by: Himanshu Binjola on Apr 24, 2012 11:18 AM
    Edited by: Himanshu Binjola on Apr 24, 2012 11:20 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • To download the query output to falt file

    Hi all,
    i have a query which i know will give more than 65k records as the output for a selection.
    i cannot run this query in excel due to its limitation.
    if i run on web i cannot download this as downloading is happening to excel file only.
    The customer ideally wants to download the query result to a text file(csv,tab-delimited etc) which inturn it will upload to MS-Access.
    How do i achieve this?
    SAP has given response use try using these options:
    1.open interfaces to receive the output of a query via the MDX language.
    2.open hub tool as it is designed for big amounts of data.(i suppose this is not possible as i want to download query output not the data target contents)
    how do i achieve my scenario with option 1?
    Are there any alternatives??
    Any useful help will be rewarded.
    Regards,
    Dhanya.

    hi vivek,
    thnks for the useful reply.
    i have some problem with my ID,hence loggin in through my coleague's ID.
    i will assign u points as i get logged in.
    I did as u said by downloading it to unconverted format.
    the file got download to a text file.where the output has
    1.header rows(10 lines almost)
    2.the values r coming in single quotes e,g:
    '144000023073      'TAAS SETTLEMENT CONV 738 '19333000   '30.09.2006          '0.000
    how can i remove all this?
    Regards,
    Dhanya
    I

  • Query Output to download in flat file through APD  or other means?

    Hello Experts,
    I am currently on BW3.5 system and have requirement to load query output in flat file in .csv format. I checked the option of APD but looks like we cant directly load the query output in flat file like in APD (BW  3.5 system) .
    One way i can think of it...load  the query output in transactional ODS and built an infospoke on it to write into flat file.
    Please advice if there are any better methods to store the query output in flat files.
    Thanks!

    Hi,
    Use RSCRM_BAPI.
    See
    Re: RSCRM_Bapi
    See the help on RSCRM_BAPI
    Re: Running Quaries automatically and saving them in as a Excel file in Server
    Re: Data transfer to external systems
    Re: Loading from a Custom R/3 Table
    Re: How can I schedule my Bex report to execute in background
    Re: How can I insert the RSCRM_BAPI into Process chain?
    Thanks
    Reddy

Maybe you are looking for

  • Reader x 10.1.3 doesn't show print dialog when printing, for some users on Terminal Server

    We are running Windows Server 2003 with Terminal Services for approximately 10 remote users. A few days ago, some users started to complain about not being able to print pdf documents to their printer. I discovered that the print dialog box doesn't o

  • Download Error (480) when trying to download rented movie

    Hello all. Managed to install the update. Everything seems to be working fine. Then decided to rent a movie, accepted the payment etc. but when I try to download I keep getting "Download Error (480)" and a notification to go to "Check Downloads" and

  • Form settings using SDK

    Hi Friends I am doing on Purchase order form.i need to set visible some column of matrix visible and active (in table Format and RowFormat) with out using form setting inter face , means through code using SDK.Is it possible Thanks

  • At another screen

    Hi all, Dear abap experts, I have created 3 screens, one of which is to use as a temporary screen for the purpose of selecting value. In fact I want to make it exactly sap's screen that comes when clicked on the F4(possible values) button. How could

  • URGENT!!!!problems with servlets

    Hi there i am using Visual Cafe enterprise edition 4.5 to build a servlet that produces reports.From these reports the user has the option to display the results of the reports in the following graphic forms:pie chart and bar diagrams.I am using a pr