Change selection screen language in runtime

Hello Experts,
I would like to ask for your help in the following problem. I have to change a report's selection screen language to English ifthe user logs on a particular language. Is that possible anyway in run time? I've already tried to do it with the SET LOCALE LANGUAGE at the INITIALIZATION event, but without any success.
Thank you in advance for any piece of tips!

Hi,
Those selection screen elements will get loaded before initialization event itself.
if you want to change the language then change the language in LOAD-OF-PROGRAM event like this..
load-of-program.
set locale language 'E' .  " --> Language Should be single character only
Thanks:
RK

Similar Messages

  • Change selection screen in LDB (KDF logical database - NOT HR)

    Hi All,
    Iu2019d like to use KDF logical database to keep the dynamic selections since user wants to use it but I need to change the selection screen itself. The existing variants for KDF donu2019t meet the user requirements. Some fields I need to hide some add. Like I want to u201Cremoveu201D the field u2018Posting periodu2019 (MONAT) (which is available in dynamic selection screen) and put it on the u201Cmainu201D selection screen.
    Do I need to create my own logical database or there is a way around?
    Could someone give me a practical advice or sample of solution?
    Thanks a lot.

    Thanks Himanshu,
    I did as you suggested but problem is that it does not allow me to hide the whole block.
    I have 3 filelds actually on block KD_0 I need to hide (its from selection screen of KDF logical database.)
      SELECT-OPTIONS: KD_LIFNR FOR LFA1-LIFNR MATCHCODE OBJECT KRED.
      SELECT-OPTIONS: KD_BUKRS    FOR  LFB1-BUKRS.
    SELECTION-SCREEN END OF BLOCK KD_0.
    PARAMETERS KD_INDEX AS SEARCH PATTERN FOR TABLE LFA1.
    What I did is below.  I used sp instead of  u201C=u201D since it has many screen for field KD_LIFNR(for frame, text etc).
    And when I did just for KD_LIFNR it was hidden but when I did the same for KD_BUKRS it was not hidden . The field has stars u201C*********u201D in it.
    Same happen with KD_INDEX. The name of the field is hidden but field not and it filled with ********. Do you have any ideas what it can be?
    I debugged it to catch all screen names but no luck
      loop at screen.
        if screen-name cp 'KD_LIFNR' or
        screen-name cp 'KD_BUKRS' or
        screen-name cp 'KD_INDEX' or
        screen-name = '%B000003_BLOCK_1000' or       
        screen-name = 'SSCRTEXTS-FRAME_TEXT' or
        screen-name = 'SSCRTEXTS-MCID_TEXT' or
        screen-name = 'SSCRTEXTS-STRNG_TEXT' or
        screen-name = 'SSCRFIELDS-SEARCH_BTN' or
        screen-name =  '%B025008_BLOCK_1000' or
        screen-name =  '%F021010_1000' or
        screen-name =  'ALCUR' or
        screen-name =  '%F022012_1000' or
        screen-name =  'EXCDT' or
        screen-name = 'SSCRFIELDS-UCOMM'.
          screen-invisible = '1'.
          modify screen.
        endif.
      endloop.

  • Add fields to Sales Order Mass Change  selection screen

    Hi,
    Li & Fung customer customer needs to include following fields in the selection screen (Header Level)  and the display output in Sales Order Mass Change (/AFS/MDC).
    -     VBKD-BSTKD_E
    -     VBKD-KDGRP     
    According to the SAP documentation we have done the configuration (Add details of custom fields) and implemented the BADI u2018/AFS/MDC_SELECT_CUSTOM_FIELDSu2019 with following methods.
    -     /AFS/IF_EX_MDC_SEL_CUSTOM_FLDS~SELECT_HEADER
    -     /AFS/IF_EX_MDC_SEL_CUSTOM_FLDS~SELECT_CUSTOM_DATA
    Data selection part works perfectly, but if we do not enter any values in any custom field in  the selection screen, then the BADI is not working. The output displays the columns without any value for the custom field. However, for VBKD-KDGRP is added as a custom field in the selection, but it already exists in the output display by standard, and it does display the value.
    The system should display all custom fields values even if we did not input them as part of the selection screen
    I would like to know if we have missed something, or is it the expected behavior of this enhancement, which seems to be inconsistent. Also please advise if there are any other methods available to solve this issue.
    thanks very Much.
    Nilmini

    Hi Nilmini,
    In My case, I have added custom fields to MDC change screen by using /AFS/MDC_CHANGE_CUSTOM_FIELDS but its not appearing in Grid list display. Would like to appreciate if you can Help me to achieve this.
    Regards,
    Jelli

  • Change Selection Screen of S_ALR_87013531

    Hi Experts,
    I wants to put "Cost Element Group" in the selection screen of T-Code S_ALR_87013531. So what changes I shoud have to do in the program GP4BE3YM4TIC47TQLU2IP8XEAZ9.
    Thanks.

    Hi
    Please check the Corresponding Screen Number of The Screen which you want to Enhance.
    After the Getting Screen number Check the Enhancement Possibilities.

  • How to change selection screen on LDB

    Hi everybody,
    Does anyone know how to change the selection screen on a ABAP report that uses LDB ?
    What I want to do is to suppress some fields and buttons and to add hidden fields.
    Thanks for your help.
    BT

    Hi bruno,
    1. use like this :
    2.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
      IF SCREEN-NAME = 'MYFIELD'.
      SCREEN-INPUT = 0.
      SCREEN-INVISIBLE = 1.
      MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    regards,
    amit m.

  • SQ01 - need to change selection screen text of parameters

    I am using KNA1 table in my SQ01(Abap query) and am having Kunnr as the selection screen parameter .The default text of Kunnr coming from KNA1 is 'customer number 1'.I need to change this to show it as 'customer number'.
    I changed the text in infoset in long text and header value,but it still does not work out. Any suggestions ??.Pls let me know.

    Hi,
    When you define the selection screen fields in the info set..There will be text box for selection text..There you can give the text..
    I tried this..And it worked for me..
    Thanks,
    Naren

  • Function Module Changed - Selection Screen still has old values

    Hi All,
    Our data source uses a function module while extraction. (generic)
    We have changed the Text Symbols in our function module.
    In the function module we fill one particular field (master data) as per the logic.
    The changes done are reflected in the dataloads and data is fine in BW.
    our problem is the selection screen in BW and in the reports, it shows the older values as well for that particular field.
    Can anyone help us in this regard?
    thanks
    Sudeepti

    Sudeepti,
    run program
    rsdds_aggregates_maintain for the relevant infoobjects and see if the change is carried over..
    Also check if the text tables for the same refer to the older values...
    Arun
    Assign points if useful

  • Selection-screen language translation

    Hi all,
    I have a report which has the selection texts and list headings in English language. When I log in different language let us say Finnish(FI) I am not getting the selection texts and list headings. What should I do to get the Finnish selection texts and list headings at the selection screen when I log in Finnish langauge.
    Waiting for replies.....

    No need to goto SE63 ..Display the report..use menu Goto--Translation ..Select target language for translation.
    This will lead to a translation screen. Select the element to be translated & press'Sequential Processing'  for translation.
    Here you will find all options for translation.
    Translation of report involves translation of following elements
    Column headers for the list
    List header
    Selection screen & its elements
    Text symbols
    Report title
    Message was edited by: Yogesh Joshi

  • Changing Selection Screen in SNC

    Hi All,
    My requirement is to Change the selection screen on one of the SNC screens ,the requirement change the sequence,for example if first row is product number and second row is Document number ,I want to show Product number and Document number in the same row instead of two different rows.I tried doing this in /SCF/SELbox tcode but it jsut changes the Sequence of selection screen but not make it in one row.
    Any suggestions how to achive this?
    Regards,
    Akshat

    sorry to say, but this is not possible..
    its a restriction imposed by WD architecture!!
    BR,
    Harsha Gatt

  • IOS 7 change lock screen language

    My kid changed her keyboard language to French, set her pass code, and then set it back to English (I have no idea why). Now she can't enter her passcode on the lock screen because she used french special characters in it. Does anyone know how to change the lock screen language in iOS 7 at the lock screen itself? Any and all help is appreciated.

    If you can, back up or copy all your phones photos, files etc. to your computer. Then use iTunes on your computer to Restore the software on your phone. Here's a link to describe that:
    http://support.apple.com/kb/ht1414
    If the restore does not solve the problem have a technician examine your phone. Make an appointment at an Apple Store to have your device examined by a technician. Or contact Apple Support.

  • Is it possible to change selection screen of logical database structure?

    I have to create a z report for a standard transaction FBL01N which is extracting data according to the vendor account number(LIFNR) at the selection screen. Now as per the requirement the system should extract details according to 'vendor name' keeping the same functionality.
    But the standard program is using some logical database structure KDB and the include for the selection screen is DBKDFSEL.So can I modify the selection screen of this transaction replacing Vendor No with Vendor Name.

    Hi..
    Refer this links
    http://help.sap.com/saphelp_46c/helpdata/en/9f/db9b8535c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/9f/db9b8535c111d1829f0000e829fbfe/content.htm
    Hope this may b very helpful to u
    Sravani
    Plz reward points

  • Change selection screen mb25

    Hi all,
    The transaction MB25 uses the DB logic MMIMRKPFRESB,
    At the selection screen I want to see the block KEY (Key Fields) How can I do that ?.
    I create a new programm with attributes:
        logical database MMIMRKPFRESB and s
        selection screen with space
    and works as I want.
    How can I do, so the tx MB25 show that block of the selecction screen???
    Thanks!!!

    hi,
    go through the below attachment it will be useful for u.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0e0039a-0d79-2c10-0aaf-9f6c062c0ffb?quicklink=index&overridelayout=true

  • Oss note 870991 Error while changing selection screen error.

    When i try to implement oss note I need to change the selection text of program J_1I_QER_EFILE.
    A selection text IND . But when i try to delete or rename it it shows me an error ' Delimitation text IND is an original text and cannot be deleted or renamed'
    Please advice.Thanx in advance..

    Try translating the texts before renaming/deleting.
    Regards
    Karthik D

  • Report Painter: How to change Selection screen.

    Hi All,
    I would like to know  the Process, how to add one more filed in the selection of the Report.
    Now  i have,
    selection.
    mat1:----
    mat2:----
    mat3:----
    date:----
      like that , Now i want to add mat4 in the Report Painter.
    thanks in adv..
    regards
    Prabhu

    Hi Mann,
    Thanks for reply.I have one doubt .
    1. I have already created variable for  characteristics figures,
    say exp
    col1->char001->&mat1
                        &mat2
                        &mat3
    now i want to add one more &mat4 for this chat.Figures.
    2.What is differance b/w set and Basic sets.How can i find basic sets of a Set.
    3.How can i att's chat.figures to Basic sets.
    plz help me to reslove this issue.
    regards
    Prabhu

  • How to make changes on the selection screen of a logic database?

    I want to make one of the select-options of logic database PNP no-interval no-extension, what should I do? Is there any links for manipulating LDB? thx~

    Hi,
    This blog on SDN will help you on this.
    [Re: Change selection screen in LDB (KDF logical database - NOT HR);
    Regards
    Abhii....

Maybe you are looking for