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

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

  • Change the description of condition type

    Hi,
    How can i change the description of condition type??
    Regards,
    Kalpesh

    H iMichael Gerard Leo 
    Thanks.
    But it takes only 20 characters in descrption of condition type, while i want to write 30 character. What should be done?
    Kalpesh

  • How to change the default IDOC basic type from CREMAS05 to CREMAS04.

    Hi All,
    How to change the default IDOC basic type from CREMAS05 to CREMAS04 when sending Vendor Master Data.
    When I generate partner profile, the system will add the latest version of IDOC type which is CREMAS05 to the Outbound message. In my project, I'm asked to use CREMAS04.
    I want to use BD14 to send master data directly, but the program will generate IDOC using CREMAS05. Is there a way that I can change it to CREMAS04? And also for using Change Pointers, I want to use the report RBDMIDOC, but i have the same problem.
    Thanks
    Sai Krishna

    execute WE20 and edit the outbound parameters
    here is a pretty good example: http://documentation.softwareag.com/webmethods/sapr3_gateway/sap231/pages/sapdist.htm
    Edited by: Jürgen L. on Sep 7, 2011 9:49 PM

  • 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 residual payment document type?

    Hi,
    When i make residual partial payment then the document type of the residual amt will become DZ/KZ. However this is wrong because all invoices must be DR or KR. How can i change this doc type for residual payments?

    hi,
    its quite simple i beleive .. all you need to do is let me take an example of a customer ...
    while a collecting a payment from a customer you recieve it from  the tcode  f-28
    so once you are on the screen you are asked for a date and doc type also
    this is were you can change the doc type
    regards
    sayeed

  • 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 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

  • How to change the mouse cursor icon type when mouse moves out of client area ( propertysheet) WTL?

    I got stuck with an issue in property sheet .I want to load different cursor when the mouse position is within the client area and load another when moves out of the client area.
    In the porpetysheet I added four page. In the first page when I click next I am loading cursor of IDC_WAIT type and loading IDC_ARROW when the mouse moves out of the client area.
    In the page class I triggered the event for WM_MOUSEMOVE as follow:
        MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove)
    LRESULT OnMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    if(TRUE == m_bIsNextBtnClicked)
    ::SetCursor(LoadCursor(NULL, IDC_WAIT));
    else
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return TRUE;
    This event is getting triggered and absolutely had no issue with this. Similarly I tried adding `MESSAGE_HANDLER(WM_MOUSELEAVE, OnMouseLeave)` this event making an assumption that this will get triggered if the mouse moves out of the client area,  but
    this event did not get triggered at all.If this is not the mouse event to be triggered for mouseleave which event should I trigger?
    LRESULT OnMouseLeave(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return TRUE;
    Now when I click Next button , **I was actually calling a function which is taking sometime to return** . Before to this function I am loading IDC_WAIT cursor i.e., 
     `::SetCursor(LoadCursor(NULL, IDC_WAIT));` . 
    Now when move the mouse cursor on to the non-client area I want to load IDC_ARROW cursor i.e., 
        ::SetCursor(LoadCursor(NULL, IDC_ARROW)); 
    When the moves on to the non-client area I am handling the mouse event in sheet derived class as follows,
    MESSAGE_HANDLER(WM_NCMOUSEMOVE, OnNCMouseMove)
    LRESULT OnNCMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return 0;
    This event is not getting triggered until unless the function in the Next button event is executed.
    I want both of them to be done in parallel i.e, click Next button now hover mouse on the client area, Busy icon should come and when mouse moves out of the client area then IDC_ARROW icon should come.
    LRESULT OnWizardNext()
    ::SetCursor(LoadCursor(NULL, IDC_WAIT));
    m_bIsNextBtnIsClicked = TRUE;
    BOOL bRet = MyFun();
    m_bIsNextBtnIsClicked = FALSE;
    //Until this function(MyFun()) is executed **WM_NCMOUSEMOVE**
    //event is not getting triggered.But this event should get triggered and I
    //should be able to see the change of cursor within and out of client area.
    Can anyone kindly help me to solve this issue.
    SivaV

    Hello
    sivavuyyuru,
    For this issue, I am trying to involve someone to help look into, it might take some time and as soon as we get any result, we will tell you.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • 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

  • I modified the budget categories on the numbers template so now the transaction tab does not communicate with the budget tab. I figured out how to change the drop down options but how do I get it to reflect on my budget sheet? Please help.

    If you are familar with the Numbers Budget Template it has two tabs 'Budget' and 'Transactions'. If you use the template as it is designed when you input expenses on the transaction tab it will automatically add that amount into the selected category on the budget tab. I have madified my budget tab to reflect the caegories that I need, which included adding several to the template. I also added to the table so it reflects my income and expenses so I can track where I am at with a glance. Since I did this, I can't get my transactions tab to communicate with the budget tab. I figured out how to change the options in the drop down box for category but I con't figure out how to get it to reflect onto my budget tab. I'm sure that it is an easy fix, however, I am just not well versed in Numbers. I appreciate your time in helping me with this issue.
    Respectfully,
    Jon

    My guess is that while you added catetories to your Budget Sheet by adding new lines and filling in the category column, you didn't also add the formulas to these new budget lines.
    The proper way to add those lines would have been to select a cell in the line just above where you want to add a line and type Option/Alt-DownArrow. This would have copied the formulas into the new line. Maybe you did this, and maybe not. You didn't give details on how you added the lines.
    Select C2 and D2 and Command-C to copy them to the Clipboard.
    Select all the cells of Columns C and D except for the top and bottom rows and Command-V to Paste.
    If I have properly guessed the problem, you should be in business. This assumes that your Categories are exaclty the same as the entries in your Pop-up menus. Spelling counts, as does case.
    Jerry

  • 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.

  • How to change the task type of bdoc in sap crm

    Dear CRM Experts,
    I am new to CRM. Want to know how to change the task type  of Bdoc from update to insert. I am gettind B doc error due to the reason that under object_task the entry is U , whereas i have to change it to I (insert).
    Pls provide deatil answer. Points will be given.
    Regards
    Rajat
    Edited by: Gurinder Pal Singh on Jul 21, 2011 10:17 AM

    Hello Rajat,
    Please provide us more information about the error you have and it's description so that we can help here arounfd here.
    thanks
    Willie

  • How to change the data type of an item in administrator

    Hi,
    A summary folder was created. One of the item in the summary folder is a sum. That sum item was created in the business area (based on another item). I can't refresh that summary folder because it gives me an oracle error (Ora-12008 and Ora-01401 the value is too large for the column). The column that this item is based on is of data type Number(13). How can I fix this problem without changing the column's data type of the original table? I already tried altering the data type in the EUL table via TOAD.
    Thanks!

    You really don't need to sum the item before hand if you are going to create a summary!

Maybe you are looking for

  • Colour bars in After Effects

    I cut a portion of video on my time line and used "replace with after effects" to send clips to AE, but all I can see in program view is colour bars. Can anyone through light on this please? Thanks.

  • I used to be able to see each website I had open in the taskbar. Now, whatever setting I try, all I can see is the Firefox logo.

    Hello. I have switched laptops to a Windows 7 refurb. On my old computer, when I had any window open in Firefox, I was able to see the name of the site in a small block in the taskbar at a glance without hovering. For example, when I had Facebook ope

  • IPad cannot connect iTunes problem :(

    This iPad cannot be used because the required software is not installed.Run the itunes installer to remove itunes, then install itunes again. I had try many times remove itunes, then install itunes again, still face this problem. I also look for anot

  • Clear these doubts pl

    Hi, Let me be clear. I am on an internal assessment by my officials. I was given the questions with the options also. The questions as follows: Which of the following is a file extension for HTML Help Table of Contents? a. hpj b. hpk c. hkc d. hkk Wh

  • Multiple transitions in one slide show

    When using iDVD is there a way to apply transitions onto specific slides in a slideshow so that one slide show can have multiple transitions throughout? also is there a way to control the time of each specific time - ex one should be for 5 secs and t