<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: HI............... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462003#M831848</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Creating a Context Menu &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the entries from a context menu that you define in the Menu Painter to construct a context menu on a screen or list using the method LOAD_GUI_STATUS from the global class CL_CTMENU. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Procedure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create a context menu from the Object Navigator: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select Program objects and choose Edit. &lt;/P&gt;&lt;P&gt;Enter the name of the ABAP program. &lt;/P&gt;&lt;P&gt;Choose GUI Status and enter the name of your context menu. &lt;/P&gt;&lt;P&gt;This is the name that you will pass to the importing parameter STATUS of the method LOAD_GUI_STATUS. &lt;/P&gt;&lt;P&gt;Choose Create.&lt;/P&gt;&lt;P&gt;The Create Status dialog box appears, containing fields for the status attributes. &lt;/P&gt;&lt;P&gt;Enter a short text. &lt;/P&gt;&lt;P&gt;Select the status type context menu. &lt;/P&gt;&lt;P&gt;Choose Continue. &lt;/P&gt;&lt;P&gt;The work area for the context menu appears. &lt;/P&gt;&lt;P&gt;In the Code column, enter a function code, and under Text, the corresponding text for the menu entry. &lt;/P&gt;&lt;P&gt;Repeat step 8 for each further function you want to add to your context menu. &lt;/P&gt;&lt;P&gt;If you want to enter a separator, choose Edit ® Insert ® Separator. &lt;/P&gt;&lt;P&gt;If you want to create a cascading menu, leave the Code field empty, and enter the menu text for the cascading menu. You can then open it by double-clicking, and enter the required entries. &lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have created a set of functions that can be used as a template for constructing a context menu. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For information about how to define the relevant processing logic in ABAP, refer to  Context Menus.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Mar 2008 05:25:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-12T05:25:25Z</dc:date>
    <item>
      <title>HI...............</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3461999#M831844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can we create a menu painter? What is context menu? How can we create a context menu?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 05:16:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3461999#M831844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T05:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: HI...............</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462000#M831845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Context Menus&lt;/P&gt;&lt;P&gt;The user interface of a screen is defined by a GUI status, which you define in the Menu Painter and assign the type Dialog status. For each dialog status, the system&lt;/P&gt;&lt;P&gt;automatically creates a standard context menu, which the user can display by clicking the righthand mouse button on the screen (or choosing Shift+F10). The standard context menu contains all of the function keys to which functions are assigned. It therefore makes it easy to access any function code that is available using the keyboard, since normally only the most important are assigned to the application toolbar.&lt;/P&gt;&lt;P&gt;However, as well as the standard context menu, you can define context-specific menus for any of the following screen elements:&lt;/P&gt;&lt;P&gt;  Input/output fields&lt;/P&gt;&lt;P&gt;  Text fields&lt;/P&gt;&lt;P&gt;  Table controls&lt;/P&gt;&lt;P&gt;  Group boxes&lt;/P&gt;&lt;P&gt;  Subscreens&lt;/P&gt;&lt;P&gt;When you select one of these elements using the right-hand mouse button, you can create a dynamic context menu in the ABAP program. This may contain any functions, and is not&lt;/P&gt;&lt;P&gt;restricted to function keys. You cannot assign context menus to pushbuttons, checkboxes, or radio buttons. However, you can assign unique function codes to them instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;The following example shows some of the technical possibilities for creating context menus, but&lt;/P&gt;&lt;P&gt;does not necessarily observe all of the style guidelines.&lt;/P&gt;&lt;P&gt;REPORT demo_dynpro_context_menu.&lt;/P&gt;&lt;P&gt;DATA: field1 TYPE i VALUE 10,&lt;/P&gt;&lt;P&gt;field2 TYPE p DECIMALS 4.&lt;/P&gt;&lt;P&gt;DATA: prog TYPE sy-repid,&lt;/P&gt;&lt;P&gt;flag(1) TYPE c VALUE 'X'.&lt;/P&gt;&lt;P&gt;DATA: ok_code TYPE sy-ucomm,&lt;/P&gt;&lt;P&gt;save_ok TYPE sy-ucomm.&lt;/P&gt;&lt;P&gt;prog = sy-repid.&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;MODULE status_0100 OUTPUT.&lt;/P&gt;&lt;P&gt;SET TITLEBAR 'TIT100'.&lt;/P&gt;&lt;P&gt;IF flag = 'X'.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'SCREEN_100' EXCLUDING 'REVEAL'.&lt;/P&gt;&lt;P&gt;ELSEIF flag = ' '.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'SCREEN_100' EXCLUDING 'HIDE'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'MOD'.&lt;/P&gt;&lt;P&gt;IF flag = 'X'.&lt;/P&gt;&lt;P&gt;screen-active = '1'.&lt;/P&gt;&lt;P&gt;ELSEIF flag = ' '.&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ELSEIF screen-name = 'TEXT_IN_FRAME'.&lt;/P&gt;&lt;P&gt;IF flag = 'X'.&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;P&gt;ELSEIF flag = ' '.&lt;/P&gt;&lt;P&gt;screen-active = '1'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;MODULE cancel INPUT.&lt;/P&gt;&lt;P&gt;LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;MODULE user_command_0100.&lt;/P&gt;&lt;P&gt;save_ok = ok_code.&lt;/P&gt;&lt;P&gt;CLEAR ok_code.&lt;/P&gt;&lt;P&gt;CASE save_ok.&lt;/P&gt;&lt;P&gt;WHEN 'HIDE'.&lt;/P&gt;&lt;P&gt;flag = ' '.&lt;/P&gt;&lt;P&gt;WHEN 'REVEAL'.&lt;/P&gt;&lt;P&gt;flag = 'X'.&lt;/P&gt;&lt;P&gt;WHEN 'SQUARE'.&lt;/P&gt;&lt;P&gt;field2 = field1 ** 2.&lt;/P&gt;&lt;P&gt;WHEN 'CUBE'.&lt;/P&gt;&lt;P&gt;field2 = field1 ** 3.&lt;/P&gt;&lt;P&gt;WHEN 'SQUAREROOT'.&lt;/P&gt;&lt;P&gt;field2 = field1 ** ( 1 / 2 ).&lt;/P&gt;&lt;P&gt;WHEN 'CUBICROOT'.&lt;/P&gt;&lt;P&gt;field2 = field1 ** ( 1 / 3 ).&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;*******************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Callback-Routines &lt;/P&gt;&lt;P&gt;*******************************************************&lt;/P&gt;&lt;P&gt;FORM on_ctmenu_text USING l_menu TYPE REF TO cl_ctmenu.&lt;/P&gt;&lt;P&gt;CALL METHOD:l_menu-&amp;gt;load_gui_status&lt;/P&gt;&lt;P&gt;EXPORTING program = prog&lt;/P&gt;&lt;P&gt;status = 'CONTEXT_MENU_1'&lt;/P&gt;&lt;P&gt;menu = l_menu.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;FORM on_ctmenu_frame USING l_menu TYPE REF TO cl_ctmenu.&lt;/P&gt;&lt;P&gt;CALL METHOD:l_menu-&amp;gt;load_gui_status&lt;/P&gt;&lt;P&gt;EXPORTING program = prog&lt;/P&gt;&lt;P&gt;status = 'CONTEXT_MENU_2'&lt;/P&gt;&lt;P&gt;menu = l_menu,&lt;/P&gt;&lt;P&gt;l_menu-&amp;gt;load_gui_status&lt;/P&gt;&lt;P&gt;EXPORTING program = prog&lt;/P&gt;&lt;P&gt;status = 'CONTEXT_MENU_1'&lt;/P&gt;&lt;P&gt;menu = l_menu,&lt;/P&gt;&lt;P&gt;l_menu-&amp;gt;set_default_function&lt;/P&gt;&lt;P&gt;EXPORTING fcode = 'HIDE'.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;FORM on_ctmenu_reveal USING l_menu TYPE REF TO cl_ctmenu.&lt;/P&gt;&lt;P&gt;CALL METHOD:l_menu-&amp;gt;load_gui_status&lt;/P&gt;&lt;P&gt;EXPORTING program = prog&lt;/P&gt;&lt;P&gt;status = 'CONTEXT_MENU_3'&lt;/P&gt;&lt;P&gt;menu = l_menu,&lt;/P&gt;&lt;P&gt;l_menu-&amp;gt;load_gui_status&lt;/P&gt;&lt;P&gt;EXPORTING program = prog&lt;/P&gt;&lt;P&gt;status = 'CONTEXT_MENU_1'&lt;/P&gt;&lt;P&gt;menu = l_menu,&lt;/P&gt;&lt;P&gt;l_menu-&amp;gt;set_default_function&lt;/P&gt;&lt;P&gt;EXPORTING fcode = 'REVEAL'.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;FORM on_ctmenu_input USING l_menu TYPE REF TO cl_ctmenu.&lt;/P&gt;&lt;P&gt;DATA calculate_menu TYPE REF TO cl_ctmenu.&lt;/P&gt;&lt;P&gt;CREATE OBJECT calculate_menu.&lt;/P&gt;&lt;P&gt;CALL METHOD: calculate_menu-&amp;gt;add_function&lt;/P&gt;&lt;P&gt;EXPORTING fcode = 'SQUARE'&lt;/P&gt;&lt;P&gt;text = text-001,&lt;/P&gt;&lt;P&gt;calculate_menu-&amp;gt;add_function&lt;/P&gt;&lt;P&gt;EXPORTING fcode = 'CUBE'&lt;/P&gt;&lt;P&gt;text = text-002,&lt;/P&gt;&lt;P&gt;calculate_menu-&amp;gt;add_function&lt;/P&gt;&lt;P&gt;EXPORTING fcode = 'SQUAREROOT'&lt;/P&gt;&lt;P&gt;text = text-003,&lt;/P&gt;&lt;P&gt;calculate_menu-&amp;gt;add_function&lt;/P&gt;&lt;P&gt;EXPORTING fcode = 'CUBICROOT'&lt;/P&gt;&lt;P&gt;text = text-004,&lt;/P&gt;&lt;P&gt;l_menu-&amp;gt;add_submenu&lt;/P&gt;&lt;P&gt;EXPORTING menu = calculate_menu&lt;/P&gt;&lt;P&gt;text = text-005.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 05:21:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462000#M831845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T05:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: HI...............</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462001#M831846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using SM41 we can create menu painter.&lt;/P&gt;&lt;P&gt;in this we can keep our own menu options in the menu bar..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;context menu : go to se80.&lt;/P&gt;&lt;P&gt;give your package name.press ente.&lt;/P&gt;&lt;P&gt;you will get all objects created under that package.&lt;/P&gt;&lt;P&gt;right click on any one object you will get some options that is called context menu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think we can't create context menu.&lt;/P&gt;&lt;P&gt;just we will use the already existing context menus.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;swami.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 05:21:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462001#M831846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T05:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: HI...............</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462002#M831847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.sap.com/saphelp_47x200/helpdata/en/e2/5d3bb2e06411d295a900a0c94260a5/frameset.htm" target="test_blank"&gt;https://help.sap.com/saphelp_47x200/helpdata/en/e2/5d3bb2e06411d295a900a0c94260a5/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 05:24:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462002#M831847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T05:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: HI...............</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462003#M831848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Creating a Context Menu &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the entries from a context menu that you define in the Menu Painter to construct a context menu on a screen or list using the method LOAD_GUI_STATUS from the global class CL_CTMENU. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Procedure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create a context menu from the Object Navigator: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select Program objects and choose Edit. &lt;/P&gt;&lt;P&gt;Enter the name of the ABAP program. &lt;/P&gt;&lt;P&gt;Choose GUI Status and enter the name of your context menu. &lt;/P&gt;&lt;P&gt;This is the name that you will pass to the importing parameter STATUS of the method LOAD_GUI_STATUS. &lt;/P&gt;&lt;P&gt;Choose Create.&lt;/P&gt;&lt;P&gt;The Create Status dialog box appears, containing fields for the status attributes. &lt;/P&gt;&lt;P&gt;Enter a short text. &lt;/P&gt;&lt;P&gt;Select the status type context menu. &lt;/P&gt;&lt;P&gt;Choose Continue. &lt;/P&gt;&lt;P&gt;The work area for the context menu appears. &lt;/P&gt;&lt;P&gt;In the Code column, enter a function code, and under Text, the corresponding text for the menu entry. &lt;/P&gt;&lt;P&gt;Repeat step 8 for each further function you want to add to your context menu. &lt;/P&gt;&lt;P&gt;If you want to enter a separator, choose Edit ® Insert ® Separator. &lt;/P&gt;&lt;P&gt;If you want to create a cascading menu, leave the Code field empty, and enter the menu text for the cascading menu. You can then open it by double-clicking, and enter the required entries. &lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have created a set of functions that can be used as a template for constructing a context menu. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For information about how to define the relevant processing logic in ABAP, refer to  Context Menus.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 05:25:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462003#M831848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T05:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: HI...............</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462004#M831849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  &lt;STRONG&gt;Jhansi&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to  &lt;STRONG&gt;se41&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The Menu Painter Interface&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the initial screen of the Menu Painter, you choose a status of a program, and then the work area is displayed. Here, you can edit all of the components of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the worksheet, you can create a menu bar, define menu functions, assign F keys, customize the standard tool bar, and create an application toolbar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To maintain the menu bar, application toolbar, or function key settings, click the Expand icon next to the relevant area. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interface Object List&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Menu Painter keeps lists of all components of the GUI. These are used for component administration, and have functions such as Create, Rename, Copy, and so on. For example, the menu list contains the entries from all of the menu bars in the program. In all, there are six different lists (status list, menu list, function list, title list, menu bar list and function key setting list). You can access any of these lists from the Goto menu of the worksheet, or from the initial screen of the Menu Painter. Regardless of where you make changes, on the worksheet or through a list view, the Menu Painter updates and saves your changes in the same manner. You can also change menu texts, function texts, icons, title texts and short documentation if you access the list in change mode. The lists not only give a rapid overview of the interface components for the whole program, they also make it easier to maintain their text entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saving Your Work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While you are within the Menu Painter, you do not have to save your work each time you move from the Worksheet view to a display list view. In principle, you only need to save your work before you leave the Menu Painter altogether. You do this using the Save function. However, if you do forget to save, the system will remind you by displaying a dialog box before you leave the Menu Painter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Activating the Interface&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;None of the changes you make to your interface are visible at runtime until you activate it. Once you have completed and tested your changes, you must reactivate the interface. When you activate the interface, the system creates a load version of it. After activation, your last set of changes becomes visible in all programs that use the interface. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For &lt;STRONG&gt;Context Menus&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/db961235c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/9f/db961235c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Eshwar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 05:31:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462004#M831849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T05:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: HI...............</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462005#M831850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please be more specific about using the method LOAD_GUI_STATUS from the global class CL_CTMENU.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 05:56:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3462005#M831850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T05:56:58Z</dc:date>
    </item>
  </channel>
</rss>

