ALV in subscreen that was defined inside of report (not SE51)

Hello Gurus,
I've one problem and I'm out of ideas. I've defined in code tapstrips like below
SELECTION-SCREEN BEGIN OF SCREEN 102 AS SUBSCREEN.
SELECTION-SCREEN END OF SCREEN 102.
SELECTION-SCREEN BEGIN OF SCREEN 0103 AS SUBSCREEN.
SELECTION-SCREEN END OF SCREEN 0103.
SELECTION-SCREEN BEGIN OF TABBED BLOCK one FOR 25 LINES.
  SELECTION-SCREEN TAB (15) bl_corr USER-COMMAND ucomm1 DEFAULT SCREEN 102.
  SELECTION-SCREEN TAB (15) bl_addit USER-COMMAND ucomm2 DEFAULT SCREEN 103.
SELECTION-SCREEN END OF BLOCK one.
In screen 103 I would like to show ALV. How can I achive this? When I'm using code below nothing is being displayed. I think that problem lies in container. When I execute method IS_VALID of container I'm getting 0. When I'm passing empty parameter during creation of grid object (no conatiner) then I'm getting results on whole screen.
INITIALIZATION.
DATA: go_container1 TYPE REF TO cl_gui_docking_container,
       go_grid1 TYPE REF TO cl_gui_alv_grid,
       gs_fieldcatalog TYPE LVC_T_FCAT.
CREATE OBJECT go_container1
  EXPORTING
    REPID                       = sy-repid
    DYNNR                       = '0103'
    NAME                        = 'CUSTOM_AREA'.
CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
EXPORTING
    I_STRUCTURE_NAME             = '/VFE/JTO_SCI_RPL'
  CHANGING
    CT_FIELDCAT                  = gs_fieldcatalog.
CREATE OBJECT go_grid1
    EXPORTING i_parent =  go_container1.
  CALL METHOD GO_GRID1->SET_TABLE_FOR_FIRST_DISPLAY
    CHANGING
      IT_OUTTAB                     = gt_replacment_lines
      IT_FIELDCATALOG               = gs_fieldcatalog.
BR
Marcin Cholewczuk

HI,
this is how i achived alv on tabstrip.
REPORT  zreport_alv_tabstrip.
TYPES:
  BEGIN OF type_s_flight,
    carrid   LIKE sflight-carrid,
    connid   LIKE sflight-connid,
    fldate   LIKE sflight-fldate,
    seatsmax LIKE sflight-seatsmax,
    seatsocc LIKE sflight-seatsocc,
  END OF type_s_flight,
  BEGIN OF type_s_sbook,
    carrid   LIKE sflight-carrid,
    connid   LIKE sflight-connid,
    bookid   LIKE sbook-bookid,
  END OF type_s_sbook.
CONSTANTS:
  BEGIN OF c_tab1,
    tab1 LIKE sy-ucomm VALUE 'TAB1_FC1',
    tab2 LIKE sy-ucomm VALUE 'TAB1_FC2',
  END OF c_tab1.
CONTROLS:  tab1 TYPE TABSTRIP.
DATA:
  t_flight TYPE TABLE OF type_s_flight,
  fs_flight LIKE LINE OF t_flight,
  t_book TYPE TABLE OF type_s_sbook,
  fs_book LIKE LINE OF t_book,
  c_container TYPE REF TO cl_gui_custom_container,
  c_container1 TYPE REF TO cl_gui_custom_container,
  grid TYPE REF TO cl_gui_alv_grid,
  grid1 TYPE REF TO cl_gui_alv_grid,
  t_fcat TYPE lvc_t_fcat,
  t_fcat1 TYPE lvc_t_fcat,
  fcat LIKE LINE OF t_fcat,
  fcat1 LIKE LINE OF t_fcat,
  gs_layout TYPE  lvc_s_layo,
  ok_code LIKE sy-ucomm,
  BEGIN OF g_tab1,
    subscreen   LIKE sy-dynnr,
    prog        LIKE sy-repid VALUE 'YH1494_ALV_TABSTRIP',
    pressed_tab LIKE sy-ucomm VALUE c_tab1-tab1,
  END OF g_tab1.
