View is switch not in edit mode

Hi,
I added a new assigmentblock (for this I created a view in BT111H_OPPT). The view displays values from a dependent BOL.
So far so good, but if I switch to edit mode - only my view  elements will not switch to edit mode.
I see "<%= controller->view_group_context->is_view_in_display_mode( controller ) %>" this in my view - which will call
method IF_BSP_WD_VIEW_GROUP_CONTEXT~IS_VIEW_IN_DISPLAY_MODE. In the method the statement ME->GLOBAL_EDIT is every time not X - so the view do not switch to edit mode - can anyone help to solve this problem.
Thank you in advance
Paul

Thank you for you fast reply  - I tried it today -but as expected I have a few problems (sorry, but I'm new on WebUI development).
My situation now:
in Customizing
ZP1 is the dependent object and Z1 is the Acces Object
ZP1 has Source Object BTADMINH
Z1 has Source Object ZP1
Context Nodes
BTADMINH - mapped to standard custom controller
Z1             - mapped to standard same custom controller (added node this in controller by enhancement)
ZP1             - mapped to standard same custom controller (added node this in controller by enhancement)
context nodes structure
BTADMINH
BTADMINH ->ZP1
ZP1->Z1
Methods
CREATE_CONTEXT_NODES
CREATE_BTADMINH( ). -  not changed used the generated implementation
   
CREATE_ZSPORDSET( ). -  not changed used the generated implementation
   
     in this method  there is already the       ZSPORDSET->on_new_focus( focus_bo = entity ). implemented
CREATE_ZSPORD( ). -  not changed used the generated implementation
     in this method  there is already the       ZSPORD->on_new_focus( focus_bo = entity ). implemented
But nothing happens
Do you have an idea what I making wrong? Sorry for that question - (because your answer was great - but I think I 'm not able to  transfer to my coding.
Thanks in advance
Paul
Edited by: paul meiner on Sep 24, 2011 10:29 PM
Edited by: paul meiner on Sep 24, 2011 10:30 PM
Edited by: paul meiner on Sep 24, 2011 10:30 PM
Edited by: paul meiner on Sep 24, 2011 10:31 PM

Similar Messages

  • CellEditor does not end edit mode when finished editing

    I have a custom cell editor and it does not return from edit mode once the cell has been edited. Can anyone help ?

    Post your table cell editor code

  • Oracle supporter tell me JSF not support edit mode

    so I use jsf build a portlet ,I want to add a edit mode when I click edit button from portlet title bar ,but if I click the button then error show me,about can't get jsfcontext and so on
    oracle's supporter tell me the JSF can't support edit mode,you can use jpf or jsp instead jsf
    so if you want use the edit mode ,you can use jpf or jsp,I have been used jpf replace jsf, is run ok

    I don't know that you'll find any that support 7. Here's where the other versions can be found. Looking quickly at the guides, Oracle DBs' supported started at 9i. I thought some had used 1.54 with 8 but I can't remember where I saw that.
    http://www.oracle.com/technology/software/products/sql/index.html
    Evita

  • Hebrew is backward (left-to-right) in Calendar view, but not in edit mode

    Hey all,
    I'm wondering if there's a workaround for a bug where Hebrew appears backward in most Calendar views, for example the day and list views. If you go to edit the event, it appears correctly.
    Thanks Apple very much for adding the Hebrew characters to the fonts and Hebrew support in Safari!
    Thanks,
    Daniel

    Bump. This is happening on my iPhone too.

  • Photos look less sharp when not in editing view

    This is kind of confusing to explain...but I'll try!
    When editing a photo in iPhoto '09, I adjusted it to what I wanted, but once I leave editing mode and view the photo as a preview (by double clicking on the thumbnail) it looks much less sharp and bright. I think it is the three sliders - definition, highlights, and shadows - whose adjustments are not showing if I'm not in editing mode. But it might also be the sharpen feature as well that is not showing. When I move it to my desktop and open it in Preview, it also looks less sharp so it's almost as if those editing effects aren't actually affecting the photo except in editing mode, or something. I know I didn't explain it very well so I'll try to show you with this example.
    This is what the photo looks like everywhere except in editing mode:
    and this is what it looks like in editing mode (I took a snapshot)
    Any suggestions?

    I am experiencing the same problem. I think the edits are not holding. I am going to look for another imaging / editing solution. Very strange

  • Styles not rendering in edit mode

    I have Contribute CS5. When I view a page in non-edit mode in Contribute, the page renders with the appropriate styles.  When I put it in edit mode, some syltes render, some do not.  The styles do show for selection in my style drop down list. Can anyone tell me what the issue might be?  This is disconcerting for our users.

    I am using multiple style sheets, but the styles that are not rendering are in the last style sheet called.  I think I pretty much have determined that the rendering engine in Contribute cannot do some styles (perhaps after a certain CSS version number?).  For instance it would not render font-variant:small caps. I had this in my h1 style declaration. But it would render color:red; on that same h1 as an experiment I tried. It also won't render background images.

  • Ctrl+tab is not working in editing mode

    I have JcheckBox and JTable in my JPanel. When user clicks or presses F2 to edit any cell value of the JTable a comboBox will appear with possible values. (This comboBox is coming from table CellEditor). When user presses ctrl+tab from the table focus should transfer to JComboBox all time. It is working only when the user presses ctrl+tab from the table cell which is not in editing mode. If the user presses ctrl+tab from the table cell which is in editing mode (i.e. focus is on the ComboBox of the cellEditor) it does not work. Please help me to find the solution.
    I give a sample code here for your reference.
    public class Frame1 extends JFrame {
    public Frame1()
    super();
    this.setLayout( null );
    this.setSize( new Dimension(400, 300) );
    JTextField ch = new JTextField();
    ch.setVisible(true);
    ch.setBounds(10, 10, 10, 10);
    this.add(ch, null);
    DefaultTableModel tmodel = new DefaultTableModel(3, 1);
    tmodel.setValueAt("0 0 1",0,0);
    tmodel.setValueAt("1 0 1",1,0);
    tmodel.setValueAt("2 0 1",2,0);
    JTable custLayersTable = new JTable(tmodel);
    custLayersTable.getColumnModel().getColumn(0).
    setCellEditor(new ComboEditor());
    custLayersTable.setBounds(new Rectangle(40, 40, 280, 145));
    custLayersTable.setSurrendersFocusOnKeystroke(true);
    this.add(custLayersTable, null);
    public static void main(String[] args)
    Frame1 a = new Frame1();
    a.setVisible(true);
    final class ComboEditor extends AbstractCellEditor
    implements TableCellEditor
    public Component getTableCellEditorComponent(JTable table,
    Object value,
    boolean isSelected,
    int row,
    int column)
    Vector<String> layerValSet = new Vector<String>();
    for(int i=0; i<3; i++)
    layerValSet.add(row+" "+column+" "+i);
    mComboModel = new DefaultComboBoxModel(layerValSet);
    mComboModel.setSelectedItem(value);
    mEditorComp = new JComboBox(mComboModel);
    return mEditorComp;
    public Object getCellEditorValue()
    return mEditorComp.getSelectedItem();
    private DefaultComboBoxModel mComboModel;
    private JComboBox mEditorComp;
    }

    Thanks a lot for your reply.
    Since the textField is in a different class i could not use the transferFocus API directly. I tried the following code in the keyreleased event of Combo Box but it was not working.
    KeyboardFocusManager.getCurrentKeyboardFocusManager().focusNextComponent(
    e.getComponent().getParent());
    I also tried the following code in stopCellEditing and is not working.
    KeyboardFocusManager.getCurrentKeyboardFocusManager().focusNextComponent();
    Is there any other way to achieve this?

  • How to switch editing mode from PAL to NTSC on existing project?

    Hi,
    I'm editing some NTSC footage and half way through it I realized that I am editining in PAL mode. How can I switch my project editing mode to NTSC without loosing all my editing work? When I go to menu Project-Project Settings-General, the Editing Mode drop down for PAL, NTSC is grayed out.
    Thank you,
    Pavel.

    Brilliant.
    I have managed to scratch together the following Nikkors.
    All optics are clean and sharp.(I had some serviced) I am enjoying collecting as well as using them. Looking for an F2 85mm (manual focus now to complete the acquisition process)
    Nikkor 24mm AF f/2.8D 603947 2006
    Nikkor 28mm MF f/2.8 479495 1981
    Nikkor 35mm MF f/2.8 776970 1974-78
    Nikkor 50mm MF f/1.4 362602 1962>
    Nikkor 50mm MF f/2 3718402 1979
    Nikkor-P micro 55mm MF f/3.5 687849 1971-73
    Nikkor 105mm MF f/2.5 1009507 1981>
    Nikkor QC 135mm MF f/2/8 391789 1973>75
    Zooms:
    Nikkor 28- 85mm AF f/3.5 n.a 1986-90
    Nikkor 35 70mm MF f/3.3-4.5 2060284 1984>
    Nikkor 70- 210mm AF f/4-5.6 n.a 1987

  • Office Web App - Use for viewing but not for editing

    Hello,
    i'm searching for a possibility to use the web app server only for viewing documents but not for editing.
    I want to accomplish this for docs and ppts.
    So the possibility to edit in Web App should be greyed out or even better, vanish completely.
    Best regards
    Stephan

    You can remove the bindings for OWA for some actions.
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/34948782-74cb-452c-af32-af260a7f988a/document-library-new-document-office-web-apps-server?forum=sharepointgeneral

  • How to bring the Tcode FI12 in Production System in EDITABLE mode

    Dear Sir/Madam,
    The  T code - FI12 is not in editable mode in Production System. Is it by default remains in NON Editable mode  ? Our FI consultant is saying that the users needed it in Editable mode for maintaining BSR Code.
    To bring it to Editable Mode, I have to open the Production Client. Is there any alternate exists to bring this Tcode ( FI12 ) in Edtable mode other than Opening the Client ?
    Thanks and Regards,
    Pranab

    Users needed in editable mode
    Is this a one time activity or a permanent?
    You can transport the changes from DEV to PRO without opeing a client.
    OR
    You can create a cusomize tcode with same functionality with secondary index to use the same entities in editable mode.
    Just work with your ABAPer and get it done.
    Regards,
    Nick Loy

  • JQuery-Script only working when WebPart is in Edit Mode

    Hi there,
    so I developed some custom functionality with SPServices that works fine in my dev-environment. Now Im trying to deploy it in the productive environment and Ive struggled for several hours but cant get it to work.
    This is my code: http://pastebin.com/DvStqiet
    I insert the code inside of a simple form webpart.
    When the webpart / website is in edit mode, the code executes fine.
    When its not in edit mode, the jquery functions work, but the spservices functions do not seem to work. I get the error "Das Objekt unterstützt diese Eigenschaft oder Methode nicht." (in english its something like "The object does not support
    this property or method."). Line number of the error then points to the first occurrence of $.SPServices(). (Firefox Screenshot of Console: http://imgur.com/QvozF38)
    I searched nearly the whole Internet and tried different solutions.
    I wrapped the $(document).ready(function() {}) like this: ExecuteOrDelayUntilScriptLoaded(function() {}, "sp.js");
    And I tried writing the code directly to the webpart page via sharepoint designer. It does not work then either and I even cant enter edit mode.
    I found out, that the masterpage-Template is also referencing a jQuery-Instance (v 1.4.2), so I tried disabling the reference in my script, but the result is the same.
    I also tried referencing the scripts via absolute URLs, without success.
    The references to the scripts seem to work (I can click them in sharepoint designer). I just dont know why it is not working. If you have any further suggestions or have any idea how to tear this problem down, or find out whats maybe causing it, please let
    me know because Im really clueless right now...
    Thank you very much!

    OK it seems like I got it to work with the following:
    I just wrapped my entire code inside of
    (function($) {
        // Your usual jQuery code here using `$`,
        // this code runs immediately
    })(jQuery);
    and now it works. Im really happy, that it finally works... Seems like some other javascript (maybe referenced by the master template?) is overwriting the $.

  • IPhoto 11 not retaining edits

    Since upgrading to OSX Lion (currently using iPhoto 11 9.1.5), iPhoto is not retaining, or 'holding' edits once editing mode has been left.  In other words, if I go to edit, and crop (or touch-up, or adjust) a photo, as soon as I am NOT in editing mode -- any edits made will disappear. 
    The ONLY change which appears retained in iPhoto is rotation -- but if I attempt to share the photo (email, facebook), the original orientation will appear.
    Advice?

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • Cannot use edit mode with zebra layout in alv

    Hi,
    I am using 'REUSE_ALV_GRID_DISPLAY' for the ALV genration,
    I found that I cannot use
              it_layout-edit_mode = 'X'.
              it_layout-zebra = 'X'.
    simultaneously..
    Only zebra layout come up and not the edit mode...
    Is there a wrk around to solve this
    Thank you,
    Arjun.G

    try removing
    it_layout-edit_mode = 'X'.
    from ur code..
    and add
    is_fieldcat-edit = 'X'   " for all columns...

  • Open vi in edit mode programatically

    I am trying to programatically alter the build number global variable. I open a VI reference to global.vi form a seperate vi which has no stact linkage to the global.vi and i have altered the values programatically but when i use invoke node for "Make current values default" it complains that the vi is not in editable mode. How do i make it work?
    Thanks,
    Anand
    I found the bug immediately after posting here. I had a static linkage to the global.vi in the type conversion for "build".
    Message Edited by Anand S R on 10-12-2005 01:38 PM
    Attachments:
    blockdiag.JPG ‏54 KB

    "turbot" <[email protected]> wrote in message
    news:[email protected]..
    > May I know how to use a command to open&nbsp;a .vi file&nbsp;in edit mode,
    if the vi's name is given.
    Use VI Server. Open a reference to the VI, and set the front panel open
    property to true.
    > Also if the file is new and not an existing file, how to create and open
    it in edit mode by command line.
    That is not possible. You could use an empty VI template (.vit). Open it,
    and when the user is done, he is asked to save it under a different name.
    > Finally, if the file in edit mode is closed, can I detect it by any event
    cases.
    Use dynamic event registeration. When you have a reference to the VI, wire
    it to a dynamic event registration node, and select the panel close event.
    Then use an event structure to catch the event.
    Regards,
    Wiebe.

  • Abap editor change to a edition mode unknown

    hi, i want to make some changes in a report but when i try it the next information message is sent "only repairs in non original system", after the abap editor switch to a edition mode that i dont know.
    Can you help me?

    In the se38> edit> modification operations--> switch off assistant

Maybe you are looking for

  • To get monday dates in a given date range

    Hi, when a give a date range from Apr 1 to Apr 30 , the query should return all the monday dates from Apr 1 to Apr 30 I.e Apr 4 Apr 11 Apr 18 Apr 25 Please suggest me how to achieve this.

  • Jquery menus for DW CC

    So Spry is gone in DW CC. Spry of course made deploying menus very quick and easy. Does anyone have any suggestions for an equivalent tool for menus using Jquery? Thanks

  • HWIC-3G

    Will a 50 ohm load on the antenna port sufficiently drop the received signal level? For a test, I have an HWIC-3G-CDMA card and an HWIC-4B-S/T card. The BRI card is connected to a satellite data terminal for an ISDN connection. The 2811 router is con

  • Outputs

    Hi, I need to know how to configure muliple outputs.(eg) this is in the delivery scenario..i want to print the delivery note and at the same time have to email the same to the customer.. anyone  tell me how to configure this in the output types in sh

  • Unable to Modify DB_block_Size for OWB installation

    We are try to install OWB server on oracle DB server in windows xp professional, at the time of installation oracle suggests to increase db_block_size from 8192 to at least 16k for better performance. We are unable to modify the same thru Console or