Names of columns don't appear when I read the report on WebI 6.5 ??

Names of columns don't appear when I read the report on WebI 6.5
The report was developped on BO 6.5 and was published on WebI.
When I read the report with the HTML mode, the names of the colums appear.
When I read the report with the PDF mode, the names of the columns don't appear.
I try to read the report with the HTML mode and after, I try to save it in pdf but it doesn't work. (it is the operation of conversion of pdf which doesn't work - it's very long and... nothing appends)

Hello,
This is  the default column. I didnu2019t add column heading. But I replaced the name of the column by words.
I havenu2019t change the property of column heading.
It is a cross tab.

Similar Messages

  • Texts in pdf form don't appear when viewing in Acrobat nor in Reader.

    Texts in pdf form don't appear when viewing in Acrobat nor in Reader nor when printed after the form has been filled. But the texts appear when one clicks inside the field. What is the solution to be able to print and view all of the texts in all of the fields that have been typed.

    More than likely caused by someone filling out the form with Mac Preview.
    Here's a potential fix: http://kb2.adobe.com/community/publishing/885/cpsid_88564.html

  • Certain web forms have formatting options like those found in Microsoft Word. They don't appear when I use Firefox, but do with IE of course. Is there a way to get it to display?

    Certain web forms have formatting options like those found in Microsoft Word. They don't appear when I use Firefox, but do with IE of course. Is there a way to get it to display?

    That formatting feature for text areas is known as Rich Text editing. Easy to enable on the web page with one line of code to tap into the Midas package that Mozilla uses, but the users can't enable it themselves from within Firefox.
    http://kb.mozillazine.org/Rich_text_editing
    http://kb.mozillazine.org/Midas
    http://www.mozilla.org/editor/midas-spec.html

  • App bar not appearing when I tap the ellipses

    I'm trying to get my app bar to appear when I tap the 3 dots at the bottom of the screen, but when I do so it doesn't happen. Anyone know
    why & how this problem can be rectified?
    MainPage.xaml
    <Page
    x:Name="pageRoot"
    x:Class="HP.MainPage"
    DataContext="{Binding DefaultViewModel, RelativeSource={RelativeSource Self}}"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Exits_Expert_London_Lite.Lines_and_Stations.WC"
    xmlns:common="using:Exits_Expert_London_Lite.Common"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:q42controls="using:Q42.WinRT.Controls"
    mc:Ignorable="d">
    <Grid Background="Black">
    <Grid.ChildrenTransitions>
    <TransitionCollection>
    <EntranceThemeTransition/>
    </TransitionCollection>
    </Grid.ChildrenTransitions>
    <Grid Name="CustomAppBarRoot" HorizontalAlignment="Stretch" VerticalAlignment="Bottom" Loaded="CustomAppBarRoot_OnLoaded"
    ManipulationMode="TranslateY"
    ManipulationDelta="CustomAppBarRoot_OnManipulationDelta"
    ManipulationCompleted="CustomAppBarRoot_OnManipulationCompleted"
    Tapped="CustomAppBarRoot_OnTapped">
    <Grid.RenderTransform>
    <TranslateTransform X="0" Y="0"/>
    </Grid.RenderTransform>
    <Grid.Background>
    <SolidColorBrush Color="Black" Opacity="0.5"></SolidColorBrush>
    </Grid.Background>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
    <TextBlock Name="DotsTextBlock" FontSize="28" Text="..." HorizontalAlignment="Right" VerticalAlignment="Top"
    Margin="0 0 15 0" Tapped="DotsTextBlock_OnTapped" Width="50" Height="50" TextAlignment="Center">
    <TextBlock.RenderTransform>
    <TranslateTransform Y="0" X="11"/>
    </TextBlock.RenderTransform>
    </TextBlock>
    <StackPanel Name="ButtonsStackPanel" Grid.Row="1" Orientation="Horizontal">
    <AppBarButton Label="tfg" Icon="Add"/>
    <AppBarButton Label="tfg" Icon="Add"/>
    </StackPanel>
    </Grid>
    <Hub>
    <Hub.Header>
    <!-- Back button and page title -->
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="80"/>
    <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <Button x:Name="backButton" Margin="-1,-1,39,0" Command="{Binding NavigationHelper.GoBackCommand, ElementName=pageRoot}"
    Style="{StaticResource NavigationBackButtonNormalStyle}"
    VerticalAlignment="Top"
    AutomationProperties.Name="Back"
    AutomationProperties.AutomationId="BackButton"
    AutomationProperties.ItemType="Navigation Button"/>
    <TextBlock x:Name="pageTitle" Text="Page name" Style="{StaticResource HeaderTextBlockStyle}" Grid.Column="1"
    IsHitTestVisible="false" TextWrapping="NoWrap" VerticalAlignment="Top"/>
    </Grid>
    </Hub.Header>
    <HubSection Width="800" Padding="40,50,0,0">
    <HubSection.Header>
    <StackPanel>
    <TextBlock Text="hub section 1" Style="{StaticResource HeaderTextBlockStyle}"/>
    </StackPanel>
    </HubSection.Header>
    <DataTemplate>
    <Grid>
    <StackPanel>
    <TextBlock Style="{StaticResource SubheaderTextBlockStyle}" Margin="0,0,0,5" TextWrapping="Wrap">
    <Run Text="Hello World"/>
    </TextBlock>
    </StackPanel>
    </Grid>
    </DataTemplate>
    </HubSection>
    </Hub>
    </Grid>
    </Page>
    MainPage.cs
    using HP.Common;
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Media.Animation;
    using Windows.UI.Xaml.Navigation;
    // The Hub Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=321224
    namespace HP
    public sealed partial class MainPage : Page
    public MainPage()
    this.InitializeComponent();
    this.Tapped += Page_OnTapped;
    private void Page_OnTapped(object sender, TappedRoutedEventArgs tappedRoutedEventArgs)
    if ( isAppBarShown )
    HideCustomAppBar();
    #region custom app bar
    private Storyboard hideCustomAppBarStoryboard;
    private Storyboard showCustomAppBarStoryboard;
    private Size appBarSize;
    private Size appBarButtonsSize;
    private bool isAppBarShown = true;
    private void CustomAppBarRoot_OnLoaded(object sender, RoutedEventArgs e)
    appBarSize = new Size(CustomAppBarRoot.ActualWidth, CustomAppBarRoot.ActualHeight);
    appBarButtonsSize = new Size(ButtonsStackPanel.ActualWidth, ButtonsStackPanel.ActualHeight);
    InitializeStoryboards();
    HideCustomAppBar();
    private void ShowCustomAppBar()
    isAppBarShown = true;
    showCustomAppBarStoryboard.Begin();
    private void HideCustomAppBar()
    isAppBarShown = false;
    hideCustomAppBarStoryboard.Begin();
    private void DotsTextBlock_OnTapped(object sender, TappedRoutedEventArgs e)
    if (isAppBarShown)
    HideCustomAppBar();
    else
    ShowCustomAppBar();
    private void InitializeStoryboards()
    hideCustomAppBarStoryboard = new Storyboard();
    showCustomAppBarStoryboard = new Storyboard();
    var showDoubleAnimation = new DoubleAnimation()
    EasingFunction = new CircleEase() {EasingMode = EasingMode.EaseInOut},
    To = 0,
    Duration = new Duration(TimeSpan.FromMilliseconds(200))
    var hideDoubleAnimation = new DoubleAnimation()
    EasingFunction = new CubicEase() {EasingMode = EasingMode.EaseInOut},
    To = appBarButtonsSize.Height,
    Duration = new Duration(TimeSpan.FromMilliseconds(200))
    hideCustomAppBarStoryboard.Children.Add(hideDoubleAnimation);
    showCustomAppBarStoryboard.Children.Add(showDoubleAnimation);
    Storyboard.SetTarget(hideCustomAppBarStoryboard, CustomAppBarRoot);
    Storyboard.SetTarget(showCustomAppBarStoryboard, CustomAppBarRoot);
    Storyboard.SetTargetProperty(showCustomAppBarStoryboard, "(UIElement.RenderTransform).(TranslateTransform.Y)");
    Storyboard.SetTargetProperty(hideCustomAppBarStoryboard, "(UIElement.RenderTransform).(TranslateTransform.Y)");
    #endregion
    private void CustomAppBarRoot_OnManipulationDelta(object sender, ManipulationDeltaRoutedEventArgs e)
    var translateTransform = (CustomAppBarRoot.RenderTransform as TranslateTransform);
    double newY = e.Delta.Translation.Y + translateTransform.Y;
    translateTransform.Y = Math.Max(0, Math.Min(newY, appBarButtonsSize.Height));
    private void CustomAppBarRoot_OnManipulationCompleted(object sender, ManipulationCompletedRoutedEventArgs e)
    // if small appbar-position changes are made app bar should back to previous position, just like in windows phone
    if (Math.Abs(e.Cumulative.Translation.Y) < 20)
    isAppBarShown = !isAppBarShown;
    if (!isAppBarShown)
    ShowCustomAppBar();
    else
    HideCustomAppBar();
    private void CustomAppBarRoot_OnTapped(object sender, TappedRoutedEventArgs e)
    e.Handled = true; // prevents raising Page.Tapped event so appbar won't be closed on AppBar-area tap

    When I debug, the app runs as normal and doesn't crash when I tap the elipses hence nothing happens.
    Does your tapped handler get called?
    It looks like your buttons stack panel may be on top of your ellipses. Try reversing that so the ellipses are on top:
    <StackPanel Name="ButtonsStackPanel" Grid.Row="1" Orientation="Horizontal">
    <AppBarButton Label="tfg" Icon="Add"/>
    <AppBarButton Label="tfg" Icon="Add"/>
    </StackPanel>
    <TextBlock x:Name="DotsTextBlock" Text="&#xe10c;" FontSize="14" FontFamily="Segoe UI Symbol" HorizontalAlignment="Right" VerticalAlignment="Top"
    Tapped="DotsTextBlock_OnTapped">
    </TextBlock>
    You can also use the Segoe UI Symbol "More" character to match the standard more ellipses rather than trying to implement your own. A step further would be to make it a button so that it has proper clickable semantics and will work properly with the
    keyboard, although for this specific use you can get away without it since you'll provide standard Windows+Z AppBar behaviour.

  • Songs only appear on my phone when i search the album rather than appear when i select the artist, how can i put them on the artist as well?

    songs appear when i search the album on my phone but not under the artist, how can i change it so they show in the artist section as well?

    Wish I did. I tried the group function but that didn't help in iTunes. The search function is the best I came up with. I can answer the question do you have susch and such artist. But I can't browse for an artist I don't remember exactly or have misspelled. Fortunately I don't think I've bought anything from iTunes that i already had. If you can't see an artist it's possible you think you don't have something you actually do have. Sorry, still hoping for a better work around or better yet a fix.

  • My Iphone 3gs wont charge, turn on, or restore itself in Itunes, but the apple logo still appears when I hold the sleep botton.  How can I make my Iphone work????

    My Iphone 3gs wont charge, turn on, or restore itself in Itunes, but the apple logo still appears when I hold the sleep botton.  How can I make my Iphone work????  I know it is not dead because I can see the apple logo on, and every time I connect it to a USB port to charge, or a wall charger, the battery appears with a bit of red. Still, it wont turn on.  It's been like this for three days now and I haven't stopped charging it.  IT just WONT charge?  Any tips I can use to solve the issue?
    -Esteban

    Hello estebie67,
    Thanks for the question, and welcome to Apple Support Communities.
    It sounds like the iPhone is experiencing issues upon startup, and may not be loading the firmware or operating system correctly. If you have not already done so, try resetting the iPhone while connected to power:
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    If the above does not resolve your issue, it will be best to restore the iPhone in recovery mode:
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    Thanks,
    Matt M.

  • How do you scroll up albums in iTunes 11?  There isn't a scroll bar on the right side.  I know it appears when you minimize the screen, but it is hidden on my machine.  Running Dell XPS 15z i7 w/ Win 7.

    In iTunes 11, there is no scroll bar in full page Albums view.  It does appear when you minimize the screen, but on my computer, the scroll is hidden and the resizing of the screen does not work.   Is there a fix?  Also, how do you sort tracks/songs in Album view?  When I import lengthy audiobooks, the inability to sort through hundreds of tracks is really ticking me off.  Again, is there a fix?
    Apple...  Before you tell me all the great features in iTunes 11, let me just say they are duly noted.  But, I would rather have the option to do things on my own, rather than being forced to conform to your techies need to be creative.  I don't use Genius or Playlists, so the ability to sort in them is useless to me.

    It's been many, many years since I don't do dual boot anymore. Don't find the reason to do it, either. Different kinds of virtualization should be enough. Anyway...
    dfw1417 wrote:
    It took over 2 days to figure out how to adjust the bios to get my win 7 pro DVD to boot and install dual boot on this GREAT MACHINE!!
    ENJOY! This is the BEST machine I ever had!
    WHICH machine?
    Cheers.
    If I helped you, please give me some kudos! ^^

  • What should I do about an icon, "Rebuilt Library" that appeared when I "grabbed" the top of my iPhoto window?

    The icon appeared when I "grabbed" the top of my iPhoto window to move it across the desktop. I don't want to delete important files, and wonder what I should do about the icon.
    I am using Time Machine.

    Thanks LarryHN,
    I have iPhoto version 9.4.3, and the "Rebuilt Library" icon is on the desktop.
    Interestingly, when I closed iPhoto in order to perform the option startup, I got the spinning beachball and had to force quit—when I reopened, using the option key, a window did ask which library to use—I chose the rebuilt library.
    I moved the "Rebuilt Library" icon to the iPhoto Library folder.
    Thanks again!
    Phill

  • I cannot add an event on my iPhone or iPad calendars. The "plus" button, or add event button does not even appear when I open the app.

    I cannot add an event on my iPhone or iPad calendars. The "plus" button, or add event button does not even appear when I open the app.

    Thanks for the suggestion. Sadly, that did not fix it. I changed the sync setting as you described, but I still don't get my older events. I have turned my IOS devices off and on again too. One more piece of information, the only events I see for October are recurring events. Either one day events like birthdays set to repeat every year, or events within the month that spanned more than one day. No one time events or appointments are showing.

  • The second time when i print the report the page appear cut in the right

    hi,
    I created a report in Report Builder 6i. When i print the report appear well, but when i try to print the same report second time in the right of the page appears cut.
    Why? What should I do to appear the entire page at the second print?
    Thx.

    Flattening and merging are very similar. The main difference is merging keeps the transparent areas, whereas flattening removes all transparent areas by giving it a white background. A good example of flattening is a jpg image.
    Since you have closed the file by closing photoshop, that means that the history is now gone, no way of undoing.
    So that leaves you with two choices.
    You can either recreate the whole document.
    Or you can make selections of areas you are keeping and moving them one at a time to new layers. Keep each object on a separate layer. Then redo the area behind those objects.

  • Why my Startup Manager does not appear when I hold the Option key when starting to boot.

    I no longer have the Startup Manager appearing when I hold the Option key when starting to boot.
    Instead, the system just boots into whichever OS was last selected in the Startup Disk Preference.
    How to get back my Startup Manager so that I can boot up from my external hard disk.
    Thank you.

    Can you please run the following in terminal and post the output in your reply:
    diskutil list; echo; nvram -p | grep boot-args; echo

  • To extend a clip I have `Show Fine Tuning controls' turned on in my iMovie 11 preferences, but the blue forward/backward buttons don't appear.  To get the orange handle bar, is there a hotkey?

    To extend a clip I have `Show Fine Tuning controls' turned on in my iMovie 11 preferences, but the blue forward/backward buttons don't appear.  To get the orange handle bar, is there a hotkey?

    That's a comment in the file. It has no effect at all.

  • My iPhone 5 don't open when i slide the screen, My iPhone 5 don't open when i slide the screen

    My iphone 5 don't open when i slide the screen. It does nothing at all. It's just 3weeks since i used it.

    Reset, hold both home and power buttons until the iPhone begins to restart itself, ignore the "slide to power off", let the iPhone restart itself. Usually take about 10 seconds of holding both buttons.

  • In Numbers, I copied a worksheet and deleted the contents. The sheet I copied from has a header, I can't see it or bring it up when I'm working but it appears when I print the sheet. How do I delete it?

    In Numbers, I copied a worksheet and deleted the contents. The sheet I copied has a header.  I can't see it or bring it up when I'm working but it appears when I print the sheet. How do I delete the header?

    Hi Cristina,
    Headers are not shown in normal view.
    Menu > File > Print to open Print View.
    Hover the cursor over the Header to see the outline. Click and delete.
    Regards,
    Ian.

  • The mark of increasing volume doesn't appear when i use the back light key

    the mark of increasing volume doesn't appear when i use the back light key

    Hi,
    Please write your notebook product number (p/n), which system are you using and country of purchase.
    Resource:
    How to Locate the Notebook product number (p/n)
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

Maybe you are looking for