Regarding Header And Footer in Data type Creation

Hi All,
Can Any One Please Send me One Screen Shot Developed with Header And Footer in the Data type Creation
I want to Know How to Create And where to create that in DT Creation
And Why Do we need Both of these in DT Creation
Regards
Vamsi

Hi,
Will u Please send One Screen With These Details, So that I Can Uderstand More
ID : [email protected]
Please send
Regards
Vamsi

Similar Messages

  • Need to add Header  and footer in an alv grid display output.

    How can I add header and footer in an alv grid dispay output.
    For the grid display, I am using the function module "REUSE_ALV_GRID_DISPLAY".

    HI,
    call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = gd_repid
                i_callback_top_of_page   = 'TOP-OF-PAGE'
                i_callback_html_end_of_list = 'END_OF_LIST_HTML'
                is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
                i_save                  = 'X'
           tables
                t_outtab                = it_ekko
           exceptions
                program_error           = 1
                others                  = 2.
    FORM end_of_list_html USING end TYPE REF TO cl_dd_document.
      DATA: ls_text TYPE sdydo_text_element,
            l_grid     TYPE REF TO cl_gui_alv_grid,
            f(14) TYPE c VALUE 'SET_ROW_HEIGHT'.
      ls_text = 'Footer title'.
    adds and icon (red triangle)
      CALL METHOD end->add_icon
        EXPORTING
          sap_icon = 'IL'.
    adds test (via variable)
      CALL METHOD end->add_text
        EXPORTING
          text         = ls_text
          sap_emphasis = 'strong'.
    adds new line (start new line)
      CALL METHOD end->new_line.
    display text(bold)
      CALL METHOD end->add_text
        EXPORTING
          text         = 'Bold text'
          sap_emphasis = 'strong'.
    adds new line (start new line)
      CALL METHOD end->new_line.
    display text(normal)
      CALL METHOD end->add_text
        EXPORTING
          text         = 'Nor'.
    adds new line (start new line)
      CALL METHOD end->new_line.
    display text(bold)
      CALL METHOD end->add_text
        EXPORTING
          text         = 'Yellow '
          sap_emphasis = 'str'.
    adds and icon (yellow triangle)
      CALL METHOD end->add_icon
        EXPORTING
          sap_icon = 'IC''.
    display text(normal)
      CALL METHOD end->add_text
        EXPORTING
          text         = 'Mor'.
    *set height of this section
      CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
        IMPORTING
          e_grid = l_grid.
      CALL METHOD l_grid->parent->parent->(f)
        EXPORTING
          id     = 3
          height = 14.
    ENDFORM. "end_of_list_html.
    This will solve  it. Post if you need more help in this.
    Regards,
    Madhu.

  • Header and Footer in Block ALV Display

    Hi All,
    My requirement includes to ALV Block List Display with header and footer.
    I have made two forms TOP_OF_PAGE and END_OF_PAGE . I have pass the form and name of event to an internal table it_events.
    This it_events[] is then passed to FM ' REUSE_ALV_BLOCK_LIST_APPEND' . But only Top of Page is working.
    Am I missing any thing in the code? or I have to use something else.
    Pls Help
    Regards,
    Nibha

    Hi,
    For end_of_page you need to use Events as follows:
    *TO CAPTURE EVENTS AND HANDLE
    DATA : it_event TYPE slis_t_event,
           wa_event TYPE slis_alv_event.
    *&      Form  BUILD_EVENTCAT
    FORM build_eventcat .
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = it_event
        EXCEPTIONS
          list_type_wrong = 1
          OTHERS          = 2.
      READ TABLE it_event INTO wa_event WITH KEY name = 'END_OF_LIST'.
      wa_event-form = 'END_OF_PAGE'.                          " Sub-routine that will be used to write
      MODIFY it_event FROM wa_event INDEX sy-tabix.           " Modify it_event
      CLEAR wa_event.
    ENDFORM. " F_BUILD_EVENTCAT
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program          = sy-repid
          i_callback_top_of_page      = 'TOP_OF_PAGE'
          is_layout                   = g_t_alv_layout2
          it_fieldcat                 = g_t_fieldcat2[]
          it_events                   = it_event[]
        TABLES
          t_outtab                    = <fs_final_itab>.
    Regards,
    Mansi.

  • Header and Footer in not displaying correctly on each page in Adobe Forms

    Hi experts,
       I need your little help on Adobe Form.  I have develop a customer account statement and facing problem.
         In header and footer part I have to display customer address. It is ok if data is of one page. But when data is overflowing, customer address is showing only at first page in header, and not displaying address neither in header nor in footer(footer section will print on last page, it may be either first page or third page ) on other pages. (Address is table type data )
           Header and footer Section address has been designed on Master Page.
    Please help me to resolve these two problems as soon as possible.
    Regards
    Piyush

    I found this post which I hope helps:
    This can be done by bit of tweaking using JavaScript. 
    Actually the problem was, the header was printing continuously in subsequent pages and once the header data was over the rest of the pages contained blank header. But we need have to print same header for each group of items till that group of items finish in the specific page. And for new group of items different header will be filled and so on.
    So to overcome this issue, create the item table in such a way that the header data is also included in the item table for each group of items. In the layout, select your header field and the event READY LAYOUT and write the below JavaScript code. This event is called for each page for that header field, so you can directly map the item table value and put it in your header field.
    // Get the current page
    var currpage = xfa.layout.page(this);
    // variable to store number of fields in that page.
    var fields = 0;      
    // Get the number of fields
            fields = xfa.layout.pageContent(currpage-1, "field", 0);
    // Loop on each field on the page
            for ( i=0; i<= fields.length-1; i++ )
    // Check if the field is in the item table column (it will be actually header data column in your item table)
                if ( fields.item(i).name == "TL" ) 
    // Fetch that value and store in your header field.
                           this.rawValue = fields.item(i).rawValue;

  • Header and Footer for ALV Layout

    Hi All,
    I have used the following code to create the Header and Footer Areas for ALV Report.
      CLEAR: FS_EVENTCAT.
      FS_EVENTCAT-NAME = 'TOP_OF_PAGE'.
      FS_EVENTCAT-FORM = 'build_comment'.
      APPEND FS_EVENTCAT TO GT_EVENTS.
      CLEAR: FS_EVENTCAT.
      FS_EVENTCAT-NAME = 'END_OF_LIST'.
      FS_EVENTCAT-FORM = 'F_WRITE_SUMMARY'.
      APPEND FS_EVENTCAT TO GT_EVENTS.
    Now the space is available for both Header and Footer...
    But i would like to display the Text in Header and Footer areas...
    How to insert the Texts....????
    Can you help me please.....???
    Regards
    Pavan

    Hi,
    Try with following example program:
    REPORT  ZRJR02                                  .
    *Table declaration.
    TABLES:ZEMP_MST,ZDEPT_MST,ZDESG_MST,ZSL_TXN.
    *Varriable declaration.
    TYPE-POOLS SLIS.
    DATA : POS TYPE I.
    DATA  REPID  LIKE SY-REPID.
    DATA : F1 TYPE SLIS_T_FIELDCAT_ALV,
           F2 TYPE SLIS_FIELDCAT_ALV,
           L_LAYOUT TYPE SLIS_LAYOUT_ALV.
    DATA  L_POS TYPE I VALUE 1.               "position of the column
    DATA  GT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    *DATA  GT_SORT TYPE SLIS_T_SORTINFO_ALV.
    data:  GT_EVENTS    TYPE SLIS_T_EVENT,
           FS_EVENTCAT LIKE LINE OF GT_EVENTs.
    *Internal table declaration.
    *DATA  BEGIN OF IT_SORT OCCURS 5.
         INCLUDE TYPE SLIS_SORTINFO_ALV.
    *DATA  END OF IT_SORT.
    DATA:BEGIN OF ITAB OCCURS 0,
          ZEMPNO    LIKE ZEMP_MST-ZEMPNO,
          ZEMPNAME  LIKE ZEMP_MST-ZEMPNAME,
          ZDEPTCD   LIKE ZEMP_MST-ZDEPTCD,
          ZDEPTNAME LIKE ZDEPT_MST-ZDEPTNAME,
          ZDESGCD   LIKE ZEMP_MST-ZDESGCD,
          ZDESGNAME LIKE ZDESG_MST-ZDESGNAME,
         END OF ITAB.
    REFRESH ITAB.CLEAR ITAB.
    START-OF-SELECTION.
    SELECT AZEMPNO AZEMPNAME AZDEPTCD BZDEPTNAME AZDESGCD CZDESGNAME
           FROM ZEMP_MST AS A
             INNER JOIN ZDEPT_MST AS B
               ON AZDEPTCD EQ BZDEPTCD
             INNER JOIN ZDESG_MST AS C
               ON AZDESGCD EQ CZDESGCD
           INTO CORRESPONDING FIELDS OF TABLE ITAB.
    IF SY-SUBRC <> 0.
       MESSAGE E899(M3) WITH 'No records'.
    ENDIF.
    perform f_build_eventcat.
    PERFORM LAYOUT.
    END-OF-SELECTION.
    *&      Form  LAYOUT
    FORM LAYOUT .
      PERFORM FCAT USING 'ZEMPNO'    'ITAB' '' 'Emp.No.'   'ZEMPNO'    'ZEMP_MST'  ''.
      PERFORM FCAT USING 'ZEMPNAME'  'ITAB' '' 'Emp. Name' 'ZEMPNAME'  'ZEMP_MST'  ''.
      PERFORM FCAT USING 'ZDEPTCD'   'ITAB' '' 'Dept.Code' 'ZDEPTCD'   'ZEMP_MST'  ''.
      PERFORM FCAT USING 'ZDEPTNAME' 'ITAB' '' 'Dept.Name' 'ZDEPTNAME' 'ZDEPT_MST' ''.
      PERFORM FCAT USING 'ZDESGCD'   'ITAB' '' 'Desg.Code' 'ZDESGCD'   'ZEMP_MST'  ''.
      PERFORM FCAT USING 'ZDESGNAME' 'ITAB' '' 'Desg.Name' 'ZDESGNAME' 'ZDESG_MST' ''.
    PERFORM LSORT USING  'ZEMPNO' 'IDATA' ''.
    PERFORM LSORT USING  'ZEMPNAME' 'IDATA' ''.
    MOVE IT_SORT[] TO GT_SORT[].
      REPID = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
             I_CALLBACK_PROGRAM       = REPID
             IT_FIELDCAT              = F1
            IT_SORT                  = GT_SORT
             I_SAVE                   = 'X'
             IT_EVENTS                = GT_EVENTS[]
         TABLES
              T_OUTTAB                 = ITAB.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " LAYOUT
    *&      Form  FCAT
    FORM FCAT USING P_FIELD P_TABLE P_SUM P_TEXT P_RFIELD P_RTABLE P_DISP.
      ADD 1 TO POS.
      F2-COL_POS       = POS.
      F2-FIELDNAME     = P_FIELD.
      F2-TABNAME       = P_TABLE.
      F2-SELTEXT_L     = P_TEXT.
      F2-REF_FIELDNAME = P_RFIELD.
      F2-REF_TABNAME   = P_RTABLE.
      F2-DO_SUM        = P_SUM.
      F2-NO_OUT        = P_DISP.
      APPEND F2 TO F1.
      CLEAR F2.
    ENDFORM.                " FCAT
    *&      Form  LSORT
    *FORM LSORT USING P_FIELD P_TABLE P_UP.
    ADD 1 TO L_POS.
    IT_SORT-SPOS      = L_POS.
    IT_SORT-FIELDNAME = P_FIELD.
    IT_SORT-TABNAME   = P_TABLE.
    IT_SORT-UP        = P_UP.
    APPEND IT_SORT.
    *ENDFORM.                    " LSORT
    FORM F_BUILD_EVENTCAT .
    CLEAR: GT_EVENTS.  REFRESH: GT_EVENTS.
      CLEAR: FS_EVENTCAT.
      FS_EVENTCAT-NAME = 'TOP_OF_PAGE'.
      FS_EVENTCAT-FORM = 'F_REPORT_HEADER_ALV'.
      APPEND FS_EVENTCAT TO GT_EVENTS.
      CLEAR: FS_EVENTCAT.
      FS_EVENTCAT-NAME = 'END_OF_LIST'.
      FS_EVENTCAT-FORM = 'F_WRITE_SUMMARY'.
      APPEND FS_EVENTCAT TO GT_EVENTS.
    ENDFORM.                    " F_BUILD_EVENTCAT
    FORM F_REPORT_HEADER_ALV.
    CALL FUNCTION 'Z_YHEAD_PRINT'
    EXPORTING
       TITLE1        = 'XYZ Limited'
       TITLE2        = 'Employee Master'
       TITLE3        = 'Created on '
       COLOR         = 'X'
    ENDFORM.
    *&      Form  F_WRITE_SUMMARY
          Write summary before exit
    FORM F_WRITE_SUMMARY .
    write:/ 'Welcome to XYZ Limited'.
    write:/ 'This is a test program to display Report in ALV Format'.
    ENDFORM.
    Regards,
    Bhaskar

  • Master Page Header and Footer in Page Viewer Web Part

    Hi.
    I created a View in Pages Library to view specific folders.
    After that i added one Page Viewer web part to one of the aspx page.
    There in the Page Viewer web part properties Link i have provided the url of the view.
    It is displaying the folders but at the same time it is displaying the master page header and footer inside the web part.
    Now i need to display the folders alone inside the Page Viewer web part.
    Please let me know how to exclude the master page header and footer inside the Page Viewer web part?
    Regards,
    Sudheer
    Thanks & Regards, Sudheer

    I think that is the default behavior of the page viewer webpart.
    In the page viewer web part,your just enter the url of the website.So that is treated as webpage and it is displaying as per page.
    http://meritsolutions.com/meritmatters/archives/576-Displaying-a-File,-Folder-or-Web-Page-in-the-Page-Viewer-Web-Part.html
    If you want to display a folder, type in a network path to that folder under Link and the folder content will be displayed. 
    Find the more details about page viewer webpart in msdn
    http://office.microsoft.com/en-in/sharepoint-server-help/page-viewer-web-part-HA010024045.aspx

  • Strange gaps in Header and Footer

    Im getting gaps in the header and footer on some of my pages.  Sometimes the gaps are filled with the background color of the colomn and other times they are the body color which is even weirder.  An example link would be http://www.mojogar.com/pcRepair.aspx .  In IE8 I get a gap on top but not  the bottom.  In Firefox3 the gap is on the bottom and not the top.  ???
    here is the markup page;  (followed by the CSS)
    <%@ Page Language="VB" ContentType="text/html" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/masterOne.dwt.aspx" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- InstanceEndEditable -->
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    <link href="thrColHybHdr.css" rel="stylesheet" type="text/css" /><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .thrColHybHdr #sidebar1, .thrColHybHdr #sidebar2 { padding-top: 30px; }
    .thrColHybHdr #mainContent { zoom: 1; padding-top: 15px; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="thrColHybHdr">
    <div id="container">
      <div id="header">
        <!-- end #header -->
        <div class="fltlft"><img src="images/mojoLogoSmall.png" alt="Mojogar digital design &amp; PC repair" width="172" height="41" border="0" usemap="#Map" />
          <map name="Map" id="Map">
            <area shape="rect" coords="2,2,172,39" href="default.html" target="_self" alt="Mojogar Home" />
          </map>
        </div>
    <div class="fltrt"><!-- InstanceBeginEditable name="HeadRight" -->HeadRight<!-- InstanceEndEditable -->
      </div>
      <div class="MenuVertDiv">
        <ul id="MenuBar2" class="MenuBarHorizontal">
          <li><a class="MenuBarItemSubmenu" href="#">Design</a>
            <ul>
              <li><a href="webDesign.aspx">Website Design</a></li>
              <li><a href="webDev.aspx">Website Development</a></li>
    <li><a href="logo.aspx">Logo Design</a></li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">Animation</a>
            <ul>
              <li><a href="webDev.aspx">Flash Animation</a></li>
    </ul>
          </li>
          <li><a class="MenuBarItemSubmenu" href="#">Support</a>
            <ul>
              <li><a href="pcRepair.aspx">PC Repair</a>            </li>
              <li><a href="virus.aspx">Virus</a></li>
              <li><a href="email.aspx">Email</a></li>
              <li><a href="backup.aspx">Data Backup</a></li>
              <li><a href="wireless.aspx">Wireless</a></li>
              <li><a href="software.aspx">Software</a></li>
              <li><a href="hardwareInstall.aspx">Hardware</a></li>
    <li><a href="server.aspx">Server Repair</a></li>
    <li><a href="busConsult.aspx">Consulting</a></li>
            </ul>
          </li>
          <li><a href="contact.aspx">Contact</a></li>
        </ul>
      </div>
    <!-- end header --></div>
      <div class="masterBackground">
      <div id="sidebar2">
        <!-- InstanceBeginEditable name="rightSidebar" -->
      <div id="sidebar2">
        <h4>When your computer is having troubles, have a Professional look over your system to update or repair your operating system, audit the installed programs, and check for viruses and other malware.</h4>
        <!-- end #sidebar2 -->
      </div>
      <!-- InstanceEndEditable -->
        <!-- end #sidebar2 -->
      </div>
      <div id="mainContent">
        <!-- InstanceBeginEditable name="main" -->
      <div id="mainContent">
        <div class="MarginTopZero">
        <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="580" height="300" title="Computer Support">
          <param name="movie" value="images/flash/PCCollage.swf" />
          <param name="quality" value="high" />
          <param name="wmode" value="opaque" />
          <embed src="images/flash/PCCollage.swf" quality="high" wmode="opaque" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="580" height="300"></embed>
        </object></div>
        <h2>Don't feel alone when your computer breaks.  Computer problems can leave you in the dark about what is wrong.  Help is a call away.</h2>
        <h4>Our tune-up and repair service consists of the following;</h4>
    <li>Operating system updates</li>
        <h5>Operating system updates help the security of the computer and can add features that the manufacturer has been working on to make the life of the end user easier.  Updates come out as frequently as every couple weeks on some operating systems.</h5>
        <li>Programs audit</li>
        <h5>Many <a href="software.aspx" title="Go to our software page" target="_self">applications</a> get added over time and can slow down the performance of any PC by taking up processor and memory resources, not to mention hard drive space.</h5>
        <li>Security overlook</li>
        <h5><a href="virus.aspx" target="_self">Anti-virus</a> definitions need to be kept up-to-date.  New viruses, spyware, trojans, and malware are always being introduced into the wild (the internet is a jungle).  Anti-virus applications need to be kept updated as well.  Subscriptions to paid providers can lapse and updates can be left behind for months if not years (I've seen it happen).</h5>
        <li>Anti-virus fine tuning</li>
        <h5>Many anti-virus programs are bloated applications and won't stop annoying the user with pop-ups and information.  Many users also never know when and how often their anti-virus is scanning.</h5>
        <li>Browser configuration</li>
        <h5>There are literally hundreds of options in your browsers settings for security and optimization.  Fine stunning these can in some cases increase surfing speed.</h5>  
        <li>Start-up & shut down optimizing</li>
        <h5>If your like most people, your PC never starts up fast enough.  Get a thorough audit of what programs and services are starting with your computer and optimize them to increase speed.</h5>
    <!-- end #mainContent -->
      </div>
      <!-- InstanceEndEditable -->
        <!-- end #mainContent -->
      </div>
      <!-- end masterBackground --></div>
    <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
    <%-- <br class="clearfloat" />
    --%>
       <div id="footer">
        <p>Copyright Mojogar 2010</p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    <script type="text/javascript">
    <!--
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    <!-- InstanceEnd --></html>
    CSS:
    @charset "utf-8";
    body  {
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #9FEE00;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 100%;
    background-color: #333;
    h1 {
    font-size: xx-large;
    color: #000;
    h2 {
    font-size: x-large;
    h3 {
    font-size: large;
    h4 {
    font-size: medium;
    h5 {
    font-size: small;
    h6 {
    font-size: x-small;
    p {
    font-size: xx-small;
    h1, h2 {
    padding-top: 20px;
    padding-right: 10px;
    padding-bottom: 4px;
    padding-left: 10px;
    h3, h4, h5, h6, p {
    padding-top: 3px;
    padding-right: 5px;
    padding-bottom: 3px;
    padding-left: 5px;
    li {
    font-weight: bold;
    ul {
    list-style-type: decimal;
    ol {
    font-weight: bold;
    a {
    a:link {
    color: #FFF;
    a:hover {
    color: #333;
    background-color: #6C8CD5;
    a:active {
    color: #F00;
    a:visited {
    color: #FF4848;
    /* Tips for this Hybrid layout
    1. Since the side columns em-based sizing is based on the user's default font size, you will want to be sure that background graphics in the columns take that into account. Built correctly, this is more accessible for those that need larger font sizes, since the width of the columns remains proportionate. If this is undesirable with your design, simply change the width to a pixel size and be sure to change the margins on the #mainContent div accordingly.
    2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, if you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the column widths will downsize proportionately. You may want to increase their widths, and the size of the #mainContent div's side margins, to compensate for this.
    3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
    4. The #container div is not necessary for this layout at the 100% width. You may want to use it to create faux columns or limit the width of the layout.
    5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 100% of the available space. It is here so that if you want to decrease the size of the overall container - perhaps leaving a bit of margin on each side - this will already be available for adjustment.
    .thrColHybHdr #container {
    width: 780px;
    /*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
    text-align: left;
    padding: 0px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    .thrColHybHdr #header {
    background-color: #C9F76F;
    height: 100%;
    width: 780px;
    margin: 0px;
    padding: 0px;
    .thrColHybHdr #header h1 {
    margin: 0;
    padding: 0px;
    /* Tips for sidebar1:
    1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
    2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width.
    3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColHybHdr #sidebar1 p" rule.
    .thrColHybHdr #sidebar1 {
    width: 13em;
    border-top-width: thick;
    border-top-style: solid;
    border-top-color: #C06;
    float: left;
    height: auto;
    .thrColHybHdr #sidebar2 {
    width: 200px;
    text-align: center;
    margin: 0px;
    padding: 0px;
    float: right;
    /*.thrColHybHdr #sidebar1 h3, .thrColHybHdr #sidebar1 p, .thrColHybHdr #sidebar2 p, .thrColHybHdr #sidebar2 h3 {
    margin-left: 0px;*/ /* the left and right margin should be given to every element that will be placed in the side columns */
    /* margin-right: 0px;
    /* Tips for mainContent:
    1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
    2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
    3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
    4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
    .thrColHybHdr #mainContent {
    text-align: center;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    width: 580px;
    background-color: #2A4480;
    color: #C9F76F;
    padding: 0px;
    .MarginTopZero {
    margin: 0px;
    padding: 0px;
    .busConslt {
    height: 600px;
    width: 800px;
    .idea {
    height: auto;
    width: 100%;
    .thrColHybHdr #footer {
    padding: 0;
    background-color: #C9F76F;
    margin: 0px;
    .thrColHybHdr #footer p {
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    color: #000;
    /* Miscellaneous classes for reuse */
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    .fltlft { /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 0px;
    padding-left: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear:both;
    height:0;
    #defMainLft {
    width: 49%;
    float: left;
    text-align: center;
    #defMainRt {
    width: 49%;
    float: right;
    text-align: center;
    .absolRgt {
    position: absolute;
    top: 0px;
    right: 0px;
    .relRgt {
    position: relative;
    top: 0px;
    right: 0px;
    .defFull {
    position: relative;
    height: 263px;
    width: 100%;
    border-bottom-width: medium;
    border-bottom-style: solid;
    border-bottom-color: #ff4900;
    .absolLft {
    position: absolute;
    top: 0px;
    left: 0px;
    .defFullTop {
    position: relative;
    width: 600px;
    border-top-width: thick;
    border-top-style: solid;
    border-top-color: #000;
    margin: 0px;
    .tuneUpTop {
    background-color: #000;
    color: #FFF;
    margin: 0px;
    padding: 0px;
    .contactForm {
    width: 470px;
    height: auto;
    left: auto;
    right: auto;
    .borderRight {
    border: medium solid #A62F00;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    .MenuVertDiv {
    margin-bottom: 0px;
    clear: both;
    height: 38px;
    background-color: #A62F00;
    width: 100%;
    .masterBackground {
    background-color: #BF5930;
    margin: 0px;
    padding: 0px;

    Your HTML code contains conditional comments for IE.  Try reducing or removing the extra padding and see if that helps.
    /* place css fixes for all versions of IE in this conditional comment */
    .thrColHybHdr  #sidebar1, .thrColHybHdr #sidebar2 { padding-top: 30px; }
    .thrColHybHdr  #mainContent { zoom: 1; padding-top: 15px; }
    /* the above  proprietary zoom property gives IE the hasLayout it needs to avoid  several bugs */
    </style>
    <![endif]-->
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • How to set a page header and footer of an excel file i'm creating

    Hello !
    SORRY MY ENGLISH is very BAD.
    I tried to set page header and footer in Excel sheet with ABAP  ole
    DATA : BEGIN OF enter,
    x(1) TYPE x VALUE '0D',
    END OF enter.
    DATA : format(255) TYPE c.
    FORM set_page_sheet.
    CALL METHOD OF excel 'ActiveSheet' = sheet.
    CALL METHOD OF sheet 'PageSetup' = pagesetup.
    SET PROPERTY OF pagesetup 'Orientation' = xllandscape.
    SET PROPERTY OF pagesetup 'PrintTitleRows' = '$9:$12'.
    CLEAR format.
    ERROR
    CONCATENATE 'PAGESHEET' enter-x 'PAGE &P/&N' INTO format.
    ERROR
    SET PROPERTY OF pagesetup 'RightHeader' = format.
    CLEAR format.
    CONCATENATE ' Text 1 ' enter-x 'Text 2'
    enter-x 'Text 3 ' INTO format.
    SET PROPERTY OF pagesetup 'RightFooter' = format.
    FREE OBJECT pagesetup.
    ENDFORM. " set_page_sheet
    Activate report -
    ERROR - The enter-x must by data type c or another then data type x
    Thanks for answer.

    Try to define ENTER this way & try
    class cl_abap_char_utilities definition load.
    DATA : BEGIN OF enter,
    x type c value cl_abap_char_utilities=>cr_lf,
    END OF enter.
    PS : I am not 100% sure about this.

  • How to disable Header and Footer in MS word with VB code

    Hi Tea,
    We need to disable Header & Footer in MS word (Restrict user to edit Header and Footer). So we are trying to write a VB code.
    What ever code we tried it is not working .
    Can you please provide any solution how to diable H & F in word using VB code.
    Thank you inadvance.

    A relatively simple way to do this without VBA:
    Select the body of the document (Ctrl+A).
    On the Review tab of the ribbon, click Restrict Editing.
    Tick the check box "Allow only this type of editing in the document".
    Leave the dropdown set to the default "No changes (read only)".
    Under Exceptions, tick the check box for Everyone.
    Click "Yes, Start Enforcing Protection".
    If you wish, enter a password (don't forget it - you'll need it if you ever want to unlock the document), then click OK.
    Save, close and reopen the document. The header and footer won't be editable.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • How to retrive Header and Footer Information on the basis on child item

    Hi
    Header and Footer should be come on the basis of <Company_ID265> condition, <Company_ID265> having only two value, which is under below path and it is repeatative. I have pasted XML file as well.
    Could you please provide the solution.
    <R03B20>
    <A_R_Delinquency_Notice_Detail_Join_S2_Group>
    <Header_Section_S3>
    <Company_ID265>
    <?xml version="1.0" encoding="WINDOWS-1252" standalone="no" ?>
    - <!-- Generated by EnterpriseOne Universal Batch Engine
    -->
    - <R03B20>
    - <Properties>
    <Version>MG0001</Version>
    <Title>A/R Delinquency Notices Print</Title>
    <Machine>MRCEJDEED1</Machine>
    <Host>MRCEJDEED1</Host>
    <Environment>JDV900</Environment>
    <User>MRCE21</User>
    <Role>*ALL</Role>
    <Company>MRCE</Company>
    <OneWorldRelease>E900</OneWorldRelease>
    <Date>11-30-2012</Date>
    <Time>8:53:20</Time>
    </Properties>
    - <A_R_Delinquency_Notice_Detail_Join_S2_Column_Headings Language="E">
    <Document_Number_ID2>Document Number</Document_Number_ID2>
    <Invoice_Date_ID4>Invoice Date</Invoice_Date_ID4>
    <Due_Date_ID6>Due Date</Due_Date_ID6>
    <Remark_ID8>Remark</Remark_ID8>
    <Foreign_Open_Amount_ID10>Foreign Open Amount</Foreign_Open_Amount_ID10>
    <Currency_Code_ID22>Cur Cod</Currency_Code_ID22>
    <Open_Amount_ID12>Open Amount</Open_Amount_ID12>
    <Base_Currency_ID14>Base Curr</Base_Currency_ID14>
    <Address_Number_ID18>Address Number</Address_Number_ID18>
    <Unique_Key_ID__Internal__ID20>Unique Key ID</Unique_Key_ID__Internal__ID20>
    <Total_No._of_Sent_Reminders_ID16>No. Rem</Total_No._of_Sent_Reminders_ID16>
    </A_R_Delinquency_Notice_Detail_Join_S2_Column_Headings>
    - <A_R_Delinquency_Notice_Detail_Join_S2_Column_Headings Language="">
    <Document_Number_ID2>Document Number</Document_Number_ID2>
    <Invoice_Date_ID4>Invoice Date</Invoice_Date_ID4>
    <Due_Date_ID6>Due Date</Due_Date_ID6>
    <Remark_ID8>Remark</Remark_ID8>
    <Foreign_Open_Amount_ID10>Foreign Open Amount</Foreign_Open_Amount_ID10>
    <Currency_Code_ID22>Cur Cod</Currency_Code_ID22>
    <Open_Amount_ID12>Open Amount</Open_Amount_ID12>
    <Base_Currency_ID14>Base Curr</Base_Currency_ID14>
    <Address_Number_ID18>Address Number</Address_Number_ID18>
    <Unique_Key_ID__Internal__ID20>Unique Key ID</Unique_Key_ID__Internal__ID20>
    <Total_No._of_Sent_Reminders_ID16>No. Rem</Total_No._of_Sent_Reminders_ID16>
    </A_R_Delinquency_Notice_Detail_Join_S2_Column_Headings>
    - <A_R_Delinquency_Notice_Detail_Join_S2_Group>
    - <Header_Section_S3>
    <Delinquency_Report_ID225>DELINQUENCY NOTICE</Delinquency_Report_ID225>
    <Report_or_Video_Title_ID53>MRCE</Report_or_Video_Title_ID53>
    <Proof_Mode_ID260>**PROOF**</Proof_Mode_ID260>
    <Date__ID258>Date</Date__ID258>
    <XX_XX_XX_ID259>2012-11-30</XX_XX_XX_ID259>
    <As_of_Date__ID46>As of Date</As_of_Date__ID46>
    <AsOfDate_ID47>2013-03-31</AsOfDate_ID47>
    <Customer_ID56>Customer</Customer_ID56>
    <NameAlpha_ID38>Freightliner PL Spolka z.o.o.</NameAlpha_ID38>
    <Customer_Number_ID63>100204</Customer_Number_ID63>
    <Company_ID265>01000</Company_ID265>
    <Company_ID264>Company</Company_ID264>
    <AddressLine1_ID29>Ul. Jasna 15</AddressLine1_ID29>
    <AddressLine2_ID32>00-003 Warszawa</AddressLine2_ID32>
    <AddressLine3_ID35>Poland</AddressLine3_ID35>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001122</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-09-20</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-10-04</DateDueJulian_ID5>
    <NameRemark_ID7>Maintenance CL66 8561-02</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>897.28</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100204</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>14</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12000081</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-10-04</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-11-03</DateDueJulian_ID5>
    <NameRemark_ID7>Sales Order1222</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>12733.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100204</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>14</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    <Currency_Description_ID2>TOTAL CURRENT BALANCE DUE</Currency_Description_ID2>
    <Total_Open_Amount_ID8>13630.28</Total_Open_Amount_ID8>
    </Header_Section_S3>
    - <Header_Section_S3>
    <Delinquency_Report_ID225>DELINQUENCY NOTICE</Delinquency_Report_ID225>
    <Report_or_Video_Title_ID53>MRCE</Report_or_Video_Title_ID53>
    <Proof_Mode_ID260>**PROOF**</Proof_Mode_ID260>
    <Date__ID258>Date</Date__ID258>
    <XX_XX_XX_ID259>2012-11-30</XX_XX_XX_ID259>
    <As_of_Date__ID46>As of Date</As_of_Date__ID46>
    <AsOfDate_ID47>2013-03-31</AsOfDate_ID47>
    <Customer_ID56>Customer</Customer_ID56>
    <NameAlpha_ID38>Interporto Servizi Cargo S.p.A.</NameAlpha_ID38>
    <Customer_Number_ID63>100262</Customer_Number_ID63>
    <Company_ID265>01000</Company_ID265>
    <Company_ID264>Company</Company_ID264>
    <AddressLine1_ID29>Via P.E. Imbriani 30</AddressLine1_ID29>
    <AddressLine2_ID32>I - 80132 Napoli</AddressLine2_ID32>
    <AddressLine3_ID35>Italy</AddressLine3_ID35>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001112</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-09-20</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-10-04</DateDueJulian_ID5>
    <NameRemark_ID7>Maintenance F4-086</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>390.70</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001072</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-09-13</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-09-27</DateDueJulian_ID5>
    <NameRemark_ID7>Loco clean F4-085</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>806.40</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001432</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-10-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-11-07</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>1530.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001429</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-10-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-11-07</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>3060.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12000633</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-07-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-07-24</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>3060.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12000634</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-07-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-07-24</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>3060.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12000856</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-08-21</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-09-04</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>6120.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12000260</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-05-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-06-01</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>7500.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001430</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-10-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-11-07</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>13770.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001431</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-10-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-11-07</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>30600.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001310</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-10-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-11-01</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>37320.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001311</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-10-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-11-01</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>37320.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001312</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-10-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-11-01</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>37320.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001313</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-10-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-11-01</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>37320.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001228</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-11-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-11-01</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>72640.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    - <A_R_Delinquency_Notice_Detail_Join_S2>
    <DocVoucherInvoiceE_ID1>12001227</DocVoucherInvoiceE_ID1>
    <DateInvoiceJ_ID3>2012-11-01</DateInvoiceJ_ID3>
    <DateDueJulian_ID5>2012-11-01</DateDueJulian_ID5>
    <NameRemark_ID7>Accounts Receivable Trade -</NameRemark_ID7>
    <CurrencyCodeFrom_ID21>EUR</CurrencyCodeFrom_ID21>
    <AmountOpen_ID11>111960.00</AmountOpen_ID11>
    <CurrencyCodeBase_ID13>EUR</CurrencyCodeBase_ID13>
    <AddressNumber_ID17>100262</AddressNumber_ID17>
    <UniqueKeyIDInternal_ID19>15</UniqueKeyIDInternal_ID19>
    <TotalSentReminders_ID15>1</TotalSentReminders_ID15>
    </A_R_Delinquency_Notice_Detail_Join_S2>
    <Currency_Description_ID2>TOTAL CURRENT BALANCE DUE</Currency_Description_ID2>
    <Total_Open_Amount_ID8>403777.10</Total_Open_Amount_ID8>
    </Header_Section_S3>
    </A_R_Delinquency_Notice_Detail_Join_S2_Group>
    </R03B20>
    Thanks & Regards
    Indrajeet

    Hi there
    Display your Topic List pod. Press Ctrl+A to select all the topics. Then right-click the selection and choose Properties. From the Properties dialog click the General tab. There you may choose the Template/Master Page. When you click OK all the topics should now be associated with the Template/Master Page.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How to write Header and Footer elements in Write file Adapter

    Hi,
    I have a requirement to write the file.The write file contains header and footer elements ,how we can write these elements. These elements are fixed for all files.these are not come from any input.below is the sample file.
    $begintable
    name,Id,Desg
    ad,12,it
    $endtable

    Hi,
    I have created the XSD for you, and i created a sample SOA Composite which writes the file same like what you want, the below XSD can write a file with one header record, multiple data records and one trailer record.
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
    xmlns:tns="http://TargetNamespace.com/WriteFile"
    targetNamespace="http://TargetNamespace.com/WriteFile"
    elementFormDefault="qualified" attributeFormDefault="unqualified"
    nxsd:version="NXSD" nxsd:stream="chars" nxsd:encoding="UTF-8">
    <xsd:element name="Root-Element">
    <xsd:complexType>
    <!--xsd:choice minOccurs="1" maxOccurs="unbounded" nxsd:choiceCondition="terminated" nxsd:terminatedBy=","-->
    <xsd:sequence>
    <xsd:element name="RECORD1">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="header" type="xsd:string"
    nxsd:style="terminated" nxsd:terminatedBy="${eol}"
    nxsd:quotedBy='"'/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="RECORD2" minOccurs="1" maxOccurs="unbounded">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="data1" type="xsd:string"
    nxsd:style="terminated" nxsd:terminatedBy=","
    nxsd:quotedBy='"'/>
    <xsd:element name="data2" type="xsd:string"
    nxsd:style="terminated" nxsd:terminatedBy=","
    nxsd:quotedBy='"'/>
    <xsd:element name="data3" type="xsd:string"
    nxsd:style="terminated" nxsd:terminatedBy="${eol}"
    nxsd:quotedBy='"'/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="RECORD4" nxsd:conditionValue="$endtable">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="trailer" type="xsd:string"
    nxsd:style="terminated" nxsd:terminatedBy="${eol}"
    nxsd:quotedBy='"'/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    Hope this helps,
    N

  • Header and Footer display using XXL_FULL_API function module

    Hi All,
    I have a requirement that I have to display the Header and Footer in the XL file download usig the FM : XXL_FULL_API.
    Data Upload  for condition type is to be printed in the header.
    No. of the success and failure records will be printed in the footer.
    Can any one please let me know how can I achieve this?
    I have checked some of the threads and tried in sample programs I could not achieve it.
    Sample code is an added advantage.
    Thanks in advance.
    Abhilash.

    Answered.

  • HTML format , setting header and footer on a page

    Hi,
    I am generating a report in HTML format .
    In this I need to display the header and footer on each page .I tried to design the report layout according to the page.When I take the printout of these pages the header and footer are not in place . One reason I could find that if I show the data grouped by and the data for that particular group extends to the next page the footer shifts to the next page and the whole setting is disturbed. Is there any way to keep these haeder and footer fixed. Tried in many different way but could not resolve.
    Any help would be appreciated.
    Thanks,
    Alka

    hello,
    check the REPORTS ESCAPES properties on REPORT LEVEL. there you can define text/HTML that has to be printed before and after the report, a page or the parameterform.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Resetting Header and Footer in RTF templates

    Hi,
    I developed an RTF template (template 1). This template contains start:body and end body for printing the header and footer in all pages. After printing this template then i have to call another template(template 2) from this. I called the template (template 2) using call statement. But the probelm is that the header and footer of template1 is printed in the output of template2 .
    I dont want to print this header and footer for template 2. Can anyone please suggest me in doing this. I placed start:body and end body in the second template with the assumption that 1st template's header and footer will be overwritten. But if i preview then am getting the error
    Font Dir: C:\Program Files\Oracle\XML Publisher Desktop\Template Builder for Word\fonts
    Run XDO Start
    RTFProcessor setLocale: en-us
    FOProcessor setData: C:\Documents and Settings\kpoda\Desktop\Invoice Printing Efficiencies\Sample XML Data\Sample Output4.xml
    FOProcessor setLocale: en-us
    each
    Please sugget.
    Thanks

    Hi,
    Do you have two templates (template1 & template2) that you want to display in the same document where the pages for template1 has one set of header and footers; and template2 has another set of header and footer?
    If that is the case you can simply create a new section in your rtf template so you have section1 and section2.
    In the body of section1 you call template1 and template2 in the body of section2.
    You can then have different header and footers for the two templates in the same document.
    BR Kenneth

  • Remove filename header and footer

    Hello! When you open a HTML file in Acrobat it puts the path to the filename in the header and footer automatically. How can I remove this?
    I went to Header/Footer and tried to update or remove, but it says there is no option. How do I do this?
    In another issue, Is there any plugin that will let me "press enter" to move the body of text downwards in the PDF, similar to Microsoft Word? I imported a bunch of company listings from a HTML document and I am trying to space them out 3 to a page and I need to shift the body of text down to the next page break. Is this possible with Acrobat or an affordable program/plugin?
    Kind Regards,
    Kevin

    Have you tried using the Touch Up Text tool for both of your issues?  Touch Up Text will not work in an automated way, but you can use it to manually edit existing text on the page.  Not sure about any plugins that remove headers/footers, although there might be a way in Acrobat's help files that outline how to prevent it from automatically embedding on converted HTML pages from web browsers.

Maybe you are looking for