How to Set Assignment block in Display mode

Hi All,
I have a Z assignment block in Account (BP_Head), requirement to set this assignment block in display mode only.
No user allowed to  edit its edit list.
Could you help me how to do that with sample code and event.

HI,
In configTable set attribute displayMode = "TRUE". Then this AB will be always in display mode
displayMode            = "TRUE" or
if you ar using configCelleator uyou need to give iv_all_rows_editable = space
cl_thtmlb_util=>translate_selection_mode(
  exporting
  iv_selection_mode    = ITEMS->SELECTION_MODE
iv_all_rows_editable = space
  importing
  ev_selection_mode   = lv_cellerator_selectionmode
ev_edit_mode        = lv_cellerator_editmode
  ev_selection_column = lv_cellerator_selectioncolumn ).
Regards,
Deepika.

Similar Messages

  • How to set a view in display mode??

    Hi,
    I have created a new view in overview page of BT111H_OPPT.
    This view is of table type and associated with value node .
    I am able to display contents of table on UI but they are in editable mode.
    I need them in display mode .
    How to achieve this functionlaity??
    Any suggestions will be helpful.
    thanks
    kanika

    Hi Kanika,
    There are 2 ways:
    In the configuration of your view you can set the fields as display mode.
    In the method get_i* of your atributtes you can disable the field too.
    I think the better solution is using the configuration.
    Best regards,
    Caíque Escaler

  • After Effects warning: couldn't set Quicktime video output display mode

    After Effects warning: couldn't set Quicktime video output display mode
    I'm getting this error when exporting video from after effects. I also get it when the program starts up. I'm using Windows XP. Cannot find anything about a fix anywhere. Does anyone know how to fix this?

    Thanks for your reply. I profess ignorance regarding the GDI only mode and have no idea how to access that. Can you give me a little more info on that?
    I am using an ATI Radeon HD 3850. I have two monitors on that card, Monitor one is a Trinitron HP 1130 CRT.(set to 1280x1024 16bit) The other is DVI wide screen Ilo 26 inch monitor. (1024x768 at 32 bit)
    I have a BlackMagic Design DECKLINK standard definition broadcast card which outputs component video to a sony broadcast Beta deck. 480ix720 standard video.
    The machine has a gigabyte motherboard. Intel Core 2 quad cpu 2.66 ghz
    2.50 gb ram reported (4gigs installed)
    These hasn't been a major issue as I can still output AVI uncompressed but it is annoying.
    John

  • How to set Assignment details in RSBBS

    Hi Experts,
    RRI is used in dev.I want to know how to set assignment details.What's the meanning of
    Type ,selection type and required entry? pls be more specific.Thank you.
    Best regards,
    Gavin

    <b>Look at</b> ...explained wid examples
    http://help.sap.com/saphelp_nw04/helpdata/en/a2/9b548d979de04180d15b5a55aa94aa/frameset.htm
    Post back for any further questions ...

  • How to set posting block in BIlling Doc type configuration

    Hi All,
    Can anybody tell me, How to set posting block in BIlling Doc type configuration.I need to do this to seperate billing creation from from FI/CO posting in my company.
    We right now run have the batch jobs which run VF06 & VFX3.
    Appreciate any input or suggestions.
    Regards,
    Vinay

    Hi
    If you want to check the Manual posting blocks you can configure them through FI/CO. Once you have configured the blocks with reasons it will automatically block for the payments.
    goto        SPRO-> Financial accounting->Account receivable & Payable ->Business Transactions-> Out going Payments-> Manual outgoing Payments-> Check payment block reason.
    Cheers

  • How to set Payment Block for Service PO when IR before GR?

    Hi,
    Could anyone advice me on how to set payment block especially for service Purchase order, item category D, when IR before GR (SES)?
    Thanks,
    Alex Kwon

    Hi
    Please try this...
    in IMG>MM>Invoice Verification>Invoice Block>Item amount check
    Here you can activate the item amount check for Item categories as well as GR item.
    Pls explore I have not tested.
    Hope it helps
    Karthik

  • I have suddenly been getting a lot of fraud emails.  Does anyone know how to set up blocks?

    Hello,
    I have been suddenly getting tons of fraud emails.  This has never been a problem in my mack mail in the past. Does anyone know how to set up blocks?  I have searched through preferences but have not been able to find any way to do it.  Bounce is of no use as these emails are not "respondable".
    Gabrielle

    Hi Gabrielle,
    If you're using Mail, open Mail > Mail menu > Preferences > Rules > Add Rule > set the parameters you want.

  • How to read Assignment blocks mode options Lazy, Direct etc

    Hi,
    I need to read the Assignment block mode settings made in configuration i.e, Direct, Lazy etc in a program. Can some one help me out how to get these values for Account assignment block. Based on these modes, i need to programatically control and decide some rules.
    Any pointers on this will be very helpful.
    Thanks,
    Udaya

    Hi Udaya,
    This is done in class CL_BSP_WD_OVW_VIEWSET, method DO_INIT_CONFIG
    * get configuration in xml language
      me->configuration_descr->get_config_data(
        RECEIVING  rv_result = lv_config_xml
        EXCEPTIONS foreign_lock = 1
                   config_not_found = 2 ).
    * transform configuration xml into table definition
      CALL METHOD cl_bsp_dlc_config_ovw=>conv_xml_to_data(
                  EXPORTING iv_xml = lv_config_xml
                  IMPORTING rt_data = ls_assgnm_xml ).
      lt_assignm = ls_assgnm_xml-views.
    * conversion of the load options (direct,expanded=abap_true and lazy,collapsed=abap_false)
      LOOP AT lt_assignm ASSIGNING <f>.
          <f>-traymode = XXX
    Possible values (XXX in the code) are:
    CL_BSP_WD_OVW_VIEWSET=>C_DIRECTMODE_ID
    CL_BSP_WD_OVW_VIEWSET=>C_LAZYMODE_ID
    CL_BSP_WD_OVW_VIEWSET=>C_HIDEMODE_ID
    Regards,
    Fabian

  • How to set default settings to display record count in multi record block

    Hi All
    Whenever I query my multi record block, I get 1/? as record count at the console in standard Oracle Applications. Is there any setting so that it displays 1/50 (in case total record queried is 50). I don't want to set query all property of block as I don't have any control in standard Apps forms.
    Thanks in advance
    Navdeep

    Check out the next_navigation_item option for the get_item_property procedure. If you use this you can do the process without having to navigate from one item to the next.
    You can do something like this (untested) to move and resize the items (other than the first in the block):
    PROCEDURE move_and_resize(p_item IN ITEM, p_width IN PLS_INTEGER) IS
      prev_item ITEM := Get_Item_Property(p_item, PREVIOUS_NAVIGATION_ITEM);
    BEGIN
      Set_Item_Property(p_item, WIDTH, Get_Item_Property(p_item, WIDTH) + p_width);
      Set_Item_Property(p_item, X_POS, Get_Item_Property(prev_item, WIDTH) +
                                       Get_Item_Property(prev_item, X_POS));
    END move_and_resize;
    move_and_resize(myitem, -30);

  • How can I change the Video Display Mode when the Monitor displays UNSUPPORTED MODE?

    While setting up my new monitor, I changed the computer Video Display mode to 120 Hz by accident.  Now I can't see a thing on the monitor other than the words UNSUPPORTED MODE.
    My system is a newer HP Pavilion p7-1423W running Windows 8.1 with Intel i5-2320 3ghz
     I have tried the Startup mode by tapping ESC on powerup but the startup options don't help.  And the F11 option on the menu just makes the Startup screen disapear and returns the monitor to UNSUPPORTED MODE.  Tapping F8 doen't work and tapping F12 just puts me into the bios menus which don't help.
     How can I put the integrated Video Card back to a supported video mode when I can't see the screen?
    This question was solved.
    View Solution.

    Try the shift key + F8. If you can get in- doing a System Restore to a day before you messed up the setting should work without a need for Safe Mode.
    http://www.avira.com/en/support-for-home-knowledgebase-detail/kbid/1672
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Creation of Purchase order - set net price in display mode

    Hello,
    During the creation of purchase order from contract or DA (ME21N-ME59N),  I want to set the net price in display mode (under any conditions) .
    Is there a parameter setting or a point of modification to make ithis?
    Thanks for your contribution.
    JLC

    Check for existing screen layout name from below settings -
    Goto SPRO -> IMG Settings -> Materials Management -> Purchasing -> Purchase Order -> Define Document Types
    Check for Field selection key against the PO Type.
    Then goto below setting -
    SPRO -> IMG Settings -> Materials Management -> Purchasing -> Purchase Order -> Define screen layout at document level
    Select the screen layout / Field selection key in this setting and modify the field selection group Quantity and price. Make Price and price unit as display only as per your requirement.

  • How to make a field from display mode to change mode for a perticular tcode

    hi all,
    my client want to change one field which is in display mode of a material doc in mb02.
    Restrictions in some fields  in MIGO needs to be changed.
    Uploading point in case of issue: While editing the MIGO latter,  this field needs to be edited.
    Goods recipient in case of receipt: While editing the MIGO latter,    this field needs to be edited.

    hi thanks for quick replay,
    my requirement is, supose i post a material doc through migo in 101 mtype, in item detail, where tab i have given the good reciepitant and unloading point. but while i want to change that material doc in mb02, i saw unloading point is in change mode, but good reciepitant field is in display mode. my client requirement is to change that field. so for change that field, the field should be in change mode, so thats what i want.
    i have checked in configuration side, but i didnt get any setting, i think we have to customize that standard screen.
    any comments?
    regards,
    susanta
    Edited by: susanta bindhani on Jun 19, 2008 2:18 PM

  • How to set full-screen page displaying automatically  on portal.

    one viewset included two views (named <b>topView</b> and <b>detailView)</b>
    putting a <i>table control</i> in the <b>detailView,boz</b> of many columns of the <i>table</i>  exceed the width of portal screen,which result in the  <b>topView</b> is the same width to the <b>detailView</b>.both of the two views exceed out of the full-screen width.but i don't wanna move the <b>topView</b> when i drag <i>scroll horizontal bar control</i>. so i added a <b>ScrollContainer</b> into the <b>detailView,and</b> put the <i>talbe</i> control into it.
    the confusoning is :i don't know how to set the the <u>width</u> of the  <b>ScrollContainer</b>  cotrol , to keep it  full-page displaying any time on portal .
       u know the IE'Screen resolution setting maybe different ,e,g,:1024786px  and 800600px.

    HI,
    Give the width in % instead of mentioning in pixels.
    ie. for full width, give 100%.
    Make sure the layout is GridLayout.
    Regards
    Fahad Hamsa

  • How to revert back from external display mode to laptop display mode?

    Hi, I'm new to this community. I'm not sure if this is where I should be posting my questions. Anyway, I accidentally pressed fn + f2, which switched my laptop into external display mode (I'm pretty sure), and the screen is now very narrow and small. I can't figure out how to switch it back to the laptop display mode. I tried fn + f3, which didn't do anything. I also tried the windows button + p, which wasn't the solution either (I was able to extend my desktop screen, but when I play my Steam games the screen is still very narrow and small). I'm very frustrated because I can't find any answers online. So any information would likely be helpful. Thanks in advance.
    OS: Windows 8

    Hi BorderingOnChaos,
    Fn + F2 is a toggle. You press it again to switch back. If it doesn't work, then something is wrong with your notebook's SCM (system control manager) software or EC (embedded controller) firmware.
    In the future, please do two things:
    1 - Identify your notebook because the answer may vary depending on model.
    2 - This question does not relate to the SteelSeries Engine. The correct place to ask it would be the general "Gaming Notebooks" forum if your MSI notebook is a gaming model. This "SteelSeries Engine" forum is a sub-forum under the "Gaming Notebooks" forum for the purpose of dealing with questions about it---but almost everybody new misses that. The SteelSeries Engine is used to configure keyboard macros and backlighting in MSI gaming notebooks that contain a SteelSeries keyboard as well as accessory devices from SteelSeries like gaming mice and USB headsets.
    Kind regards, David

  • How to set one layout to display only?

    Hello, Expers,
    I want to display only one layout. The scenario is: when the user input some data in a layout and click on one 'input finish' function button which means that the user has finished input data in that layout, then the system will set that layout to display only. I don't want to use the variable with comparion column because that will also cause all the layout to display only. What I want to do is just set only one layout to display only. Anyone know how to do?

    Dear guqing,
    please take a look at
    http://help.sap.com/saphelp_nw70/helpdata/en/45/9d0fbe42c40063e10000000a11466f/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/43/174720c5dd3db4e10000000a422035/frameset.htm
    You can use the command SET_INPUT_MODE or SET_DATA_ENTRY_MODE
    Regards
    Matthias Nutt
    SAP Consulting Switzerland

Maybe you are looking for