Disable GL Account Field for editing in the Shopping Cart SRM 7.0

Hi,
  We would like to disable the GL Account field for editing only on the Shopping Cart Approval Screen. I tried to implement this through configuration of Metadata Dynamic Class in SPRO->SRM Application Server ->Cross Application Basic Settings->Extension & Field Control ->Configure Control for Fields of substructure. But the class is not getting triggered.
  Any help would be appreciated. We are on SRM 7.0
Thanks
Raghav

Hi Rohit,
Try to activate the view and component and then see. If this does not works, create an enhancement for the view and write the below code in method WDDOMODIFYVIEW
DATA btn_confirm TYPE REF TO cl_wd_button.
  btn_confirm ?= view->get_element( 'AUTO_CONFIRMATION' ).
  if btn_confirm is BOUND.
    btn_confirm->SET_TEXT( value = 'Confirmation' ). 
  endif.
This code will set the button text as 'Confirmation' .
Regards,
Anubhav

Similar Messages

  • Custom field is needed in the Shopping cart Additional Specifications

    Hi Folks,
    A Custom field is needed in the Shopping cart Additional Specifications just below 'Notes for Approval'. Any suggestions on this.
    Thanks,
    Ghanesh

    Hi
    <b>Please go through the following links, which will definitely help -></b>
    Re: Displaying Custom field in shopping cart header
    Re: customer field in 3rd step of shopping cart
    Re: Custom Screen in Shopping cart
    Re: Custom Field in the header of Shopping Cart
    Custom field in shopping cart Item Overview - items in Shopping Cart tab
    SC : Extended  Search on Header Customer field
    Regards
    - Atul

  • Price Field Changeable while creating the Shopping cart

    Hi We are in SRM 4.0 and follow a classic scenarios.
    For some materials we run program EBP_GET_BACKEND_PRICES
    and get the prices from the backend, how ever while creating a shopping cart if the price differs we need to change the price but the field is grey.
    how do we change the price ????
    EX - My MAP in R/3 for Material A is  100 Rs. how ever while I create a shopping cart the price i need to enter is 102 how do I change the  price.
    can anyone throw light on this.
    regards,
    Nimish Sheth

    Nimish,
    for this you have to change the standard code.
    In screen communication structures, there is a flag "price_changeable" that controls the edit mode of price field.
    You have to change the standard logic to implement your behaviour in FORM price_changable_set from include LBBP_SC_APPF92:
      IF es_item-mode EQ gc_display OR
        ( es_item-rfq_ind EQ gc_yes AND es_item-price IS INITIAL ).
        CLEAR: es_item-price_changeable.
      ELSE.
        IF NOT es_item-catalogid IS INITIAL OR
           es_item-price_origin EQ c_price_origin_f OR
           iv_scenario EQ c_sc_generic_soco OR
           iv_scenario EQ c_sc_generic_history OR
           iv_scenario EQ c_sc_generic_workload OR
           ( es_item-price NE es_item-gross_price AND
             NOT es_item-price IS INITIAL ).
          CLEAR: es_item-price_changeable.
        ELSE.
          es_item-price_changeable = gc_yes.
        ENDIF.
      ENDIF.
    Rgds
    Christophe

  • Since the recent Firefox update, our customers can no longer place items selected for purchase into the shopping cart; what is the cause and the fix?

    Since Firefox was recently updated, customers who use Firefox as their browser can no longer place items selected at our e-commerce site into their shopping cart. We are not experiencing this problem with customers who use IE as their browser.

    I created a brand new blank Captivate 6 file, applied a theme, inserted a few new slides and tried Preview.  It worked!  All four of the Captivate files I used in my previous testing were based on one file which hadn't been touched for two weeks.  Somehow while working in the lastest file, either removing unused items from the Library or killing errors while Publishing, something somewhere got corrupted or removed.  Something that all four files must have pointed to, since as soon as the latest file broke, all of the other files stopped working as well.  Since the original file was inherited, I'm not even sure how to  go about finding the problem.  In my case, it won't be too big of a deal.  I will create a clean template file and rebuild.
    Thanks for your help!

  • Disable 'Find' (good /service) function in 'items in shopping cart' SRM 5.5

    Hi SRM experts,
    after clicking on Shopping Cart (- Full functionality) you have the choice of searching in catalogs or you can scroll down to 'Items in Shopping cart' and enter the product-id directly in 'Good / Service'.
    How can I disable this 'Find' option? So not the whole line, but only the 'find' option with the binoculars.
    Hope you can help me out with this one.

    Hi Kubus,
    I think you are talking about the 'Order as Direct Materail' button..
    Use BBP_DP_PROD_CHK_BADI.
    Method PRODUCT_CHECK
    Clear the parameter EV_DP_POSSIBLE.
    Have a look at the following link:
    Hide order as direct material button
    Thanks,
    Pradeep

  • Adding existent (not custom!) fields to shipping adress in shopping cart

    Hey community,
    we want to show some more shipping adress fields in the shopping cart (SRM 7.13).
    Quite simple, we thought... only the existent fields "NAME_3" and "NAME_4" should be displayed. But we were not able to do that.
    We tried the following steps:
    - in the WD component /SAPSRM/WDC_UI_DO_SHIPTO view V_DODC_SHIPTO we added the existent attributes NAME_3 and NAME_4 from structure /SAPSRM/S_CLL_SHIPTO to the context node SHIP_TO.
    - we added corresponding labels and input fields to the layout and bind them to the context attributes.
    But the two new fields are not displayed in the shopping cart. Normally, we have to announce new fields and metadata in SPRO - SAP Supplier Relationship Management - SRM Server - Cross-Application Basic Settings - Extensions and Field Control (Personalization)... to extend the structure of customer enhancement for the shopping cart. But there is no chance to maintain fields for shipping adress, because this is neigther header nor item data. Adding them to the INCL_EWW_PD_ITEM_CST_SC structure will display the fields on the positiondata tab.
    Adding fields to the table view "/sapsrm/v_mdfsbc" also doesn't work.
    Any ideas?
    Thanks in advance,
      Steffi

    Hello Werner,
    check in V_DODC_SHIPTO view from /SAPSRM/WDC_UI_DO_SHIPTO Web Dynpro Component if field exists in layout.
    In SRM 7.0, 'NAME_3' is not used. Maybe it is the reason of your problem...
    Regards.
    Laurent.

  • How to set the field non-editable in the classical report..

    Hi..
              How to set the field non-editable in the classical report..

    Hi experts,
    For the component 'ICCMP_EMP_SRCH' there is a view 'BUPAEMPSEARCH' , which has 2 context nodes 'CUSTOMER' AND 'SEARCHEMPLOYEE' , i need to add the field 'NICKNAME' which is part of the 'CUSTOMER' context node on the search screen. Currrently all the fields on the screen screen are from the 'SEARCHEMPLOYEE' context node. when i did the configuration , the 'NICKNAME' field is greyed out . I have already generated the Getter ,Setter , GET_I, GET_M methods for the 'NICKNAME' field and the context node and controller class and context class are all active .
    on debugging the GET_I method, i see that rv_disabled = 'TRUE' and the current = collection_wrapper->get_current( ) is returning empty value .
    for this rv_disabled to be set false , the code below is not triggered since there is no value in current.
    IF current->is_property_readonly(
    'NICKNAME' ) = abap_false. "#EC NOTEXT
    rv_disabled = 'FALSE'.
    ENDIF.
    when i check for other search fields of context node 'SEARCHEMPLOYEE' , all the fields are set to rv_disabled = 'FALSE'.
    can anyone suggest how to approch this. iam i missing any binding between context nodes or any activations ?
    The field properties are set as Input field and the display checkbox is not checked.

  • How to make non editable field after requestor created the shoping cart

    Hi,
    i need to make non editable field (Price field) after requester created the shooping cart.The field should be  non editable only for requster .
    this i need to make when workflow triggers when the buyer sends  back the shopping cart to requester.
    one solution which i found:depend on the status of the shoping cart
    but i dont know whether it is correct way.
    if not please suggest me the solution.

    Hi,
    You can implement the BADI" BBP_UI_CONTROL_BADI".
    You can check for the role of the user who has logged in(e.g. for user REQUESTER,there will be a distinct role to idnetify that the user is a requester) and then acc set the display properties for the field PRICE.
    For sample code pls refer the foll links:
    Sample code for BBP_UI_CONTROL_BADI
    Re: Hiding Shopping Cart Fields in SRM 3.0
    Re: How to Hide the attributes from template BBPSC01?
    Re: How to validating total value in shopping cart
    Re: Price filed in Shopping cart should be in display mode
    BR,
    Disha.

  • My recommendations for edits to the Thunderbird "Profiles" section: "Restoring".

    Dear Thunderbird "Help" team:
    My recommendations for edits to the Thunderbird "Profiles" section:
    Things that are not clear, on the page of Thunderbird "...Restoring to a different location..."
    https://support.mozilla.org/en-US/kb/profiles-tb#w_restoring-to-a-different-location .
    and...
    https://support.mozilla.org/en-US/kb/profiles-tb
    A.a) Existing: "...Each profile is stored on your hard drive in a profile folder. The folder is named using the following convention:
    <random_string>.<profile_name>
    ...where "<random_string>" is eight digits randomly generated by Thunderbird and "<profile_name>" is the name you assigned to the profile. ..."
    A.b) Please replace "digits" with "characters". In common US English, digits are numerical, 0 to 9. (You have it right, in the later paragraph: "Restoring a profile backup". )
    B) At "Moving a profile", it is not clear the difference between that and "Restoring to a different location". Please split the two cases, so that each one is complete unto itself. Write separate instruction sets (there is no advantage to economy of words, in a webpage like this.)
    B.a) Explain first how to find the file "profiles.ini", by using the Windows Explorer window.
    B.b) Recommend that the user first make a backup copy of that file "profiles.ini", in case the work does not succeed, so that the messed-up file can be replaced with the original.
    B.c) In the descriptors of "Moving a profile", for the actions to be taken, it is not clear whether each step is... at the location of the backup, or... at the location for the desired new installation. Especially uncertain for Step 3 and Step 4.
    B.d) In Step 5, give a better explanation for the path options: - relative or non-relative. How does the user know if the path option has been switched?
    Marian Beddill

    You spoke to my first item - "digits".
    But my BIG problem is the second one. -- "Moving a profile".
    I cannot understand the instructions. (*)
    The reason, is that it tries to cover TWO CASES/SITUATIONS , jumbled into ONE instruction set.
    My request to Mozilla, is to split those instructions into TWO (or more) distinct and separate instruction sets, but with each set dealing ONLY with one case.
    Write one set for "Moving a profile".
    Write one set for "Restoring to a different location".
    This way, the user does not have to try to interpret the "if"-descriptors, while in the middle of trying to accomplish the task at hand.
    Doing as I ask, makes for more words, and a longer page. But there is no cost for length of a page, and a great advantage to the user, since the steps to be followed for each case are distinct and are not ambiguous. Do not have any "If-this" detours in the sequence of operations.
    (*) PS: I am not dumb on programming. I have been writing code since 1966, and have taught programming in several other nations.
    (**) PPS: I still have not been able to move ("replicate") my old profile and message files, from the external backup copy, into the new, clean machine, so that I may continue corresponding from where I left off, when the motherboard crashed.

  • Adding an asterix(*) in the standard field in the shopping cart screen.

    Hi all,
          In the Delivery address of the shopping cart screen, I need to add (*) in a field text, saying that it is mandatory field.
    So, I need information that can help me change the standard field text, to add(*) in prefix.  can you please help me find the information to add the same.
    Regards,
    Abhinay.

    Hi Abhinay,
    if you are in SRM 7.0 , then you can  do it through the below configuration else  you will have to modify the relevant HTML template.
    SPRO->IMG->SAP Supplier relationship managemnet->SRM Server->Cross Application basic setings->extension and Field control(personalization)-> configure field control->configure control of field of substructure->Metadata for Fields of Substructures and Table-Like Enhancements
    In your case if this is delivery address field , then choose  Bus. object set type as  07 ,  Business object as BUS2121 ,  set level as Item ,  set subtype as 00000027.
    you have to  finnd the field name and select that and make the option as Field Visisble, Fiels enable 'Field required' tick.
    As far as i know  it will make a red asterick in the screen but you will have to  write that check in DOC_CHECK_BADI to throw error message.
    Thanks
    Iftekhar Alam

  • How can I autofill the "Amount" field in my eCommerce form using the "Total" from the shopping cart?

    I've found the tags to display the shopping cart summary elsewhere on the site, so I know there's a way to display the total, but I can't figure out a way to fill in the required "Amount" field in the eCommerce form used to process payments. I'd like that "Amount" field to be filled in automatically using the total in the shopping cart. Can anyone help? Thanks!

    You can use the shopping cart summary tag with custom layout.
    Here's the sample:
    <input type="text" value="{module_shoppingcartsummary template="/ModuleTemplates/Shop/cartsummary.tpl"}">
    Inside the shopping cart summary custom layout is a tag for total amount:
    {tag_currency}{tag_totalAmount} or {tag_totalAmountWithCurrency}

  • Manual created PO not showing up in the shopping cart for non-catalog scena

    In non-catalog scenario within SRM, the shopping cart shows the purchase requisition and not the manual created PO after
    running the program BBP_GET_STATUS_2. Do I need to run the program CLEAN_REQREQ_UP to retrieve the manual created PO on ECC 6.0 after BBP_GET_STATUS_2? What is the selection criteria for both of these programs?
    Thanks
    Chris Htizke

    Hi,
    I'm not clear you issue. Is it SC -> PR(backend) -> PO(backend) classic scenario ? or You just created a PO in backend system?
    BBP_GET_STATUS_2 will update SC follow-on doc information from backend.
    Regards,
    Masa

  • Work flow not created for the Shopping Cart

    Hi one of the customers created a shopping cart,in approval overview it is showing as no need of approvals,but the status of approval is 'awaiting approval', but workflow is not created for the Shopping cart. advised to re-order in change mode but still no use. please advise.

    Hi,
      what do you see in SLG1? Check the below t.codes
    SM58 - check for stuck remote function calls
    ST22 - check for system dumps
    SM13 - check for stuck update requests
    SM21 - check in the system log for anything unusual
    SWUD - run a consistency check on the workflow
    Saravanan

  • Approver For the shopping cart

    Hi,
       Which table brings out Approver for Shopping cart.Any suggestions.Thanks.

    Hi,
    It is possible to find the details from the workflow , you can find all the workitem ids linked to the document.
    For this ,
    a) start transaction 'SWI6'.
    b) use object type 'BUS2121' , enter the shopping cart number for the object id , then execute.
    Then System will return the workflow log , from the container definition of the workflow log , you can find the involved approvers , workitem id etc.
    2) Also you can use BBP_PDH_WFL_WI_FROM_OBJECT_GET with
    - iv_object_id = SC ID
    - iv_object_type = BUS2121
    Then, you can then use SRM_WAPI_WORKFLOW_GETDETAIL to get WI details.
    See related links ->
    <b>Re: Approving agents of an item in SC ?</b>
    Re: Link SC to Work Item
    Re: SRM tables for Approvals Items
    Re: Approving agents of an item in SC ?
    SWW_WI_TO_OBJECT_FIND
    Re: WorkItem ID- Object ID
    BR,
    Disha.
    <b>Pls reward points for useful answers.</b>

  • Keep track of the shopping cart for anonymous user

    Hi,
    I have the following problem on b2c site. Anonymous user can browse through the site and adds items to the shopping cart. At the checkout the login page is prompted, however login page is located on the different application server where the actual login happening. After that control is returned to my server where I need to create login object and associate the shopping cart with it. My problem is how to maintain shopping cart without losing it.
    I came with that solution : On checkout attach shopping cart to context object with unique key, then pass this unique key to the remote server, then remote server passes it back to me together with the login id, then I create new session and attach shopping cart to it after retrieving shopping cart from the context.
    I hope it will work, however I think there is a standard solution for this type of the problems. Any ideas, hints, suggestions are strongly appreciated.
    We use WebLogic 9.0 and Servlets.

    Do you have a problem keeping track of the shopping cart for a user who is logged in? No, I didn't think so. So give the anonymous user an internal name, just for your own convenience. Then keep track of the shopping cart for the user with that name. You already know how to do that.

Maybe you are looking for

  • Associative Array Question

    Hi All, I've searched through this forum trying to find information I'm needing on associative arrays with a varchar2 index without luck. What I'm looking for is a way to get the index or "key" values of the array without knowing what they are. Meani

  • Which is better for solving Mac G5 issues

    I have been experiencing Kernel Panics and program crashes. I want something that is good for testing hardware and OS issues. Can either of these find corrupted data files? I am looking at two utilities for purchase. Which is better for solving Mac I

  • Recording from Cassette via iMic - Channel 2 barely audible

    The cassette tape is connected via iMic. When I record, Channel 2 wave form is almost none existent and the solo is inaudible. When I listen to the cassette the channel 2 solo is quite nicely balanced. What am I doing wrong?

  • Deleting Preview Files

    Sometimes when things seem too easy they make me wary:  I need to free up some space on my C: Drive.  Adobe Premier created a folder on my Desktop called Adobe Premier Pro Preview Files; from older projects.  Can I simply delete these files to free u

  • Where does the details of the files on usr/sap directories get saved?

    hi, when a (.dat) file is created by background job processing in the 'usr/sap/' directories, where does the details like last changed, last modified of these files get saved? which table does these detiails get saved? thanks, swamy