Regarding the event for expand/collapse of navigation panel

Hi All,
Is it possible to have an event for the exapnd/collapse for the navigation panel of the portal.
If yes, how to achieve it..
Can we add the event for this or not.
If yes, I want to fire this event from the webdynpro ABAP to collapse or expand the navigation panel of the portal based on some condition.
Is this possible....
Thanks Much.
Regards,
Lekha.

Hi,
See my thread: Hide Detailed Navigation on how to edit the relevant par file.
I guess you can add  EPCM event (subscribe) and raise it from your ABAP code.
Hope it helps,
Omri

Similar Messages

  • Expand/Collapse in Navigation Panel

    I need to remove the entire bar containing the expand/collapse and scroll buttons just above the detailed navigation section.
    Now I am using the Light framework page which I copied from Standard Portal Users.
    I am aware that in com.sap.portal.layouts.framework.par file there is a JSP wherein I can make the modifications.
    But I do no want to change the sap par file. Instead I wish to make a new framework out of this modified PAR file.
    Can anyone please tell me how to go about this.
    Thanks!!

    Hi Prem,
    u can do this without changing the par file...goto content admin..select ur framework page and open this..in this, select desktop innerpage....select detailed navigation and open it...in property section...remove tray option...hope this will solve ur problem
    regards
    Amit
    P.S. reward points if helpful

  • How can organize photos by year?  by putting a folder inside of a folder?  So putting all of the events for one year under one folder so that it keeps them seperate?

    Looking for help in organizing my photos.   I would like to organize them so that i can put all of the events for a year into one folder  (i would like to keep multiple events under a folder)?  Help please?!

    Like Larry suggested:
    Click to view full size
    The top folder could be named 2011.  In it could be 12 smart folders each with the following criteria:
    Date is in the range"  mm/01/yyyy to mm/31/yyyy.
    So the 2011 folder would have 12 month smart albums each with the photos for that particular month.
    Or you can use the search by date function at the bottom of the window to search by year, month, week or day.
    OT

  • TreeByNesting image changes required for Expand,Collapse and Leaf Icons

    Hi
    I am currently working on webdynpro for Java on NW04s SP15.
    I have embedded Tree Element inside Table. I need to change the Expand,Collapse and Leaf Arrows inside Table. I dont find those things inside Theme Editor.
    Could you please suggest how can I change those Icons.
    Thank you
    Regards
    Krishna Kanth.

    Hi WalterLaan,
    Thanks for your replay, I had tried with TreeExpansionListener before posting it, but not with TreeWillExpandListener.
    I have a mouseListener to handle a leaf on single click.
    My problem is now my foldernode has arrowIcon, folder icon, text, all three respond for click action(expand/collapse), since my renderer has all the three in one panel and rendering it
    but i want arrowIcon has to behave separate on single click and folder icon and text has to behave different at the same time.
    I have plan to separate it(arrowIcon in one panel/ another two in another panel) in a renderer, is it will help me?
    Thanks, your post given little light to me.
    I will do more R&D of this.
    More suggestion are welcome.

  • How to add a new button in IC tool bar and handle the event for the button?

    Hi,
        I am working on CRM 2007 Interaction center. To add a new button to IC toolbar, customizing is available to define a new button and then assign in to the profile.
    In SPRO->CRM->IC webclient->Customer Specifc System Modifications->Define Toolbar Buttons, I defined one new button with ID ZSTART.
    Now in SPRO->CRM->IC webclient->Basic Functions->Communication Channels->Define Toolbar Profiles , I selected Default profileid and in Generic Layout Buttons Tab, I added the new button ZSTART in Position 3.
         So after completing the customizing when the user logs in using role IC_AGENT,  the button (with ID:ZSTART) gets displayed in the IC toolbar too.
          Now on click of this button, I need to create an object.
    To do so, I have to catch the event which is raised by this new button.
           Please let me how to implement the event handler for this new button. What will be the event name for this button click event and how I can subscribe for it ?
         Please let me know if anyone of you have already worked on similar requirements.
    Regards,
    Manas.
    Edited by: manas sahoo on Jul 22, 2008 7:49 PM

    Hello Manas,
    There are a couple of threads in the community that might help you out (if you haven't already found them):
    Re: IC Web Client Toolbar
    /message/3621917#3621917 [original link is broken]
    Regards,
    Renee Wilhelm
    Edited by: Renee Wilhelm on Nov 6, 2008 7:46 PM

  • Regarding the events..

    Hi Experts--
    I would like to know abt the events triggered or not..
    I mean the status of the events...can i see the status of the events whether it has been triggerd or not... in SM62 i could not see ...
    where can i see this..
    Suggestions plz
    Regards,
    Vishwa.

    Hi Vishwa
    Similar question was raised for m also a long back .But i didnt get the answer any
    the following are some of the ways to know..
    1) if the event is triggering any jobs .then we can check the staus in Sm37
    by mentioning that particular event name in the  job start condition after event
    field..
    This is jus an advice ...
    If any ideas please let us know..
    Regards
    R M K
    ***Assigning points is the only way of saying thanx in SDN ***

  • Regarding the report for vendor stock

    Hello all,
    This is regarding the Subcontracting scenario. We have requirement of transferring the stock of material to Vendor by using 311 Q as the tye child material is in the project stock. In
    However the customer would like to have a report in which we can see the stock provided to vendor  ' Vendorwise or PO wise" .
    Kindly suggest the solution.
    Thanks & regards,
    Sudhir

    Hi
    The stock monitoring for SC stocks at vendor can be done uswing ME2O report.
    If you want to see the total stocks available at vendor then use report MBLB

  • Regarding the event AT SELECTION-SCREEN ON FIELD ..

    Hi experts,
    Can u plz tell the real advantage of the event AT SELECTION-SCREEN ON FIELD than
    AT SELECTION-SCREEN ..
    in which type of situations  AT SELECTION-SCREEN ON FIELD is needed??
    Thanks & Regards,
    sathish.

    Hi,
    when we are going to do two are more field validations at a time
    we can use AT SELECTION-SCREEN ON <fieldname>.
    if it is there single field we can use AT SELECTION-SCREEN.
    have a look.
    select-options: s_vbeln like vbak-vbeln,
                          s_vkorg like vbak-vkorg,
                          s_vtweg like vbak-vtweg,
                          s_matnr like vbap-matnr.
    AT SELECTION-SCREEN ON s_vbeln.
    select----
    if sy-subrc <> 0.
    error message.
    endif.
    AT SELECTION-SCREEN ON s_vkorg.
    select----
    if sy-subrc <> 0.
    error message.
    endif.
    AT SELECTION-SCREEN ON s_vtweg.
    select----
    if sy-subrc <> 0.
    error message.
    endif.
    AT SELECTION-SCREEN ON s_matnr.
    select----
    if sy-subrc <> 0.
    error message.
    endif.
    Regards.
    sriram.

  • Need Help regarding the JVM for the ARM926EJS Processor

    I Want to develop an application in java for the IMX.27 board which has ARM926EJS Procesor. This processor is jazelle enabled hardware.
    My questiion is that how to get the JVM for this. So that i will use my Java appliaction. I am using linux OS.
    Thanks in advance.

    Hi Narendra,
    Sun actually has a VM for the ARM ... well, actually 2 VMs for the ARM. Depending on your needs, there's a solution for JavaME CLDC, JavaME CDC, or JavaSE. There's also the open source implementations for CLDC and CDC. Here's how to get more info:
    JavaME: http://java.sun.com/javame/index.jsp
    CLDC open source project: phoneME Feature: https://phoneme.dev.java.net/content/phoneme_platforms.html#phonemefeature
    CDC open source project: phoneME Advanced: https://phoneme.dev.java.net/content/phoneme_platforms.html#phonemeadvanced
    Embedded SE: http://java.sun.com/j2se/embedded/offerings.html
    email inquiry to: [email protected]
    Regards,
    Mark

  • Download a Project file for Visual Studio regarding the Kinect for Windows v2? Getting Started with Kinect Development in Visual Studio

    I am currently trying to make an application for Kinect for Windows v2 but I am entirely new to Visual Studio and Kinect development and could use some help getting started. I honestly have no idea where or how to start and I figured the easiest thing would
    be to obtain a simple project file and examine how it works myself, but I have been unable to find one. The easiest thing would be if I could obtain a project file for Visual Studio that is an application which overlays the Skeletal model over people in real
    time, though similar project files would also be appreciated. The app I am making largely involves things similar to overlaying the skeletal model on bodies so this would get me off to a great start and show me how the code is laid out within visual studio
    simultaneously. (I would prefer the code to be in C# if that is possible but other languages also work).
    I have checked out some of the guides for kinect development but they all assume you know how visual studio works so I cannot get very far in them. Thus if you know of a good guide to get me started with visual stuido AND the Kinect then I would be glad
    to here that as well.
    Alternatively, and I know this is not the right place for this, I have Matlab, which I know works for the Kinect v1 but can't find support for it regarding the v2, so if you could point me in the right direction on how to get it to work with the Kinect v2
    THAT would also work incredibly well as I am much more familiar with Matlab.
    I already have Visual Studio Ultimate 2013 installed, as well as the Kinect SDKv2.0, the physical Kinect for Windows v2, and my laptop meets all of the requirements for development so those are not issues.
    Thanks in advance for any advice you can give me!

    Hi Jicnon,
    Thank you for posting in MSND forum.
    Since this forum is discuss: Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System, and Visual Studio Editor. About your issue, I think that it is
    more related to the Kinect for Windows v2, so I suggest you can post this issue directly to Kinect for Windows v2 SDK forum:https://social.msdn.microsoft.com/Forums/en-US/home?forum=kinectv2sdk
    ,maybe you will get better support.
    In addition, I find a similar thread about your issue, maybe you will get some useful message.
    https://social.msdn.microsoft.com/Forums/en-US/92b23946-53d2-419c-8624-66e6c390617f/information-to-start-project-with-kinect-for-windows-v2?forum=kinectv2sdk
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to catch the event for change dropdown value in alv

    it has a column output by dropdown in alv. the dropdown type cl_salv_wd_uie_dropdown_by_idx.
    now the problem is if change the dropdown value, i want to catch the event to change another column value.
    how can i do it?

    This part contains other ALV initialization code
    *... init ColumnSettings
      DATA:
            lr_column_settings TYPE REF TO if_salv_wd_column_settings.
      lr_column_settings ?= wd_this->r_table.
      DATA:
            lt_columns TYPE salv_wd_t_column_ref.
      lt_columns = lr_column_settings->get_columns( ).
      DATA:
            ls_column     TYPE salv_wd_s_column_ref,
            lr_col_header TYPE REF TO cl_salv_wd_column_header,
            l_tooltip     TYPE string.
      LOOP AT lt_columns INTO ls_column.
        CASE ls_column-id.
          WHEN 'PLANETYPE'.
            DATA:
                  lr_drdn_by_key TYPE REF TO cl_salv_wd_uie_dropdown_by_key.
            CREATE OBJECT lr_drdn_by_key
              EXPORTING
                selected_key_fieldname = ls_column-id.
            lr_drdn_by_key->set_key_visible( abap_true ).
            ls_column-r_column->set_cell_editor( lr_drdn_by_key ).
          WHEN OTHERS.
        ENDCASE.
    ENDLOOP.
      DATA:
            node_info TYPE REF TO if_wd_context_node_info,
            lt_valueset   TYPE STANDARD TABLE OF wdr_context_attr_value,
            l_value       TYPE wdr_context_attr_value.
      node_info = wd_context->get_node_info( ).
      node_info = node_info->get_child_node( 'FLIGHT_INFO' ).
    data : lt_sflight type STANDARD TABLE OF sflight,
           ls_sflight like LINE OF lt_sflight.
    SELECT * from sflight into TABLE lt_sflight.
    LOOP at lt_sflight into ls_sflight.
      l_value-value = ls_sflight-planetype.
      l_value-text  = ls_sflight-planetype.
      INSERT l_value into TABLE lt_valueset.
      ENDLOOP.
      node_info->set_attribute_value_set(
      name = 'PLANETYPE'
      value_set = lt_valueset ).

  • Regarding the settings for Acknowledgements ?

    In the Application ACKs where and how we done the settings in XI server and ABAP side.
    I followed the below link
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f6d2d790-0201-0010-9382-b50b499b3fbe

    Hi,
    Application acknowledgments used to confirm that the asynchronous message has been successfully processed at the receiver. Acknowledgments can be used only together with async messages.
    So the configuration of ALE AUDIT is the acknowledgment for IDOC communication.
    ALEAUDIT is pretended to be used for Application Acknowledgements, in the case of Idoc to File, you can only send back a Transport Acknowledgement.
    The AleAduit sent in the case of Idoc to File if the file is posted successfuly is not actually a App Ack, and that is why we get the info Ack not possible.
    But, as the R3 might expect this Idoc, XI still sends it back to the Source R3 system.
    I guess this is the only logical conclusion.
    Refer below setp by step guides.
    This is good gudie
    How to Handle Acknowledgments for IDoc (NW7.0) --
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/903a0abc-e56e-2910-51a8-9dc616df56eb
    This Feature is Available under SP 18 and we are on SP16
    http://help.sap.com/saphelp_nw04/helpdata/en/42/c8f66bc7a56bb0e10000000a1553f6/frameset.htm
    Thanks
    Swarup

  • Regarding the delegate for NSTabView

    Hi all ,
    I am developing a small application where I have have NSTabView .My each TabItem has a view in it i.e. DropBox derived from NSView.I want to drag and drop and perfom some task on the corresponding selected TabItem.
    I have created an id delegate and set this as a delegate for an instance of MyController i.e(Control-Drag from instance of DropBox to instance of MyController).The problem I am facing is that the respondsToSelector method always returns NO.As a result if I select any TabItem it always returns zero(i.e the first tab item).Also it does not show any error while compiling.Following is my code:-
    //DropBox.m
    @interface NSObject ( MyObjectDelegateMethod)
    -(int)getTerminal;
    @end
    @implementation DropBox
    - (BOOL)performDragOperation: ( id <NSDraggingInfo>)sender
    if (![delegate respondsToSelector:@selector(getTerminal)]){
    NSLog( @"performDragOperation : Returning NO");
    return NO;
    switch([delegate getTerminal] )
    case 1 : //task1
    case2 : //task2
    - (id) delegate;
    NSLog( @"Returning the delegate for MyController.");
    return delegate;
    - (void)setDelegate: ( id)theDelegate;
    NSLog( @"The delegate for MyController is set");
    delegate = theDelegate;
    NSLog(@"delegate:%@", delegate);
    @end
    //DropBox.h
    #include"MyController.h"
    @interface DropBox : NSView
    id delegate;
    - (id)delegate;
    - (void)setDelegate: ( id)theDelegate;
    @end
    //MyController.m
    -(int) getTerminal
    return [myTab indexOfTabViewItem:[myTab selectedTabViewItem]];
    //MyController.h
    #import <Cocoa/Cocoa.h>
    @interface MyController : NSObject
    IBOutlet id myTab;
    -(int) getTerminal;
    @end
      Mac OS X (10.4.9)  

    Hi
    The stock monitoring for SC stocks at vendor can be done uswing ME2O report.
    If you want to see the total stocks available at vendor then use report MBLB

  • Regarding the nomenclature for include files in SAP

    Hi Group,
    I am presently enhancing a tool for the upgrade thing .The tool is used to derive all the effected objects,so, for that i need to know the nomenclature for include files in SAP.e,g all the include files for table maintenance generator starts with LSVIM.so, we don't need to analyse that include files,so in the similar fashion i need to know nomenclature for include files....
    Thanks,
    Ajitabh Aggarwal

    Hi Group,
    Basically i am working on developing an upgrade tool from 4.6/4.7 to Ecc 5.0/6.0,so for that i need certain information on include files.Basically i need to collect the affected zobjects whic i need to modify,So,for that i need to get the FUGR,FMs and includes which need to be corrected.e.g all deque and enque function modules are irrerelevant and similary includes starting with LSVIM and those that don't have function odules attached to them are for screen maintenance of tables.So, i need certain on inputs on that end.if u have anything,please do tell me.
    Thanks in Advance.
    Ajitabh Aggarwal

  • Can we achieve Vertical Collapsable trayOREnlarge Navigation Panel Feature

    Hi All,
    To overcome horizontal scroll issue of diffrerent sections of page, we thought
    a) Vertical Collapsable tray feature [like Collapsable tray we have - which gets shrinked of vertical height but horizontal width still retained]
    b) Enlarge Navigation Panel Feature - [like we have: Having 2 arrow marks which help to shrink or expand navigation panel of portal ]
    c) Collapsable Navigatiop Panel- Expand Navigation Panel
    Can we achieve any of above features by custom development or is there any standard reuse component.
    Please guide.
    Regards,
    Ganga
    Edited by: Gangadharayya Hiremath on Mar 25, 2009 12:24 PM

    hi all
    lets leave the above requirement aside.
    even if that works, it won't solve my purpose because
    i found that even if i get the gp's Contextual Panel / Process Activies Panel in a collapsable window
    or i hide the it, this won't appear in the collapsable window or get hidden when i initiate the process using the generated URL.
    As per my requirement, i need a URL which will initiate a new GP process and doesn't show
    Contextual Panel / Process Activies Panel on the left side.
    But the generated URL doesn't hide it.
    I think there should be some additional parameter which I should pass along the URL and the started process won't show the Contextual Panel / Process Activies Panel.
    If anyone knows how to get rid of Contextual Panel / Process Activies Panel, please reply.
    Thanks & Regards
    Vivek

Maybe you are looking for

  • Don't want mail account to sync with online email account

    I just got a new mac mini and will soon quit using my imac that I bought around 2006 10.6.8. I am setting up Mail. Can I get it to work the way my old mail did. The problem In the past my gmail would download to mail and if I deleted an email on my c

  • Error in connection to SEM, changes will not be saved

    Hi All, When i am creating an opportunity i am getting an error "Error in connection to SEM, changes will not be saved", and it does not allow me to save the opportunity. Regards, Radhika

  • Fnd_request.submit_request error with PA_SRS_DATES2 value set

    Hi, We are applications 12.0.6 with 10.2.0.3.0 database. I'm trying to submit the "PRC: Generate Draft Revenue for a Single Project" through fnd_request.submit_request and is erroring out with "PA: Error - Entered Accrue through date is not within op

  • Search feature not working most of the time

    My  search feature on my iPhone 4 rarely works anymore. After swiping screen from left to right or pressing HOME button nothing happens when I start typing. If I press the search button it will take a long time before responding.

  • LED CINEMA resolution

    I was working normally with my LED CINEMA connected to my airbook with a high resolution but now the maximun resolution is 1280 X 720. Anybody knows how to increase the resolution? In the LED CINEMA menu the maximun resolution that appears it is this