Changing the descriptions in the standard transactions

Hi,
    What am i supposed to do to change the discription of any field in the standard
transaction. eg: say the material in mmo1 should be changed to ' material code' from 'material'.

chk this
Re: change description of field in mm02
reward if helpful

Similar Messages

  • Changing the output layout of standard transaction FPWLM

    Hi All,
    We have a requirement where we need to change the output layout of the standard transaction FPWLM which is used fo the management of worklist for collecion management.
    In this transaction under the current worklist if we select the worklist ID and display it , work items are displayed in the Grid display. We want to add certain fields here in the output layout of this transaction. We tried adding the fields by selecting the change layout option which displays the list of hidden fields which can be added . But the problem is the field which we want to add is not present in this list.
    Is there any other way to add the fields to the output layout of standard transaction.
    thanks
    regards
    manipal

    Hi Manipal,
    Maybe check IMG under Basic Settings for Collections Management.
    This node contains the sub-node Worklist.
    Two enhancements are availaable here:
    BAdI: Enhancement of Worklist Items on Creation
    BAdI: Enhancement of Worklist Items on Display
    Maybe read the documentation for the nodes to determine if the enhancements will accomplish what you are looking for!?
    Since this component is not active in our installation, I have no experience with this functionality.
    Kind regards,
    Robert

  • Change the description of the line in the EMOLUMENTS PAID in the FORM16

    Hello Seniors,
    A small issue regarding the change the name of the FIXED DA to DEARNESS ALLOWANCE in the EMOLUMENTS PAID in the FORM16.
    my client asked me to change the description of the DA.
    how can i change this, programm HINCF160 is SAP STANDARD it is not changeable.
    please help me regarding this.
    thanks & regards,
    praneeth kumar

    Hi Praneeth,
    Even i m trying the same at my company, but it is without ESS...so doing RND on tht... Just check this link out...it may be helpful for you...also i dnt found ur E-mail ID in ur Business card...
    http://help.sap.com/saphelp_46c/helpdata/EN/53/6e693fa14411d19d450000e8215202/frameset.htm
    Regards,
    Prasad Lad

  • Change the  description of the change request number" in SE10 after release

    Hi All
    Is there way to change the
    "description of the change request number" in SE10
    after releasing the change request number?
    appreciate your feedback
    Thanks you
    Iver

    Hello
    I do not know a way to do it in se10 but a simple program could do the trick.
    Include the following code in your program.
    update e07t set as4text = 'your new description'
          where trkorr = your_cr and langu = 'E'.
    Of course you will have to wrestle with the 'moral issue' of directly updating SAP delivered tables
    Regards
    Greg Kern.

  • Changing the description of the created referenced Char. in COPA(Urgent!!!)

    Hi Gurus,
    Can we change the description of the created referenced characteristics in the COPA.
    Thank You.
    Points will be rewarded for sure.

    Hi!
    Since, the description is in the display mode, while being in editing mode, can't be able to change it.
    Is there any way out to change it.
    Thank You.
    Ravi

  • Change the description of the product attributes

    Hi,
    I want to change the description of the product attributes from 1 - 6(Check Box)  in MM02 in the SALES : Sales Org 2 Tab.
    How to do this.
    Kindly let me know.
    Regards
    Manoj

    Hi dude,
           You can try Text Enhancements for ur Data Element  in CMOD.
           Tcode  CMOD, Goto>text enhancements>Data Elements-->NewDEcust Doc.
    Regards
    Srikanth M

  • Does BAPI call the validations defined for standard transactions ?

    Hi Experts,
    Can anyone tell me if BAPI handles the validations defined for standard transactions ? I have a standard transaction KB15N. Validation defined for a field works fine when run thorugh the transaction. But if same data is updated using BAPI , validations are not getting called and wrong data is updated in the system.
    Could you please confirm if BAPI handles validations ? If yes, how to take care of it ?
    Best  Regards,
    V joshi

    Hi Thomas,
    Thanks for your quick reply.
    I have following condition in the prerequsite of validation
    Prerequsite :      Transaction code = 'KB15N'
    check :               Sr cost element > '90000000' AND Sr cost element < '9ZZZZZZZ'
    I am using BAPI  'BAPI_ACC_MANUAL_ALLOC_POST'  for posting.
    Do i need to modify the pre-requisite  condition ? Kindly guide.
    Regards,
    V Joshi

  • How to display name of the table and the description and the table type

    Hi,
    Can you people tell me how to display the name of the table and the description and the table type (View, structure, etc...) used in the program.
    I want to display in a list.
    Kind Regards

    use this program
    TABLES : TSTC, tstct.
    TABLES : DD03l, DD02l.
    DATA : Program like sy-repid.
    DATA : BEGIN OF I_FINAL OCCURS 0,
    tabname LIKE dd02l-tabname,
    TABCLASS LIKE dd02l-tabCLASS,
    TEXT LIKE DD02T-DDTEXT,
    END OF I_FINAL.
    DATA : BEGIN of ITAB Occurs 0,
    name like dd02l-tabname,
    END OF ITAB.
    DATA : TCD(100) TYPE C.
    DATA : var1 LIKE dd02l-tabname.
    DATA : DESC LIKE TSTCT-TTEXT.
    selection-screen skip.
    SELECTION-SCREEN : BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS : r1 RADIOBUTTON GROUP r DEFAULT 'X'.
    Parameters : Tcode like sy-tcode.
    selection-screen skip.
    PARAMETERS : r2 RADIOBUTTON GROUP r.
    Parameters : Prog like sy-repid.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE text-001.
    select-options : Type for dd02l-tabclass .
    SELECTION-SCREEN END OF BLOCK B1 .
    at selection-screen.
    if r1 = 'X' and Tcode is initial.
    message e001(00) with 'Enter Transaction Code' .
    elseif r2 = 'X' and Prog is initial.
    message e001(00) with 'Enter Program Name' .
    endif.
    START-OF-SELECTION.
    if r1 = 'X'.
    Prog = ' '.
    select single * from TSTC where tcode = tcode.
    if sy-subrc = 0.
    program = TSTC-PGMNA.
    select single TTEXT from tstct into desc where tcode = tcode and SPRSL = 'E'.
    else.
    Write :/ 'Invalid Transaction Code'.
    exit.
    endif.
    elseif r2 = 'X'.
    Tcode = ' '.
    program = Prog.
    endif.
    CALL FUNCTION 'GET_TABLES'
    EXPORTING
    PROGNAME = Program
    TABLES
    TABLES_TAB = itab.
    if itab is initial.
    skip.
    skip.
    skip.
    skip.
    skip.
    WRITE :/40 'No Data Found' color 6 INTENSIFIED OFF.
    ELSE.
    PERFORM : categorize.
    endif.
    END-OF-SELECTION.
    LOOP AT I_FINAL.
    WRITE :/4 I_FINAL-tabname COLOR 2 INTENSIFIED OFF NO-GAP HOTSPOT ON, 35 I_FINAL-TABCLASS COLOR 2 INTENSIFIED OFF NO-GAP,
    50 I_FINAL-TEXT COLOR 2 INTENSIFIED OFF NO-GAP.
    ENDLOOP.
    AT LINE-SELECTION.
    TCD = SY-LISEL.
    var1 = TCD+3(30).
    set parameter id 'DTB' FIELD VAR1.
    call transaction 'SE11' and skip first screen.
    TOP-OF-PAGE.
    WRITE :/45 'TABLE DETAILS RELATED TO THE TRANSACTION CODE' COLOR 7 .
    WRITE :/2 'DATE : ' COLOR 1, SY-DATUM COLOR 1 INTENSIFIED OFF NO-GAP.
    WRITE :/2 'TRANSACTION CODE : ' COLOR 1, Tcode COLOR 1 INTENSIFIED OFF NO-GAP.
    WRITE :/2 'TCODE DESCRIPTION : ' COLOR 1, desc COLOR 1 INTENSIFIED OFF NO-GAP.
    WRITE :/2 'PROGRAM NAME : ' COLOR 1, PROGRAM COLOR 1 INTENSIFIED OFF NO-GAP.
    SKIP 1.
    WRITE :/1(140) SY-ULINE.
    WRITE :/4 'TABLE NAME' COLOR 5 INTENSIFIED OFF NO-GAP,35 'TABLE TYPE' COLOR 5 INTENSIFIED OFF NO-GAP,
    55 'DESCRIPTION' COLOR 5 INTENSIFIED OFF NO-GAP.
    WRITE :/1(140) SY-ULINE.
    *& Form categorize
    text
    --> p1 text
    <-- p2 text
    FORM categorize .
    SELECT dd02ltabname dd02ltabCLASS DD02T~DDTEXT
    FROM dd02l INNER JOIN DD02T ON dd02ltabname = dd02Ttabname
    INTO TABLE I_FINAL
    FOR ALL ENTRIES IN itab
    WHERE DD02L~TABNAME = ITAB-NAME AND TABCLASS IN TYPE AND DDLANGUAGE = 'E'.
    if sy-subrc <> 0.
    skip.
    skip.
    skip.
    skip.
    skip.
    WRITE :/40 'No Data Found' color 6 INTENSIFIED OFF.
    endif.

  • To bold the descriptions for the structure members in the BEX Query

    HI Experts,
    Could any one please advise on how to BOLD the descriptions of the structure members in the BEX query.
    Thanks in advance,
    Jeswanth

    Are you looking at making the same BOLD in the web display ..?
    To do this :
    Execute your query - go to display source for the page and you will see the structure members identified with a particular CSS class.
    Open the CSS file from the MIME repository and then identify the class that is used for the structure elements and then change th CSS to make it bold and then upload the changed CSS into MIME .
    Refresh the HTTP global cache from SMICM and then run your report again - you should be able to see the structure elements in BOLD.

  • Iview: Push button for switching on or off the description of the document

    Hi all,
    In the AdminExplorer iview, I want to have a button to display the description of the document, as it happends in the following page.
    https://www.sdn.sap.com/irj/sdn/downloads
    I've added the follwoing rnd:command(command=NEWCOMMAD/style=icon)
    in List Renderer's Dispayed properties field, BUT
    a)I dont know how to create that NEWCOMMAND,
    b)I dont know if this the correct way of doing it.

    Quick answer—No.

  • How to find out the description for the given field?

    Hi All,
    How to find out the description for the given field?
    I mean ETTYP  Desription is VTEXT. This we can find in TVEPT  Table. So, How canwe find this?
    Thanks in Advance
    Sri...

    Hi  Avi,
    If i want to disply the  fields like   AUART and 'Description of AUART',
    Suppose based on my query i will take AUART from T184 table. And the description of AUART is available in TVAKT table.
    my question is if i have given T184-AUART  and how do u find out AUART Description ?(How do u know which table is having Description of AUART)?
    Thanks in Advance
    Sri...

  • Table for the descriptions of the custom programs.

    Hello,
    Can anyone please tell me the table name in which I could find the descriptions of the custom programs which we create in SAP?
    Thanks and Regards,
    Amit.

    By mistake asked twice

  • I am using my Description as the caption on Slideshow.  I ticked the "Show Title Slide" button and iPhoto physically copied the description on the first slide onto the end of every other description.  I can find no way of removing them other than by hand.

    I am using my Description as the caption on Slideshow.  I ticked the "Show Title Slide" button and iPhoto physically copied the description on the first slide onto the end of every other description.  I can find no way of removing them other than by hand.  Unticking the "show title slide" did not reverse the situation back to my required state.   Any ideas why it might have happened or how it might br resolved?   Regards, Marshfrog1

    Attached is Dennis Linam’s Audition – “Log File” and “Log – Last File”
    Contact information Dennis [email protected]
    Previous contact information with your organization (DURIM):
    Dennis - i just finished my audition trial and bought the subscription the 2014 version.
    created by durin in Audition CS5.5, CS6 & CC - View the full discussion 
    DURIM - Okay.  I would expect the "Cache Warning" message because your default directories would not be the same as the ones in the settings file I generated.
    If you go back to the "7.0" directory and open the "Logs" folder, can you copy the "Audition Log.txt" file and send it as an attachment to [email protected]?  We'll take a look in that logfile and see if it gives us more information about why this is failing now.
    Also, do you have any other Adobe applications installed on this machine, such as Premiere Pro?  If so, do they launch as expected or fail as well?
    I do have the trial Pro version of Adobe reader, but I have not activated it, because I fear the same thing will happen did it. I cannot afford to activate the subscription for that product and take the chance of it not working either. I depend on those two programs religiously. Here is the files that you requested. I appreciate any help you can give me to get this audition program started
    Audition Log- file
    Ticks = 16       C:\Program Files (x86)\Common Files\Adobe\dynamiclink\7.0\dynamiclinkmanager.exe
    Sent from Windows Mail

  • Is the new iPad and iPod touch 5g have exactly the same iSight camera. because i heard read a lot in the apple site about the new iPad camera but the description for the new iPod touch is not so good IN TERMS OF CAMERA. so please help me

    is the new iPad and iPod touch 5g have exactly the same iSight camera. because i heard read a lot in the apple site about the new iPad camera but the description for the new iPod touch is not so good IN TERMS OF CAMERA. so please help me. coz i want to know is ipod touch 5g giving the new ipads like high clarity mages

    The ipod touch 5g and the new ipoad both have 5-mega pixal cameras.

  • HT4461 I recently downloaded an app from App Store which is a paid app and it doesn't have any features as in the description in the App Store. How do I report this app and stop payment what I did online to purchase it.

    I recently downloaded an app from App Store which is a paid app and it doesn't have any features as in the description in the App Store. How do I report this app and stop payment what I did online to purchase it.

    Hi Sajeed.f,
    This article has the steps to go through to file such a report:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/ht1933
    Cheers!
    - Ari

  • How can i print the description about the field?

    dear folks
    i want to develop a report in that i want to display all fields in MM03 for all views.
    there i want to display first Field description (not field name), then field value.
    ie, for MATNR:
    Material Number = xxxx (value)
    for SPART:
    Division = d1.
    how can i print the description about the field?

    CALL FUNCTION 'DDIF_FIELDINFO_GET'
        EXPORTING
          tabname        = 'MARA'
          FIELDNAME  = 'MATNR'
        TABLES
          dfies_tab      = t_dfies
        EXCEPTIONS
          not_found      = 1
          internal_error = 2
          OTHERS         = 3.
    you will get all the info for the field in t_dfies in that u have the field description also
    run the above FM from se37 and pass tabname = MARA and fieldname = MATNR
    see the results in DFIES_TAB in internal table

Maybe you are looking for