Need to add Plant name to PO list in SUS SRM 5.0

We are looking into adding the plant name to the 'List of Purchase Orders' screen. Just checking to see if anyone has already done that. If so would you please guide me on how to do that.
Thanks
Krishna

Hi,
You need to make changes in the BSP page which is used for the display of sus order list.
1.se80.
2.select bsp application , and SRMSUS.
3.there will be one page specific for showing list , there you need to write code according to your requirements.
another way could be to implement customer fields and then storing the plant in one of the customer field and using that for display in the overview.
award points if usefull

Similar Messages

  • Need to Add Field Name to the Downloaded XLS file

    Im using the function SAP_CONVERT_TO_TXT_FORMAT
    and downloading the contents by sending them as attachements in email.
    I need to add field names(column name) to excel fields.
    So that when fields are displayed in excel file they are displayed by their column names..
    How do I do this.? Any ideas.
    Answers will be rewarded with points..

    Hi
    You can manually insert the column names as the first row in your internal table to have them in .xls file as headers.
    Regards,
    Raj

  • Need to add Plant and CostCenter as Selection fileds of CJI3 Initial screen

    Hello Team,
    Can you suggest me OSS note or User exit to add Plant and CostCnters as selection criteria for CJI3 Actual cost line Items report.
    Thanks in advance,
    Best regards,
    Harish.P

    Harisha
    I agree with above reply but your requirement sounds a bit weird.
    Note sure if cost element reports are any useful for your requirement.
    Look (refer note) at the report painter option ( but you might still need to enter the Project/WBS)
    Note 668513 - FAQ 2: Cost element reports in Project System
    Regards
    Sreenivas

  • Add vendor name to output list in FBL1n

    For transaction FBL1n i would like to add the vendor name (LFA1-NAME1) as a special field. However, this field is not available (only for one-time vendor) with OBVU.
    Is it possible to add this field and if so, how can i add it?
    thanks and regards,
    Marlies

    HI,
    As you probaby already know you can display the Vendor name in the header but not in the line items, this is standard functionality.
    The Vendor Name may be displayed in the Header Data via the following Menu path in FBL1N : Settings > Display Variant > Current Header Rows. please check SAP Note 181592 explains how to set up the Headers. Also reveiw note 181697.
    Further it is not possible to include NAME1 in the line item display of 'normal' Vendors.  This should only be possible for one-time vendors through table BSEC. The only area this can be included is in the header data.
    I have to tell you that you can only see as standard fields in your line  item display all fields from structure RFPOSX.
    Additionally, you can add special fields to see more fields. But these special fields can only be taken from the following tables:
    BKPF//BSEC//BSED//BSEG//PAYR//BSEGC//BSBV
    That's why you can't add the fields  ADDR1_DATA_NAME or LFA1_NAME1.
    Regards
    Ravinagh Boni

  • Add Vendor Name to FBL3N output list

    Dear All ,
    I need to add vendor name to FBL3N output list . Is there any way to add the vendor name ?
    Thanks
    Dash

    Hi
    U need to implement the BTE 1650 (trx FIBF)
    -1) A copy the sample fm SAMPLE_INTERFACE_00001650 to your Z<function module>;
    -2) Assign your your Z<function module> to the BTE 1650 (trx BF31 or BF34);
    -3) Enhance to the structure RFPOS and RFPOSX with the field to store the name
    -3) Run the report RFPOSXEXTEND
    -4) Insert the code to get out the name into Z<function module>
    Max

  • How do I add Channel names to my raw data using a plugin?

    I have a Campbell Scientific datalogger which outputs raw data (no headers, etc.)  I need to add channel names and units to this data for display in DIAQdem.  I know there's a way to do it, but I haven't had the class yet (coming to the base soon) and don't have a lot of time to try and figure it out for myself.  I'd appreciate any help that I can get.
    I've generated a script using the Data Plugin Wizard, but as expected, it's very long and verbose... most likely has WAY more information in it than I need.

    Hi NavyJack
    I answered a similar question a while back.  If you just want to add a list of static channel names, then try this approach with your existing DataPlugin that you got from the ASCII DataPlugin Wizard:
    http://forums.ni.com/ni/board/message?board.id=60&message.id=8232&query.id=66481#M8232
    You are of course absolutely correct that the boiler plate code you get from the ASCII DataPlugin Wizard is way more complicated than you need for your data file.  If you are able to send me a sample data file, I could probably send you back a very simple DataPlugin which would be much easier to tweak for channel names, channel units, etc.
    What DIAdem version are you using?
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Need to add new fields in transaction UDM_DISPUTE.

    Hi Friends,
    This is regarding UDM_DISPUTE transaction in FSCM.
    I need to add new fields (drop down lists) in transaction UDM_DISPUTE.
    Program Name: SAPLSRMCLFRM2
    Screen Number: 100
    Can any one please suggest me with the name of exit using which I can add these new fields.
    Or another way through which I can add these new fields viz., BADI or classes.
    Thank You in Advance!
    Regards,
    Tejaswini

    Execute the below code to find the userexits the t-code is using
    REPORT yuserexit_vin NO STANDARD PAGE HEADING.
    TABLES : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
    TABLES : tstct. DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECT SINGLE * FROM tstc WHERE tcode EQ p_tcode.
    IF sy-subrc EQ 0.
      SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR' AND object = 'PROG' AND obj_name = tstc-pgmna.
      MOVE : tadir-devclass TO v_devclass.
      IF sy-subrc NE 0.
        SELECT SINGLE * FROM trdir WHERE name = tstc-pgmna.
        IF trdir-subc EQ 'F'.
          SELECT SINGLE * FROM tfdir WHERE pname = tstc-pgmna.
          SELECT SINGLE * FROM enlfdir WHERE funcname = tfdir-funcname.
          SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR' AND object = 'FUGR' AND obj_name EQ enlfdir-area.
          MOVE : tadir-devclass TO v_devclass.
        ENDIF.
      ENDIF.
      SELECT * FROM tadir INTO TABLE jtab WHERE pgmid = 'R3TR' AND object = 'SMOD' AND devclass = v_devclass.
      SELECT SINGLE * FROM tstct WHERE sprsl EQ sy-langu AND tcode EQ p_tcode.
      FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
      WRITE:/(19) 'Transaction Code - ', 20(20) p_tcode, 45(50) tstct-ttext.
      SKIP.
      IF NOT jtab[] IS INITIAL.
        WRITE:/(95) sy-uline.
        FORMAT COLOR COL_HEADING INTENSIFIED ON.
        WRITE:/1 sy-vline, 2 'Exit Name', 21 sy-vline , 22 'Description', 95 sy-vline.
        WRITE:/(95) sy-uline.
        LOOP AT jtab.
          SELECT SINGLE * FROM modsapt WHERE sprsl = sy-langu AND name = jtab-obj_name.
          FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
          WRITE:/1 sy-vline, 2 jtab-obj_name HOTSPOT ON, 21 sy-vline , 22 modsapt-modtext, 95 sy-vline.
        ENDLOOP.
        WRITE:/(95) sy-uline.
        DESCRIBE TABLE jtab.
        SKIP.
        FORMAT COLOR COL_TOTAL INTENSIFIED ON.
        WRITE:/ 'No of Exits:' , sy-tfill.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(95) 'No User Exit exists'.
      ENDIF.
    ELSE.
      FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
      WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    AT LINE-SELECTION.
      GET CURSOR FIELD field1.
      CHECK field1(4) EQ 'JTAB'.
      SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
      CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    * *---End of Program

  • How can I add new value in a list box in a screen

    Hi All ,
        In transaction CRMD_BUS2000120 (CRM Server), I need to add one value to the list box. Already 4 values are coming. How can I add 1 more value.
      any suggestion is very appreciated.
    Thanks & Regards,
      Shekar.

    Hi,
    Check you have any exits to do that, if there are no exits then you can Copy the program and change the code.
    to add the extra value in list box, you just have to append the new line to the internal table which you are passing to VRM_SET_VALUES FM.
    some thing like this..
    wa_list-key  = sy-tabix.
    wa_list-text = itab1-vbeln.
    Append wa_list to It_list.
    v_name = 'P_VBELN'.
    call function 'VRM_SET_VALUES'
      exporting
        id                    = v_name
        values                = It_list
    EXCEPTIONS
       ID_ILLEGAL_NAME       = 1
       OTHERS                = 2
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    Regads
    vijay

  • Help! How do I add my name to the Heilman/Jung/McWeeney/Hermann Hands-On?

    In his blog here:
    SDN Community Day Mentor Hands-On Workshop
    Thomas says:
    If you are already signed up to attend community day, then you just need to add your name to this wiki page:
    https://wiki.sdn.sap.com/wiki/display/Community/SDNDayLasVegas2008
    I went there and didn't see any instructions for adding my name to each of the four sessions.
    Do I just edit the child page for each session and add my name at the bottom?
    If not, what to do ?????????
    I don't want to get shut out of these sessions, so please advise at your earliest convenience !
    Thanks
    djh

    Thanks, Thomas.  Ed already said the same thing in Mentor Forum.
    I thought "Participants" were like the folks who sit in the front - you know like discussion leaders who help out the actual presenters.
    Maybe "Attendees" would be a less ambigious title.
    Thanks again.
    djh

  • Add Computer Name to Format-Table output?

    I'm trying to run a simple little script to check against all the servers in a specific Active Directory OU.  It just runs a quick WMI check for the account that the services are starting up as.
    I need to add the name of the computer to the output.
    $strFilter = "computer"
    $objDomain = New-Object System.DirectoryServices.DirectoryEntry
    $objSearcher = New-Object System.DirectoryServices.DirectorySearcher
    $objSearcher.SearchRoot = "LDAP://OU=Servers,OU=IT,DC=mydomain,DC=mytld"
    $objSearcher.SearchScope = "Subtree"
    $objSearcher.PageSize = 20
    $objSearcher.Filter = "(objectCategory=$strFilter)"
    $colResults = $objSearcher.FindAll()
    foreach ($i in $colResults)
    $objComputer = $i.GetDirectoryEntry()
    Get-WmiObject win32_service -ComputerName $objComputer.name | where {$_.startname -like '*mydomain*'} | ft name, startname, startmode
    Output is like:
    name startname
    startmode
    MSSQL$GIS mydomain\serviceaccount
    Auto
    SQLAGENT$GIS
    mydomain\serviceaccount
    Auto
    etc

    This is actually faster and eliminates all of the code that you are not using.  Because of the "$obj" I can tell that you copied some very old code.  We don't really do that in PowerShell.
    This is more concise and easier to understand as well as being faster.
    $searcher =[adsisearcher]'objectCategory=computer'
    #$searcher.SearchRoot='LDAP://OU=Servers,OU=IT,DC=mydomain,DC=mytld'
    $searcher.FindAll() |
    ForEach-Object{
    $computer=$_.Properties['name'][0]
    Get-WmiObject win32_service -ComputerName $computer -Filter "startname like '%TESTNET%'"
    } |
    ft PsComputerName, name, startname, startmode
    ¯\_(ツ)_/¯

  • Need to add more Fields to "List" Tile of MSA Opportunity Search Tileset.

    Hi Experts !
    We are trying to add more fields to the "List" Tile on the Opportunity Search Tileset to view additional information on the search result screen.Ex: Company Name, Product Description, Person Responsible & Channel Partner on Opportunity transaction should be displayed on the Search result screen.
    So far, with the help of Anchor modeling we tried adding the Opportunity BP (BOOPPBusinessPartner) Segment and (BOOPPProduct) Segment to the BOOpportunity Parent segment in the Opportunity_Write Bdoc.And, we added fields from BP & Product segment to the List tile by drag & drop.
    Upon Generating the changes, the system did NOT populate the data for the new fields.
    Please advise us where we are going wrong.
    Thanks & Regards,
    Jagan.

    Hi,
    the way you tried to add some more fields in a list tile is not working.
    In lists the data is not retrieved from Business objects/collections but from record sets which are fetched from the main segment of the underlying query BDoc (I guess sth like OPP_blabla_QUERY).
    Therefore what you could do is to enhance this query BDoc and add these tables by joining them to the opportunity header table. In this case you also need to specify exactly these segment field names in the property of the new list column fields.
    Much faster (but a little bit dirty) would be to use the row loaded2 event where you can calculate the values you want to display. In this case the controls would have to be unbound.
    The second version would cost a little bit more performance, but this depends from the data volume.
    Regards,
    Wolfhard

  • I need to map my garden.  I need to draw it to scale and locate plants ties to a list of plants.

    I need to map my garden.  I need to draw it to scale and locate plants that ties to a list of plant names.

    A quick google search for gardening apps gave a surprisingly large number of hits. I saw at least three distinct garden planner apps (from $2 to $10) without half trying. These are mostly for iOS - iPad and/or iPhone - though there may be equivalents for Mac OS.
    I suggest you hit the app store and start doing some searches. I suspect you'll find something appealing fairly quickly.

  • Do I need to add Base Station MAC address to list?

    Hi, If I choose to use MAC address filtering on my Airport Extreme Time Capsule, do I need to add the wireless MAC address of the Base Station to the list of allowed MAC addresses???  I'd feel real bad if I set up a list, didn't include the base station's MAC address and then could never get in to the network again because I, in effect, locked myself out???  I doubt that address needs to be included but I would like some feedback on that.
    Second, does the one MAC address filter list apply to the Guest Network as well if I should choose to turn it on???  If that was the case, I would just turn off MAC address filtering why guests were present.
    thanks..  bob

    If I choose to use MAC address filtering on my Airport Extreme Time Capsule, do I need to add the wireless MAC address of the Base Station to the list of allowed MAC addresses???
    No. Timed Access would be for wireless devices....computers, mobile devices, printer, etc., that are connecting to the Time Capsule. The Time Capsule does not connect to itself in this regard.
    I'd feel real bad if I set up a list, didn't include the base station's MAC address and then could never get in to the network again because I, in effect, locked myself out???
    Sometimes, users lock themselves out by mistake by entering incorrect times for devices to connect, and they often forget that they can connect to the base station using an Ethernet connection and get back in that way.....since Timed Access only applies to devices that connect using wireless.
    does the one MAC address filter list apply to the Guest Network as well if I should choose to turn it on???
    Yes

  • How may I change the format to enter new contacts?  I need to add a business name and would like to change the defaults to work rather than home.

    I am entering new contacts into the contact app.  I need to add a business name and would like to change the default for phone numbers from home to work.  I am entering a large amount of business cards

    rcolbroth wrote:
    Is there anyway of creatiing a different name for this Folder rather than 2013?
    If you are using one of Lightroom's "date-based" folder templates, then the folders are created in accordance with the image capture date, not the date that you happen to import it. If you specifically want to use the import date for your folder names then you probably don't want to use the Lightroom date template, and instead you'll need to setup your folder names manually.
    The vast majority of users that use date-based folder naming schemes will use a standard Lightroom template, i.e. based on the much more meaningful image capture date.

  • I need to add bullets to a list that already has a p class associated with it and they are links everything I try messes it all up

    Okay, so I am hating lists at this point! I have a set of links that have a class associated with them so they turn blue on rollover. Now I need to add those red bullets in front of the links. I Have the following css:
    .links a:link {
    text-decoration: none;
    color: #333333;
    text-align:left;
    .links a:visited {
    text-decoration: none;
    color: #000000;
    text-align: left;
    .links a:hover {
    text-decoration: underline;
    color:#003399;
    text-align: left;
    .links a:active {
    text-decoration: none;
    color:#333333;
    text-align: left;
    Then for the bullets I have:
    .classol {
    text-align:left;
    color: red;
    list-style-position: inside;
    This is the list on the page of links:
    <p class="links"><a href="http://www.cslb.ca.gov">California State Contractors License Board</a><p class="links"><a href="http://www.goodbuilders.org/index.asp">El Dorado Builders Exchange</a> </p>
              <p class="links"><a href="http://www.video.dot.ca.gov">Cal Trans Live Streaming Traffic Video</a></p>
              <p class="links"><a href="http://www.dgs.ca.gov/default.htm">California Department of General Services</a></p>h
    THE PROBLEM:
    If I add the <li class="classol"> in front of the links it messes the alignment up and the link turns red. I am sure this is a simple fix, but I am baffled by this whole list thing. I have tried every arrangement possible between these two and cannot get it to look and "act" correctly.
    As always any help is appreciated.
    THANK YOU!

    Your code has several violation errors in it, run your pages through this on-line validation tool:  http://validator.w3.org/
    Also, you're suffering from a common newbie mistake which is division-itis.  Try to simplify your layout by using a few key divisions for elements that will be used only once like the header, menu, content, footer.  Then use division classes for items you may use more than once per page. Lastly, you shouldn't try to fit content over a large background image.  Read why here:  http://alt-web.com/Backgrounds.shtml
    To answer your questions about lists, try this:
    CSS
    <style type="text/css">
    /**links**/
    a:link { color: #000000; /**black**/  text-decoration: none;}
    a:visited {color: #333333; /**charcoal**/  text-decoration: none;}
    a:hover {color: #FFFF00; /**yellow**/  text-decoration: underline;}
    a:active {color: #000000; /**black**/  text-decoration: none;}
    /**link list**/
    .link ul,.link li {color:red; line-height:1.5; font-family:Georgia, "Times New Roman", Times, serif; font-size:0.85em; list-style: square;}
    </style>
    HTML
    <ul class="link">
    <li><a href="http://www.cslb.ca.gov">California State Contractors License Board</a>
    </li>
    <li><a href="http://www.goodbuilders.org/index.asp">El Dorado Builders Exchange</a> </li>
    <li><a href="http://www.video.dot.ca.gov">Cal Trans Live Streaming Traffic Video</a></li>
    <li><a href="http://www.dgs.ca.gov/default.htm">California Department of General Services</a></li>
    <li><a href="http://www.cpuc.ca.gov/puc">California Public Utilities Commission</a></li>
    <li><a href="http://www.coldwatersaloon.com">Coldwater Saloon</a></li>
    </ul>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/

Maybe you are looking for

  • Cannot add new folder, e.g., "Downloads," to the Dock "Download

    A few days ago, my "Downloads" folder disappeared from the right side of the Dock. The downloads folder still appears on the left side of my hard drive menu (and 'my computer' menu), and does contain the items I've downloaded; however, if I attempt t

  • How do I get imported pictures (from my macbook pro) onto my iPhone 5?

    How do I get my imported pictures (from my macbook pro) onto my iPhone 5?

  • Dynamic reporting in Crystal Reports XI

    Hi, Need to know about dynamic reporting feature using Crystal Reports XI. Is Business View helpful for dynamic reporting? Any link to get some material on dynamic reporting/ business views? appricate your comments. Thanks, Cherry

  • Records DB

    I am evaluating ContentDB and RecordsDB for use at the City of Kamloops. I have both applications running and have created a site and lots of test libraries/folders and users. I also have a records plan and have linked libraries and folders on the co

  • Sql data retrive

    hello gentleman, As per some terms we dont have the data for some coloums and are not present in BMM layer so ist there any possibilites where we can pull the data direclty from SQL and genrate report isit possible.