Problem when export ALV.

Hello,
I have a problem with the function REUSE_ALV_GRID_DISPLAY.
When click to the button Local File... (CrtlShiftF9) my report give me a run timer error.
Runtime Errors         GETWA_NOT_ASSIGNED                                                         
Date and Time          16.03.2009 11:43:34                                                                               
Short text                                                                               
Field symbol has not yet been assigned.                                                                               
What happened?                                                                               
Error in the ABAP Application Program                                                                               
The current ABAP program "SAPLKKBL" had to be terminated because it has                      
     come across a statement that unfortunately cannot be executed.                                                                               
Error analysis                                                                               
You attempted to access an unassigned field symbol                                           
     (data segment 75).                                                                               
This error may occur if                                                                      
     - You address a typed field symbol before it has been set with                               
       ASSIGN                                                                               
- You address a field symbol that pointed to the line of an                                  
       internal table that was deleted                                                            
     - You address a field symbol that was previously reset using                                 
       UNASSIGN or that pointed to a local field that no                                          
       longer exists                                                                               
- You address a global function interface, although the                                      
       respective function module is not active - that is, is                                     
       not in the list of active calls. The list of active calls                                  
       can be taken from this short dump.                                                                               
Trigger Location of Runtime Error                                                                
     Program                                 SAPLKKBL                                             
     Include                                 LKKBLF99                                             
     Row                                     3.840                                                
     Module type                             (FORM)                                               
     Module Name                             GEN_FIELD_OUT2                                                                               
Source Code Extract                                                                               
Line  SourceCde                                                                               
3810       format hotspot on.                                                                   
  3811     elseif gs_fc-hotspot = 'V'                                                             
  3812        and gs_out_flags-hotline is initial and not <field> is initial                      
  3813        and gt_stack-is_layout-no_hotspot is initial.                                       
  3814       format hotspot on.                                                                   
  3815     endif.                                                                               
3816 *>>> new API                                                                               
3817     perform salv_set_cell_hotspot using l_celltype.                                        
  3818 *<<< new API                                                                               
3819     if gs_fc-input = 'X' and                                                               
  3820        gt_stack-is_layout-no_input is initial and                                          
  3821        gs_fc-checkbox is initial.                                                          
  3822       format input on.                                                                     
  3823       format intensified off.                                                              
  3824     endif.                                                                               
3825     if not gs_fc-emphasize is initial and gs_out-info is initial.                          
  3826       perform field_color_normal using gs_fc                                               
  3827 *                                      gt_stack-is_layout                                  
  3828                                        gs_out-info.                                        
  3829     endif.                                                                               
3830                                                                               
3831 *   complex logic with internal table for color description                                
  3832     data: lr_tabledescr  type ref to cl_abap_tabledescr,                                   
  3833           ls_lvc_color   type lvc_s_scol,                                                  
  3834           lt_kkbl_color  type kkblo_t_specialcol,                                          
  3835           ls_kkbl_color  type kkblo_specialcol.                                            
  3836                                                                               
3837     if gs_out_flags-mcoltab = 'X' and gs_out_flags-slave ne 'X' and                        
  3838        gs_out_flags-sum ne 'X'.                                                            
  3839       lr_tabledescr ?= cl_abap_typedescr=>describe_by_name( 'LVC_T_SCOL' ).                
>>>>>       if lr_tabledescr->applies_to_data( <coltab_any> ) eq 'X'.                            
  3841         loop at <coltab_lvc> into ls_lvc_color.                                            
  3842           move-corresponding ls_lvc_color to ls_kkbl_color.                                
  3843           ls_kkbl_color-fieldname = ls_lvc_color-fname.                                    
  3844           append ls_kkbl_color to lt_kkbl_color.                                           
  3845         endloop.                                                                           
  3846         assign lt_kkbl_color to <coltab>.                                                  
  3847       endif.                                                                               
3848       perform field_color_complex using <coltab>                                           
  3849                                         gs_fc                                              
  3850                                         gs_out_flags-color                                 
  3851                                         gs_out_flags-intensified                           
  3852                                         gs_out_flags-inverse.                              
  3853     elseif gs_out_flags-scoltab = 'X' and gs_out_flags-slave = 'X' and                     
  3854            gs_out_flags-sum ne 'X'.                                                        
  3855       lr_tabledescr ?= cl_abap_typedescr=>describe_by_name( 'LVC_T_SCOL' ).                
  3856       if lr_tabledescr->applies_to_data( <coltab_any_slave> ) eq 'X'.                      
  3857         loop at <coltab_lvc_slave> into ls_lvc_color.                                      
  3858           move-corresponding ls_lvc_color to ls_kkbl_color.                                
  3859           ls_kkbl_color-fieldname = ls_lvc_color-fname.                                     