SELECT carrid   connid   fldate   seatsmax    seatsocc  FROM sflight   INTO TABLE t_flight  UP TO 100 ROWS.
SELECT carrid    connid   bookid  FROM sbook  INTO TABLE t_book UP TO 50 ROWS.
gs_layout-sel_mode = 'D'.
gs_layout-no_merging = 'X'.
gs_layout-zebra = 'X'.
fcat-fieldname = 'CARRID'.
fcat-outputlen = 15.
fcat-ref_table = 'SFLIGHT'.
fcat-key_sel ='X'.
APPEND fcat TO t_fcat.
fcat-fieldname = 'CONNID'.
fcat-outputlen = 15.
fcat-ref_table = 'SFLIGHT'.
fcat-key_sel ='X'.
APPEND fcat TO t_fcat.
fcat-fieldname = 'FLDATE'.
fcat-outputlen = 15.
fcat-ref_table = 'SFLIGHT'.
fcat-key_sel ='X'.
APPEND fcat TO t_fcat.
fcat-fieldname = 'SEATSMAX'.
fcat-outputlen = 15.
fcat-ref_table = 'SFLIGHT'.
fcat-key_sel ='X'.
APPEND fcat TO t_fcat.
fcat-fieldname = 'SEATSOCC'.
fcat-outputlen = 15.
fcat-ref_table = 'SFLIGHT'.
fcat-key_sel ='X'.
APPEND fcat TO t_fcat.
fcat1-fieldname = 'CARRID'.
fcat1-outputlen = 15.
fcat1-ref_table = 'SBOOK'.
fcat1-key_sel ='X'.
APPEND fcat1 TO t_fcat1.
fcat1-fieldname = 'CONNID'.
fcat1-outputlen = 15.
fcat1-ref_table = 'SFLIGHT'.
fcat1-key_sel ='X'.
APPEND fcat1 TO t_fcat1.
fcat1-fieldname = 'BOOKID'.
fcat1-outputlen = 15.
fcat1-ref_table = 'SBOOK'.
fcat1-key_sel ='X'.
APPEND fcat1 TO t_fcat1.
CALL SCREEN 100.
MODULE tab1_active_tab_set OUTPUT.
  tab1-activetab = g_tab1-pressed_tab.
  CASE g_tab1-pressed_tab.
    WHEN c_tab1-tab1.
      g_tab1-subscreen = '0101'.
    WHEN c_tab1-tab2.
      g_tab1-subscreen = '0102'.
    WHEN OTHERS.
  ENDCASE.
ENDMODULE.                    "TAB1_ACTIVE_TAB_SET OUTPUT
MODULE tab1_active_tab_get INPUT.
  ok_code = sy-ucomm.
  CASE ok_code.
    WHEN c_tab1-tab1.
      g_tab1-pressed_tab = c_tab1-tab1.
    WHEN c_tab1-tab2.
      g_tab1-pressed_tab = c_tab1-tab2.
    WHEN OTHERS.
  ENDCASE.
ENDMODULE.                    "TAB1_ACTIVE_TAB_GET INPUT
MODULE status_0110 OUTPUT.
  CREATE OBJECT c_container
    EXPORTING
      container_name              = 'C_CONTAINER'
    EXCEPTIONS
      cntl_error                  = 1
      cntl_system_error           = 2
      create_error                = 3
      lifetime_error              = 4
      lifetime_dynpro_dynpro_link = 5
      OTHERS                      = 6.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
  CREATE OBJECT grid
    EXPORTING
      i_parent          = c_container
    EXCEPTIONS
      error_cntl_create = 1
      error_cntl_init   = 2
      error_cntl_link   = 3
      error_dp_create   = 4
      OTHERS            = 5.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
  CALL METHOD grid->set_table_for_first_display
    EXPORTING
      is_layout                     = gs_layout
    CHANGING
      it_outtab                     = t_flight
      it_fieldcatalog               = t_fcat
    EXCEPTIONS
      invalid_parameter_combination = 1
      program_error                 = 2
      too_many_lines                = 3
      OTHERS                        = 4.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
