New buttons on SRM contract screen? (+)

Hello,
I'm asked to add specific button into the SRM contract screen (BBP_CTR_MAIN transaction). I've been trying to use BBP_CUF_BADI, but achieved none - my customer screen is not displayed at all. However it is called - I've checked it using the debugger. What am I doing wrong?
Thanks in advance.

Hi Cyrill,
Please go through the following lnks,
Add a new button to BID Invitaion
Add customer button to check status screen
Hope it helps.
Thanks,
Pradeep

Similar Messages

  • Add a new button to BID Invitation screen

    Hi,
    How to Add a new button to Bid Invitation Screen in SRM?
    Thanks,
    Raveendra

    Hi
    Which SAP Version you are currently on ? What is the exact requirement ?
    If i understand you right, Incase you want to add a button to the existing screen template then it will require standard code change and also you need to plan out how will you will code the logic to activate the button.
    There is no BADI which can do this as this is not a SAP funtionality. You need to do a little bit of research on this to get the job done.
    Regards
    - Atul

  • A new button required on shoppingcart screen

    Hi all,
    I need a new button on the shopping cart screen, so that an interactive form can be submitted to the user. I have gone through the BAdI ( BBP_SC_MODIFY_UI ). It does not look to me that it can be used for additional buttons. Please advice.
    Thanks.

    Hello Mohammad,
    I'm not sure what kind of interactive form you need to call. If the interactive form is like HTML form, catalog interface has option called "E-Form" which give you option to pass values to Shopping Cart by BBP_CAT_CALL_ENRICH BADI.
    There is Business Card sample "BBP_BUSINESSCARDS".
    Regards,
    Masa

  • Hide Cost Distribution button in SRM SC screen

    Hi Experts,
    We have a requirement where in we need to hide the cost distribution,copy to clipboard,etc..buttons in the cost assignment section of shopping cart screen . we are using SRM 5.0
    Is there a way where we can make this invisible without making any changes to the standard code.
    Any Help in this regard will be highly appreciated
    Regards
    Vidya
    Edited by: Vidya Pankaj on Oct 27, 2009 12:21 PM

    Implement BADI BBP_UI_CONTROL_BADI method BBP_SC_UI_CTRL for Object type BUS2121.
    Do a check on the iv_fieldname parameter and set the cv_invisible and cv_input_ready to the value you need.
    The fieldname for the distribution is called GV_DIST_IND (to get you started).
    Regards,
    Robin

  • Some buttons on SRM Web screen not enabled

    Hi,
    When a user logs in SRM Web as an approver,the buttons for Approve,Reject are in Grey mode.However the same looks fine i.e. anabled in other system.What is the factor which controls this functionality?
    We want to make these buttons seen as enabled
    Request help please.
    Regards,
    BM

    Hi,
    Which workflow are you using? Please see which is the approval task, by going to the workflow log.
    You need to define for this task the dynamic columns for integrated inbox.
    SPRO ->
    Supplier Relationship Management ->
    SRM Server -> 
    Cross-Application Basic Settings ->
    Business Workflow ->        
    Define Dynamic Columns for Integrated inbox                                                                               
    For relevant task set the column Expression first attr. to   
    EC_DECISION.      
    Kind regards,
    Siobhan

  • Add customer button to check status screen

    hi everyone
    i'm quite new in developing srm and need your help.
    my customer wants me to put a new customer button on the check status web screen at item level which is supposed to work like the print button.
    so if i want to integrate this customer button do i have to modify the screen and html template? as far as i know there is no customer exit for this?!
    thanks in advance!

    Hi
    <u>Which SRM version are you using ?</u>
    <b>The addition of a new button for a new process means modification to standard screens, HTML templates used in the relevant Internet (Web) Services and the releavnt source code.
    Addition of button can only be done through ITS Template change.Please look in the Internet services say - BBP_BID_INV (for Bid Invitations) Or for service - BBPSC01 (shopping cart) for the exact template in whcih you want to add the button</b>
    <b>You have to define a new button in the screen and in the template. Then assign to it an OK_CODE and manage it in the PBO of the screen.</b>
    There is no BADI which can do this as this is not a SAP funtionality. You need to do a little bit of research on this to get the job done.
    <b>As a start step, You can use the BADIs - BBP_CUF_BADI and  BBP_CUF_BADI_2 to change the display from customer-defined fields to the SAP standard screen. This BAdI enables you to control whether the fields can be edited, and how they are displayed.</b>
    MODIFY_SCREEN method will Show/hide field display and restrict edit options.
    <u>For more information on BADI please go to SPRO -> BADI.
    OR View the information on BADI's.</u>
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
    <u>Implement -  BADI - BBP_CUF_BADI (in SRM 4.0) to display a customized screen.</u>
    <b>Related link -></b>
    a new button required on shoppingcart screen
    <u>Hope above proves helpful to you.</u>
    Regards
    - Atul

  • Adding a new button in the PO search summary in SRM 3

    Hello gurus,
    my requirement is to add a new button in the search summary for PO in SRM. Here's the task: every time a search is executed, the result is a list of purchase orders and every item has on the left two icons, "Show PO" and "Modify PO". There are merely a shortcut that brings the user to the PO screen in which the document is shown/can be modified.
    These two buttons are standard... my task is to add a new button in the template, "Copy PO", which should be a shortcut to the omonimous button which is present in the PO view screen. So I think this new button should work as the two standard ones.
    In order to do so, I looked into the proper template: SAPLBBP_PDH_SEARCH, screen 3003, which belongs to the package BBP_PRODOC_C (ITS service BBPSEARCH).
    I tried to "duplicate" the part referring to a standard button (e.g. the "display icon" chunk), obtaining a new chunk which represents the new button in the template.
    And... it works, in the sense that the button is visible and clickable. So far so good. Here's the questions since I'm not absolutely an expert on Jscript... My button, once clicked, triggers my FORM (PO_COPY) which should receive the header GUID of the Puchase Order.
    In debug I've seen that the form fails since it does not receive any parameter, and that's probably related to this section:
    (angle brackets omitted, it gave me an error posting tags in sdn)
    "JavaScript:HyperSubmit('PO_COPY', '`MAINLIST-LINE_NUMBER[j].value`')"
    The problem is I did not understand how to check for possible parameters of this HyperSubmit method. Also, I'd like to check what's the structure of MAINLIST (as far as I've seen,  MAINLIST-LINE_NUMBER[j].value is a parameter passed to the form) but don't know how to see that. Can anyone please direct me through these passages? Thanks in advance.

    Hi Matteo Montalto,
    Please let me know how you added new button.
    Regards,
    neelima

  • New Button not appearing in Choose company screen

    Hi All,
    Today at one of our customer we found that when we goto choose company screen with user with super user authorisation, New button (used to create new company) doesn't appear.
    Customer uses SAP B1 2007 B Patch Level 08
    Does anybody has idea what could be the reason for this ?
    BR
    Samir Gandhi

    Hai!
    Is this issue in Client Machine or in server?
    This is because of corruption of client installation in SERVER OR CLIENT Machine.
    Uninstall the Client in SERVER or CLIENT Machine and Reinstall using Upgrade exe in SERVER or Client setup in B1SHR for CLIENT Machine.
    While reinstalling, choose Different path and install.
    Take Neccessary Backups..
    Regards,
    Thanga Raj.K

  • FI Report Painter (FGI1) - add new button in output screen

    Hi all,
    I have a report created by tcode FGI1 (Create Drill-down Report) which bases on form 0SAPBSPL-01 (Fin. Statement: Actual/Actual Comparison). I wanna know if there are any ways to add a new button in output screen after report execution (i.e to print the content into smartforms).
    Thanks in advance.
    Solaris.

    Instead of creating after the output you can add the button to create the form on the main screen itself i.e. program SAPMKCEE screen1125. Either on the application tool bar or on the screen 1125.

  • Change to contract screen srm

    I am trying to extend some fields in srm in the contracts.  Is there a transaction where i can go to, to see if i added the fields correctly? thx.

    Hi,
    I hope you have added the fields on the contract screen based on the OSS Note: 672960 - User-defined fields 2.
    The trasaction is BBP_CTR_MAIN for the contract. You can actually go to transaction SICF.. Enter this in service BBP_CTR_MAIN field. In the next screen you will have to right click on BBP_CTR_MAIN and then select test service . Here a web page will open with contract screens. Check your fields here.
    Thanks,
    Pradeep

  • Activating Order as Direct material button on Shopping cart screen

    Hello SRM experts,
    we are in SRM 5.0. we implemented BADI: BBP_DP_PROD_CHK_BADI to suppress Order as direct material button on Shopping cart screen.in this BADI under PRODUCT_CHECK method  we have this code CLEAR ev_dp_possible.Now the requirement is to bring back that order as direct material on to shopping cart screen and we need to check there for direct material and non direct material.
    i commented the code in METHOD PRODUCT_CHECK . but still i'm unable to see that button on SC screen.After bringing that button on to screen we need to check for Direct and non direct materials, if it is a non-direct material and trying to press button Order as Direct Material it should hav to give some error.
    please help me.
    thanks in Advance....

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • SRM Contracts

    Is there any table(s) from which I can download the contracts?
    I use the Download Contract button to download to Excel but the Unit of Measurement (field between Product Type and Price in Item Data) is missing during downloads using the single contract download or bulk download. I checkup the notes but none of them pertain to this problem.
    Is there any workaround to accomplish this hence the question about can I directly access and table and download.
    We are on SRM 5.0.
    Thanks

    Hi
    <b>Please go through these pointers and links as well.</b>
    <u>Refer to Function module - BBP_PD_CTR_CREATE / BBP_PD_CTR_CHANGE
    Tcode BBP_PD is a wealth of knowledge. you need to select proper object type from the drop down and enter the relevant Object number and execute.On the next screen in the details double click on each separate node and it will take you to table and display the records, There are vaiorus object type like Shopping cart, PO Contract, Bid etc</u>.
    <b>Other related links -></b>
    <u>Re: SRM and MDM for material master in SRM contracts for multiple R/3
    Re: Purchase Contract creation in SRM
    Re: Upload Contracts
    What is the name of BAPI or Function module to change and cacel the SRM PO
    Initial Uploald of Contracts from ECC to SRM 5
    Uploading contracts into SRM from flat file...
    Re: SRM Contract Download - Multiple contracts in one shot
    Updating SRM contracts from backend R/3 to SRM.</u>
    Hope this will help.
    Regards
    - Atul

  • Ideas for Adding a Quick Print Button to VA01 Overview Screen

    Problem Statement:
    Our users would like a "quick print" button on the VA01/VA02 application toolbar that immediately spools the Order Confirmation output to the printer.  Our users want to print the output on demand, i.e., they do not want the output to automatically be printed when the order is created because a printout is not always needed.  We already have condition records created with Dispatch Time set to 3 - Send with application own transaction.  However, it takes 7 or more clicks to print the output on demand by navigating the menu (Extras > Output > Edit...Further Data...etc.) and changing the Dispatch Time to 4 - Send immediately when saving.  This is a big ergonomic issue and a time killer.
    Although the number of clicks to print are less when printing the output from the VA02 initial screen (via menu Sales document > Issue Output To), this is not acceptable when creating new orders.  Really need an on-demand, quick print button on the VA01 screen.  As an aside, we have a totally custom transaction for preparing sales order data (shopping cart-like way of finding materials and entering required data) that then calls VA01 and fills in all of the information.  When saving in VA01, the user is returned to our Z-transaction so asking the user to subsequently run VA02 to print is not practical.
    Current Output Determination:
    We have custom output type ZBS0 (copy of BS0).  Condition records for print medium are set to Dispatch Time = 3.
    Questions:
    1.  Searching these forums, it appears custom code (extension or user exit?) can be written to call RSNAST00, or something similar, to automatically send output having a Dispatch Time = 3.  Where can I find more information on exactly how to do this?
    2.  Do transactions VA01 and VA02 (Overview screens) have extensions that allow a print button to be added to the application toolbar?  We would want to call the custom printing code from the button to send the output.
    Any feedback on how others have solved this problem would be greatly appreciated.
    Warm Regards,
    Rob
    P.S.  Using GuiXT is not an option for us.

    HI
    We had similar issues with printing packing list and picking list by the warehouse people.
    We created a new ztransaction with input fields of delivery number, output type, number of copies and a check box for repeat output(in case if the output was already printed).
    You can also create a new Z-transaction with input fields of Sales order number(mandatory field), output type (Default it with value of ZBS0), number of copies (default it with 1) and a check box. On executing the transaction You can provide a message if the output was already printed so that the user can select the check box to repeat the output and execute. You can also print multiple SO by giving a range value if required.
    If you do not want the user to enter the new ztransaction every time, try providing a menu path to the new z-transaction from the existing z-transaction which you are using for order entry.
    Hope this helps you.
    Thanks,
    Arun.S

  • How do you add a new icon to the home screen?

    How do you add a new icon to the home screen?

    The only new icons you can add to your home screen are webclips, which can be added by using the "+" button in safari on the desired web page.
    You won't be able to add new apps until February when the SDK is fully seeded to developers.

  • Ideas for Adding a "One Click" Print Button to VA01 Overview Screen

    I am not an ABAP developer and am doing some preliminary functional investigation to determine the best way to add a simple "one-click" button that allows a Sales Order Confirmation output to be sent to the printer.
    Can someone that really knows, tell me whether or not a custom menu item can be added to VA01 and VA02?
    I have seen lots of threads telling folks how to find user exits and menu exits for a program so I don't need that advice.  Rather, looking for someone who has already investigated this for VA01 and VA02 and knows the answer.
    Problem Statement:
    Our users would like a "quick print" button on the VA01/VA02 application toolbar that immediately spools the Order Confirmation output to the printer. Our users want to print the output on demand, i.e., they do not want the output to automatically be printed when the order is created because a printout is not always needed. We already have condition records created with Dispatch Time set to 3 - Send with application own transaction. However, it takes 7 or more clicks to print the output on demand by navigating the menu (Extras > Output > Edit...Further Data...etc.) and changing the Dispatch Time to 4 - Send immediately when saving. This is a big ergonomic issue and a time killer.
    Although the number of clicks to print are less when printing the output from the VA02 initial screen (via menu Sales document > Issue Output To), this is not acceptable when creating new orders. Really need an on-demand, "one click" quick print button on the VA01 screen. As an aside, we have a totally custom transaction for preparing sales order data (shopping cart-like way of finding materials and entering required data) that then calls VA01 and fills in all of the information. When saving in VA01, the user is returned to our Z-transaction so asking the user to subsequently run VA02 to print is not practical.
    Current Output Determination:
    We have custom output type ZBS0 (copy of BS0). Condition records for print medium are set to Dispatch Time = 3.
    Ideal Solution:
    Add a Print Icon to the application toolbar as described above.  From the button, write custom code that calls RSNAST00 (or is there a better way?) to send the output to the printer.
    Any feedback on how others have solved this problem would be greatly appreciated.
    Rob

    Still looking for input from anyone that has had experience trying to add a menu item or toolbar button to VA01.  In our case, for sending output.
    Madhu,
    Please again read my Problem Statement in my original posting for the business requirement.  We are using ECC 6.0.  Yes, I know that transaction VA02 has Sales Document > "Issue Output To" that allows you to print.  However, we want to be able to print from the VA01 Overview screen after all of the sales order information has been entered.  We would like to be able to click a print button which would save the new sales order and immediately issue the output.  Again, we do not want the output to automatically print for every new sales order - we want to be able to print only when needed.  The conditions that a sales person would use to decide to print a copy are too numerous or varied so they cannot be automated in a condition record.  Of course we do use condition records for creating the output but we do not send immediately on save.
    When creating a sales order, the sales person does not want to do the extra clicks and key strokes to then navigate or open a new VA02 session to print from the VA02 initial screen.  And as described in my original posting, it is a lot of clicks navigate the VA01 Extras > Output menu to change the output to print on save.
    If you observe the "day in the life" of a sales person and see all of the key strokes and clicking required to create an ECC 6.0 sales order, you understand why the extra 7 to 11 clicks to just print an output is very annoying.  We have created a totally custom Z-transaction that allows our sales folks to capture everything need for a new sales order all on one screen with no tab views.  We then launch VA01 to fill in all of the data entered in our custom transaction.  This all works very well and is a huge time saver for our sales staff.  Now we are looking to save a few more clicks by simplifying the printing.

Maybe you are looking for

  • My iPad won't stop restarting itself since it died and i plugged it in, what's wrong with it?

    My iPad died and i plugged it in and now it won't stop restarting itself, it goes apple logo, loading, shut off and then it repeats itself. I thought that maybe the iPad got just enough power to start restarting but then died midway through and that

  • Report showing number of articles having negative on hand

    Hi, I have a requirement for a report showing no. of articles in a site that have negative on hands. I tried to develop it by creating a condition to restrict articles that have negative on-hands. I created a calculated key-figure by setting a value

  • Hello and Welcome!

    Welcome to the Anglepoint vendor page! We are pleased to participate in the Spiceworks IT Pro community and to offer expert advice.Anglepoint is a global professional services firm delivering high value services to Fortune 500 companies and others in

  • Upgrade 4.5B to 4.7 -- ERROR: "VBAK has already been declared".

    Dear Friends, After upgrade 4.5B to 4.7, there is the same ERROR when executing most of SD transaction and creating/displaying/modifying PO and GR. This error is related to SD pricing procedure. In the ABAP error dump said that: VBAK has already been

  • Exchange 2013/2010 Co-existance Outlook Users Always Prompted for Password

    Hello, We are in the process of attempting to migrate to Exchange 2013, but during the migration time, we need to coexist with the two versions.  Our outlook clients are a mix of Office 2007, 2010, and 2013.  When a user is migrated from 2010 to 2013