How to change the description of variant article

Hi All,
I need to append some value( size or country) to the variant article description.
suppose if the generic article no is 123456 (football shoe)then the variant article numbers will be
123456001 , 123456002 etc...which is done by default by SAP. and the description also is taken from geenric article football shoe, same like generic article, this we need to change.
now the description of the variant article also will be taken from Generic article.
but here the description is to be chagned(appened) with some value.
ex. football shoe IN 9 (indicating the India and size 9)...
iam looking at some enhancement MGW00002 and user exit:EXIT_SAPLMGNK_003, but this is useful only to change the variant article number not description.
Any hints will be great help.

Hi,
   I know I am a little to late to the party! But for all those who are going to search for this in the future there is a very good blog...i am posting the link below...
Basically run the program RDDIT076...
http://scn.sap.com/community/abap/blog/2015/03/12/program-to-change-transport-request-description-after-release
Regards,
Divaker

Similar Messages

  • How to change the description

    hi all,
    can any body tell how to change the description of the field in the sales order.ex pricing date to customer date some thing like that

    (same answer) for the same question
    Hi,
    to modify the description of field :
    SE38 with program : RSMODWRD
    Enter your field (data element) + language.
    Another way :
    TCode : CMOD and in menu bar Goto / Text enhancements / keywords/Change
    I think, a direct transaction exists but i don't find.
    Regards,
    Lionel

  • How to change the description in CV03(N) transaction ?

    How to chnage the long test description in CV03N transaction  
    Posted: Jan 10, 2010 11:36 PM     Edit          Reply 
    Hi Friends,
    I have a requirement as below:
    1. Excecute the transaction CV04N
    2. Give Document value(s) and Excecute
    3. Double click on any row on the ALV generated which takes you to CV03N transaction
    4. Here in the additional data Tab, I need to concatenate Subject1,Subject3,Subject3 values and this value need to be put Description in the Document data Tab.
    Ex:
    If Subject1 = Test1, Subject2 = Test2 and Subject3 = Test3 then i have to change the description as Test1
    Test2 Test3 When the change followed by save is clicked.
    Please drop your suitable answers ASAP.
    Below is the code i have used using the BADI 'DOCUMENT_MAIN01' and the method 'AFTER_SAVE'.
    Below is the code :
      TYPES:
        BEGIN OF ty_ausp,
          objek TYPE ausp-objek,        "Key of object to be classified
          atinn TYPE ausp-atinn,        "Internal characteristic
          atwrt TYPE ausp-atwrt,        "Characteristic Value
        END OF ty_ausp.
      DATA:
        w_objek      TYPE ausp-objek,
        w_ltext(120) TYPE c,
        w_name       TYPE thead-tdname,        "Name
        wa_drat      TYPE drat,
        wa_ausp      TYPE ty_ausp,
        wa_tline     TYPE tline,
        wa_draw      TYPE draw,
        t_ausp       TYPE STANDARD TABLE OF ty_ausp,
        wa_thead      TYPE thead,              "SAPscript: Text Header
        t_tline      TYPE STANDARD TABLE OF tline.
      CLEAR w_objek.
      w_objek+0(3)  = draw-dokar.
      w_objek+3(25) = draw-doknr.
      w_objek+28(2) = draw-dokvr.
      w_objek+30(3) = draw-doktl.
      SELECT objek                         " Key of object to be classified
             atinn                         " Internal characteristic
             atwrt                         " Characteristic Value
        INTO TABLE t_ausp
        FROM ausp
       WHERE objek = w_objek
         AND atinn IN ('0000000858', '0000001038', '0000001039' ).
      IF sy-subrc = 0.
        SORT t_ausp BY objek atinn.
      ENDIF.                               " IF sy-subrc = 0.
      LOOP AT t_ausp INTO wa_ausp.
        CONCATENATE w_ltext wa_ausp-atwrt INTO w_ltext SEPARATED BY space.
      ENDLOOP.                             " LOOP AT t_ausp INTO wa_ausp.
      CLEAR w_name.
      MOVE draw TO wa_draw.
      w_name+0(3) = wa_draw-mandt.
      w_name+3(3) = wa_draw-dokar.
      w_name+6(25) = wa_draw-doknr.
      w_name+31(2) = wa_draw-dokvr.
      w_name+33(3) = wa_draw-doktl.
      REFRESH t_tline.
      CALL FUNCTION 'DELETE_TEXT'
        EXPORTING
        CLIENT                = SY-MANDT
          id                    = 'LTXT'
          language              = 'E'
          name                  = w_name
          object                = 'DRAT'
        savemode_direct        = ' '
        textmemory_only        = ' '
        local_cat              = ' '
       EXCEPTIONS
         not_found              = 1
         OTHERS                 = 2.
      IF sy-subrc <> 0.                    "IF sy-subrc <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.                               "IF sy-subrc <> 0.
      wa_tline-tdformat = '='.
      wa_tline-tdline = w_ltext.
      APPEND wa_tline TO t_tline.
      wa_thead-tdobject = 'DRAT'.
      wa_thead-tdname = w_name.
      wa_thead-tdid = 'LTXT'.
      wa_thead-tdspras = 'E'.
    wa_thead-tdtitle = w_ltext.
      DATA:
        w_function TYPE c,
        wa_newheader  TYPE thead.
      CALL FUNCTION 'SAVE_TEXT'
        EXPORTING
         CLIENT                = SY-MANDT
          header                = wa_thead
          insert                = ' '
         SAVEMODE_DIRECT        = 'V'
        OWNER_SPECIFIED       = ' '
        LOCAL_CAT             = ' '
       IMPORTING
         function              = w_function
         newheader             = wa_newheader
        TABLES
          lines                 = t_tline
       EXCEPTIONS
          id                    = 1
          language              = 2
          name                  = 3
          object                = 4
          OTHERS                = 5.
      IF sy-subrc <> 0.                    "IF sy-subrc <> 0.
    Raise message
      ENDIF.
      REFRESH t_tline[].
      CLEAR wa_thead.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
        CLIENT                        = SY-MANDT
          id                    = 'LTXT'
          language              = 'E'
          name                  = w_name
          object                = 'DRAT'
        ARCHIVE_HANDLE                = 0
        LOCAL_CAT                     = ' '
       IMPORTING
         header                        = wa_thead
        TABLES
          lines                         = t_tline
       EXCEPTIONS
         id                            = 1
         language                      = 2
         name                          = 3
         not_found                     = 4
         object                        = 5
         reference_check               = 6
         wrong_access_to_archive       = 7
         OTHERS                        = 8.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Please help why it is not getting effeted OR
    Give a differnt way of Solving this issue.
    Please drop your suitable answers ASAP.
    Regards,
    Rama.P

    Hi Claud,
    Go to SPROSRM ServerCross App Basic SettingsNumber rangesDefine transaction typesSelect BUS2200 and double click on transaction typesHere you will see BID (transaction type)--Just double click on this and in the screen that follows change the description.
    PS: The system will generate a transport request.
    Regards,
    Nikhil

  • How to change the description of Transaction Type

    hi ,expert
       i want to change the description of Tansaction type.
        eg, change the description of BUS2200 :'RFx  '   to 'RFQ' . 
        please give me some advice. thanks in advance.
         regards
                claud

    Hi Claud,
    Go to SPROSRM ServerCross App Basic SettingsNumber rangesDefine transaction typesSelect BUS2200 and double click on transaction typesHere you will see BID (transaction type)--Just double click on this and in the screen that follows change the description.
    PS: The system will generate a transport request.
    Regards,
    Nikhil

  • How to change the description of a program or report

    Hi,
    I had copy a report of and changed thereby the name.
    But the description is still the same and I can't find
    a way to change this.
    The problem with the description is that it appears
    as program-title in selection-screen-->select-options.
    Thanks for help

    Hi
    change the attributes or
    In the REPORT along with name
    declare NO STANDARD PAGE HEADING
    it will not display the report description in the output.
    Reward points for useful Answers
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • How to change the description of a selection screen

    Hi , I created a selection screen with the description as 'Test' , now the program has grown real big . I want to change the desccription to something else as it shows at the top of the selection screen. Can this be done with out copying the program to a new progarm with a new description. I mean , is there a way to change the current description .
    Thank you .

    Hi
    in SE38 Enter the program name.
    Select the Radio button<b> Attributes.</b>
    Change the <b>Title </b>of the Program.
    This title will appear in the selection screen as well as the list by default.
    We can also set this TITLE dynamically using the command.
    SET TITLE-BAR 'T1'.  "double click on T1 and create (Activate) it.
    <b>reward if Helpful.</b>

  • How to change the values of variant dynamically

    hi
    I am working on building a wrapper program which sets the background job for another transaction CFM1.
    I have a small problem, the variant attributes for a particular field MATNR has been manually changed such that it picks up values from TVARVC. The variable name in TVARVC is MATERIAL.
    If I want to programatically set the selection variable as 'T' and variable name as MATERIAL which table do I need to change.
    please let me know <b><REMOVED BY MODERATOR></b>
    Message was edited by:
            Alvaro Tejada Galindo

    Hi,
    If your problem is not solved try this.
    For the particular variant.
    Select the variable 'T' and the field , u call it, MATERIAL. In the code fill the value of this paritcular MATERIAL variable in the TVARVC table i.e the LOW field in the table.
    Now pass the variant along with the program which u want to run in the background.
    Hope this helps.
    If you have tried any other way let me know.
    Regards,
    Anand Patil

  • Change the Description of Purchasing Organization

    Hi Frenz,
      Could some body guide me how to change the description for the Purchasing organization?
    Saurabh

    in IMG the path is..
    SAP Customizing Implementation Guide
    Enterprise Structure
    Definition
    Materials Management
        Maintain Purchasing Organization

  • How can I change the description of a control Icon with property nodes?

    hi
    I want to change the description of a control Icon and use for this the property nodes, but I don't know how. Who can help me?
    labprog

    If you're referring to the control's name on the screen, you can't change the label while the VI is running because it's part of the control's definition. Instead, make the label invisible and the caption visible and use the property Caption.
    If this doesn't help, elaborate more on what it is you need.
    Try to take over the world!

  • How do I change the description in a url icon

    Hi, I like being able to drag a url down to the dock to create a permanent shortcut to that webpage, but how do I change the description that appears above the url icon? I want to create shortcuts to some google forms I created, but when I do so the description is always the URL, which isn't helpful. I need to change the desciption so it says "timesheet" or "sign up form" instead of the url. Is that possible?
    Screenshot attached to demonstrate. As you can see in the screenshot, when I hover my mouse over the URL icon, the url appears as a description. But the description is not helpful. I want to change that description to a custom description.
    http://cl.ly/2w1w103S361F2K3y0v2u - screenshot

    Awesome. Thanks. Found a website that showed me how to find the .png for that icon.
    Here's the whole process now, in order, for perpetuity's sake.
    1) Highlight the URL of the website you want to create a dock bookmark for.
    2) Drag the highlighted URL to the desktop, which creates a .webloc file.
    3) Open terminal and type in the following (which will open the icon in preview)
    open /System/Library/CoreServices/Dock.app/Contents/Resources/url.png
    4) In preview, highlight the icon and select "copy"
    5) Select the .webloc file on the desktop and choose "get information", which is command-i
    6. Change the name of the file to whatever you want, leaving the .webloc in place.
    7) Select the small icon in the upper left corner. When you do, it will highlight.
    8) Hit "command-v" to paste the icon previously selected over the old icon.
    9) Now drag your newly-icon'd file to the dock, which essentially creates a shortcut.
    10) Place the newly-icon'd .webloc file somewhere safe on your computer.
    11) Congratulate self and thank Matthew Morgan for his help.

  • Change the description of standard element

    Hi,
       I need to change the description of (VBAP-MVGR1 'Material Group 1') field, which system is using in Transaction Code VA01,VA02 & VA03  (Additional data as per item level).  Pls suggest me how to change it's description. Clients wants to add his own description here.
      Should i change the description of data element directly with access key?
      pls suggest.
    Thanks in advance.
    Pradeep

    Hi,
    gothrough this, it will help you..
    Creating Your Own Keywords and Short Texts
    You can use the enhancement concept to create your own keywords for data elements stored in the ABAP Dictionary. The system uses keywords on screens to identify entry fields. Data elements can have up to three keywords of varying lengths.
    The data element BBBNR, for example, identifies the first part of a customer’s international company number. The standard keywords for this data element in the ABAP Dictionary are:
    Company no. 1
    Comp. no.1
    Company number 1
    You might want to change these keywords to reflect your company’s own terminology. Instead of ‘Company number 1,’ you might want to identify the field as ‘Corporate ID.’ If you change the keywords using the enhancement concept, your new texts will appear in all SAP screens where any field directly refers to the data element your altered. If SAP deliberately modifies a keyword on a standard screen, direct reference to the original data element is dissolved. Any changes you make to a keyword with the enhancement concept will not appear in standard screens that do not retain a direct reference to the modifed data element.
    You can identify such screen-specific modifications by looking in the Screen Painter. Display the field’s screen attributes and examine the field Modific. If an ‘x’ appears, the SAP developer modified the data element’s key word. Your own keyword will not appear.
    The enhancement concept also allows you to alter a data element’s short description (short text). This brief text appears whenever a user calls up online help for that field with F1 . To create your own keyword and short text documentation, proceed as follows:
    Enter the Project management transaction by choosing Utilities ® Enhancements ® Project management from the ABAP Workbench menu
    Choose Text enhancements ® Key words ® Change.
    The system displays a dialog box.
    Enter the name of data element.
    If you want to see a list of all the screens where this data element appears, choose Ref. to screen before proceeding to the next step. The reference list shows you how many standard R/3 screens your new documentation will affect.
    Choose Change from the application toolbar.
    Edit the data element’s keywords and short text.
    Save your changes.
    If you want to list all the data elements in your system that you have created customer-specific key words for, return to the main screen of the Project management transaction and choose Text enhancements ® Key words ® Display. The system displays all altered data elements and shows which changes were made.
    Restoring SAP and Customer Versions
    At some point you may want to restore all standard SAP keywords and short texts for data elements that you may have altered. You can restore the standard texts from the main screen of the Project management transaction. Choose Text enhancements ® Key words ® Restore SAP version. Specify the SAP release from which the texts are to be restored.
    The restoration function is carried out by a special program that runs in the background. This program goes through all data elements in your SAP System and restores the standard texts where required.
    Creating Your Own Online Documentation
    The enhancement concept allows you to create your own online documentation for all data elements in the ABAP Dictionary. The system displays this documentation whenever a user chooses F1 to get more information about a screen field.
    The standard documentation for the R/3 data element BBBNR reads: ‘Here, you enter the first 7 digits of the international location number’. You can enhance this documentation with additional information that your users may need. To write your own field documentation, proceed as follows:
    Call the Project management transaction by choosing Utilities ® Enhancements ® Project management from the ABAP Workbench menu.
    Choose Text enhancements ® Data elements ® New DE cust. docu.
    The system displays a dialog box.
    Specify the data element’s name.
    If you want to see a list of all the screens where this data element appears, choose Ref. to screen before proceeding to the next step. The reference list shows you how many standard R/3 screens your new documentation will affect.
    Choose Change from the application toolbar.
    On the next screen, ensure that the checkbox labelled Make available SAP documentation in the form of an INCL is activated.
    Choose Create.
    Write your own documentation.
    Save your changes.
    -suresh

  • How to change the standard layout sets in ALV List

    Hi Gurus,
    How to change the standard layout sets in ALV list.
    Is there any standard program ? or specific way to acheive this?
    Kindly drop some clues?Every valuable clues rewarded more points........
    Thanks in Advance,
    Dharani

    Hello Dharani
    All required function modules can be found in function group SLVC (assuming that you are using OO-based ALV or, at least, fm REUSE_ALV_GRID_DISPLAY_LVC):
    LVC_VARIANT_DEFAULT_GET (Read default display variant (description only, w/o field catalog))
    LVC_VARIANT_EXISTENCE_CHECK
    LVC_VARIANT_F4 (Display variant selection dialog box)
    LVC_VARIANT_SELECT (Read a display variant)
    For a sample report using LVC_VARIANT_DEFAULT_GET have a look at BCALV_GRID_10.
    Regards,
      Uwe

  • How to change the default search engine? I accidentaly change it from google to yahoo, and I can't get it back. I changed my homepage too, but it isn't solved. Thanks

    dear, there.
    how to change the default search engine? I accidentaly change it from google to yahoo, and I can't get it back. I changed my homepage to google too, but it isn't solved. Thanks

    Clarification:
    I believe now you potentially lose all extensions, plug-ins when you use the new reset function, but you will let me know.
    If that is the case, your find corrupt file method maybe better. However, I reviewed the two help articles and there appear to be more files than just the delete search.json file and a possible search.sqlite file in the Firefox Profile Folder. I am confused. Then I have to find the folders. I think help articles mentioned how to find the profile containing the files, but not sure.

  • How to change the default 'screenshot' save from 'png to jpg'

    Can someone tell me how you change the default on this so I don't have to 'change the file' every single time?

    http://www.macobserver.com/tmo/article/changing_the_default_screenshot_format/

  • How to change the default view of published iCal's URL

    I am publishing an iCal for a nonprofit group and link to the calendar from the group's website. The default URL given (in the send publish email option) leads to the week view of the current week. I would prefer the link to take site visitors to the month view of the calendar. If I go to the month view and copy the URL for it, and use that for the link, I have to change the URL each month, because the URL that comes from the month view will only show the month it was at the time I copied the URL -- it will not change with the new month. Does anyone have any idea of how I can change the URL so that it leads to the month view of whatever the current month is?
    I should note that I know how to change the default view in the my browser, but I would rather not have to explain how to do this to all the people viewing the calendar -- just wanting the correct month view to show up when they click the link, without having to change it each month.
    I would be so grateful if anyone has some insight on this!
    Thanks.

    Carlo,
    The fact that this question has been left unanswered for over 2 months seems a little negligent on the part of Apple Support.
    This Forum is unfortunately not Apple Support. According to Apple:
    What is Apple Discussions and how can it help me? 
