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

Similar Messages

  • Change Item Description in Purchase Requisition

    Hi,
    Purchase requisition is created automatically from the maintenance order in IW31.
    Here the requirement is to change the item description (Short Text) in the purchase requisition.
    In ME52N when I tried to manually change, the item text is greyed out.If at all we have to change the item description what is the procedure.
    Please suggest.
    Regards
    Kishore

    Hi,
    You cant change this Text in ME52N, for this you need to change the description of operation in IW32. PR  take default text form  IW32 component tab page so you can change this text same will reflected to you PR.
    Regards,
    Ashish

  • Can I change the location of adobe organizer file folders in Elements 11 from my c to d drive ?

    Can I change the location of adobe organizer file folders in Elements 11 from my c to d drive ?
    My laptop, which uses Windows 7, came with the hard drive divided between a C and D drive.  the C drive, where all the programs load, is nearly full, and I would like all the photos and videos that adobe elements organizer finds and that I download into load on my nearly empmty and spacious D drive.
    In other programs I can change this is file prefernces, but I cant find that feature in elements.
    Is it possible? and how can I do it?

    Team Ben Hur
    SG will probably have more to say about his reply, but in the meanwhile you might want to check out Premiere Elements 11/Elements Organizer 11/File Menu/Catalog Manager... and the Custom Location option. I suspect that is what both of you have in mind?
    When Photoshop Elements 11 and Premiere Elements 11 are installed on the same computer, they share a common Elements Organizer (catalog) although they can be purchased as standalone products each with its own Elements Organizer (catalog).
    ATR

  • When I edit a song in itunes (i.e change the year) on purchased songs, the next time I return to itunes, the information has reverted back to the original information. How can I change that?

    When I edit a song in itunes (i.e change the year) on purchased songs, the next time I return to itunes, the information has reverted back to the original information. How can I change that?
    When I purchase ITunes music, and it is a song from a Greatest Hits album, the Year of the song shows the year the CD was released and not the year the song was released (i.e. a song may be from 1986, but the Greatest Hits album was released in 1999, so my songs in ITunes show 1999).    So, I go into each of those songs and change it to the year that I want to be displayed. As long as I don't exit out of ITunes, it will show the year that I changed it to (i.e. the 1986 year in this case). But if I exit out of ITunes and then return to ITunes, the year reverts back to 1999. The same happens if I change the genre of a song from, say 'Pop' to 'Alternative', it will revert back the next time I log in.
    Oddly enough, as soon as I right-click on that song to change it back, the year/genre that I had entered returns.
    How can I make it so my changes are permanently displayed as I want them?  This is pretty annoying when I try to find a song on my Ipod under a certain genre, but it doesn't appear in that genre because the incorrect information gets synched to the Ipod.

    Make sure that these two options in Edit > Preferences > Store are turned off:
    Then exit iTunes and open it up again.  Your metadata entries should then be persistent - with these options checked iTunes will be comparing what you have with the information held in the iTunes Store, and will overwrite with the latter for Store purchases (and if you have iTunes Match).  If you have any iOS devices you should also turn off Show All Music under Settings > Music.

  • Is it possible to change the description of an attribute in the local view

    I have a characteristic in a query which has multiple attributes. In the global view I am able to change the descriptions on the attributes. But the local view does not show the updated descriptions - it shows the descriptions from the multiprovider? Any way I can match up the local and global view for the attribute descriptions ?

    Hello,
    Just close and open ur analyzer. Problem is that it is not getting refresh

  • 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

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

    Dear All
    I have a requirement where in i have to change the decription of the field " sales district" to "cluster" in the customer master.Can anybody please guide me how to do that??I have tried to go to SE11 against the table KNVV & searched for VKBUR field to change the description but wasnt able to navigate further to resolve the issue.

    Hi,
    use transaction cmod.  In the menu point GoTo -> Text enhancements -> Keywords -> change. You will see a pop up Key in your data element. Now you can change the field describtion.
    Regards
    William

  • 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

  • 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

  • IOS 8: The textbox to change the description field of the iCloud email account no longer exists

    The textbox to change the description of the iCloud email account that existed in all previous versions of iOS, and is available for all other types of email accounts under iOS 8, appears to have been removed.  Without this textbox, it is not possible to change the default description of "iCould", or to change a description that was set with a previous version of iOS.  The description field still exists, as the value that I set on a previous version of iOS is still being used by some of my iOS devices, but there is currently no way to change it via the current iOS 8 UI.  The description field is available to change for all other kinds of email accounts.

    Confimed.  And I hope they put it back soon.
    I used an iCloud backup to transfer everything on my iPhone 5s to my iPhone 6.  The (modified) description for my iCloud account transferred and appears the way I want it to appear on my iPhone 6.  However, it cannot be changed.
    Alternatively, I also have a new iPad Air 2 that I set up as a completely new iPad (i.e. I did not transfer anything from an older iPad).  The iPad shows the description for my iCloud account as the default: "iCloud."  It, too, cannot be changed.
    True, this is only a minor annoyance, but it would be less of an issue if Apple had not removed a feature that previously existed in iOS 7.
    I'm not sure if the removal was intentional or unintentional, but, again, I hope this gets fixed soon.  In the meantime, I would be interested in anyone can find a workaround.

  • Can you change the description in contacts from iCloud\

    In contact can you change the description from "icloud" to a differant name?? I have several accounts and want them to have a unique name. Any Help?

    You mean in the Music App .... And you can't. You can only view songs in a list.

  • Changing the description field in AP Invoice

    Hi is it possible to change the description field in an 'open' posted AP or AR invoice?  I assume you have to credit note the invoice and re enter it with the new line item description which seems a long way around when only the text is being changed and not the coding or amounts.
    thanks judi

    Hi,
    All marketing documents, whether closed/open, do allow the user to change the remarks/narrantion. This field is located in the Footer Fields - left corner of the form.
    Pls check out.
    Assign points if useful.
    Thanks,
    Srikanth

Maybe you are looking for

  • Error while restoring back up

    Hi Team , Facing below error, while restoring in SQL.please help The media family on device 'C:\Test\fwsmall-12-3_supraekeybackup_virtusa.bak' was created using Microsoft Tape Format version 1.240. SQL Server supports version 1.0. Msg 3013, Level 16,

  • My mac pro only shows a blue screen during startup? how do i get out of this to the desktop?

    Cannot access the desktop, only the Apple sign and pinwheel icon come on, after a couple minutes it goes to blue screen only. Have held shift during bootup to start in safemode, but this doesnt even allow you to choose safe mode. Please help.

  • Tecra A11 - keyboard space key issue

    Just wonder, if someone with an A11 has similar issues or if my keyboard needs to be replaced. When I am typing, very often the space key is not accepted. Very annoying when you type without looking at the text all the time.

  • MBAM 1.0 will not unistall (keeps rolling back)

    Hello, I am trying to update MBAM 1.0  to 2.0 but i am unable to uninstall. It will go though the motions of uninstalling but then it rolls back without any errors. Does anyone have any thoughts on how i can fix this issue without losing any data? I

  • Make visible a picture saved in library from PSE6

    I edit a picture on PSE 6 but made it another name, it was saved in iPhoto library but I can't see, if I try to import of course I get a error message saying its already in library, how can I put this photo inside my iPhoto (to view)? Thanks