How to enter second short text description language in task list header

Hi,
I can't find how to maintain second description language in task list header,
Does some know how to do it (I have searched in Go TO menu - but haven't found anything useful there).
Daniel Gontar

Tasklist in Different languages
PeteA

Similar Messages

  • How to get the short text in tcode "msc3n" -- Basic data 2 -- short text.

    I have to display the short text in my report output.
    How to get the short text in tcode "msc3n" ( msc3n --> Basic data 2 --> short text.)?
    Is there any function module availble to get this short text or is this stored in any data base table ?
    Please help me. Your help will be highly appreaciated.
    THANKS.

    Hi,
    Use FM 'READ_TEXT' to get this values.
    Say for exampele my material is  1900001 and batch is 0000000517.
    Then my parameters to the FM will be as follows:-
    Text Name       000000000001900001    0000000517
    Language        EN
    Text ID          VERM
    Text Object     CHARGE
    This information you can get as follows.
    Open the short text window in the text editor.
    Here you can enter the long text.
    In the editor Go to Header and you will find the details.
    Please note that the text name will comprise of
    Material
    Batch
    Plant
    Stor. Location
    if all the details are given.
    I hope this helps you.
    Regards,
    Ankur Parab

  • How to change the Short text of a GUI Status .

    Hi Guys ,
       Can any one guide me on how to change the short text of an already existing GUI Status .
    I have already tried doing these :Opened the GUI Status in change mode and changed the short texts of the Application tool bar ,
                               Menu Bar ,
                               Function Keys ,
    thinking that this will update in the Short text .. but that didnt happen ...
    Below is what I need ...
    Requirement :
    GUI Status : Status_001 .
    Short Text :  New GUI Status .
    Change the Short Text to " Changed GUI Status ' . 
    Regards,
    Ranjita

    Hi Ranjita,
    Do this...
    go to SE80
    Open the program.. open node GUI Status
    Double click on the status you want to change
    go to menu GOTO>ATTRIBUTES>STATUS
    click on continue or simply enter
    Here change the short text and continue or enter
    activate it
    Hope this helps..
    Regards,
    Kinshuk

  • How to use OTR short text for description of select options

    Hi Experts,
    Can some one guide me how to make the description of select option language independant.
    Can't I use OTR text for description? if yes, how is that?
        WD_THIS->M_HANDLER->ADD_SELECTION_FIELD(
        I_ID          = 'SEL_OPEN_LINES'
        IT_RESULT     = LT_RANGE_TABLE
        I_AS_CHECKBOX = ABAP_TRUE
        I_READ_ONLY   = L_READ_ONLY
        I_DESCRIPTION = 'Select Open Lines' ).
    how can i pass OTR text for the string type I_DESRIPTION export parameter of ADD_SELECTION_FIELD method?
    or is there any other way of doing this.
    Any clue is highly appreciated. Thanks.
    Regards,
    Ajay

    Hi,
    Try this out  -
    Use cl_wd_utilities=>GET_OTR_TEXT_BY_ALIAS get the alias text into a string and pass this string variable to the I_DESCRIPTION.
    DATA:
      lv_str type string.
    CALL METHOD cl_wd_utilities=>get_otr_text_by_alias
       EXPORTING
         alias      = 'ZPKG/header'
         language   = sy-langu
       RECEIVING
         alias_text = lv_str.
    WD_THIS->M_HANDLER->ADD_SELECTION_FIELD(
        I_ID          = 'SEL_OPEN_LINES'
        IT_RESULT     = LT_RANGE_TABLE
        I_AS_CHECKBOX = ABAP_TRUE
        I_READ_ONLY   = L_READ_ONLY
        I_DESCRIPTION = lv_str ).
    Regards,
    Lekha.
    Edited by: Lekha on Sep 14, 2009 6:36 PM

  • How to change the  short text in  a model service specification??

    Hi,
                I've tried changing a model service specification using the transaction code ML11 but couldnt change the  short text language from German to English.

    Hi
    One possibility is to Maintain the  languages in the Additional data tab  under description in the material master record for your Services . Please check wether both the languages are maintained or not . Please correct me if i am wrong .
    regards
    kp

  • How to enter customer specific material description

    Tried MM02 - basic data for Language EN, but then all customers with language EN get this description.
    Tried MM02 - Sales Text but then all customers created in this salesorganization get this description.
    Would like to enter customer specific material description. Unfortunately VD52 is limited to 35 characters, need about 80 characters.
    Regards Andy

    Thanks RAF,
    I noticed I needed to use the button addtional text as well in VD52, though this is limited to 72 characters and not unlimited. Now I'm facing the issue that the commercial invoice is not printing all characters defined in this field, so probably have the layout increase field length.
    Thanks for the help.
    If there is another solution to define a Customer specific materail description then mentioned above I would like to know.
    Regards Andy

  • How to get the short text values from F4 SEARCH HELP

    Hi Friends,
       My requirement is in  Module -pool Screen Programming,  i have Designed one field in a custom screen and  provided a F4 search help to that field..
    For eg the F4 help is displayed as below.
    Value                   short text
      1                    A          
      2                              B
      3                       C
      4                              D
      5                       E
      6                       F
      7                          G
    When i select the first option (1) then value 1 appears in the field.
    now i want the text relevant to the value 1 to appear by the side of the field.
    Eg :            1                  A      (A should appear by the side of the value 1)
    How do i achieve it?
    Kindly help me.
    Regards,
    K.S.Kannan.
    Edited by: kannan ks on Dec 8, 2008 4:05 PM

    hi
    1) place a field adjacent to your value field on which F4 is operated
    so now you will have 2 fields.
    iam considering it as for ex: field1 & field2
    2)
    BOLD one is import in FM call
    CLEAR: t_dynpfld_mapping,
    e_dynpfld_mapping.
    e_dynpfld_mapping-fldname = 'F0001'.           
    e_dynpfld_mapping-dyfldname =      -
    > name of field1  (for ex: your 1 value field name)
    APPEND e_dynpfld_mapping TO t_dynpfld_mapping.
    e_dynpfld_mapping-fldname = 'F0002'.
    e_dynpfld_mapping-dyfldname =   -
    > name of field2  (for ex: your short text field name)
    APPEND e_dynpfld_mapping TO t_dynpfld_mapping.
    3))))))))
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    retfield =    
    dynpprog = sy-repid
    dynpnr = sy-dynnr
    dynprofield = -
    > name of field1  (for ex: your 1 value field name)
    value_org = 'S'
    TABLES
    value_tab = itab
    dynpfld_mapping = t_dynpfld_mapping
    EXCEPTIONS
    PARAMETER_ERROR = 1
    NO_VALUES_FOUND = 2
    OTHERS = 3

  • HOW TO LENGTHEN THE SHORT TEXT FIELD IN  PR-urgent

    dear friends,
    my client is asking to lengthen the field size of SHORT TEXT in purchase requisition. if they enter the long text, the characters are getting tranucated.
    can you please provide me good solution for this problem.
    who is handling this issue either functional or technical consultant.
    thanks in advance.
    regards,
    flemmings

    I think there is no configuration to change the field length. It is technical job, but needs developer key to change the std SAP field length. I recomond that donot go for this, as short text itself is 40 charecter length,  there are so may text fields in TEXT tabpage. You can get these texts in PO print also...
    Juts think and proceed.

  • How do I add a text description to a PDF file

    I want to add some text descriptions to my PDF files that later I can use as "search criteria". Is there something I can use other than the "file name" ? I would like to use short file names and append a longer text description to the file so I can search for files using the "text description" as search criteria.

    I want to add some text descriptions to my PDF files that later I can use as "search criteria". Is there something I can use other than the "file name" ? I would like to use short file names and append a longer text description to the file so I can search for files using the "text description" as search criteria.

  • Finding short text description of Fixed values for value range for domain

    Hi,
    When I got to Dictionary: Dispaly Domain and click on tab value range; I get the template showing Fix. Val and its associated short text.
    I want to fetch the short text for a particular fix. val for a domain.
    How can I do that ? What table can I use it ? Or do I need to use some function module ?
    Lets say I want to fetch the short text for a given Fix val. for domain VBELN.
    Please help me out.

    Hi,
    You can use Function Module 'FM_DOMAINVALUE_CHECK' to get the fixed values of any domain.
    Regards,
    Atanu

  • How get report of short text in tcode MCS3N ?

    Hello Experts,
    I need to provide report to the client listing Materials and corresponding bathes with short text (DFBATCH-KZTXT) and Shelf Life Exp. Date
    I understand from community that I can Use FM 'READ_TEXT' to get this values but the problem is it provides value for one record and need this information for about 500 records. Is there any better way to do this ?
    Please advise !
    Thanks,
    Darshak

    Hi,
    As my knowledge there is no other way to read, however this will retrieve the result very fast so there wont be any performance issue you can use this read_text FM within the loop.
    If its an format_message so we can achieve other way I suppose.
    Regards,
    Vadamalai A

  • How to Load Master data text  Description into the Data Target?

    Hi,
    I have a Master data which is an ID, and the description for that ID is added as text description along with the master data.
    The datasource is a flat file load, which has both the fields i.e. ID as well as the description along with many other fields.
    I need to load the flat file without changing it, into the ODS.
    Please suggest a way to load the description of the ID along with the ID into the ODS, and then further into the CUBE.
    This description field should be available, while checking the contents of the ODS as well as the CUBE.

    hi Srinivas,
    Thanks for the quick response.
    I actually have the flat file with the description within it.
    I cannot make any changes to the flat file.
    So, please suggest me accordingly.

  • How to set "Display as Text" field with AJAX select list

    thanks Denes for your posting. I'm trying to use the Denes Kubicek code to populate a "Display as Text" field. It works for Text Field (disabled), but not "Display as Text" field(saves state) . In my applciation I need to show this field only (not the disabled text box) when a select list value is changed. any ideas to modify the code below are appreciated.
    http://htmldb.oracle.com/pls/otn/f?p=31517:80:3418128396960418::NO
    here is the code from the url above
    1. Create an Application Process - getDet:
    DECLARE
    my_det VARCHAR2 (200);
    BEGIN
    SELECT ename || CHR(10) || job || CHR(10) || mgr
    INTO my_det
    FROM emp
    WHERE empno = :P80_EMPLOYEES;
    HTP.prn (my_det);
    END;
    2. Put the following in the Region Header of your page:
    <script language="JavaScript" type="text/javascript">
    function f_getDet ()
    var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=getDet',0);
    get.add('P80_EMPLOYEES',html_GetElement('P80_EMPLOYEES').value)
    gReturn = get.get();
    if(gReturn)
    {  html_GetElement('P80_DETAILS').value = gReturn  }
    else
    {  html_GetElement('P80_DETAILS').value = 'null'  }
    get = null;
    </script>
    3. Put the following in the HTML Form Element Attributes of :P80_EMPLOYEES:
    onChange="f_getDet()";

    Arie,
    this works fine on normal page, except page zero. I have the AJAX select list and "Display as Text" field on page zero. The "Display as Text" field doesn't show the the value when AJAX select is changed. I'm using similar code as used in my other APEX page on OTN site. I tired to display the gReturn value, just before calling "setDisplayOnlyNode" function in the code below and it's showing correct value, but fails to display the value in the APEX field on page zero. Any ideas are appreciated.
    Thanks,
    Surya
    <script language="JavaScript" type="text/javascript">
    function setDisplayOnlyNode(pItem, pValue)
    { var textNode = pItem + '_DISPLAY'; $x(textNode).innerText = pValue; }
    function f_getDet ()
    var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=getDet',0);
    get.add('P1_EMPLOYEES',html_GetElement('P1_EMPLOYEES').value)
    gReturn = get.get();
    if(gReturn)
    { setDisplayOnlyNode('P1_DETAILS',gReturn)}
    {  html_GetElement('P1_TEST').value = gReturn  }
    get = null;
    </script>

  • Error loading file in the operation long text in the General task list

    Hi all,
    I couldnt upload the detailed check lists in the operations (operation tab) of the general task lists through the long text uplaod via Text->Upload->RTF---> .System is throwing the following Information...
    1.Error loading file " specified path with filename.rtf"
    Could you please give me any idea to eliminate this.The client is having the detailed check list for each and every operation with safety measures to be taken.
    Plz help.
    Regards,
    Suresh.

    Hi all,
    It was an authorisation object missing and the problem got solved.
    Regards,
    Suresh.

  • How Can I add/change text/description in accounting view of Vendor master ?

    /nxk02 --> (give vendor, company code ) 
    then check the check box of 'Accounting info' under Company code data block -->  then hit 'Enter'
    --> it goes to next screen.  Then in this screen, click menu 'Extras' --> then press "Texts" under that menu. 
    So that popup screen appears with the Description.
    I need to know from where these descriptions are coming or where these descption  can be maintained ? Because I need to add/change these  descriptions to my vendors
    YOUR HELP IS HIGHLTY APPRECIATED.  Please help....
    THANKS IN ADVANCE.

    Hi Aman,
    Because these texts are maintained at Company Code level for the Vendor, they are part of the Accounts Payable configuration in the SAP IMG. 
    SPRO > Financial Accounting > Accounts Receivable and Accounts Payable > Vendor Accounts > Master Data > Preparations for Creating Vendor Master Data > Define Text IDs for Accounting Texts (Vendors)
    Transaction OBT5
    Regards, 
    Monika

Maybe you are looking for

  • Syncing from iphone to ical doesn't work

    In my syncing trials, I can't seem to figure out why my Calendar on my iPhone won't sync with my iCal or MobileMe. My Google calendar syncs fine as well as iCal to MobileMe. There's something going with the process between the phone & computer. Does

  • Including "All column name " in the dashboard prompt drop down list

    Hi All, I have following requirement : 1. Exclude the one of the column value from the drop-down list ( say exclude XYZ from client Name) 2. Add a new "All Clients" to the Column drop-down list and make that the default. This choice will be as if the

  • RTP for non media format?

    Hi, I wasn't sure if this is the right forum to ask.. But I guess it's worth a try. I am looking into streaming a data file over the network using JMF-RTP. I've looked into the page on "Transmitting and Receiving custom RTP Payloads" from: http://jav

  • How about new IBAN s - Through ESS

    Dear Experts, We have provided ESS application for employees to maintain bank account details through portal logon ESS. But when employee enters new IBAN for him over the portal, it checks for existance of that IBAN in TIBAN table and as it is not th

  • I can't install my apps to my iphone

    I can't drag it or click on 'sync apps' it doesn't work. it's been happening over months now, why? please help me.