Problem with Header

Hi Experts,
I have a peculiar requirement from business like joining two reports into one report . For ex : User will run Report A & Report B seperately. almost all the informations are same. so our business asked us to club the both the report into one. So i have created report C by clubbing A&B. Report flow is as below
Report A
details
Report B
Details.
In JDE it is working good. but if i take the XML the tag is coming as below (tested with two different customers X & Y)
Page Header tag
Page header A
Page header B
Page header close
Detail HeaderA tag
X customer detail tag
Y customer detail tag
Detail header B tag.
X Customer Detail tag
Y Customer detail tag
if i create the RTF then one header is displaying (X customer detail header) but the information in detail line is clubbing for X&Y like below
Page Header A
X customer detail
Y customer detail
Page Header B
X customer detail
Y customer detail
but it should come as below
Page Header A
X Customer Detail
Page Header A
Y Customer Detail
Page Header B
X Customer Detail
Page Header B
Y Customer Detail.
I know it is confusing Please can you help ?
Thank you..

Hi ,
Thanks for your reply. Could you please let me know your mail id ? so that i can send it to you ?
Thank you..

Similar Messages

  • Having problem with header(location)

    I want to have a visitor to a site agree to some terms before being allowed to access a page.  There is no logon so the approval is only for the current session.
    If we call the page with the terms (and the agree button) "portal.php" and the page with the data "gallery.php", the logic is the user goes to gallery.php where there is a check to see if the visitor agreed to the terms.  If not, their redirected to portal.php to do so.
    The code on gallery.php is:
    <?php
    session_start(); 
    if (!isset($_SESSION["agree"]))
        header( 'location: http://localhost/myweb/portal.php' );  Using a local test server
    ?>
    If the Session variable "agree" has not been set, the user is redirected.
    The code on portal.php is:
    <?php
        if ($_POST)
            $_SESSION["agree"] = "Yes";
            header( 'location: http://localhost/myweb/gallery.php'' );
    ?>
    If the code is coming from the "I Agree" button, the Session "agree" variable is set to "Yes" and the visitor directed back to the gallery.php page.
    When I go to the gallery.php page, I get the message that the page isn't redirecting properly.
    The php code on both pages occurs before the DOCTYPE or any other html.
    Any ideas?

    Gallery sends to portal and the I Agree in portal appears to send back to gallery (shows in url display) but nothing is displayed.
    Is this the code on your gallery page?
    <body>
    <h1>XXXXX</h1>
    </body>
    </html>
    If you have in fact gone back to the gallery page, you should certainly see that.
    I should have mentioned that the test php files (...gallery_murray and ...portal_murray) appear to work fine.  What I did next was to copy the php from those two files to copies of the production versions (with appropriate changes to the header file names).  Those new test php files are ...gallery_header and ...portal_header.
    http://www.myspatialhome.org/ATL_counter_gallery_header.php
    Gallery gets to portal and I Agree gets to gallery but nothing is displayed.  Looking at the source there's nothing generated.  I'm assuming this is not a problem with the header php you helped with but something happening later in the gallery php file.
    This is the gallery code down to the doctype.  Minus the php at the beginning that does the header (like in the gallery_murray file), the code works.
    <?php
    if (!isset($_SESSION)) session_start();
    ?>
    <?php
    if (!isset($_SESSION["agree"]))
    { header( "Location: http://www.myspatialhome.org/ATL_counter_portal_header.php" );
    exit();
    ?>
    <?php
    require_once('Connections/atlas.php');  // NOTE: Also may require change in href for detail
        if (!function_exists("GetSQLValueString"))
            function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
                if (PHP_VERSION < 6)
                    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
                $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
                switch ($theType)
                    case "text":
                    $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
                    break;   
                    case "long":
                    case "int":
                    $theValue = ($theValue != "") ? intval($theValue) : "NULL";
                    break;
                    case "double":
                    $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
                    break;
                    case "date":
                    $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
                    break;
                    case "defined":
                    $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
                    break;
                return $theValue;
    $currentPage = $_SERVER["PHP_SELF"];  // Get the current URL for hrefs
    // New group code
    mysql_select_db($database_atlas, $atlas);
    $groups = mysql_query("SELECT * FROM tblMapGroups ORDER BY DispSeq ASC");  // Get the group records
    $row_groups = mysql_fetch_assoc($groups);
        if (!$_GET)
            $selectGroup = $row_groups['MapGroupID'];  // First time through; set initial default group
        else $selectGroup = $_GET['groupselect'];  // Otherwise use GET to retrieve the submit button chosen
    mysql_data_seek($groups, 0);  // Reset to first record for Form loop
    // End new group code
    // Select map records
    $query_maps1 = "SELECT * FROM tblMaps";
    $query_maps2 = "ORDER BY tblMaps.MapGroup, tblMaps.Area, tblMaps.Community, tblMaps.DispSeq ";
    $query_maps = sprintf("%s WHERE MapGroup ='%s' %s", $query_maps1, $selectGroup, $query_maps2);
    $maps = mysql_query($query_maps, $atlas) or die(mysql_error());
    $row_maps = mysql_fetch_assoc($maps);
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

  • Problem with header download using GUI_DOWNLOAD

    Hi folks,
    Iam facing a particular problem while downloading an internal table to excel file using GUI_DOWNLOAD and file type as 'DBF'.
    Once i download the file, iam getting an automatic header with contents as "F1, F2, F3,...." for all the columns. But, i want to put my own header there. Is there any way out ?
    Thanks and Regards,
    Vijay.

    hi,
    may be this code will be helpful to u
    Just take one field in header(internal table) of type c. and push all the field headings into it.
    and give that internal table to fieldnames it will resolve the problem.
    DATA:BEGIN OF HEADER OCCURS 0,
          F1(30) TYPE C ,
         END OF HEADER.
    DATA:BEGIN OF ITEM OCCURS 0,
           IT1(30) TYPE C,
           IT2(3) TYPE C,
           IT3(4) TYPE C,
         END OF ITEM.
       HEADER-F1 = 'NAME'.
       APPEND HEADER.
       CLEAR HEADER.
       HEADER-F1 = 'AGE'.
       APPEND HEADER.
       CLEAR HEADER.
       HEADER-F1  = 'STAT'.
       APPEND HEADER.
       CLEAR HEADER.
    ITEM-IT1 = 'MANOHAR'.
    ITEM-IT2 = '124'.
    ITEM-IT3 = 'T'.
    APPEND ITEM.
    CLEAR ITEM.
    ITEM-IT1 = 'SAI'.
    ITEM-IT2 = '24'.
    ITEM-IT3 = 'T'.
    APPEND ITEM.
    CLEAR ITEM.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename                        = 'C:\FILE13.XLS'
       FILETYPE                        = 'DBF'
      tables
        data_tab                        = ITEM
        FIELDNAMES                      = HEADER.
    regards,
    manohar.

  • Refresh problem with header image in OrgChart 2.1

    Hi
    We change the header image in OrgChart 2.1, replacing standard charttitle.png with one file named exactly equal. File is located in /OrgChart/root/images/charttitle.png.
    This image are showed correctly, but when we restart the application, or restart the server, this file is replaced automatically with the standard charttitle.png.
    ¿Anybody knows how to solve it?
    Best regards

    Hi Xavier,
    Try putting the file into /root/images in your build folder (e.g. /usr/sap/J2D/J74/j2ee/cluster/apps/Nakisa/OrgChart/servlet_jsp/OrgChart/root/.system/Admin_Config/__000_My_Build/root/images). Then when you publish it should write to the /root/images folder used by the application. I suspect that charttitle.png exists in /root/images in your build folder and this is overwriting anything in the main /root/images/ folder.
    Good luck!
    Luke

  • Problem with head

    I created a head model in 3ds max and exported it to obj file (model in 3ds max was textured with 3 images)
    I loaded obj file into java 3d apllication and I loaded 3 textures but on my model visible is only the last one loaded
    and here is a question how can I load using java 3d 3 textures on obj file

    Hello syavash. I found a link where this question was answered and resolved. Let me know if the information here assists you, and I will continue to research the issue in the meantime. I'm only here to help!
    http://answers.microsoft.com/en-us/windows/forum/windows_vista-pictures/sound-doesnt-play-through-my...
    Mario
    I worked on behalf of HP.

  • Problem with heading in received e-mails

    In some of the e-mails I receive instead of the To line listing my name, it lists that of a particular friend's name. Sometimes when I receive a cc of an email, it states the cc is to this same friend and not to me. How do I change this? Thank you.
    Subject: Your Camera & Photo Delivers from Amazon.com--May 2008 Edition
    From: [email protected]
    Date: May 31, 2008 7:19:07 AM EDT
    To: a friends name

    The problem was an incorrect listing in the address book. This was corrected and the problem solved.

  • Problem with Header Section in BusinessObjects 6.5 (2)

    I am using BusinessObjects 6.5 (2). I created a Report and it includes the Min Section. The Main section has 3 parts; H, S F.
    I have 4 questions:
    1) Why the height of the header is different in different pages?
    2) I also inserted a table in the header, and the vertical spacing between the bottom of the table and the Main Section is different in different pages.  In the first page the table is farther to the Main Section, and in the other pages the vertical space between the table in the header and the Main Section is closer.
    3) How do I manipulate the height of each Section H, S, F
    4)  When I change the background of the Main Section Header(H) it is only changed in the first page(Section Format, Background Color). 
    You can view the screen shots in my Blog:
    [http://sap-barkodar.blogspot.com/]
    Thanks,
    Sherry Barkodar

    Moved to Legacy products

  • WD ABAP: Problem with Header text wrapping in Table Column

    Hi,
    I am unable to achieve Header Text wrapping for the TABLE columns. I have set the property "HeaderTextWrapping" to TRUE for each column and the "Fixed table layout" property has been set to TRUE.
    Is there some property of the table/column I have to set to achieve this? Or does selection of a specific property remove option of HeaderText Wrapping?
    Thanks,
    Adithya

    hi..
    Try increasing the width of column keeping other thing as it is as you have done. And yes check whether cell editor property wrapping is set true.

  • Problem with header for each column

    Hi,
    I want change column header-text dynamically in the table control of module pool programming.Please help me.

    Hi Abhijit,
            no need to put '&' in the variable .You just give the name of the variable as lw_text and also dont forget to expand the Def.Length attribute to equal to the length of that variable in the decalration.It is working for me.
    put the follwoing code in PAI module.
    Data:lw_text(15).
    If cond1 = true.
    lw_text = 'Description 1'.
    elseif cond2 = true.
    lw_text = 'Description 2'.
    Endif.
    Using the above code u can modify dynamically.

  • User Exit in ME51N: EXIT_SAPLMEREQ001 Problem with header

    Hello together,
    I am using EXIT_SAPLMEREQ001 and EXIT_SAPLMEREQ003 to change custom fields in the item. But i have the following problem:
    When I call IM_REQ_ITEM->get_data(  ) in EXIT_SAPLMEREQ001 it has always the BSART 'NB' and not the
    one the user has chosen. It seems that it has always the state from the start of the programm where the default for BSART is "NB"

    User Exit
    PR -
    MEREQ001
    PO -
    MM06E004  Control import data screens in purchase order
    MM06E005  Customer fields in purchasing document
    ME_PROCESS_PO_CUST (BADi)
    Hope the above helps.
    Regards,
    Vivek

  • Alpine CDE-103Bt Head Unit and Problem with 160 Gig Ipod Classic

    Hi,
    2 weeks agao I brought a new Alpine CDE-103BT Head unit for my car. I have owned one of the old 160 gig classics for the last year and a half and at the time I brough the unit I was told this should all work sweet. Indeed all of the documentation from Alpine, and the Sales person, said this would not be a problem.
    Unfortunately from Day one, most times after I received a phone call, while playing my ipod, the Head Unit would givesme an "Error-03" message and stop playing my music. I would then have to unplug my ipod, reset it, and plug it back in. Extremely frustrating.
    The people I brought the Head Unit from are trying to say its an Ipod problem, yet I never had any problems with it and after I contacted the Australian Ipod help line they said it all appears to be working correctly. The firmware version I was on when I first tried the ipod on the head unit was 1.1.2. The Alpine manual said it should be 1.1.1 (then again you would expect them to be able to cope with updates) so as a last ditch attempt I downgraded the firmware on my ipod to 1.1.1, but it did not make a difference.
    The only other thing I have noticed is that I switch the repeat and shuffle settings off when I plug in the unit, but after I unplug it after an Error-03 the Repaet function has been swtiched to all - I am not sure if this is what is causing the problem.
    I am getting pretty frustrated with everything and I was wondering if anyone else has come accross this issue and even me helpful had they found a way to fix it.
    If not has anyone had any postive expereinces with Alpine head units?
    Thanks

    Hi,
    2 weeks agao I brought a new Alpine CDE-103BT Head unit for my car. I have owned one of the old 160 gig classics for the last year and a half and at the time I brough the unit I was told this should all work sweet. Indeed all of the documentation from Alpine, and the Sales person, said this would not be a problem.
    Unfortunately from Day one, most times after I received a phone call, while playing my ipod, the Head Unit would givesme an "Error-03" message and stop playing my music. I would then have to unplug my ipod, reset it, and plug it back in. Extremely frustrating.
    The people I brought the Head Unit from are trying to say its an Ipod problem, yet I never had any problems with it and after I contacted the Australian Ipod help line they said it all appears to be working correctly. The firmware version I was on when I first tried the ipod on the head unit was 1.1.2. The Alpine manual said it should be 1.1.1 (then again you would expect them to be able to cope with updates) so as a last ditch attempt I downgraded the firmware on my ipod to 1.1.1, but it did not make a difference.
    The only other thing I have noticed is that I switch the repeat and shuffle settings off when I plug in the unit, but after I unplug it after an Error-03 the Repaet function has been swtiched to all - I am not sure if this is what is causing the problem.
    I am getting pretty frustrated with everything and I was wondering if anyone else has come accross this issue and even me helpful had they found a way to fix it.
    If not has anyone had any postive expereinces with Alpine head units?
    Thanks

  • Problem with non-ASCII file name in content disposition header

    Hi All,
    I am facing some problems with the non-ASCII file name incase of content-disposition header. I read from the RFC 2183 that if the file name contains non-ASCII characters then the same should be encoded before sending to browser. I did the same but realized 2 problems:
    1. The name of the file is truncated in case the file name is slightly long for e.g. �����������j�b�g��������������������������.txt
    2. Also when the same file is opened in notepad, the title is showing encoded name %E6%9C%80%E4%B8%8A%E4%BD%8D.....
    Overall, I feel that the browser is not understanding or responding to the encoded header values.
    Is there any solution to this problem? I am using Microsoft IE 6.0.
    The code snippet is given below:
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
              String fileName = "�����������j�b�g��������������������������.txt";          
              fileName = URLEncoder.encode(fileName, "UTF-8");
              resp.setCharacterEncoding("UTF-8");
              resp.setHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");
              resp.setContentType("application/download-binary");
              String s = "This is inside txt file";
              resp.getOutputStream().write(s.getBytes("UTF-8"));
              return;
         }Any help or pointer would be highly appreciated.
    Thanks and Regards,
    Ashish

    The MIME standards for non-ASCII filenames are not widely implemented.
    Many mailers use an ad hoc method for encoding filenames. JavaMail
    supports both methods, but you need to set properties, such as the
    mail.mime.encodefilename property. See the JavaMail javadocs for
    the javax.mail.internet package.

  • Problem with small text in iview header

    hi,
    i got a little problem with iView header.
    I've set 2 pages containing the same iViews. The 2 pages have layout (1 column full width -- standard) and the 2 pages have the same properties, themes.
    The problem is that in the first page the header text is very small and in the second one the header text display correctly.
    Have anyone had this problem and how did you solve it ?
    Thanks in advance.

    Hi,
    I don't have a straight answer but:
    1. Have you tried creating a copy of the page which is working correctly?
    2. Why do you need two pages with the same content? Personally, I can't see any reason for maintaining two identical objects.
    Roy

  • Trans. ME32K. Batch Input. Problem in header versions with container

    Hi all:
    I've got a problem with the transaction ME32K.
    The required action is meant to be changing the address delivery in the agreement position.
    The bapi BAPI_AGREEMENT_MAINTAIN doesn't solve the problem because the field adrn2 is not present in this function module, so refering to other posts I've decided to implement a batch input.
    The problem starts when I try to introduce REVOK and RSCOD in grid container in section header version. When I simulate the transaction ME32K with shdb the only code appearing is:
    SAPLMEDCMV     0200     X     BDC_OKCODE     =GRIDENTER
                                                                BDC_SUBSCR     SAPLMEDCMV                              0100SUB0
    SAPLMEDCMV     0200     X     BDC_OKCODE     =SAVE
         BDC_SUBSCR     SAPLMEDCMV                              0100SUB0
    and then the values 'X' in REVOK and '0007' in RSCOD are not recognized.
    How can I introduce the new version in header ?
    Thanks in advance.
    Jose Luis.

    Hi Jose,
    did you find a solution for your issue?
    I have the same problem now.
    Greets,
    Valentin

  • I have a problem with the pen in my mag/cyan print head. I have tried cleaning it, and replacing it

    I have an HP ML7850 all-in-one model.  The display reads "There is a problem with the mag/cyan print head."  The HP solution center said I needed to replace the print head.  I did, but the problem still exists.  I went through the online self-diagnostic testing, and the results are that there is a problem with the pen.  I tried to gently clean the pens, but it did not help.  Any suggestions?

    On D5460, it now prints with a cyan tint over whole picture.

Maybe you are looking for

  • Single Sign On and BeX Analyzer

    Hello All, Does anyone know of a way of using windows authentication (via Active Directory) to automate the login prompt in the BeX Excel Analyzer? I have found a solution for the BI portal via SPNego, but have not been able to find any discussion or

  • HT5429 map does not show only the pins with no street view or labels

    The map details on my map appliction has disappeared. When I search for a location the pin shows up with no street view detail just a  yellow background screen

  • Format SD card in 680: how long?

    My 680 has been "formatting" a 1GB SD card for 40 minutes now, via the CardInfo app. Is this normal? Has it crashed? Post relates to: Treo 680 (Unlocked GSM)

  • Financial Reporting Studio 9.3.1

    After logging into FR Studio, when trying to explore ... "Unknown Error" .. Nothing int he logs any ideas ... ?

  • Urgent: Linked object not available

    We imported one role from one EP7 (DEV) into another EP7 (QAS). At target QAS PCD, we see the role has a path: pcd:portal_content/com.sap.portal.migrated/SAPComponentSystems/roles/DEVCLIENT10/ROLE1. 1) We changed above path to: pcd:portal_content/com