ENDMODULE.                 " STATUS_0110  OUTPUT
MODULE user_command_0100 INPUT.
  CASE sy-ucomm.
    WHEN 'BACK'.
      LEAVE PROGRAM.
  ENDCASE.
ENDMODULE.                 " USER_COMMAND_0100  INPUT
MODULE status_0100 OUTPUT.
  SET PF-STATUS '100'.
SET TITLEBAR 'xxx'.
ENDMODULE.                 " STATUS_0100  OUTPUT
MODULE status_0102 OUTPUT.
SET PF-STATUS 'xxxxxxxx'.
SET TITLEBAR 'xxx'.
  CREATE OBJECT c_container1
    EXPORTING
      container_name              = 'C_CONTAINER1'
    EXCEPTIONS
      cntl_error                  = 1
      cntl_system_error           = 2
      create_error                = 3
      lifetime_error              = 4
      lifetime_dynpro_dynpro_link = 5
      OTHERS                      = 6.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
  CREATE OBJECT grid
    EXPORTING
      i_parent          = c_container1
    EXCEPTIONS
      error_cntl_create = 1
      error_cntl_init   = 2
      error_cntl_link   = 3
      error_dp_create   = 4
      OTHERS            = 5.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
  CALL METHOD grid->set_table_for_first_display
    EXPORTING
      is_layout                     = gs_layout
    CHANGING
      it_outtab                     = t_book
      it_fieldcatalog               = t_fcat1
    EXCEPTIONS
      invalid_parameter_combination = 1
      program_error                 = 2
      too_many_lines                = 3
      OTHERS                        = 4.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
ENDMODULE.                 " STATUS_0102  OUTPUT
Regards and Best wishes.

