Text missing in BA00 output for languages FR and IT

Hello Friends,
We have configured the output type BA00 for the languages FR (French) and IT (Italian) and it is working fine.
But while taking the print out for the BA00 we found some characters like  à, 'ê, are not printed on the print out.
Say for ex:  générales
The above mentioned word was printing as g n rales, The characters lkie 'ê was missing.
In the same way for Italian language also.
So could you please help me in this regard.
REgards,
Ram.

Hello,
I share the same view as mentioned by J Prakash above.
But if you are able to see the FR & IT characters on screen properly & if they are not printed on Print-out properly, then you need to install some Driver Programs for your Printer.
Hope this helps,
Thanks,
Jignesh Mehta

Similar Messages

  • Column headings are missing in the output for ALV?

    Hi all,
    i have coded a small report in ALV mode. i am getting the data but the column headings are missing.
    iam not getting the column headings in the output. it is coming as blank. Could you all please help me out in this?
    below is the code of my program:
                     Includes                                            *
    *---Standard header and footer routines
    INCLUDE zsrepthd.
    *--- ALV Routines
    INCLUDE zvsdi_alv_routines_ver3.
    *--- Authorization Check
    INCLUDE z_selection_auth_check.
                     Types Declarations                                  *
    tables : ekpo.
                     Types Declarations                                  *
    TYPES: BEGIN OF ty_ekpo,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF ty_ekpo.
    *-Output field name
    TYPES: BEGIN OF ty_output,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF ty_output.
    *-Output field name
    TYPES: BEGIN OF ty_fields,
            fname(60) TYPE c,
           END OF ty_fields.
                     Internal Table Declarations                         *
    DATA:it_ekpo TYPE STANDARD TABLE OF ty_ekpo,
    *--- Alv parameters
        it_out_alvp TYPE typ_alv_form_params, "for alv parameters
    *-Field catalog  for ALV display
        it_fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
    *-Field names for Excel column headings
    it_ekpo_fields TYPE STANDARD TABLE OF ty_fields WITH HEADER LINE.
    **--To store output for Principial Pegging data
    DATA: BEGIN OF it_output occurs 0,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF it_output.
    **--To store output for 2nd
    DATA: BEGIN OF it_output1 occurs 0,
            text(2000),
           END OF it_output1.
                     Data Declarations                                   *
    data: v_ebeln TYPE ekpo-ebeln,
          v_ebelp TYPE ekpo-ebelp,
          v_matnr TYPE ekpo-matnr,
          v_werks TYPE ekpo-werks.
                     Constants Declarations                              *
    CONSTANTS:
         c_0    TYPE i     VALUE  0,
         c_x    TYPE char1 VALUE  'X',
         c_i    TYPE char1 VALUE  'I',
         c_eq   TYPE char2 VALUE  'EQ',
         c_ekpo  TYPE char4 VALUE 'EKPO',
         c_hyfn  TYPE char1 VALUE '-'.
                     Work Area Declarations                              *
    DATA: x_output_ekpo type ty_output,
          x_ekpo type ty_ekpo.
                     Selection Screen                                    *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-f01.
    SELECT-OPTIONS:
          s_ebeln FOR v_ebeln OBLIGATORY,
          s_ebelp FOR v_ebelp,
          s_matnr FOR v_matnr,
          s_werks FOR v_werks.
    SELECTION-SCREEN END OF BLOCK b1.
                     At Selection Screen                                 *
    AT SELECTION-SCREEN.
                     Start-of-Selection                                  *
    START-OF-SELECTION.
    *--- Check Authorizations for Selection-screen
      PERFORM  z_selection_auth_check.
    *--- Fetch Purchasing Document Item data
      PERFORM  fetch_status_pp.
                     End-of-Selection                                    *
    END-OF-SELECTION.
    **-- Download data to final internal table.
      PERFORM data_output.
      IF NOT it_output[] IS INITIAL.
    *--- Fill the structure for calling the ALV form
        PERFORM initialize_alv_params.
    **-- Display ALV Report
        PERFORM setup_and_display_alv_ver2
           USING
         it_out_alvp        "Parameter structure
         it_output[]        "Internal Data table(header table)
         it_output[].       "Dummy table for Hierarchical ALV!!(item table)
        ENDIF.
      IF it_output[] IS INITIAL.
        MESSAGE i999(zi) WITH 'No data found for selection'(i02).
      ENDIF.
    *&      Form  FETCH_STATUS_PP
    Get data from ekpo table
    FORM FETCH_STATUS_PP .
    *-Fetch PP Data from ekpo table
      REFRESH it_ekpo.
      SELECT EBELN
             EBELP
             MATNR
             WERKS
             FROM ekpo
             INTO TABLE it_ekpo
             WHERE ebeln IN s_ebeln
               AND ebelp IN s_ebelp.
      IF sy-subrc = c_0.
        SORT it_ekpo BY ebeln ebelp.
      ENDIF.
    ENDFORM.                    " FETCH_STATUS_PP
    *&      Form  f_top_of_page
    *This is to write the top of page
    FORM top_of_page.
      DATA:  lt_list TYPE slis_t_listheader,
             lx_list TYPE slis_listheader.
    *--- Title name
      CLEAR lx_list.
      lx_list-typ  = 'S'.
      lx_list-key  = 'Title name'(t13).
      lx_list-info = sy-title.
      APPEND lx_list TO lt_list.
      IF NOT lt_list IS INITIAL.
        CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
            it_list_commentary = lt_list.
      ENDIF.
    ENDFORM.                    "top_of_page
    *&      Form  init_page_head
    Description : This subroutine initializes the fields in table BHDGD  *
                  for printing the report heading.                       *
    FORM init_page_head.
      bhdgd-line1  = 'SLA Status Report'(h04).
      bhdgd-line2  = sy-title.
      bhdgd-lines  = sy-linsz.
      bhdgd-fcpyrt = sy-uline.
      bhdgd-inifl  = '0'.
    ENDFORM.                    "init_page_head
    *&      Form  initialize_alv_params
    Description : Form to initialize ALV Params
    FORM initialize_alv_params.
      CONSTANTS: lc_alv_grid  TYPE char1 VALUE 'G',  "Grid
                 lc_u         TYPE char1 VALUE 'U'.
      MOVE 'IT_OUTPUT' TO   it_out_alvp-tablname.   "final table
      MOVE sy-repid    TO   it_out_alvp-repid.
      MOVE lc_alv_grid TO   it_out_alvp-alvtype.
      MOVE c_x         TO   it_out_alvp-bringdefaultvar.
      MOVE lc_u        TO   it_out_alvp-variantsavetype.
    ENDFORM.                    " initialize_alv_params
          FORM it_out_init_events                                       *
    -->this is form is to modify the events
    FORM it_out_init_events
          CHANGING
           alevnts TYPE slis_t_event.
      FIELD-SYMBOLS <alevnt> TYPE slis_alv_event.
      LOOP AT alevnts ASSIGNING <alevnt>.
        CASE <alevnt>-name.
          WHEN  slis_ev_top_of_page.
            MOVE 'TOP_OF_PAGE'  TO <alevnt>-form.
        ENDCASE.
      ENDLOOP.
    ENDFORM.                    "it_out_init_events
    *&      Form  DATA_OUTPUT
    Download data to final internal table
    FORM DATA_OUTPUT .
      loop at it_ekpo into x_ekpo.
        x_output_ekpo-ebeln = x_ekpo-ebeln.
        x_output_ekpo-ebelp = x_ekpo-ebelp.
        x_output_ekpo-matnr = x_ekpo-matnr.
        x_output_ekpo-werks = x_ekpo-werks.
        append x_output_ekpo to it_output.
      endloop.
    ENDFORM.                    " DATA_OUTPUT
          FORM it_out_alv_fieldcat_before                               *
    -->  PT_FCAT                                                       *
    -->  ALVP                                                          *
    FORM it_out_alv_fieldcat_before  CHANGING
        pt_fcat TYPE slis_t_fieldcat_alv
        alvp TYPE typ_alv_form_params.
      DATA: lx_fcat TYPE slis_fieldcat_alv.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'EBELN'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Purchasing Doc No'(018).
      lx_fcat-seltext_m      = 'Purchasing Doc No'(018).
      lx_fcat-seltext_s      = 'Purchasing Doc No'(018).
      lx_fcat-reptext_ddic   = 'Purchasing Doc No'(018).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'EBELP'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Item No Purchasing Doc'(020).
      lx_fcat-seltext_m      = 'Item No Purchasing Doc'(020).
      lx_fcat-seltext_s      = 'Item No Purchasing Doc'(020).
      lx_fcat-reptext_ddic   = 'Item No Purchasing Doc'(020).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'MATNR'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Material'(010).
      lx_fcat-seltext_m      = 'Material'(010).
      lx_fcat-seltext_s      = 'Material'(010).
      lx_fcat-reptext_ddic   = 'Material'(010).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'WERKS'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Supply plant'(013).
      lx_fcat-seltext_m      = 'Supply plant'(013).
      lx_fcat-seltext_s      = 'Supply plant'(013).
      lx_fcat-reptext_ddic   = 'Supply plant'(013).
      APPEND lx_fcat TO pt_fcat.
    ENDFORM.                    " it_out_alv_fieldcat_before.
    Regards,
    Shalini
    Edited by: shalini reddy on Oct 7, 2008 5:08 PM

    Hi,
    The heading are in the table pt_fcat - you don't seem to be passing that in form....
    PERFORM setup_and_display_alv_ver2
    USING
    it_out_alvp "Parameter structure
    it_output[] "Internal Data table(header table)
    it_output[]. "Dummy table for Hierarchical ALV!!(item table)
    which I guessing in in one of the includes?
    Saying that the extract pof code does not show where you are calling form it_out_alv_fieldcat_before ...which populates the headings...
    Regards
    Stu

  • My safari menu bar is missing --the menu bar for desktop, HD, and apps appears, but when I click on Safari, it disappears, so I can no longer see my buttons for History, etc.  I think my husband (pc user) clicked it away.  Any ideas how to retrieve it?

    My safari menu bar is missing.  The menu bar for desktop, HD, and apps appears, but when I click on Safari, it disappears, so I can no longer see my buttons for History, etc.  I think my husband (pc user) clicked it away when borrowing my computer.  Any ideas how to retrieve it?  Thanks. 

    I too was having the same problem However, I could access both the menu bar and the dock by hovering my mouse over them so it wasn't a huge problem but I prefered having it there anyway. I was not in full screen mode and I could still go into full screen mode if I wanted to.  I found the easiest solution was to just quit safai and restart it, but it might not work for you considering you couldn't access you menu bar either way.
    I found this article that allows you to hide/show the menu bar and the dock through TextEdit (didn't work for me) http://www.mactricksandtips.com/2009/07/hide-the-menubar-or-dock-in-specific-app s.html It is pretty old so it might not work for lion and a bit risky if you don't know what you're doing so I wouldn't really recommend doing it this way.
    And KSheppard, I know it's not really any of my buisness, but the way to get answers to a question isn't by insulting others and being quick-tempered. Even if you feel like you were insulted first, don't try snapping at people who aren't obligated to help you. Honestly, it just makes everything easier if everybody is cooperative and polite.

  • Output for MB1A , MB1B and  MB1C

    Hi Experts ,
    My client needs Output (Prinout) for MB1A , MB1B and  MB1C , I would appriciate if anybody could  guide me through correct procedure to set up .
    Thanks in advance

    Hi Greetings
    Please find the following steps
    1) Creation of Message out put type with application ME. You can use standard access sequence 0001
    SPRO --> MM --> Inventory Management and Physical Inventory --> Output Determination --> Output Determination
    2) Assigning the output type to Output Determination Procedures
    SPRO --> MM --> Inventory Management and Physical Inventory --> Output Determination --> Maintain Output Determination Procedures
    3) Maintaining Condition in Transaction MN21
    5) User setting.
    Transaction SU3 --> Parameters --> Parameter ID "NDR" --> Parameter value 'X'
    Gobinathan G

  • HT1146 missing task bar icon for adding attachments , and it is not in the customize task bar icons, where could it have gone?

    I am missing the icon on my taskbar in mail for sending attachments, and it is not in the customize taskbar part of my mail program. Where did it go, or how do I restore it since it is missing??
    Thx,
    Yellowchevy66

    "The top of the screen" is called the menu bar.  It changes, and is based on whichever application is currently selected.
    In Mail.app, the attach icon is the paperclip icon that shows in the default icon set of the so-called compse window; when you have requested the creation of a new mail message, or the creation of a reply.  In the compose window with the default icons, the attach button is the middle of the five leftmost buttons in the tool bar.
    It's quite possible to hide the toolbar entirely (that's controlled from the same pop-up menu as the Customize Toolbar... or can be controlled from the View > Show Toolbar or View > Hide Toolbar within the Mail.app menubar.
    To capture an image of the toolbar state (if it's not that the toolbar is hidden, or has been customized), then open Mail.app, create a new (empty) message, and to capture (just) the application display window, press the Command(⌘)-Shift-4 keys as a chord, the cursor will change to a reticule (a cross-hair), place the reticule over the mail application compose window, press the space bar (to highlight the window) and click.  This will save a screen shot of just the specified application window into a Screen Shot file (the rest of the name will be the date and time of the screen shot) on your desktop.
    Inferring from your references and the terms you are using here, it would appear you might be unfamiliar with OS X and -- if that's the case -- then there's the available Apple Mac 101 introduction that might help clarify the environment.

  • Apple TV2 missing analog audio output for multi-zone system

    Found out the hard way that most receivers can't support digital audio in multiple zones (i.e., Zone 2). Since Apple TV2 (ATV2) dispensed with any analog output, if you have a whole-house system that depends on mult-zone to distribute audio to various speakers, you won't be able to use ATV2 to stream music to anything other than Zone 1. The only outputs are HDMI and optical (both digital audio). I think I found a work around (which, of course costs more money) which is a "de-embedding" device from Atlona that takes HDMI in and splits out the audio to analog and passes the HDMI through to the receiver. The analog audio output then lets me connect to the analog in on the receiver so it can stream to all zones. I figure Apple just didn't have enough real estate on the new product to make room for analog, but it's a pain. Hope this helps someone. If anyone knows a better work-around, I'd love to hear it.

    I have the same issue with a MacMini I use for music. My solution was to use an inexpensive optical splitter - one feed to the optical input of my receiver and the second to a DAC. Then run standard RCA audio cables from the DAC to the analog Zone 2 inputs.
    Here is a link for a DAC
    http://www.monoprice.com/products/product.asp?cid=104&cp_id=10423&cs_id=1042302&pid=6884&seq=1&format=2
    They should have the splitter as well.

  • Different output for Sales Document and billing

    Hi,
    here is the scenario, eg. in the sales document there are 4 line items. Item 10 and 20 are with material pricing group A, and Item 30, 40 are material pricing group B.
    In the invoice, customer would like to combine the pricing of items 10, 20 (Material Pricing Group A) into one. Which means there will be only 3 line items in invoice , first line item will be the total pricing of item 10 and 20.
    The 2nd and the 3rd item in invoice will be the same ones in sales document.
    how am I able to do that ?

    Hi - please re review with what the customer wants - output wil always be fr the different parts being billed and not for price group combination -
    ifyou still want summary at price group level, then you will need to ask your ABAP developer to see if he / she can combine like that - in such case, which part number would you show in the output?
    there seems to be a lot of confusion inthe requirment -
    cheers
    nandu

  • Camera Calibrations Missing in LR 3 for 20D, 30D and 5D MII

    I am using raw, yet all I get for camera
    calibrations are the custom settings. Can someone tell me where to download the preset calibrations for these cameras?

    jim knoy wrote:
    I am using raw, yet all I get for camera
    calibrations are the custom settings. Can someone tell me where to download the preset calibrations for these cameras?
    Jim,
    I don't quite understand what you mean by "custom settings". Are you refering to "Camera Standard", "Camera Portrait", "Camera Landscape" and so on?
    All the profiles you see in the Camera Calibration Tab are specifically (and only) made for the camera which took the RAW file you're looking at. So if you see a "Camera Standard" for a RAW of your 20D, you're actually using a profile named "Canon EOS 20D Camera Standard.dcp" on your system.
    Beat Gossweiler
    Switzerland

  • Generating output for mobile devices and eBook readers question.

    Morning all,
    Reading through the latest forum Announcement topic, I came across the recommendation:
    "All the DHTML effects and dropdowns should be removed. You can use Conditional Build Tags for this."
    I guess I don't see how to do this. I've got twisties in my current project. How would I use CBTs to eliminate the DHTML effect and still retain the content? Apply the CBTs to sections of the HTML?
    TIA,
    Patrick

    Hi there
    I'm in the process of creating a nice little eBook that will walk you through all this. Until it's finished, however, here's my own understanding after trial and error.
    If you have DHTML and create ePubs, you end up with gobbledygook in the topic. So I might assume you would have the DHTML drop downs or expands, then have the same information as part of the topic that is simply visible. You then apply a CBT to remove the DHTML bit if creating ePubs and another CBT to remove the visible bit if creating anything else where DHTML will work.
    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

  • VF03 transaction error in output for hungary language

    hi,
       While issing an output in hungary language we are getting an error in VFO3. The error states that  Language environment for language HU cannot be set. This only happens for language HU and this only happens in the development server .Could somebody please help me out in this .Thanks in advance

    Hello Nils Buerckel,
    Neither D/Q or P is unicode system.Also, i checked using SMLT only English & German languages are installed in my system.
    But i can see script maintained in HU language in SE71 first screen but while opening that script in D and P systems,i am getting dump "Invalid Text environment" though such problem is not there for Q system.
    So, i  want to know does this dump is related to error "Language HU can not be set" ?
    Also, while analysing dump,i found that maybe table TCP0C can be the reason.I checked and found that similar entries in D & P system but different in Q.
    Please suggest.
    BR,
    Nisha

  • Long Text, Missing data

    Hi Gurus,
    Whenever i save our normal sales order, it gives error.
    Long text, missing data.
    Waiting for ur positive reply.
    Dhananjay

    hi
    What jude xavier  told is right.
    The same go to edit incomp. log. n got the problem.
    if u got right answer plz reward points n close the thread
    regards
    nitin

  • Error as unit of measure PC not defined for language RO while creation ofPO

    Hi GUYS,
    When am trying to create a PO in ME21N transaction i got error as below,
    unit of measure PC not defined for language RU
    Message no. 06079
    Table 006A contains no entry for this unit of measure
    Please let me know what action to be taken from my side to over come this issue.
    Note: If i check the related vendor i could able to view that the language maintained as RU.
    Cheers,
    Kumar.S

    Hi Jurgen,
    Thanks for your reply once again.
    As mentioned by you earlier i have tried to login with languae RU in Q system but unfortunately i got an error saying taht language not installed.
    Also we found for Language - EN and UOM - PC has been maintianed in T006A table.But if i check for lanugage - RU and UOM PC combinatoin has not manintaned in T006A table.
    Please let me know how to maintain the values in this table T006A for combination Lang - RU and UOM - PC.
    Please revert back with your soilution.
    Note: I have tried in SM30 but failed due to below error
    The maintenance dialog for T006A is incomplete or not defined
    Cheers,
    Kumar.S

  • Fax output for multiple recipients

    Hi All,
    Please help me to figure out how can I get the fax output for order confirmation and invoices. I have done config part necessary in the nace by creating fax output , assigning medium and all. We are able to get PDF attachment for out email output. But I am not sure what changes i need to ask abaper to make in there program in order to generate PDF for fax output.
    Please give me some suggestions.
    Thank you.

    hi
    please convey to your abaper to a Z table with a maintaince view which has to store email id of the group when ever that particular is getting triggering it has to trigger to all the group you mentioned in Z table.
    or
    if you are having any authrization group to which you have to trigger the mail say abaper to write a code on the group.
    regards
    balajia

  • BAPI to create output for invoice

    Hi
    I want to create an output (or repeat output) for an invoice, and been looking in SAP, on SDN, Google etc. for finding a BAPI  that can manage that.
    I have not been able to do that, so I have created a Batch Input - but it is really slow.
    Does anybody know if there is a BAPI to do that - and maybe an example.
    Thanks,

    Hi ,
    To create a Output or Send data to external system thorugh BAPI is not easy.
    Through application we can trigger output.
    On this cases we have changes pointers concept try to check it.
    This is the BAPI 'BAPI_INCOMINGINVOICE_CREATE' to create a Invoice.
    Prabhudas

  • How to disable output for Delivery and shipment

    Hi experts
    I would like to disable the output for the delivery and shipment. Please let me know any code logic or function module for this.
    Thanks and regards,
    Jayakumar Mani.

    Hi,
    Use the requirement routine in transaction code NACE -> Procedures.
    Regards
    Vinod

Maybe you are looking for

  • Insert html

    I am creating a mobile application in indesign and then using DPS...wondering how i can insert the following html...they are learning activities that we created using a seperate application (Hot Potatoes)...i have succesfully integrated them into app

  • Best wireless channel setting for desktop PC, PC l...

    Hi I have the latest BT infinity home hub for over a year. I have all those devices and computers listed in the subject. I have probelm getting wireless connection on all devices working at the same time.  My main problem was desktop PC wireless not

  • AirPort does not detect networks, unless another network connection is made

    I've just done a clean install of OS 10.5 to see if this problem was software related, but it persists. AirPort does not detect any network the computer is near (tested in various locations) normally, but when connecting to a network via Ethernet or

  • How do I locate a lost IPhone??

    I have lost my I Phone, any ideas on how to locate it?

  • Question about the table ' V_T160EX"

    HI,      My question is if I set the field ' manul' in the talbe  V_T160EX  with 'X' ,what would happen? and how can I use it?   does anyone can help me?tks. Message was edited by:         zhidan cheng