CSV Ouput Link Position

All,
I have a very large report with about 50 columns and I want the user to be able to export the data in CSV format via the standard link.
I have enabled this and the link appears and work fine.
My problem is that the link is on the right and the user has to scroll to get to it.
Is it possible to display the link on the left so that they do not have to scroll ?
Thanks in advance
Chris

Chris,
I'm using a custom report template w/ the param #CSV_LINK# on both left and right sides.Below the template elements. Try it....
lam
<!-- BEFORE ROW Values-->
<table align="right">
<tr>
<td align="right"><font face=verdana size="1">#CSV_LINK#</font></td>
</tr>
</table>
<table>
<tr><td align="left">
<table style="border-left:1px #cccc99 solid;background-color:#f7f7e7;font-size:10pt;
margin-top:5px;" cellpadding="0" cellspacing="0">
</table>
<table>
<tr>
<td align="left"><font face=verdana size="1">#CSV_LINK#</font></td>
</tr>
</table>
<table>
<tr>
<td align="left"><font face=verdana size="1">#TOP_PAGINATION#</font></td>
</tr>
</table>
<!-- COLUMN TEMPLATES (Column Template1) -->
<td align="#ALIGN#" style="padding:3px;border-bottom:1px #cccc99 solid;border-right:1px #cccc99 solid;" nowrap>
<font face=verdana size="2">#COLUMN_VALUE#</font>
</td>
<!-- COLUMN TEMPLATES (Column Template2) -->
<td align="#ALIGN#" nowrap>#COLUMN_VALUE#</td>
<!-- AFTER ROW Value -->
</table>
<tr>
<td align="left"><font face=verdana size="1">#PAGINATION#</font></td>
</tr>
</table>
<!-- COLUMN HEADER Values -->
<td style="padding:3px;border-right:1px #f7f7e7 solid;" class="tableheader" nowrap align="center">
<font face=verdana size="1.5">#COLUMN_HEADER#</font></td>
<!-- COMMENTS Values -->
<tr><font face=verdana size="1" color="#004080">
<td bgcolor="white" colspan="#COLCOUNT#"></font>
<font face=verdana size="1"><b>#PAGINATION#</b></font></td>
</tr>