I verify the internal table it has 315 values export to excel.
How can i solve this problem?

I try to download the output from SYSTEM>LIST>SAVE LOCAL FILE, but it was disable.
here is the report code:
REPORT zfir0021.
TABLES: bsid, yypcl_fiboleto.
TYPE-POOLS: slis.
TYPES: BEGIN OF tp_bsid,
bukrs     TYPE bukrs,
kunnr     TYPE kunnr,
umsks     TYPE umsks,
umskz     TYPE umskz,
augdt     TYPE augdt,
augbl     TYPE augbl,
zuonr     TYPE dzuonr,
gjahr     TYPE gjahr,
belnr     TYPE belnr_d,
buzei     TYPE buzei,
END OF tp_bsid.
TYPES: BEGIN OF tp_dd03l,
fieldname TYPE dd03l-fieldname,
position  TYPE dd03l-position,
keyflag   TYPE dd03l-keyflag,
rollname  TYPE dd03l-rollname,
datatype  TYPE dd03l-datatype,
END OF tp_dd03l.
+*----
*+
*** Variáveis
+*----
*+
DATA w_catalogo TYPE slis_fieldcat_alv.
DATA w_layout   TYPE slis_layout_alv.
DATA t_catalogo TYPE slis_t_fieldcat_alv.
DATA: v_layout TYPE slis_layout_alv,
t_dd03l TYPE STANDARD TABLE OF tp_dd03l WITH HEADER LINE.
DATA t_bsid TYPE STANDARD TABLE OF bsid WITH HEADER LINE.
DATA: t_bsid_aux TYPE STANDARD TABLE OF bsid WITH HEADER LINE,
t_yypcl_fiboleto TYPE STANDARD TABLE OF yypcl_fiboleto WITH HEADER LINE,
t_reg_ok TYPE STANDARD TABLE OF yypcl_fiboleto3 WITH HEADER LINE,
t_reg_err TYPE STANDARD TABLE OF yypcl_fiboleto3 WITH HEADER LINE.
+*----
*+
*** Parâmetros de seleção
+*----
*+
SELECTION-SCREEN BEGIN OF BLOCK bl1 WITH FRAME TITLE text-s02.
SELECT-OPTIONS: s_blart FOR bsid-blart,
s_situa FOR yypcl_fiboleto-situacao,
s_data  FOR bsid-budat.
SELECTION-SCREEN END OF BLOCK bl1.
* Execução do Programa
START-OF-SELECTION.
PERFORM seleciona_dados.
PERFORM imprime_resultado.
PERFORM catalogo.
PERFORM gerar_alv.
END-OF-SELECTION.
+*&----
*+
*&      Form  seleciona_dados
+*&----
*+
+*       text+
+*----
*+
+*  -->  p1        text+
+*  <--  p2        text+
+*----
*+
+FORM seleciona_dados .+
+*  DATA lr_situacao TYPE RANGE OF yypcl_fiboleto-situacao WITH HEADER LINE.+
*  lr_situacao-sign = 'I'.
*  lr_situacao-option = 'EQ'.
*  lr_situacao-low = '1'.
*  APPEND lr_situacao.
*  lr_situacao-low = '4'.
*  APPEND lr_situacao.
SELECT * INTO TABLE t_bsid
FROM bsid
WHERE bukrs EQ '0050'
AND blart IN s_blart
AND budat IN s_data
AND anfbn <> ''.
SELECT *
INTO TABLE t_yypcl_fiboleto
FROM yypcl_fiboleto
WHERE empresa   EQ '0050'
AND dtemissao IN s_data
AND situacao  IN s_situa
AND tpdoc     IN s_blart.
ENDFORM.                    " seleciona_dados
+*&----
*+
*&      Form  imprime_resultado
+*&----
*+
+*       text+
+*----
*+
+*  -->  p1        text+
+*  <--  p2        text+
+*----
*+
FORM imprime_resultado.
SORT t_bsid BY bukrs kunnr gjahr belnr buzei.
SORT t_yypcl_fiboleto BY empresa cdcliente gjahr nudoc_cont itdoc_cont.
LOOP AT t_bsid.
READ TABLE t_yypcl_fiboleto WITH KEY empresa = t_bsid-bukrs
cdcliente = t_bsid-kunnr
gjahr = t_bsid-gjahr
nudoc_cont = t_bsid-belnr
itdoc_cont = t_bsid-buzei
BINARY SEARCH.
IF NOT sy-subrc IS INITIAL.
t_bsid_aux = t_bsid.
APPEND t_bsid_aux.
ENDIF.
ENDLOOP.
ENDFORM.                    " imprime_resultado
+*&----
*+
*&      Form  catalogo
+*&----
*+
+*       text+
+*----
*+
+*  -->  p1        text+
+*  <--  p2        text+
+*----
*+
FORM catalogo.
DATA l_cont TYPE i.
SELECT fieldname position keyflag rollname datatype
INTO TABLE t_dd03l
FROM dd03l
WHERE tabname = 'BSID'
AND rollname <> '.INCLUDE' AND
rollname <> 'MANDT' .
SORT t_dd03l BY position.
LOOP AT t_dd03l.
ADD 1 TO l_cont.
PERFORM insert_catalogo USING:
t_dd03l-fieldname
t_dd03l-keyflag
'L'
t_dd03l-datatype
l_cont
'C410'.
ENDLOOP.
ENDFORM.                    " catalogo
+*&----
*+
*& Form INSERT_CATALOGO
+*&----
*+
FORM insert_catalogo USING f_campo
f_tamanho
f_texto
f_alinhamento
f_somatorio
f_tipo
f_decimais
f_checkbox
f_input
f_hotspot
f_no_out
f_pos
f_cor.
CLEAR w_catalogo.
w_catalogo-col_pos = f_pos.
w_catalogo-fieldname = f_campo.
w_catalogo-key = ' '.
w_catalogo-outputlen = f_tamanho.
w_catalogo-seltext_s = f_texto.      " descrição curta
w_catalogo-seltext_m = f_texto.      " descrição média
w_catalogo-seltext_l = f_texto.      " descrição longa
w_catalogo-just = f_alinhamento.
w_catalogo-do_sum = f_somatorio.     " totalizar coluna
w_catalogo-datatype = f_tipo.
w_catalogo-decimals_out = f_decimais.
w_catalogo-checkbox = f_checkbox.    " exibir como checkbox
w_catalogo-input = f_input.          " modificação permitida
w_catalogo-hotspot = f_hotspot.      " chama form USER_COMMAND
w_catalogo-no_out = f_no_out.        " Ocultar campo inicialmente
IF w_catalogo-datatype <> 'CHAR'.
w_catalogo-no_zero = 'X'.
ENDIF.
w_catalogo-emphasize = f_cor.
APPEND w_catalogo TO t_catalogo.
ENDFORM.                               " INSERT_CATALOGO
+*&----
*+
*&      Form  gerar_alv
+*&----
*+
+*       Gera o ALV com as informações da T_YYPCL_FIBOLETO_AUX+
+*----
*+
FORM gerar_alv.
v_layout-colwidth_optimize = 'X'.  " Largura melhor possível da coluna
v_layout-no_input = 'X'.
v_layout-info_fieldname = 'COLOR_LINE'.
v_layout-coltab_fieldname = 'CELL_COLOUR'.
v_layout-zebra = 'X'.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program      = sy-repid
i_structure_name        = 'BSID'
*      i_callback_user_command = 'Z_USER_COMMAND'
is_layout               = v_layout
it_fieldcat             = t_catalogo
i_save                  = 'A'
TABLES
t_outtab                = t_bsid_aux
EXCEPTIONS
program_error           = 1
OTHERS                  = 2.
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.                    " gerar_alv

