Field GS_SCR_LIMIT-ONLY_INV should be 'greyed' out

When creating a Shopping Cart the radiobutton Invoice only(Field Name: GS_SCR_LIMIT-ONLY_INV) should be 'greyed' out. Can anybody let me know how can this be achieved by making changes to the HTML template SAPLBBP_SC_UI_ITS 210.

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

Similar Messages

  • Sourcing cockpit field should be greyed out

    Hi,
       In Sourcing Cockpit, the purchase Org and Purchase Group field should be Greyed out in "Find" tab...
    How can we achieve this.?? Is there any BAdi availbe???
    thanks........

    Hi, thank you for your quick reply. but i have new problem regarding this requirement.
    I have created logic as shown below:
    IF is_header-total_value LE 500000.
        IF iv_fieldname = 'START_BIDDING_BUTTON'.  " Create bidding button name
          cv_invisible = '1'.
        ENDIF.
    ELSEIF is_header-total_value GT 500000.
        IF iv_fieldname = 'PROCESS_ORDER_BUTTON'.  " Create purchase order button name
          cv_invisible = '1'.
        ENDIF.
    ENDIF.
    It seems to work but why can't i find any value in the table is_header nor is_item: (I have already add SC in the work area)

  • By default one field should be greyed out( not input field)

    hi all,
    My requirement is
    By default one field should be greyed out( not input field)
    when i click on a check box and press enter this field should be open to put input values.
    can some somebody please give me sample code for both PBO and PAI

    Hi Ram
    In flow logic.
    PBO
    module screen_modify.
    IN main program
    module screen_modify.
    loop at screen.
    if p_cb = space.
    if screen-name = <Name of your screen field>.
    screen-input = 0.
    screen-output = 0.
    modify screen.
    endif.
    endif.
    endloop.
    endmodule.
    P_cb is the checkbox.

  • Partner field in Sales Order should be greyed out

    How can I do the configuration for making a particular partner in Partner Tab of a specific Sales order type greyed out so that it is not open for change

    Follow the following steps:
    1. Go to transaction <b>"VOPA",</b> next select the radio button for sales document header.
    2. Click on<b> Partner procedures [F6]</b>. Select the procedure which is assigned to the sales document.
    3. Click on <b>Procedure details [F2]</b>.
    This would gives you all the partner assigned to this procedure in turn attached to the sales document. One can make configure the partner as "Changeable", Mandatory, etc.
    Regards,
    Gauravjit.
    Reward Points if solution is helpful.

  • UK CIS Scheme: Withholding Tax ID field in Vendor master is greyed out

    Following SAP Note 1003730 and the related document UK CIS - Legal Changes Implementation - the notes say that the Subcontractor Verification Number should go in the W/tax Id field (LFBW-WT_WTSTCD) in the vendor master maintenance Withholding Tax screen.  We have Extended Withholding Tax activated, but in the WT screen in the vendor master the W/tax Id field has no title and is greyed out in the table control - so you can't enter anything in it.
    Has anyone else come across this and found a solution?
    Thanks.

    Field is visible in XK02 (Central Vendor Maintenance) but not FK02.

  • Fields not greyed out in display mode in screen exit

    Hi all,
    i am working on an screen exit for CJ02 transaction. the values in the customer subscreen are getting updated in database and even it is reflecting in fields when viewed again. the problem is that in display mode (CJ03) the fields are still editable. though there is no save button, but the fields should be greyed out.
    i have tried to modify screen using LOOP AT SCREEN in the function exit provided in PBO.....but it is not picking the subscreen.
    please provide any solution as soon as possible.
    thanks in advance

    In the PBO in your screen exit:
    IF sy-tcode EQ 'CJ03'.
    LOOP AT SCREEN .
    if screen-name 'your field'
    screen-input = 0.
    screen-output = 1.
    MODIFY SCREEN.
    ENDIF.
    endif.
    what enhancement are you using?
    bye

  • Changing the field properties (editabel/greyed out) dynamically?

    Hello
    I am developing an Adobe interactive form. My requirement is dynamically changing the filed properties based on the other field values/selections/inputs.
    1) For example in the form, if user puts value_A in field_1, then, the field_2 should be greyed out.
    2) If user puts value_B in field_3, then, system automatically populate the value_C in field_4 in order to let the user make easy- user friendly
    3) If user puts value_D in field_5, then, only allowed value in field_6 is value_E, if by mistake user puts value_F in field_6, then, system should throw error message
    Pls. let me know how to achive this DYNAMIC functionality in the FORM or do we need to handle from WEbDynPro ABAP side?
    Thank you

    Hi,
    Everything you have mentioned is possible in the form itself. Just write the valid script at valid event of valid field.
    1) For example in the form, if user puts value_A in field_1, then, the field_2 should be greyed out.
    Ans: Write on change event of Field1:
    if($.rawValue eq "value_A")
    then
    Field2.access = "readOnly"
    Field2.fillColor = "192,192,192"
    endif
    2) If user puts value_B in field_3, then, system automatically populate the value_C in field_4 in order to let the user make easy- user friendly
    Ans: Write on change event of Field3:
    if($.rawValue eq "value_B")
    then
    Field4.rawValue =  "value_C"
    endif
    3) If user puts value_D in field_5, then, only allowed value in field_6 is value_E, if by mistake user puts value_F in field_6, then, system should throw error message
    Ans: Write at exit event of Field6:
    if(Field5.rawValue eq "value_D" and $.rawValue ne "value_E")
    then
    xfa.host.messageBox("Wrong Value", "Error", 0)
    endif
    For such type of scripts you can refer to designer help also. So please check there before posting your query that would save your time.
    Regards,
    Vaibhav

  • Grey out the Time field in date assignment block

    Hi All,
        In my project we need to create a date profile in which i need a date rule to get today date and the time should be greyed out. i tried all day event but not working out for Zdate type.  I tried different date types but Time field is not greyed out ( changing time to 00:00 is possible but client needs time to be empty)
    With regards,
    Selvam T

    Hi Selvam,
    as far I understand you want to define a certain date type as read only. There are several different ways to achieve your requirement:
    date profile customizing: you can set the date as read only
    I did not get your requirement of the time field, you can however play around with the following display customizing:
    use BAdI CRM_APPOINTMENT_BADI to influence the appointment set
    enhance the UI component, using the I-getter you can change a field to read only on UI level
    I hope this helps.
    best regards,
    Johannes

  • Grey out one field

    Hello Experts,
    I need help and its not urjent,
    i am working on dilog programming i have one screen and on that screen one table cotrol is there and when ever the user scan article all description show on another screen , user scan so may articels in one day but some time it happend user over write on same articel so perviuos article has not showing the details it means it is overwritting prob in screen which user do not want ,
    so pls help me how to grey that field when ever user enter articel number s .
    Thanx in advence.
    Edited by: Rob Burbank on Oct 31, 2009 3:28 PM

    Hi,
    You can Grey out like below.
    <li>Define Columns table based on table control
    CONTROLS TABC TYPE TABLEVIEW USING SCREEN 100.
    DATA: COLS LIKE LINE OF TABC-COLS.
    <li>Write the below code in the PBO of the screen to hide certain fields
    "At runtime as TABC is deep structure which has COLS table
    "inside we have to do the following.
    "Write condition when the articel number should be Grey out.
    IF ITAB-ART_NO = 'S'.
      LOOP AT TABC-COLS INTO COLS.
        IF COLS-SCREEN-NAME = 'ITAB-ART_NO'. &quot;Which is to be hidden
          COLS-SCREEN-INPUT = '0'.
          MODIFY TABC-COLS FROM COLS INDEX SY-TABIX.
        ENDIF.
      ENDLOOP.
    ENDIF.
    <li>Write the above LOOP-ENDLOOP in the pbo of the screen flow.
    Thanks
    Venkat.O

  • For Z Po order type - Item category field is  greyed out.

    Hi MM Experts,
    I am an ABAper working on PO creation with respect to PR( PR with account assignment N)  for Z order type . The requirement includes to update item category of PO with B , But for this Z order type both PO transaction Create/Change(ME21/ME22) the field item category has been greyed out ( Non editable). I checked the SPRO setting for this order type ( SPRO-MM->Purchasing-PO->Define Screenlayout at document level .The field item category has been made as optional.
    Please let me know why this field ( item category still showing in display mode) and How to make it as editable .I need it as editable in ME22 to implement the new requirement of updating that field with item ategory B.
    Thanks in Advance
    Pravee.

    Hi All,
    Since I was creating a PO with respect to PR - after running through all the screens the item category field was becoming non editable, But during the create in one of screen the field item category was still editable, so I updated the item category with B during the create and created the PO, I have used BDC to do the same and its working fine. Thanks for all your inputs.
    Thanks
    Pravee.

  • Field validation in table maintenance generator and input value grey out.

    i have created ztable with 3 fields as em_no,em_no and addrnumber.
    first two fields are custom fields but the third custom field need to validate the standard table adrc contains the value of the field addrnumber.
    i need the query of field validation query which we write in create entry events in table maintenance generator and also if we give wrong value for addrnumber in sm30 maintain table, the input field need not to be grey out for next entry...
    please help.

    Hi,
    create method -
    >before saving data.....write the logic between the method
    go to utilities->table maintanance ,,,after creating generator ---go to envirnment->modification->events.
    create event -.>.as zsave select event  type 1(before saving data to table) write code in include....
    consider data for field3 is 10 .
    lv_new = ztbr(table name)-field3.
    select field3  from ADRC(ZTABLE) into wa_new (TYPE ZTABLE) where field3 = lv_new.
    if sy-subrc = 0.
         working fine
         else.
        message  i888(sabapdocu) with 'data invalid'.
    endform.
    This will help u...
    Thank u.........

  • I want to make a field grey out in a standard tcode AS02

    Hi Friends,
    Can anyone explain me how to make a field grey out for the standard tcode AS02. I have to make the serial number in that so that no one can change it.
    Let me know the steps, if possible with an example.
    Regards,
    Ramesh.

    Hi Ramesh .,
    in Transaction AS02 which field you want to make Grey out .
    any how i could not find Screen Exit for the Tcode where u can do such type of things .
    if it is with Serial Field You can Validate it with Enhancement : AISA0001 .
    I think SHD0 is for Variant creation for Reporting purpose , But AS02 is an Asset Change Transacttion . i dont think you need to use  SHD0 .
    thanks
    Sreenivas Reddy

  • Hierarchy Authorization field not greyed out in portal

    Hello Gurus,,
         I have a query,which has profit center as one of the selection variable and which has a a hierarchy on it. The Analysis authorization variable was created for the hierarchy. So it works fine in Bex Analyser,but when the same is run in portal,,, the authrozation field ( profit center) is not greyed out,but the F4 help shows just the authorized values alone ,which is good. But the issue is the enduser seems to be entering values manually,,,thereby the report runs for unauthorized values as well.
    Can someone tell me,,if this could be a bug in sap,,, the field with authorization is
    not being greyed out.,,,,,,,,is there any work around because the user wants it optional,,,,,,,
    This is on 2004S version of BW.,,,,,,,,,,,,,,can someone guide me through this.....
    Just to confirm,,only the nodes show in F4,,but is it standard functionality that the leafs doesn't show up in F4,when a leaf alone is selected as the hierarchy node in RSECADMIN................
    your help shall be rewarded,,,
    thank you in advance..
    srinu

    Hi
    Thanks for ur advice.
    I have tried what you said by activating and Deactivatin the RFC comm channel in ID but the same result.
    I have also checked the Max connections in the RFC channel.
    All in vain
    Expecting more expert suggestions
    Regards
    krishna

  • How to conatant value in F4 & it should be gery out

    Hi.
        I need to create a search help for a field . In  seection  method I have given one table. obviously in F4 it will pull all the data from table which we have mentioned in selection method. but I dont want all the data from it.In my search help I would want to have constant value & it should be grey out. Can you pls let me know how to acheive this. I tried to mention constant value while creating in serach help. still it is pulling all the values. Thanks in advance.
    cheers,
    sami.

    Hi,
    Suppose you need to get F4 help from one table.. you will be handling all the entries in an itab, say tb_values. Once tb_values is filled with the selection entries, append one more entry by yourself by giving your constant.
    For EX:
      SELECT name FROM mcshierb
                  INTO TABLE tb_values
                  WHERE tlevel EQ co_05
                  AND appl EQ co_appl
                  AND hname EQ co_hname.
      tb_values-type = 'ABCD'.
      APPEND tb_values.
      CLEAR tb_values.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
           EXPORTING
                retfield        = co_retfield
                dynpprog        = co_dynprog
                dynpnr          = sy-dynnr
                dynprofield     = 'SO_TYCL-LOW'
                value_org       = co_s
           TABLES
                value_tab       = tb_values
           EXCEPTIONS
                parameter_error = 1
                no_values_found = 2
                OTHERS          = 3.
    Now it'll show ABCD also...
    But I didn't get what you mean by graying out? You mean when the constant is selected, the selection field itself should be grayed out?

  • Checkbox needs to be greyed out in ALV List display

    Hi Experts,
    I am using u2018 REUSE_ALV_HIERSEQ_LIST_DISPLAY' and I need to make the  checkboxes greyed out based on certain conditions. For eg --Say if the field 'status' is 51 in my internal table then the checkbox should be editable  in the List display otherwise the checkbox should be greyed out .. Can this be achieved? Or should I use Classes to do it. Please adviceu2026

    Hi Shankar,
    This is possible using CELLSTYLES (lvc_t_styl), which can fulfill the behaviour you require for your scenario.  I would suggest you to go through the below mentioned link posted on SCN which to asked for the same set of requirement.
    Disabling certain rows in editable oo alv ?
    Please validate the same at your end and let know on this.
    BR/Thanks
    Pranav Agrawal

Maybe you are looking for

  • How to setup the guest network just access internet only (not touch in internal server)

    I had setup the AirPort Extreme in basic and guest network, but observed the guest can access to our server currently, for the security issue, we can setup the guest network to access internet only? pleae advice and thanks

  • How can I overwrite existing reports with Publish Wizard?

    Hi, I uploaded a lot of reports to the Crystal Reports Server 2008 CMS using the Publish Wizard. Now, when I upload changed reports again, the Publish Wizard does not overwrite the existing reports. Instead it renames the new report as "<Name> (2)".

  • Set AOI and Binning with Camera Link

    Hello together, I trying to set the AOI and the Binning. Please see the attached VIs. If I choose Binning 2x or 4x, the following error occured: Error -1074397150 occurred at IMAQ Snap.vi Possible reason(s): NI-IMAQ:  A timeout error occurred while w

  • Shared Objects and IOS 5.0+

    So, I need a straight answer. Can I use Shared Objects for my game, or will apple fail me for using them?  Will Shared Objects be backed up with iCloud? Thanks, diss.

  • Recognize a link from an rss source?

    Hi, I am now trying to improve my rss reader. Links from the html rss are being shown in brackets, but cannot be selected and forwarded to the standard windows program (http:// -> browser). Is there a way to "recognize" a link from an rss source? I w