Similar Messages

  • CSV Output link not shown

    Hi,
    the CSV output link is now shown in Easy- and SQL report. How to ? - I did check Yes and named it in the report attributes page.(1.5.0.00.33 - IE6.0)
    TIA brgds
    Bernhard

    two things are necessary for your csv download link to appear:
    1) you need to have enabled csv output in your report. you said you've done that.
    2) the report template you're using needs to have the substitution string #CSV_LINK# somewhere on it. that's the string into which your link is substituted.
    please take a look at your report template to see if you have that sub string it. hopefully that's your issue.
    regards,
    raj

  • How to generate csv ouput by using a procedure

    Hi All,
    How do I generate a csv (comma separate value) output by using procedure. I have 2 SQL statements in my procedure, I need to generate a csv file with the result set of 2 SQL's. For Example;
    I have the following 2 SQL's in my procedure
    Cursor emp_det Is Select * From emp where sal < 4000;
    Cursor sal_det Is Select e.* from emp e,dept d where d.dname = 'SALES'
    My requirement is to generate a csv ouput with the result set of cursors emp_det & sal_det. How can I generate a csv ouput by using PL/SQL. I could generate the same by using tools like TOAD & PL/SQL Developer. But I need to generate csv output by using PL/SQL only...Your help would be more appreciated.

    use tom kyte's dump_csv.
    create or replace function  dump_csv( p_query     in varchar2,
                                          p_separator in varchar2
                                                        default ',',
                                          p_dir       in varchar2 ,
                                          p_filename  in varchar2 )
    return number
    AUTHID CURRENT_USER
    is
        l_output        utl_file.file_type;
        l_theCursor     integer default dbms_sql.open_cursor;
        l_columnValue   varchar2(2000);
        l_status        integer;
        l_colCnt        number default 0;
        l_separator     varchar2(10) default '';
        l_cnt           number default 0;
         l_colDesc          dbms_sql.DESC_TAB;
    begin
        l_output := utl_file.fopen( p_dir, p_filename, 'w' );
        dbms_sql.parse(  l_theCursor,  p_query, dbms_sql.native );
        for i in 1 .. 255 loop
            begin
                dbms_sql.define_column( l_theCursor, i,
                                        l_columnValue, 2000 );
                l_colCnt := i;
            exception
                when others then
                    if ( sqlcode = -1007 ) then exit;
                    else
                        raise;
                    end if;
            end;
        end loop;
        dbms_sql.define_column( l_theCursor, 1, l_columnValue, 2000 );
        l_status := dbms_sql.execute(l_theCursor);
         dbms_sql.describe_columns(l_theCursor,l_colCnt, l_colDesc);
         l_separator := '';
         for lColCnt in 1..l_colCnt
         loop          
                utl_file.put( l_output, l_separator ||  '"' || Upper(l_colDesc(lColCnt).col_name) || '"');
                   l_separator := p_separator;
         end loop;
         utl_file.new_line( l_output );
        loop
            exit when ( dbms_sql.fetch_rows(l_theCursor) <= 0 );
            l_separator := '';
            for i in 1 .. l_colCnt loop
                dbms_sql.column_value( l_theCursor, i,
                                       l_columnValue );
                utl_file.put( l_output, l_separator ||  '"' ||
                                        l_columnValue || '"');
                l_separator := p_separator;
            end loop;
            utl_file.new_line( l_output );
            l_cnt := l_cnt+1;
        end loop;
        dbms_sql.close_cursor(l_theCursor);
        utl_file.fclose( l_output );
        return l_cnt;
    end dump_csv;Thanks,
    Karthick.

  • Custom Apex theme prohobits CSV Download link

    Hi,
    I'm using Apex 3.2.1.00.12; Database version = 11.1.0.7.0.
    A customized theme is used for the application.
    For a reports region I added CSV Download link, but it is not showing when i run the page.
    Please let me know if any settings to be changed for the page/theme/template.
    Thanks & Regards.

    Hi
    In the report template (not the region template), there is a substitution string available called #CSV_LINK#
    You need this somewhere in the template in order for the link to appear. For exmaple you may have something like this in the 'After Rows' section of the template...
    </table><div class="someClass">#CSV_LINK#</div></td>
    </tr>
    #PAGINATION#
    </table>Cheers
    Ben

  • How to link Positions to personnel No.s(urgent)

    Hi
    how to link Positions to Personnel No.s
    is there any program for that or can be done in IMG
    Thanks
    Arc

    Hi Archana,
    1. Create your own query with PCH logical database in SQ02, then execute that in SQ01.
    2. Yes, PP01, select the object and id, then select the infotype Object, then change the Date in the screen.
    3. Assigning a Holder to Position, if it is initial hiring use PA40 or use PA30 and select the Personnel no and select the IT0000 and record your datas through the Tcode SHDB for BDC. Then maintain your data in legacy and upload it using the BDC.
    4. No... It won't accept the employee to assign it to Position. Again use, BDC.
    I hope, you got a clear idea. Would you mind to reward it.
    Good Luck
    Om.

  • Export to CSV download link doesn't work

    hi,
    I have done the following:
    If you click on the report link in your Region group
    for the page concerned, then select the Report
    Attributes tab and scroll down to Report Export you
    can change the Enable CSV Output to YES and update
    filename, separator etc.
    This will show a link on the report page at runtime
    that will allow the user to download the report in
    CSV format to a spreadsheetAnd when I click on the link to download the report, it tries to download the page in html format...
    any ideas on what the problem is?
    thanks!!

    Anoushka,
    Do you have spreadsheet software such as MS Excel or OpenOffice installed? What filename did you choose? Do you have your browser configured to launch a spreadsheet application when files of a certaim mime type are downloaded?
    Sergio

  • Calling the CSV Export link in a Report Template

    I'm trying to have our "download" link appear on the bottom left rather then the default which is to the far right in Look 4.
    When I look at the source code, I can see how look 3 and 4 differ - different HTML table set-up and "align=right" for the link.
    Unfortunately, looking at the source gives me the direct source for that specific report file not the command to include the csv export file, so I can't include it in a new report template design.
    Is there code I can use to include a CSV link in my report template?
    If not, how can I place the report download/csv export into my Nav bar region, or some other region?

    Michelle,
    Typically you'll find the substitution strings documented in the popup help when clicking on the item label. But this one doesn't seem to be listed there. It's documented in the online help though. Click in the help icon in the upper right corner of your page and search for CSV.
    Marc

  • Not saving the the line/link position in process designer

    I've got a process which works fine, but when I open it in process designer, the line/links are not arranged correctly. It's strange that if I drag on the service icon, then the line/link will be rearranged nicely, then I save it and close the process, when I open the process again the line/links become mess again not display in the correct position.
    Is there anything I can do, so that the lines can be saved correctly. Actually, the process is working corectly even those line seems broken in process designer. I've tried to copy it to a new process, but still can't solve the problem. Please advise if it can be solved. Thanks.

    Could you please send me a copy of your process so that I can take a look at
    it?
    2011/4/7 hkho <[email protected]>
    >
    I've got a process which works fine, but when I open it in process
    designer, the line/links are not arranged correctly. It's strange that if I
    drag on the service icon, then the line/link will be rearranged nicely, then
    I save it and close the process, when I open the process again the
    line/links become mess again not display in the correct position.
    >
    Is there anything I can do, so that the lines can be saved correctly.
    Actually, the process is working corectly even those line seems broken in
    process designer. I've tried to copy it to a new process, but still can't
    solve the problem. Please advise if it can be solved. Thanks.
    >

  • Links positioned on graphic background.  How?

    I'm working my way through the Adobe Fireworks CS5 version of "Classroom in a Book" and I've come to an impasse.
    I'm in Chapter 8, page 199, step #4; the task is to use the CSS and Images Export.  At this point we have a web page with seven distinct regions.  One of these is a slice, a navigation banner with a graphic background and text for navigation links.
    The instructions in the book are to change the img_nav slice type to Background Image and to hide the sublayer containing the text for the links.  The book explains that "...since the slice will become a background image, it cannot have HTML links applied to it."
    It goes on to say that "...creating the navigation is not a job for Fireworks, and the navigation menu would need to be created later in a web-page editor."
    How?  The links are sort of in the middle of the graphic.  When I try to add links in Dreamweaver I don't seem to have much control over there placement.  It is either at the beginning of the div or the end. 
    Can someone point me to a resource that explains how to place a link on top of a graphic where I want it?  Also, since I'm learning, I'd like to stick with Best Practices and use CSS while minimizing the use of tables.
    Thanks,
    Dan Earley

    Perhaps it's time for you to purchase Dreamweaver CS5 "Classroom in a Book"!
    I'm not directly familiar with this textbook... If the navigation is the blue text (Features - Fashion - Calendar - Video - Blog), it would typically be handled in HTML using an unordered list (ul), with each list item (li) containing a link (a) that surrounds the text itself. CSS would be used to position the navigation, perhaps applying display: inline or float: left to the list items (li) to make the list run horizontally. The list itself might be positioned within a surrounding div using margin or padding—or even using absolute positioning (in a relative context), given that there's probably a specific height to the background image (the "check" logo).
    As far as links go, they're traditionally inline elements that wrap around other inline elements—like text within a paragraph or heading, or an image. However, I think as of HTML5, they're also allowed to be wrapped around multiple block-level elements. Regardless, the simplest way to add a link to an image is to surround the image (img) tag with a link (a) tag. However, like your book says, if an image is being applied via CSS as a background image, it cannot have a link applied to it, because it's not part of the HTML. But a background image must be applied to some HTML element, and perhaps the link could be applied to that element.
    A link can also be converted to a block-level element via CSS using a display: block rule. This will make it occupy the full-width of its container, which can make it more "clickable" by giving it a larger area of interactivity.
    Not sure if this information is helpful or not... I wonder if the book goes on to answer any of your questions later on. Often, these types of books complete a project step-by-step, chapter-by-chapter, eventually addressing issues brought up in earlier chapters.

  • UWL and Moving Refresh Link Position

    Hi,
    I added the below action
    <Action reference="refresh"/>
    to DefaultView in my UWL Custom XML file and I could get a refresh link next to the filter and preview links.Is it possible to get the Refresh link a bit before, like "Create Task" button.
    With regards,
    Laksh.

    Hi Laksh,
    I haven't yet found a way to change the position of the link.  I've also tried changing it to a button as opposed to a link, but couldn't get it to do that either.
    The best I could come up with was changing the text of the link from "Refresh" to "Click here to refresh this list" so it stood out a bit more. See below for an example of how to do that.
    regards,
    John
          <Actions>
            <Action name="refresh" groupAction="no" handler="UIActionHandler" referenceBundle="refresh" returnToDetailViewAllowed="yes" launchInNewWindow="no">
           <Properties>
             <Property name="type" value="button"/>
             <Property name="onClick" value="onForceRefresh"/>
           </Properties>
           <Descriptions default="Click here to refresh this list"/>
            </Action>
          </Actions>

  • Error message when CSV file link to datasource(CSV file upload to BW)

    hello friends,
    I have met one problem when i upload CSV file to BW, i want to show the error screenshot, how can i show it in this website?
    Please help me analysis it base below error message;
    tks;
    below is my steps
    1.create datasource;
    2.general info tab, input description
    3. extraction tab, input file name, value of data format is separated with separator (for example CSV),data separator is ,
    4.proposal tab, click "load example data",it can show correct data the same as CSV file;
    5.when i click fields tab, Popup show"field list no longer corresponds to dafault copy change? "Yes" or "NO" button"
    6.Click Yes, fields tab show correct data;
    7.click "read preview data " in preview Tab, show error infomation;
    ---Runtime error -description of exception;
    Runtime errors           Data_length_negative
    Except.                       CX_XY_RANGE_OUT_OF_BOUNDS
    short text             Invailid partial field access :length negative
    what happened  Errpr in the ABAP application  program
                                The current Abap program "CL_RSAR_PSA==============CP " has to be terminated bacause it has
                                come across a statement that unfortunately can't be executed.
    Error analysis
       An exception occured that is

    Please see the error message;
    Runtime Errors         DATA_LENGTH_NEGATIVE
    Except.                CX_SY_RANGE_OUT_OF_BOUNDS
    Date and Time          09/04/2009 21:34:14
    Short text
    Invalid partial field access: Length negative
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "CL_RSAR_PSA===================CP" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_RANGE_OUT_OF_BOUNDS', was not
    caught in
    procedure "_GET_DDIC_STRUCTURE" "(METHOD)", nor was it propagated by a RAISING
    clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    In the executed program "CL_RSAR_PSA===================CP", the system
    attempted to access the field
    "ME->P_PSA_TECHNAME" using the length "-3".
    However, a partial field access with a negative length specification is
    not allowed.
    How to correct the error
    Use a positive length specification if a part of the field "ME->P_PSA_TECHNAME"
    is to be
    accessed.
    If the error occurred in your own ABAP program or in an SAP
    program you modified, try to remove the error.
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "DATA_LENGTH_NEGATIVE" "CX_SY_RANGE_OUT_OF_BOUNDS"
    "CL_RSAR_PSA===================CP" or "CL_RSAR_PSA===================CM00A"
    "_GET_DDIC_STRUCTURE"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    The exception must either be prevented, caught within proedure
    "_GET_DDIC_STRUCTURE" "(METHOD)", or its possible occurrence must be declared
    in the
    RAISING clause of the procedure.
    To prevent the exception, note the following:

  • Linking position to mask path?

    I know I can copy and paste a Mask Path to a layer's Position and vice versa.
    But is there a way to link them live with an expression?  I think I'm running into a problem with too many dimensions in an array -- I'm trying to link a Light's 3D position into a 2D Mask Shape (for Particular).   I can copy and paste the motion path & mask shape between them just fine, but pickwhipping gives me an error.

    Not directly, but there may be a work-around, depending on what you're trying to do. If you paste the path into the position property of a null, AE creates a smooth 2-second animation. You can like to the null's position and use a positon expression with the light (using valueAtTime()) to traverse the path on any timescale you want - stop, back up, etc. If what you're looking for is a live link between the path and the light though, then this doesn't help.
    A script has access to all the mask stuff, so depending on exactly what you're trying to do, you could use a little helper script to update your light position keyframes after you edit the path.
    Dan

  • How to link Position flexfield and grade flexfield with business group?

    Hello guys,
    I am a new for Oracle HRMS. We have 2 position flexfields and 2 grade flexfields that need to be assigned to each business group.
    How to link it? I have found the way for job flexfield (within job group) however I can't find any similar setup for those flexfields.
    Please advise.
    Many thanks.

    Can you provide the solution, please.
    thanks in advance

  • How to generate CSV ouput from JD Edwards 8.11 using rtf template

    Hi,
    I have a report "Critical Date Report" - R15611 in JD Edwards 8.11. This report has to be generated as CSV output from BI Publisher which is embedded to JDE. why we choose the output in BI Publisher is to move some of the data displaying to different place in the page(ex: Move the company address from top left corner to Bottom right corner).
    In order to achieve this
    1.We create blank rtf template and upload to XML repository using P95600 application
    2.Create report definition using P95620 application
    3.Here I see the available output types as PDF,RTF,HTML,EXCEL,POWERPOINT and XML,ETEXT(GRAYED OUT)
    Which output type we can use for CSV ?
    4.Execute the report definition of the critical date report from P95620 to get the XML source
    5.This XML source will be loaded into the blank rtf template
    6.From this point no idea how to design the rtf template in order to get the CSV output.
    7.We did design and output types as excel - but the result data is not in good formatting and alignment.
    If anyone has worked on similar type of requirement,let us know how to do or send a sample XML source,rtf template and how the CSV output will be.
    Thanks in Advance.
    Vijay

    Ive replied to your other post.

  • Change the collaboration link position

    Hi all,
    Whenever i activate colaboration,the link for collaboration appears jst at the side of the search  textfield in the portals.I want collaboration link to be placed somewhere else on the portal page,may be on the content area where i view the IViews.Is it possible to show the link in the Iview rather than it appearing with the search Field.Please guide me.ASAP.Awaiting ..

    Hi Preeti:
    Not a standard way of doing this, but there is a workaround for it to solve your problem:
    One way: you can have this link in Portal Favorites by doing the below:
    Portal Favorites Menu > Organize Entries > Add an External Link >
    Target: http://<hostname>:<port>/irj/servlet/prt/portal/prtroot/com.sap.netweaver.coll.shared.ui.CollaborationLaunchPad
    Name: CLP (your choice)
    Other way: create an URL iview with the same URL given in Target, and you can use see it in Content Area of your portal.
    And you can disable the Collaboration from Search (Tool) iView.
    Thanks,
    MS
    Edited by: Munna Sap on Jun 5, 2009 3:41 PM

Maybe you are looking for