Similar Messages

  • Having problems when exporting .swf file as an animated gif

    Hi:
    I was wondering if anyone has ever had any issues exporting a
    flash file as an animated gif? When I do so, the image quality is
    very compromised and the animation is distorted. I know this is not
    very specific question, but I have never encountered this issue
    before, and I am trying to help a co-worker. I don't understand why
    it looks exactly the way we want it to look as an swf file, but not
    as an animated gif? Can anyone point me in the right direction as
    to what to look for as the potential source of this problem? I have
    the swf file, although this would not be very helpful as I don't
    have access to the flash file (but I can send it to you if that
    would help). We tried unchecking the feature to optimize the image,
    and changed the color pallete to adaptive, but this didn't solve
    the problem. I also tried removing any unnecessary layers prior to
    the export. Basically, I'm not sure as to how to proceed and what
    may be causing the problem. I also want to mention there is a
    placed image on the stage. Could the type of image placed be
    causing the problem when exporting to a gif file, but not as a
    .swf? If anyone could help, I would really appreciate it! Thanks.
    Sara

    I also wanted to mention that the swf file uses sound. I am
    reading an old book that I have on Flash and it's saying that Flash
    and Shockwave Flash enter a special mode when they encounter a
    stream sound in which the animation is forced to keep up with the
    sound track, if the animation frames can not be drawn quickly
    enough, some frames are skipped. I am also reading that the
    animated gif format does not support sound. Again, the only
    reference I have is for a very old version of flash, and I'm not
    sure it applies to CS3. I am now just thinking that the sound may
    be the issue.

  • Hyperlink problem when exporting to PDF

    We are using Crystal Reports XI R2 and having a problem when exporting a report to PDF that contains a Hyperlink to "A File".  The hyperlink works correctly when previewed inside Crystal but when it is exported to a PDF the text does not appear to show any hyperlink at all.  Am I missing something or is this a bug?

    Hi Brian
    Please visit the following URLs that talk about the issue.
    http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=c2014557&sliceId=&dialogID=25464253&stateId=1%200%2025430948
    http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=c2014405&sliceId=&dialogID=25464259&stateId=1%200%2025430949
    You can also download the CR XI R2 Service Pack 4 by using the following URL and check for the results.
    -  https://websmp208.sap-ag.de/bosap-supportsw
    -  Then choose Crystal Reports from 'Software Products' dropdownlist,XI Release 2 from 'Product Version' dropdownlist and service packs from 'Software Types' dropdownlist.

  • Problem when exporting Universe to Enterprise

    Hi All,
    I am facing problem when exporting universe to enterprise. I am getting the following error.
    "You do not have the right to add objects to the folder /webi universes" .
    1) I tried logging with admin account still getting the same error.
    2) I tried adding my user id to admin group but still has the same problem.
    I did not make any new changes to security. Do not know what might be the reason. Any ideas would be greatly appreciated.
    Environment: BOXI 3.1, windows server 2003.
    Thanks and Regards
    Sudharsan.

    Hi Prasanna,
    1) I checked the rights on universes for Administartors and Everyone for webi universes folder :
    Universe Security:
          a) Administartors:  Private
          b) Everyone has public.
    User Securtiy:
          a) Administrator : has full access
          b) Everyone : No access
    2) I tried adding my user id to admin group and exported it, but no luck. I also brought a new user into the system (thinking that i might have some restrictions some where)  and added him to admin group and tried with his user id too but still has same problem.
    Thanks
    Sudharsan.

  • Problem when exporting to Vimeo I get message "The share operation has failed. Quicktime error: -50" The file only gets to 8% before this happens any idea how to fix I have a movie deadline to meet!

    Hi all,
    Finished editing a short movie.
    Then went to share on vimeo but got this message - see also screenshot when I tried to export to desktop.
    Problem when exporting to Vimeo I get message "The share operation has failed. Quicktime error: -50" The file only gets to 8%.
    Have tried deleting my render files for the project and also another fix mentioned of deleting any black space files on the edit itself but neither work?
    Just upgraded to OS Mavericks could this be causing it? If so how to downgrade?
    thanks
    Louis B

    Thanks for your help both, I called Apple tech support and spoke to a really helpful chap called Andrea who helped me out. Now got my Master file sorted and am trying Vimeo upload again.
    Just to clarify points for people out there with the same issue:
    First steps
    - Ensure background rendering is turned off in preferences
    - Delete project and events render files
    - If upgraded to Mavericks then go to FCPX in finder under applications hit buttons 'CMD' and 'I' together and tick the 'prevent App Nap' box.
    Next Steps
    I had already done all of this when Apple Tech spoke to me so we discussed the message 'Quicktime -50' and what it meant. It wasnt a purely generic error message but was not detailed enough to point to one specific issue. This problem had occurred in previous years (so Mavericks not wholly to blame) and patches were issued over the years by Apple to help resolve some of the problems.
    The message essentially is indicating that there is a problem somewhere with the media in some way shape or form.
    My export went to 8% then failed. Apple's answer was that the project settings were corrupted in some way.
    So what they suggested (so simple I could kick myself) was to select all the media files by 'CMD + A' then copy them 'CMD + C' then create and open a new project timeline, and then paste in 'CMD + V'.
    Then we tried export again this time to a master file with some settings detailed by Apple.
    The difference now was it got to 40% then failed but due to a different reason 'error -1 frame 10124 error'
    At last we get past the project issues and into the event media issues, it seems that when I loaded the compact flash last night, the iMac kept ejecting the reader so had to copy files over quickly and seems that some of the file clip I used although showed on the viewer, didn't seem to have loaded all the correct media, so selecting this clip frame 10124 on the viewer I found that it showed as red on the frame row which implied an issue. So I simply bladed it off and deleted it.
    Then I reran the export to Master file and it worked, though jumping from 40% to 100% complete was a shock to me!
    Now am trying the export to Vimeo - hope this helps some of you out there. Worst case pick up the phone to Apple and speak to the Final Cut Pro guys they can help.
    best wishes,
    Louis B

  • Problem in exporting ALV Report to excel sheet

    Hi All,
    I have developed a Report and now facing problem in exporting the same to excel sheet.
    When we click the "Locate File" icon in the report layout, the system will pop up a window with radio buttons. I have opted for 'Spreadsheet'.
    When i save the excel sheet into my desktop, the excel file has all the report headers (Title of each column). But no value is exported.
    There are around 15 columns in the report and the excel sheet shows value of last 2 columns which has some text.
    I have been into ALV report development and developed around 30+ reports in the same fashion.
    What might be the reason behind this issue?
    When i export other reports into excel sheet, everything is perfect without any flaws......
    Kindly help me out......
    Regards
    Pavan

    Hi,
    Here's my suggestion: Install OpenOffice.org and ask SAP to deliver good integration with OpenOffice.org.
    Alternative suggestion: re-install SAP Gui on the PC where the integration is not working. If that does not help, re-install Microsoft Office as well.
    Here's my comment: I think you should ask this question in a different forum, e.g. in the Duet forum. That may not be the correct forum either, but as it is a Microsoft/SAP integration technology forum, someone there may know the solution.
    Regards,
    Raj.

  • Problem while exporting ALV column header to excel sheet.

    Hi,
    I am able to export an ALV grid details to an excel sheet. But the ALV column headers when exported to excel sheet are getting truncated.
    For eg: if my column header in ALV grid is displayed as 'Material' then the column header in excel sheet is 'Mater' only. Remaining portion is getting truncated.
    How can I view the entire column header text?
    Kindly assist.
    Thanks.

    I have the same problem with you, when user export to excel. I fixed it by using
    w_layo-colwidth_optimize = 'X'. <<<<<<<<<<<<This
    perform generate_fcat_reftab
        using 'PRUEFLOS' 'T_INPUT' '' '' 'Inspection Lot' 0.
    form generate_fcat_reftab  using    p_fieldname
                                        p_tabname
                                        p_ref_tabname
                                        p_ref_fieldname
                                        p_output_text
                                        p_output_lenght.
      clear w_fcat.
      w_fcat-fieldname = p_fieldname.
      w_fcat-tabname   = p_tabname.
      w_fcat-ref_fieldname = p_ref_fieldname.
      w_fcat-ref_tabname = p_ref_tabname.
      w_fcat-seltext_s = p_output_text.
      w_fcat-seltext_m = p_output_text.
      w_fcat-seltext_l = p_output_text.
      w_fcat-outputlen = p_output_lenght.
      w_fcat-ddictxt = 'L'. <<<<<<<<<<<<<<<<<<This
      append w_fcat to t_fcat.
    endform.

  • Problem: User has problems to export ALV Grid to Excel...

    Hello experts,
    I have a very strange problem with an single user: when she tries to export ALV Grid data from SAP into Excel by List/Export/Spreadsheet, she's only able to export this to an xml-based file on her local client, every other user gets the popup to choose the spreadsheet format (XXL...).
    What I did so far:
    - Look up Excel Makro Security --> the same as on other desktops
    - SAP GUI Patch Level --> the same as on other desktops
    - Test with an different user on her desktop on SAP Report S_ALR_87012284 --> it worked perfectly
    - User parameters are the same as for the test user
    - Security regarding ALV is the same (S_GUI ACTVT = 61...)
    Has there ever been a similar problem to anyone else?
    Many thanks in advance for your feedback!

    Hi ,
    This problem looks very weired. Just try running that FM from SE37 from the same system and see that what is happening there.... if the problem is similar then it is not the problem of your report and some patch may be missing in that system.

  • Transition problems when exporting to flash

    I built a DVD menu with transitions to the different submenus and when I exported the project to flash the transitions were in the wrong aspect ratio and at a lower quality. Is there a way to make it look more seamless?
    Thanks,
    Matt

    You may have encountered a problem that does not have a solution. I’m afraid you’ll have to use other software to generate large JPEG files.
    See this technote:
    http://go.adobe.com/kb/ts_tn_18893_en-us
    ------- quote ------
    Large files are giving out of memory errors when trying to export the files from FreeHand MX. For example, when exporting a file as JPEG with the settings of Resolution: 300 DPI, Anti aliasing: 2, Include Alpha: selected and Quality: 100% the program will generate an error: "Not enough memory to complete command."
    Solution
    No workaround has been found for this issue. It has been reported to the engineering team._

  • Format problem when export to RTF

    Hi,
    Iam creating a RTF template, when export to pdf everything working fine. However, when i export to RTF(word) alot of document properties got lost such as :
    font size default to 12 when it's blank line; page number are not re-start for multi sections; table properties not holding, header, footer and edge margin are not holding, etc...... Is there any way to fix these. I tried to create a word macro to fix some of the format problems, but the macro have to run manually instead of initialized form a text field option on exit. Any idea on how to fix or work around would be appreciated.
    Thanks,
    Tam

    im2famous4u wrote:
    Do you know if and when Pages will provide support for tables in rtf format? (My school requires that I send all assignments rtf format.)
    As Yvan points out, no one here can write what they know about it, and the vast majority of us know nothing about it.
    You cannot take any decision based on the assumption that Pages will one day support tables in RTFs, because it may never happen. If you need both RTF and tables, the only option is another tool (like NeoOffice, TextEdit, MS Office and so on).

  • Multi line hyperlinks problem when exporting to PDF

    I have a problem with hyperlinks i multiple lines when exporting a InCopy document to PDF. Its only the first line of the hyperlink that actually gets convertet to a link in the PDF file, the second line is just text.
    Is this a known problem and is there a fix or a workaround?
    We are using fully pached InCopy CS5 and Acrobat 9.

    Is there are a real hyperlink there or are you counting on Acrobat to convert it for you?
    Bob

  • Cross Tab Formatting Problem when exported to excel

    Hi There,
    I got a problem with cross tab when exported to excel, Call_id field is occupying 4 cells. Below is the structure
    AssignedGroup-Call_Id-Total
    A--1001-
    A--1011-
    Total-----2-
    B--1021-
    B--1031-
    Total-----2-
    C--1041-
    Total-----1-
    can anyone help? How to restrict call_id to fit in single cell?
    Thanks,
    Jyothi
    Edited by: Jyothi Yepuri on Sep 16, 2009 7:50 AM

    Yeah.. crystal has giving  some issues while exporting reports without SPs, especialy previous versions.
    So  Better to install latest SP or patches for CR 10.0. I think SP 6 is the updated one for CR10.0.
    For More info Go through this link,
    http://resources.businessobjects.com/support/additional_downloads/service_packs/crystal_reports_en.asp#CR10
    Regards,
    Salah

  • Report Header problem when exporting as Editable RTF

    Hey i was advised to post my query to this forum. My query is this Thread My report Header shows underneath my Page Header in Crystal reports 2008 can someone help me please?

    hi Demeleo,
    i was going through old forum posts and saw this one...did this get resolved?
    Hey
    I created reports in Visual Studio 2008 with crystal reports basic, i then upgraded to Crystal reports 2008 so i could be able to export them as EditableRTF. My first problem was i could not open my reports in VS 2008 anymore, but i do open them in The CR 2008 IDE. My problem now is when i export my reports my report header appears underneath my page header and my page number stays one. I noticed this happens when i export a report as EditableRTF.How can i Export my report to be editable without having this problems?
    using cr 2008 v1 (for cr server) i was not able to reproduce this issue when exporting to RTF.
    when exporting to Word, Editable, i can see this issue. mostly because the word export has the cr page header info going into the word page header.
    as the word export is essentially an RTF export anyway, i would recommend getting the latest patches / service pack for your cr and the RTF export should be what you're looking for.
    jamie

  • Layout Problems When Exporting to ePub

    Hi,
    When exporting my document to ePub, I always receive the following errors:
    Export Warning - Some style settings, including multiple columns, table styles, and character formatting, aren’t supported. Your document might look different.
    Export Warning - Headers and footers aren’t supported and were removed.
    First of all, how can I see these on the document? When I look at pages, the layout seems perfect.  Please note that I used Baskerville as the font everywhere, didnt use any multiple columns or tables. There are no footers but only some headers.
    The main problem I have is with the layout. Some chapters need to start on a new page but instead iBooks puts it at the end of the last page. Please check the picture below as what I mean.
    There also is a blank page on the ibooks which I dont know why. It is a single page and it is blank. There are no blank pages on my pages doc...
    Also on TOC, I dont see anything like ''Title Page'' on pages but when I export it to ibooks, on top there is this ''title page'' thing. My book will not be in English so is there any way to delete it from TOC?
    Thank you
    Note: I use Pages v4.3

    Most of us that usually answer questions in this forum don't create ePubs and will have problem helping you. If you don't get an answer here try this forum Creating ePubs. I hope it will help.

  • Problem when exporting movie, video stops after 2 minutes

    I set up a Project containing both images and videos. They were all shot using a digital camera (Canon SD400).
    When I export the 5 minute movie, around 2 minutes the video freezes, but the music (from an mp3 file) keeps playing. At 2 minutes one of the videos start to play and the video has a little yellow button showing on it in the timeline. None of the other videos have this little yellow button, although I am not convinced that this is the one causing the problem. Here is an image of it:
    http://dombovari.com/stuff/imovie.png
    Any ideas why the video playback would stop when I export it? It plays fine in iMovie when I preview the project, but when exporting, the video playback stops.
    Thanks!

    I have this very same problem. All 640x480 clips shot with a Canon SD550. iMovie 5 will play back everything fine in iMovie, but once I export the file using H.264 or MPEG-4, the video stops after about 30 seconds (of the 3 and half minutes of the video). The music still plays, but the video has not exported properly (and it shows in the file size).
    What WILL work is if you export it to web, but I can't use that. I need it exported at its full quality. (Also will not work, by the way.) But, again, it plays in iMovie just fine. I even tried exporting from the timeline file (with the reference media files) in the iMovie file package—but I get the exact same results.
    Quite frustrating considering it works in iMovie just fine. Any other ideas, folks?
    System/Software: MacBook Pro 2.0GHz, 1 GB, 256 X1600. Latest Tiger, latest QuickTime, latest iMovie HD.