Similar Messages

  • HT201441 how can i activate my phone when i can't remember the apple ID that was logged inside my iphone?

    how can i activate my phone when i can't remember the apple ID that was logged inside my iphone?

    To find your Apple IDs go here...
    Look up your old and forgotten Apple ID

  • Just to version 7.Like all updates,ad-ons get disabled.The ad-ons that was disabled,where I am not able to open my emails.Why can't FireFox have updates without disabling ad-ons we need to work with?

    Just to version 7.Like all updates,ad-ons get disabled.The ad-ons that was disabled,where I am not able to open my emails.Why can't FireFox have updates without disabling ad-ons we need to work with?

    ''guigs2 [[#answer-672422|said]]''
    <blockquote>
    NoScript stops cookies, please disable this addon/extension as well as make sure that the language en-us is installed.
    # 1) Open up the Firefox Preferences tab. You can do this by typing about:preferences in the URL bar.
    # 2) Click "Content"
    # 3) Next to "Languages", click "Choose"
    # 4) Select "English/United States [en-us]", click "Add"
    # 5) re-open "about:accounts"
    # 6) Click "Get Started"
    </blockquote>
    Thank you for replying. Unfortunately, I already did all of these things. As you can see from the below screenshot, the language is already set. Also, this screenshot was taken in Safe Mode, so NoScript is not enabled. About:accounts still says I need to enable cookies for some reason. So, this solution didn't work....

  • Query on virtual column that is defined in XMLIndex does not use the index

    Hello,
    I am facing an issue in executing queries on a virtual column that is defined in an XMLIndex: it appears as if the index is not used.
    Database details:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE 11.2.0.3.0 Production
    TNS for 64-bit Windows: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    For this use case the XML documents adhere to the following XSD and are stored in an XMLType column in a table:
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns="http://a_name_space/v1"
        targetNamespace="http://a_name_space/v1"
        elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
        <xsd:element name="fields">
            <xsd:complexType>
                <xsd:sequence>
                    <xsd:element name="field" maxOccurs="unbounded">
                        <xsd:complexType>
                            <xsd:choice>
                                <xsd:element name="value" minOccurs="1" maxOccurs="1">
                                    <xsd:complexType>
                                        <xsd:simpleContent>
                                            <xsd:extension base="notEmptyString4000Type"/>
                                        </xsd:simpleContent>
                                    </xsd:complexType>
                                </xsd:element>
                                <xsd:element name="values" minOccurs="1" maxOccurs="1">
                                    <xsd:complexType>
                                        <xsd:sequence>
                                            <xsd:element name="value" minOccurs="1" maxOccurs="1">
                                                <xsd:complexType>
                                                    <xsd:simpleContent>
                                                        <xsd:extension base="notEmptyString4000Type">
                                                            <xsd:attribute name="startDate" type="xsd:date" use="required"/>
                                                            <xsd:attribute name="endDate" type="xsd:date" />
                                                        </xsd:extension>
                                                    </xsd:simpleContent>
                                                </xsd:complexType>
                                            </xsd:element>
                                        </xsd:sequence>
                                    </xsd:complexType>
                                </xsd:element>
                            </xsd:choice>
                            <xsd:attribute name="name" type="string30Type" use="required"/>
                            <xsd:attribute name="type" type="dataType" use="required"/>
                        </xsd:complexType>
                    </xsd:element>
                </xsd:sequence>
            </xsd:complexType>
        </xsd:element>
        <xsd:simpleType name="dataType">
            <xsd:annotation>
                <xsd:documentation>Char, Date, Number</xsd:documentation>
            </xsd:annotation>
            <xsd:restriction base="xsd:string">
                <xsd:enumeration value="C"/>
                <xsd:enumeration value="D"/>
                <xsd:enumeration value="N"/>
            </xsd:restriction>
        </xsd:simpleType>
        <xsd:simpleType name="string30Type">
            <xsd:restriction base="xsd:string">
                <xsd:maxLength value="30"/>
            </xsd:restriction>
        </xsd:simpleType>
        <xsd:simpleType name="notEmptyString4000Type">
            <xsd:restriction base="xsd:string">
                <xsd:maxLength value="4000"/>
                <xsd:pattern value=".+"/>
            </xsd:restriction>
        </xsd:simpleType>
    </xsd:schema>A field can have a single value as well as multiple values.
    The XMLIndex is defined as follows:
    CREATE INDEX test_xmltype_idx ON test_xmltype (additional_fields) INDEXTYPE IS XDB.XMLIndex
    PARAMETERS
    XMLTable dt_fld_tab (TABLESPACE "TAB_SPACE" COMPRESS FOR OLTP) ''fields/field''
    COLUMNS
    name varchar2(30 char) PATH ''@name''
    ,dataType varchar2(1 char) PATH ''@type''
    ,val varchar2(4000 char) PATH ''value/text()''
    ,vals XMLType PATH ''values/value'' VIRTUAL
    XMLTable dt_fld_multi_value_tab (TABLESPACE "TAB_SPACE" COMPRESS FOR OLTP) ''value'' passing vals
    COLUMNS
    val varchar2(4000) PATH ''text()''
    ,startDate varchar2(30 char) PATH ''@startDate''
    ,endDate varchar2(30 char) PATH ''@endDate''
    ');The following b-tree indexes are defined:
    create index dt_field_name_idx on dt_fld_tab (name);
    create index dt_field_value_idx on dt_fld_tab (val);
    create index dt_field_values_idx on dt_fld_multi_value_tab (val);And stats are properly computed before the queries are executed:
    call dbms_stats.gather_table_stats(user, 'test_xmltype', estimate_percent => null);Queries for single values are cost efficient and fast. With 600K rows in the table these return with 0.002 seconds.
    Queries for multi-valued fields / elements are not though, these result in a full table scan.
    Sample XML snippet:
    <fields>
      <field name="multiVal" type="C">
        <values>
          <value startDate="2013-01-01" endDate="2013-01-01">100</value>
          <value startDate="2014-01-01">120</value>
        </values>
      </field>
    </fields>Examples of costly and slow queries:
    select id from test_xmltype
    where xmlexists('/fields/field/@name="multiVal"' passing additional_fields)
    and xmlexists('/fields/field/values/value[@startDate="2013-01-01"]' passing additional_fields)
    and xmlexists('/fields/field/values/value[text()="100"]' passing additional_fields)
    select id from test_xmltype
    where xmlexists('/fields/field/@name="multiVal"' passing additional_fields)
    and xmlexists('/fields/field/values/value[@startDate="2013-01-01" and .="100"]' passing additional_fields);Whereas the following query on the multi valued field is fast:
    select id from test_xmltype
    where xmlexists('/fields/field/@name="multiVal"' passing additional_fields)
    and xmlexists('/fields/field/values/value[@startDate="2013-01-01"]' passing additional_fields);For the XPath /fields/field/values/value[@startDate="2013-01-01"] the index is used.
    Suspected cause: XPath issue for the value of a multi valued field, e.g. /fields/field/values/value[text()="aValue"].
    Any hints are appreciated: what am I overlooking here?
    Thanks in advance,
    -Sjoerd
    Edited by: user615230 on May 27, 2013 7:46 AM

    Hello,
    This is using binary XML. The table creation script is:
    create table test_xmltype
    (id number(14,0) not null primary key
    ,member_code varchar2(30 char) not null
    ,period_code varchar2(30 char) not null
    ,amount number(12,2) not null
    ,additional_fields xmltype
    );The schema is not registered in the database. Is that required? It is primarily used to generate Java classes that will be used in order to construct the XML documents.
    And you are right: for our initial investigation the sample XML documents are generated with a PLSQL routine and do not contain namespaces. But for the single valued fields there are also no namespaces and the queries on these are executed with very satisfactory plans.
    Thanks for the swift reply.
    -Sjoerd

  • Hi ı have iphone 5 that was suddenly shut down and not restart again ?

    hi battery almost % 40 and ı checked later ı realized that ıt was closed. later it is not opened and charge ?

    Hi,
    Have you tried a Reset...
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    The Apple logo will Appear and then Disappear...
    Usually takes about 10 - 15 Seconds...
    Turn the Phone On...
    If that does not help... See Here:
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

  • How do I delete an IOS update that was downloaded in iTunes but not yet installed on iPad

    I am currently running IOS 5.1.1 on my iPad.  When IOS 6 came out, I connected my iPad to my computer and checked for the update through iTunes 10.7.0.21.  When it found it, I had it only download it and not install it.  I have yet to install IOS 6 and I now see that the iPad shows IOS 6.01 as an update.  But, if I connect the iPad to my computer and fire up iTunes, it says IOS 6 is ready to be installed.
    How do I remove IOS 6 from iTunes and have it recheck and find IOS 6.01 without installing the IOS 6 first?  Is it possible.  I tried removing the iPad2,3_6.0_10A403_Restore file from the c://users/USER/AppData/Roaming/Apple Computer/iTunes/iPad Software Updates folder and restart iTunes but it still tells me that IOS 6 is ready to be installed.
    I would like to remove IOS 6 from iTunes so that I can download the IOS 6.01 version and go straight to that instead of installing IOS 6 first and then having to download and install IOS 6.01 after.
    Any thoughts greatly appreciated.
    Thanks.
    - Dan

    James Ward4,
    Thanks for your quick reply.
    Although I could install directly to the iPad, I prefer to go through iTunes so I have a copy of the install file just in case of install issues.
    As for downloading the newer update to iTunes, could you elaborate on that.  The only way I know how to download the update is to connect the iPad to the computer and fire up iTunes and then have it check for updates.  Problem now is that since IOS 6 is sitting there waiting to be installed, I don't have the option to check for updates, just to install IOS 6.
    As for installing IOS 6 first and then installing IOS 6.01, I was hoping to avoid the double install if I could while still going through iTunes.
    Thanks again for your thoughts.
    - Dan

  • So, I have an external hard drive that was connected to my mac not able to access.

    Under Disk Utility I was able to see it how ever I was unable to access it. So I made a partition thinking that might help. However I think it erased that the disk? Can I recover or undo? or remove the partition? what can I do to get the information from it?? Please help!

    You have erased your drive, if this data is important stop using the drive immediately and contact a data rescue company, you may also try some of the data recovery software available, I have no recommendations for that stuff (I backup so don't have a need for recovery)

  • Have tried several times to do all that was suggested BUT itunes still not downloading correctly....still recieving---iTunes.exe - entry point not found - the procedure entry point. AVCFPlayerSppliesMediaSe;ectopmCriteriaAutomaticallKey could not be locat

    HELP!! I'm trying to reinstall my iTunes BUT keep getting this---iTunes.exe-entry point not found-the procedure entry point AVCPlayerSuppliesMediaSe;ectopmCriteriaAutomaticallKey Could not be located in the dynamic link library AVFFoundationCF.dll.
    itunes was not installed correctly. error 7 (windows error 127) --
    I have already tried (4 times) completely unstalling and reinstalling as was suggested But didn't fix the problem.
    HELP---CAN ANYONE SUGGEST SOMETHING ELSE TO TRY??

    HELP!! I'm trying to reinstall my iTunes BUT keep getting this---iTunes.exe-entry point not found-the procedure entry point AVCPlayerSuppliesMediaSe;ectopmCriteriaAutomaticallKey Could not be located in the dynamic link library AVFFoundationCF.dll.
    That one can be produced if you have an older version of Apple Application Support on the PC than is required by iTunes version 11.1.4.62. (The required version of Apple Application Support is included in the standard iTunes installers, but for some reason it hasn't been updating properly for some folks.)
    Let's try updating your Apple Application Support to version 3.0 by doing a standalone Apple Application Support install.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, can you launch iTunes without the error now?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • How do I reinstall a "System/Library /Extension CNQL123_ClassicNotSize.kext"that was improperly installed and can not be used?  It is causing iTunes to crash

    I instaled the latest Safari Update and iTunes Update and now when I select Podcasts it crashes iTunes--it seems to only be the Podcast option that causes the crash. So how do i install or reinstall the system extension listed above, that cannot be used?  The error message suggest that I reinstall or contact the vendor?????  I also added an app to my dashboard which I have delected.  Should I reinstall the system that came with the mini ---Leopard 10.6.2?

    If it has an uninstaller use that. Be sure you delete the kext file; and you will need to restart afterwards.
    If there is no uninstaller then see the following:
    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, Easy Find, instead.  Download Easy Find at VersionTracker or MacUpdate.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
    AppZapper
    Automaton
    Hazel
    CleanApp
    Yank
    SuperPop
    Uninstaller
    Spring Cleaning
    Look for them at VersionTracker or MacUpdate.
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • Creating Context Menu in ALV tree defined inside DOCKING CONTAINER

    Dear Experts.
    Can you please tell me which EVENTS should i use in CLASS: CL_GUI_SIMPLE_TREE to get a Context menu after right click on any tree node in ALV Tree which has been defined inside a Docking Container.
    Regards Arnab.

    Hi,
    Check Program SAPSIMPLE_TREE_CONTEXT_MEN_DEM and check event node_context_menu_request
    Hope this helps you.
    Thanks,
    Prashanth
    Edited by: Prashanth KR on Jun 2, 2009 7:50 AM

  • HT5691 Why can't I purchase applecare support for my iphone5 that was bought from ATT?

    Why can't I purchase applecare support for my iphone5 that was bought from ATT?

    not online like I usually do.
    when I enter the serial number, it shows standard warranty with no option to purchase exended applecare+

  • Print all filters defined in a report

    I would like to print all filters that are defined in a report using DeskI or WebI (both version XI R2 and 3.1)...
    In DeskI there are 2 functions in the "Insert" > "Special Field" menu: "Global Filters" and "Query Prompt"; however, I also want to list all other filters that are set on tables in the report...
    It seems that it's not possible in WebI / WebI Rich Client at all...
    Thanks!

    change your query with like
    SELECT * FROM TABLE1 WHERE ACCEPTED like :P_ACCEPTED.
    and send % as backed value against ALL

  • After refreshing ALV display, set it to the current cell that was modified.

    Hello Experts,
    I am currently using cl_gui_alv_grid for my ALV grid display. I have 1 editable column
    which lets users input values. Now, When users press 'ENTER' in the keyboard I refresh
    the ALV display to reflect the changes done. But the display always "moves back" to the first column
    so it is tiresome to find the current cell that was modified. My question is, how do I set the ALV
    display to just "stay put" in the current cell that was modified after pressing 'ENTER'?
    Hope you can help me guys.Thank you and take care!

    Check this link
    ALV scroll bar

  • View zview is not defined in  the runtime repository that was loaded.

    Hi,
    I created an enhancement for component BT111H_OPPT and created a view "ZVIEW" in it.When i clock on my ZVIEW i am getting the following message:
    view zview is not defined in  the runtime repository that was loaded.
    What does that imply?
    Isnt the view defined in the runtime repositry when we use the wizard to create it?
    Thanks in Advance.
    Regards
    Shilpi

    Hi Shilpi,
    Did you add your view into the Viewset/Window in Repository Browser ?
    Good Luck
    Eli Steklov
    Please Reward Points if it Helped

  • I forgot my iPod at a bomb fire at school and it was on the field and water got on it everything works but you can tell that theirs water inside how much would it cost to replace the screen at apple

    I forgot my iPod at a bomb fire at school and it was on the field and water got on it everything works but you can tell that theirs water inside how much would it cost to replace the screen at apple

    Place the iPod in a sealed container with a desiccant for a week. Uncooked rice works. Change the desiccant every day or so for a week.
    Do not charge or turn on the iPod until dry. Then try:
    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       
    Apple will exchange your iPod for a refurbished one for
    $199 for a 64 GB 4g
    $99 for the other 4G iPod
    $149 for 5G iPod.
    They do not fix yours.
      Apple - iPod Repair price

Maybe you are looking for

  • Costing in case of ETO Scenario

    Hi Experts, We have ETO scenario. There is sales order with reference to project  and absed on that production for In House Produced materials ( FG, HALB) and procurement for  some HALB, Raw Material will happen.PS<  moduel alongwith SD and PP are in

  • Do I really want this software?

    I want to make several YouTube videos.  I want them to look polished & professional.  Each video will consist of high-quality, high-res still photographs which will be panned from inside and, at the end, panned out to full frame.  (I probably am usin

  • MBP not going to sleep

    I have had my MacBook Pro for a little over a week now and i am noticing that it is not going to sleep according to my energy saver preferences, or at all for that matter. Any ideas?

  • New Win7 install. Can't open html files. Get "there was a problem sending command to the program".

    When I try to open an html file on my hard drive, I get a "There was a problem sending the command to the program" error. There is no way I can open a local html file with firefox, even though Win7 sees it these files as Firefox documents. This is a

  • Only display the first character issue

    Hi, I'm using CR 2008 to generate reports. I use oracle database. I use a stored procedure to get data and everything working fine ,it return correct data. I have five details section but i display one details section and i suppress others My issue i