"Apple Discussions is a user-to-user support forum where experts and other Apple product users get together to discuss Apple products. You'll find a wealth of information about your favorite Apple hardware and software products that will help you get the most out of your purchase. You can participate in discussions about various products and topics, find solutions to help you resolve issues, ask questions, get tips and advice, and more.
    If you have a technical question about an Apple product, be sure to check out Apple's support resources first by consulting the application Help menu on your computer and visiting our Support site to view articles and more on our product support pages."
    In direct response to your questions, I would say that (as observed by the OP) anyone who subscribes to a published calendar can make a change to their desired view using the "Preferences" icon which is displayed underneath the mini-month calendars.
    There is no way that I know of to directly or conveniently change the time-range. There may be workarounds, but I could not find a suitable solution for you.
    I would recommend that you provide iCal Feedback, if you are interested in informing Apple of your desires.
    ;~)

Maybe you are looking for

  • IPad syncing to iTunes

    Hello I have two ipads and a macbook pro. The weird problem which I am facing is that I downloades Asphalt onto my iPad from appstore over wi-fi. After some time I updated it again over wi-fi. Now whenever I connect my iPad to iTunes of my mac for sy

  • Analog Audio Output Jack for Digital Speakers with same jack configuration

    I just purchased my first Mac, a Mac Pro. I can't get sound to my speakers using the analog out jack. With my old PC, there was a setting for "digital output" even though the digital speakers were attached via to the same style jack as the Mac's anal

  • Is it possible to install a 8 GB of RAM memory to a late 2008 aluminium macbook?

    Is it possible to install a 8 GB of RAM memory to a late 2008 aluminium macbook?

  • Browser page view

    How can I set the page view, in the browser, to be column view? Some pages are set to page view, but I want to set them all to column.  I used to have a Curve and it gave you the option for page or column view. Is it possible with the Style?

  • Problem in updating + error (-1)

    when i update my ios to 6.0 i got a frozen display stating connect to itunes. when connecting i have only a restore and update. when doing so, i have an error (unknown -1) popping on the screen. The store tried to download the new version several tim