Maybe you are looking for

  • Scheduling not carried out in BAPI_PROJECT_MAINTAIN

    Hi All, I am facing a problem that while updating the basic start date and basic end date for WBS elements using BAPI_PROJECT_MAINTAIN, the scheduling is not being carried out. Basic dates of WBS Elements are saved properly. But the project start dat

  • Dead after 2 years 4 months, should I be angry?

    I posted my woes elsewhere but it's true, my hard drive is fried. I had a long chat in Japanese with an Apple Support staff and all he could do was appologize and tell me that if Apple does the repaire that it will cost apron 500 USD; he gave me the

  • Using an Application module's customised Function in JSF

    Dear All I wrote a function in the application module with the return type of MAP. this function has input parameters. when i try to access the return in EL for value element of my page components, i am always face the NULL. but when i deal with the

  • How to tranferi data from newer to an older ibook

    I want to transfer the GarageBand files from a newer G4 to an older G4. When i use Firewire to move the data, it won't transfer the GarageBand files because the Mac I am transferring to has an older version than the one I am transferring from.

  • P_wi_id in DynamicParameter fails, don´t open workitem, with wi_id works ok

    Hi experts, We have an ECC 6.0 EHP3 with a EP 7 (Netweaver 2004s SP18). We use the UWL. The issue is when we try to open a taks in the UWL that launch a transaction in the ECC, it can´t open, show this error: Work item 000000000000 cannot be read Thi