Hi gurus  in BDC how to print the header on the top of the data

hi gurus  in BDC how to print the header on the top of the data

hi,
while downloading the file using gui_download function module
in that function module in  TABLES  filednames parameter is used to get headings
example:
CALL FUNCTION 'GUI_DOWNLOAD'
     EXPORTING
  BIN_FILESIZE                    =
       FILENAME                        = FILENAME1
      FILETYPE                        = 'ASC'
      WRITE_FIELD_SEPARATOR            = 'X'
     TABLES
       DATA_TAB                        =   T_ZETBR
      FIELDNAMES                       = IT_HEADER
reward if useful,
thanks and regards

Similar Messages

  • Can anybody explain how to print multiple copies of different documents at the same time as at the moment I have to open each individually and press print

    Can anybody explain how to print multiple copies of different documents at the same time as at the moment I have to open each individually and press print

    is this a windows in bootcamp question ?

  • How can I make the Label go on top of the Text box?

    How can I make the Label go on top of the Text box?
    Thanks again,
    Doug

    Set the Label Horizontal / Vertical Alignment property for the textarea to Above.

  • How to get the navigation bar on top of the border?

    Hi
    I have captured some captivate files (in Captivate 5.5) which I need to make look similar to the existing ones. I don't have source and am not aware which version of Captivate was it built on.
    Now, the existing ones have the navigation panel on top of the border like this:
    However, in my version I am getting the border on above the border like this:
    Is it possible to get the bar on top? If yes, how?
    Thanks
    Sreekanth

    Hi Sreekanth,
    Please try following step :
    - open project
    - click on project menu
    - Select Skin editor
    - set position to 'TOP'
    Check the image for more information

  • AS3 how to put the buttons always on top of the external swf in the code below?

    how to put the buttons always on top of the external swf in the code below?  I am  beginner use to as3, can someone help me?
    thanks, for all!!
    var Xpos:Number = 110;
    var Ypos:Number = 180;
    var swf:MovieClip;
    var loader:Loader = new Loader();
    var defaultSWF:URLRequest = new URLRequest("swfs/eyesClosed.swf");
    loader.load(defaultSWF);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
    // Btns Universal function
    function btnClick(event:MouseEvent):void {
    removeChild(loader);
    var newSWFRequest:URLRequest = new URLRequest("swfs/" + event.target.name + ".swf");
    loader.load(newSWFRequest);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
    // Btn listeners
    eyesClosed.addEventListener(MouseEvent.CLICK, btnClick);
    stingray.addEventListener(MouseEvent.CLICK, btnClick);
    demon.addEventListener(MouseEvent.CLICK, btnClick);
    strongman.addEventListener(MouseEvent.CLICK, btnClick);

    use:
    var Xpos:Number = 110;
    var Ypos:Number = 180;
    var swf:MovieClip;
    var loader:Loader = new Loader();
    var defaultSWF:URLRequest = new URLRequest("swfs/eyesClosed.swf");
    loader.load(defaultSWF);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
    // Btns Universal function
    function btnClick(event:MouseEvent):void {
    removeChild(loader);
    var newSWFRequest:URLRequest = new URLRequest("swfs/" + event.target.name + ".swf");
    loader.load(newSWFRequest);
    loader.x = Xpos;
    loader.y = Ypos;
    addChildAt(loader,0);
    // Btn listeners
    eyesClosed.addEventListener(MouseEvent.CLICK, btnClick);
    stingray.addEventListener(MouseEvent.CLICK, btnClick);
    demon.addEventListener(MouseEvent.CLICK, btnClick);
    strongman.addEventListener(MouseEvent.CLICK, btnClick);

  • Header text on top of the result set

    hi ,
    i am working with a query and the users requirement is to see a header value on top of the result.for example i am working with a sales multi provider which gives sales for this year and sales for curent year1,2,+3.soi have 4 key figures (for 4 years). the user wants to see the year on top of the key figure.
    in some cases they need to see a standard text on top of 2 key figures.
       2005       2006
    sales  tax   sales  tax
    100$    10$  250$   23$
    in this case 2005 and 2006 should be generated
    cash budget                 commitment budget
    sales  projected sales      sales  projected sales
    100     150                 159   200
    in this case cash budget and commitment budget are constants.
    i am concerned how we can acheive the values 2005 and 2006 and standarsd texts cash budget and commitment budget.
    thanks in advance
    sri

    You need to create text Variables for each column(KF).
    Right Click / Edit on key figure / beside description choose text variables / create a text variable from calendar year field if you using restricted key figures as they restricted on calendar year.
    If you have 4 basic key figures for 4 years , you may have to write ABAP for this using customer Exit.
    Cheers
    Martin

  • I have tried to install office for mac and an iWork trial and each time I go to install my "terminal" opens with the heading bash-80X24 and in the box reads Joel$-office installer.mpkg joel$ . nothing further happens

    I have tried to install office for mac and an iWork trial and each time I go to install after downloading my "terminal" opens with the
    heading
    bash-80X24 and
    in the box reads Joel$-office installer.mpkg joel$ .
    nothing further happens

    This is thread from Apple discussions.
    Look for the suggestion from Shootist007 towards the end of the 2nd page.
    It is just may be useful.
    https://discussions.apple.com/thread/3709115?start=15&tstart=0

  • In the header file generated by javah, the package name is not in the funct

    and in the header file generated by javah, the package name is not in the function declaration:
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class VocalJNITest */
    #ifndef IncludedVocalJNITest
    #define IncludedVocalJNITest
    #ifdef __cplusplus
    extern "C" {
    #endif
    * Class: VocalJNITest
    * Method: JNI_1myJNI
    * Signature: ()V
    JNIEXPORT void JNICALL Java_VocalJNITest_JNI_11myJNI (***please not there is no package name in it****)
    (JNIEnv *, jclass);
    #ifdef __cplusplus
    #endif
    #endif
    In the VocalJNITest.java file, I put package com.jni.test in it, why dose it not appear in the VocalJNITest.h file.

    it works,
    thanks alot, but java really confuses me, for example, if i run the app, i need to type the complete name java com/...../jnitest, in which the "/" is used instead of
    ". " like com.vocal.jnitest as the package name in the source file.
    but when using javah, i need to use ". " instead of "/";
    i tried com/vocal/jnitest, but failed so i post the question here.

  • Is there a way to send the TOC tooltip on top of the Collapse icon in Captivate 5.5?

    The customized TOC Collapse icon covers the portion of the TOC tooltip that passes through it. Is there a way to send the TOC tooltip on top of the Collapse icon in Captivate 5.5?

    This addon ought to do the job
    * https://addons.mozilla.org/en-US/firefox/addon/always-on-top/
    You will need to open your video in a window and not minimise it fully only shrink it to the size you want.

  • Why was the head phone jack moved to the bottom of the iPhone 5

    Why was the head phone jack moved to the bottom of the iPhone 5

    Because it worked better with the new design, most likely.  To get the real answer you'd have to ask the people that designed it.

  • HT1459 I downloaded a song from itunes to my nano 7th generation. When i play the song i can't hear it with the head phones that came with the nano

    Hi, i downloaded a song from Itunes to my ipod Nano 7th generation.  When i play the song on my Nano i can't hear the song with the head phones that came with the Nano.  what should do?
                                                                                         Thanks for your help.

    Same issue here, but no apparent way to redownload for me in iTunes.

  • How to print grandtotal in table footer only in the last page in SMARTFORMS

    Hello Experts,
    How do I print the GRANDTOTAL in the table footer only on the LAST PAGE in SMARTFORMS.
    What I have done is in the text element of CELL1 of the table footer i wrote the folowing logic but not working.
    /: IF &SFSY-PAGE& EQ &SFSY-FORMPAGES&.
    * V_SUM.
    /: ENDIF.
    I even tried this.
    /: IF &NEXT-PAGE& EQ 0.
    * V_SUM.
    /: ENDIF.
    but still it displays the grand total on all pages at table footer.
    How do i go for this experts.
    Regards,
    Ranjith N

    HI Nambiar,
    To print the grand total only on the last page then create the secondary window --> create the text node for the grand total -->In the condition tab check only after the end of the main window.
    This grand total will be displayed after all the items and end of the main window.
    Footer in the table displays as the subtotals i.e on every page total is displayed..
    Regards,
    Sravanthi

  • How to place the print and zoom link  on top of the page in discoverer10g

    I created a table format report and I want to place a Print and zoom link on the top of the page also I want to display the sum of a column in the top of the page,
    How to go for it.
    Message was edited by:
    user575682

    Wrong forum.

  • ADF: How to print query and query parameters passed in the executeQueryForCollection methof of VO impl class.

    Hi,
    Kindly let me know how to print the query and the parameters passed to it? I tried with the params parameter in super.executeQueryForCollection(qc, params, noUserParams); but could not succeed.
    I need to log the query and the params passed to it. Kindly help.
    Thanks in advance,
    Kalpana.

    Here you go
    Coding With Passion: Oracle ADF - Debug view object query with parameters

  • How to Print Sales header text at the end of last page of Main Window

    Dear All,
    I have a requirement to print Sales order header text at the end of Main of last page. I don't have footer window.When i use Bottom-End bottom.Only one line is printing.The header has 5 lines.
    Request you to provide <b>code</b>to handle this situation. Your response is highly appreciated
    Best Regards
    Praveen

    Hi,
    If u r using standard layout set RVORDER01.
    U can print that sales order header text in the following text element.
    /E SUPPLEMENT_TEXT.
    U can include ur text objects here.
    Then it gets printed.
    Regards,
    Veda Kumar

Maybe you are looking for

  • Error in LWF

    Hi Experts, I have a query. There is an error while running payroll. The system is giving a error message : No Entries in table t7inu3. And also inform me whether we should maintain LWF IT only for the month of JUNE and Dec. Please help me to solve t

  • ITunes authorization code, won't let me in!!

    I'm trying to log in and download on iTunes but it is continually asking for my security code....when I type it in it Says that it is invalid

  • No 24-bit 96 kHz audio in media pla

    I have a vista premium HTPC and a Audigy 2 NX USB sound card connected to a NAD analogue stereo used mainly for TV and music listening with a 2. focal system. Vista is fully updated. I checked 24 bit 96-kHz audio in Vista when i installed it in march

  • Transferring Songs from Computer to MP3 Pla

    I bought a creative zen sleek photo last July and it always takes me awhile to put new songs on it as I have to drag and drop or to rip a CD. So I was wondering if creative had anything like itunes where you could have all of your music on your compu

  • Use WebDynpro JCO Destination in Abstract Portal Component

    Hello, I was wondering if it is possible to use a WebDynpro JCo Destination in an Abstract Portal Component? I have a portal component that make as JCO call to run an rfc. I get the MYSAPSSO2 ticket from the cookie and pass this in to the JCO client.