Glassfish 2.1.1 locale filter

I've a locale filter which sets the locale by the url and forwards the reply, and stopped working after update to Glassfish 2.1.1. There's something changed ?...
The filter code:
        if (relativePath.contains("/es/")) {
            log.debug(" before req:"+req.getRequestURI());
                req.getSession().setAttribute("c-locale", "es");
            filterConfig.getServletContext().getRequestDispatcher("/"+relativePath.replaceAll("/es/", "")).
                forward(request, response);
            log.debug(" after req:"+req.getRequestURI());
        } else if (relativePath.contains("/en/")) {
            origURI=req.getRequestURI();
            log.debug(" before req:"+req.getRequestURI());
            req.getSession().setAttribute("c-locale", "en");
            filterConfig.getServletContext().getRequestDispatcher("/"+relativePath.replaceAll("/en/", "")).
                forward(request, response);
} else {
             chain.doFilter(request, response);
}web.xml
<filter>
    <filter-name>localefilter</filter-name>
    <filter-class>com.foo.bar.localefilter</filter-class>
</filter>
<filter-mapping>
    <filter-name>localefilter</filter-name>
    <url-pattern>/en/*</url-pattern>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>FORWARD</dispatcher>   
</filter-mapping>Instead of getting the forwarded page, I get:
javax.faces.FacesException: Problem in renderResponse: /en/page1.xhtml Not Found in ExternalContext as a Resource
Looks like Facelets didn't take the forward ¿? ... The same project under glassfish "Java System Application Server 9.1_02 (build b04-fcs)" process well the filter...
I didnt find any change in the documentation!!!
Any hints ?...
thank you very much!
PS: I'm using icefaces 1.8.1 + facelet, below the stack trace
java.io.FileNotFoundException: /en/page1.xhtml Not Found in ExternalContext as a Resource
        at com.sun.facelets.impl.DefaultFaceletFactory.resolveURL(DefaultFaceletFactory.java:121)
        at com.sun.facelets.impl.DefaultFaceletFactory.getFacelet(DefaultFaceletFactory.java:91)
        at com.icesoft.faces.facelets.D2DFaceletViewHandler.renderResponse(D2DFaceletViewHandler.java:268)
        at com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:153)
        at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:110)

I don't think so, as I said, in previous version works well, and I've just been testing on Tomcat 6, and forwards works like I expected.. I suspect that this is a bug in GF. I think it's time to move forward to another AS, I'm really exhausted about GF problems.
thank you for your reply,

Similar Messages

  • It will not open Mozilla at all, it comes up with a problem box, which states on the first line: Access denied to system because of URL Filter Configuration.

    Problem Report -
    Access denied to system because of URL Filter Configuration.
    Message ID -
    FILTER_DENIED
    Problem Description -
    Your system was configured to deny access to the requested URL.
    Possible Problem Cause -
    Request denied, as specified in the local filter list configuration.
    Possible Solution -
    Contact your network support team if this problem persists.
    It comes up with thie above in a box with two colums. i can only usse internet explorer now.

    Does any body know how to fix it?
    I just got off the phone to my new isp and they said they could not help me at all.

  • VSOM 7.0.1 LDAP Filter AD

    Hello!
    LDAP server settings are as follows: 
    Name: SFC.LOCAL
    Host Name: 192.168.104.252
    port: 389
    Member of: %USERID%@sfc.local
    Database search for users: OU=Accounts,DC=sfc,DC=local
    User ID attribute: sAMAccountName
    How to create a filter selecting users from a specific location in aerarhii AD?
    People are on the way: 
    OU=SPK,OU=Offices,OU=Delegate,OU=Common,OU=Accounts,DC=sfc,DC=local
    try like this: 
    search path: OU=Accounts,DC=sfc,DC=local
    Filter: (&(sAMAccountName=%USERID%)(memberOf=CN=SPK,OU=Offices,OU=Delegate,OU=Common,OU=Accounts,DC=sfc,DC=local))
    Runtime Error: The user with the given name is not found in the LDAP filter by (&(sAMAccountName=drozdov.alexander)(memberOf=CN=SPK,OU=Offices,OU=Delegate,OU=Common,OU=Accounts,DC=sfc,DC=local))
    in it may be inaccurate filter configuration?

    Hello Alex,
    Here is the example to do LDAP serach filter configuration. Let me know if this help
    •General Settings
    Hostname: ds.cisco.com
    Port: 389
    Principal: %USERID%@cisco.com
    User Search Base: ou=Cisco Users,dc=cisco,dc=com
    Userid Attribute: sAMAccountName
    •LDAP Search Filter:
    Select a Cisco mailing list you are on from mailer.cisco.com, and substitute its name for <anyMailer> in the Filter below
    Search Path: ou=Cisco Users,dc=cisco,dc=com
    Filter: (&(sAMAccountName=%USERID%)(memberOf=CN=<anyMailer>,OU=Mailer,OU=Cisco Groups,DC=cisco,DC=com))
    Br,
    Nadeem Ahmed

  • Filter datagrid using search

    hye...can anyone help me...
    how to filter a datagrid using search function?
    i have been doing some search,but nothing work...can someone
    show me??here,i attach my codes
    any help would be really appreciated
    thanks in advance.

    Without looking at your code, here are few pointers:
    1) Take a look at filterFunction property of your
    ArrayCollection
    2) Remember to call ArrayCollection.refresh() everytime you
    set or clear the filterFunction property
    Here is working code, basically on every keystroke of your
    search input box, or whatever event you like to choose, you cann
    filterList function that sets the filterFunction property of array
    collection, that implements ICollectionView, to the local filter
    function that provides the logic for including the rows in the
    filtered view:
    private function filterList(event:Event) : void {
    var view:ICollectionView = this.dataGrid.dataProvider as
    ICollectionView;
    if (view.filterFunction == null) {
    this.totalRows = view.length;
    if (!view) return;
    if (this.searchTextInput.text.length == 0) {
    view.filterFunction = null;
    view.refresh();
    return;
    view.filterFunction = filter;
    view.refresh();
    private function filter(item:Object) : Boolean {
    var s:String = ObjectUtil.toString(item, null,
    ['mx_internal_uid', 'Pretty Print', '#']);
    // trace(s);
    return s.indexOf(this.searchTextInput.text) >= 0;

  • I need script which will filter a set of groups by name, and then give a CSV with direct members

    I need script which will filter a set of groups by name, and then give a CSV with direct members
    say it like,
    $groupitems = Get-ADGroup -SearchBase "DC=fincaint,DC=local" -Filter {Name -like "*AppUsers"}
    ForEach ($groupitem in $groupitems)
            IF ($groupitem.objectClass -eq 'user')
       Get-ADUser $groupitem | FT Name, Email, City, Title | Export-Csv c:\member.csv
          IF ($groupitem.objectClass -eq 'group')
       Get-ADgroup $groupitem | FT GroupName, GroupDN | Export-Csv c:\member.csv

    Hi Dhiravia,
    It's been a while. How is it going? If the suggestion provided by ThmsRynr doesn't help, for scripting questions, in order to get better help, it's recommended that we ask for advice in the following scripting forum.
    The Official Scripting Guys Forum
    https://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?forum=ITCG
    Best regards,
    Frank Shen
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Limiting Tables and charts with Measures having RelativeValue

    Hallo,
    I just try to do some difficult stuff with the WebI Rich Client 4.1.
    There are two measures for each month on a time line showing year and month. Thus, I have a dimension for year and month and two different measures for each year/month combination.
    Now, e.g. I want to compare these two measures having same month and different years, say the current year and the year before. Please see the table below for a visible figure.
    I used RelativeValue([measure prior year_1];([year/month]);-12) for [measure prior year] in order to compare one 1 year older measure with the other measure.
    year/month
    measure prior year
    measure current year
    2010/10
    2010/11
    2010/12
    2011/01
    2011/02
    2011/03
    2011/04
    2011/05
    2011/06
    2011/07
    2011/08
    2011/09
    2011/10
    439
    97
    2011/11
    7.294
    2.712
    2012/02
    20.496
    13.397
    2012/05
    21.859
    12.636
    2013/01
    36.325
    27.286
    2014/08
    26.894
    17.425
    There are no values for [measure current year] before 2011/10. But, there are values for [measure prior year_1] before 2011/10. [measure prior year] is actually from 2010/10, 2010/11 and so on, as defined with RelativeValue.
    No problem here. Everything works fine. But, now, I want to start the table with the first row where [measure prior year] is not null while leaving measure current year unchanged. Just cut the table and start with 2011/10...
    And here we get the problem. Hence, RelativeValue references to values before 2011/10 all these reference will disappear for [measure prior year].
    The same is with charts. I couldn't find a way to reference to values that exist by the query but which are not displayed in a table or a chart!
    What I need is a way to reference to values which are not present in a single table or chart but in the report. I already fiddled with the display options (null values, without dimension etc.) of tables. But, no way.
    How could a accomplish this task?
    Any idea of something like "hiding" unwanted rows/bars results in "loss of data".
    Thanks for any help
    Matthias

    Well... if you think and try long enough, you may find the solution .
    The core problem is to reference to queried values not shown in the table/chart. And there IS a solution.
    Just use...
    NoFilter(RelativeValue([measure prior year_1];([year/month]);-12))
    ... instead of
    RelativeValue([measure prior year_1];([year/month]);-12)
    NoFilter enables RelativeValue to reference to values not present in a table or chart, but available in the report .
    From there on, you can define e.g. the starting point of the category axis of a chart by defining a local filter without losing values to be referenced .

  • LDAP Authentcation on Cisco ASA 8.2(1)

    Dear Security Experts,
    i am facing an issue while trying to configure LDAP integration on Cisco ASA firewall. The requirement is allow the remote access VPN to specific group defined on AD. When i checked the debug logs " debug ldap 255" , it shows that the authenication is sucessfull with the LDAP server , but the ldap attribute is not getting mapped and because of this reason , the tunnel-group default group policy of "NOACCESS" is getting applied ( vpn simultanous set to zero) that results zero connection.
    I confirmed this by changing the value of NOACCESS from zero to one and found that the VPN is getting connected
    The name of user account is testvendor that belongs to the group of Test-vendor.
    Could you kindly advice me what i am missing in this configuration.Highy appreciated the help on this .
    The configuration and debug output is shown below.
    SHOW RUN
    ldap attribute-map ABC-VENDOR
      map-name  memberOf Group-Policy
      map-value memberOf CN=Test-vendors,OU=Users,OU=Abc,DC=abc,DC=local Allow-Vendor
    aaa-server ldapvend protocol ldap
    aaa-server ldapvend (INSIDE) host 10.1.141.7
    ldap-base-dn DC=abc,DC=local
    ldap-scope subtree
    ldap-naming-attribute sAMAccountName
    ldap-login-password *
    ldap-login-dn CN=ldapvpn,OU=ServiceAccounts,OU=Abc,DC=abc,DC=local
    server-type microsoft
    ldap attribute-map ABC-VENDOR
    group-policy NOACCESS internal
    group-policy NOACCESS attributes
    vpn-simultaneous-logins 0
    group-policy Allow-Vendor internal
    group-policy Allow-Vendor attributes
    vpn-simultaneous-logins 10
    vpn-tunnel-protocol IPSec
    dns-server value 10.1.141.7
    default-domain value abc.org
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value split_acl
    tunnel-group ABC-AD-VENDOR type remote-access
    tunnel-group ABC-AD-VENDOR general-attributes
    address-pool vendor_pool
    authentication-server-group ldapvend
    default-group-policy NOACCESS
    tunnel-group ABC-AD-VENDOR ipsec-attributes
    pre-shared-key *
    Note : I tried the below map-value under the ldap attribute ABC-VENDOR as part of troubleshooting
    map-value memberOf CN=Test-vendors,CN=Users,OU=Abc,DC=abc,DC=local Allow-Vendor
    map-value memberOf CN=Test-vendors,OU=Test-vendors,OU=Users,OU=Abc,DC=abc,DC=local Allow-Vendor
    map-value memberOf CN=testvendor,OU=Test-vendors,OU=Users,OU=Abc,DC=abc,DC=local Allow-Vendor
    DEBUG LDAP 255
    [454095] Session Start
    [454095] New request Session, context 0xb1f296b0, reqType = Authentication
    [454095] Fiber started
    [454095] Creating LDAP context with uri=ldap://10.1.141.7:389
    [454095] Connect to LDAP server: ldap://10.1.141.7:389, status = Successful
    [454095] supportedLDAPVersion: value = 3
    [454095] supportedLDAPVersion: value = 2
    [454095] Binding as ldapvpn
    [454095] Performing Simple authentication for ldapvpn to 10.1.141.7
    [454095] LDAP Search:
            Base DN = [DC=abc,DC=local]
            Filter  = [sAMAccountName=testvendor]
            Scope   = [SUBTREE]
    [454095] User DN = [CN=testvendor,OU=Test-vendors,OU=Users,OU=Abc,DC=abc,DC=local]
    [454095] Talking to Active Directory server 10.1.141.7
    [454095] Reading password policy for testvendor, dn:CN=testvendor,OU=Test-vendors,OU=Users,OU=Abc,DC=abc,DC=local
    [454095] Read bad password count 0
    [454095] Binding as testvendor
    [454095] Performing Simple authentication for testvendor to 10.1.141.7
    [454095] Processing LDAP response for user testvendor
    [454095] Message (testvendor):
    [454095] Checking password policy
    [454095] Authentication successful for testvendor to 10.1.141.7
    [454095] Retrieved User Attributes:
    [454095]        objectClass: value = top
    [454095]        objectClass: value = person
    [454095]        objectClass: value = organizationalPerson
    [454095]        objectClass: value = user
    [454095]        cn: value = testvendor
    [454095]        givenName: value = testvendor
    [454095]        distinguishedName: value = CN=testvendor,OU=Test-vendors,OU=Users,OU=Abc,DC=abc,DC=local
    [454095]        instanceType: value = 4
    [454095]        whenCreated: value = 20111019133739.0Z
    [454095]        whenChanged: value = 20111030135415.0Z
    [454095]        displayName: value = testvendor
    [454095]        uSNCreated: value = 20258545
    [454095]        uSNChanged: value = 20899179
    [454095]        name: value = testvendor
    [454095]        objectGUID: value = ).u>.v.H.6>..u.Z
    [454095]        userAccountControl: value = 66048
    [454095]        badPwdCount: value = 0
    [454095]        codePage: value = 0
    [454095]        countryCode: value = 0
    [454095]        badPasswordTime: value = 129644550477428806
    [454095]        lastLogoff: value = 0
    [454095]        lastLogon: value = 129644551251183846
    [454095]        pwdLastSet: value = 129635050595360564
    [454095]        primaryGroupID: value = 513
    [454095]        userParameters: value = m:                    d.                       
    [454095]        objectSid: value = ...............n."J.h.0.....
    [454095]        accountExpires: value = 9223372036854775807
    [454095]        logonCount: value = 0
    [454095]        sAMAccountName: value = testvendor
    [454095]        sAMAccountType: value = 805306368
    [454095]        userPrincipalName: value = [email protected]
    [454095]        objectCategory: value = CN=Person,CN=Schema,CN=Configuration,DC=abc,DC=local
    [454095]        msNPAllowDialin: value = TRUE
    [454095]        dSCorePropagationData: value = 20111026081253.0Z
    [454095]        dSCorePropagationData: value = 20111026080938.0Z
    [454095]        dSCorePropagationData: value = 16010101000417.0Z
    [454095]        lastLogonTimestamp: value = 129638228546025674
    [454095] Fiber exit Tx=719 bytes Rx=2851 bytes, status=1
    [454095] Session End

    Thankyou Jennifer for the responds.
    Could you please help me on how to enable "memberOf" attribute on AD to be pushed to ASA for the OU matching.
    i have already set the "Remote Dialin" property of user account name "testvendor" in AD as "Allow Access" .It can be shown in the debug output as below.
    [454095] sAMAccountName: value = testvendor
    [454095] sAMAccountType: value = 805306368
    [454095] userPrincipalName: value = [email protected]
    [454095] objectCategory: value = CN=Person,CN=Schema,CN=Configuration,DC=abc,DC=local
    [454095] msNPAllowDialin: value = TRUE
    [454095] dSCorePropagationData: value = 20111026081253.0Z
    [454095] dSCorePropagationData: value = 20111026080938.0Z
    [454095] dSCorePropagationData: value = 16010101000417.0Z
    Is their any other settings that i need to do it on AD ?
    Kindly advice
    Regards
    Shiji

  • Displaying a prompt on report's initial load

    Hi,
    I know that in WebI I can set a prompt to be displayed when the data is refreshed but that's not what I wish to accomplish at the moment.  What I want to do is to display a prompt when the report is first loaded. 
    Example:  As soon as the user opens the report, he's prompted  with something like "Filter report with year <operator> <year>"".
    Thanks for the help,
    Joaquim

    Joaquim,
    Kuldeep gave you the correct answer.  You wrote:
    Example: As soon as the user opens the report, he's prompted with something like "Filter report with year <operator> <year>"".
    What you want is the local filter for the tab to apply a prompt based upon the data cached to that specific report (i.e. you want to save a report with the "refresh on open" off, but prompt on the static data).  No can do.  The prompt feature actually stages to construct an SQL statement, which in turns fires off a new query.  There is no other prompt capability.
    Thanks,
    John

  • 9@ Route Pattern Matched Issues

    Unfortunately I have to deal with a lot of 9@ route patterns in our deployment.  I understand weird things happen when 9@ is used, but even this one is boggling my mind.  So I was hoping someone could help me understand why it's doing what it's doing.
    I have a CSS with a collection of partitions.   I'll call the 3 I'm interested in the following: One-PT, Two-PT, Three-PT.
    One-PT has a route pattern of 9@ with the Local filter applied going to Gateway 1.
    Two-PT has a route pattern of 9@ with the Local filter applied going to Gateway 2.
    Three-PT has a route pattern of 9.XXXXXXXXXX with no filter applied (those are 10 Xs) going to Gateway 3.
    My phone is assigned to the CSS with these 3 partitions.  When I dial 9 981 xxx xxxx DNA says that 9@ from One-PT is always matched.  If I remove One-PT from the CSS, then 9@ in Two-PT is matched.  Only if I remove those 2 partitions does Three-PT get matched.
    Now, as I said above I understand 9@ can introduce weird routing issues, but I thought that the route pattern with 9 and 10 Xs would be more specific and it would be matched.  Obviously I was wrong, but I'm trying to understand why I was wrong. Is this because the 10 digit number dialed matches the NANP and the Local filter matches a NANP area code?  Thus it's the more exact match?
    Thanks!

    Hi,
    As per the following link
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/admin/5_0_4/ccmsys/ccmsys/a03rp.html#wp1050657
    "Using the @ Wildcard Character in Route Patterns
    Using the @ wildcard character in a route pattern provides a single route pattern to match all NANP numbers, and requires additional consideration.
    The number 92578912 matches both of the following route patterns: 9.@ and 9.XXXXXXX. Even though both these route patterns seem to equally match the address, the 9.@ route pattern actually provides the closest match. The @ wildcard character encompasses many different route patterns, and one of those route patterns is [2-9][02-9]XXXXX. Because the number 2578912 more closely matches [2-9][02-9]XXXXX than it does XXXXXXX, the 9.@ route pattern provides the closest match for routing."
    Also, check the following post
    https://supportforums.cisco.com/discussion/10698966/9-route-pattern
    HTH
    Manish

  • My matchbook pro keeps restarting

    I find this below kernel message while my matchbook pro restarts? i changed my old Hard-disk and installed new one, the problem was solved for a while then it appeared back again. when it restarts i find my screen the same before it restarts as if it only hibernated.
    I run Yosemite latest upgrade, this only happened after I upgraded to Yosemite.

    Thank you so much for you fast reply. I searched for you and found some articles like Linc Davis doesn't get enough acknowledgment, so I think I can trust you.
    here is the result of the test found no error while pasting it.
    Start time: 18:44:17 12/26/14
    Model Identifier: MacBookPro6,2
    System Version: OS X 10.10.1 (14B25)
    Kernel Version: Darwin 14.0.0
    Time since boot: 2:37
    SATA
       TOSHIBA MQ01ABD100                     
    Diagnostic reports
       2014-11-29 Installer crash
       2014-12-01 mdworker crash x7
       2014-12-01 uTorrent crash
       2014-12-04 steam_osx crash
       2014-12-05 mds_stores crash x2
       2014-12-10 mdworker crash x6
       2014-12-18 com.apple.WebKit.WebContent crash
    Shutdowns
       Dec 22 10:14:34 cause: -62
       Dec 22 11:35:32 cause: -62
       Dec 25 09:08:24 cause: -62
       Dec 25 18:42:46 cause: -60
       Dec 26 15:55:58 cause: -62
       Dec 26 16:08:07 cause: -62
    Log
       Dec 25 11:49:58 com.apple.spindump: Service exited with abnormal code: 75
       Dec 25 11:50:08 com.apple.spindump: Service exited with abnormal code: 75
       Dec 25 11:50:18 com.apple.spindump: Service exited with abnormal code: 75
       Dec 25 19:43:25 MacAuthEvent en1   Auth result for: e0:8f:ec:00:9b:99 Auth request tx failed
       Dec 26 15:55:57 jnl: b(1, 6): replay_journal: from: 5102080 to: 12261888 (joffset 0xe91000)
       Dec 26 15:55:57 jnl: b(1, 6): journal replay done.
       Dec 26 15:56:02 jnl: disk0s4: replay_journal: from: 4606976 to: 6376448 (joffset 0x74a000)
       Dec 26 15:56:04 jnl: disk0s4: journal replay done.
       Dec 26 15:56:05 jnl: disk0s5: replay_journal: from: 16611328 to: 18372608 (joffset 0x745000)
       Dec 26 15:56:11 jnl: disk0s5: journal replay done.
       Dec 26 15:56:32 com.apple.CSConfigDotMacCert-EMAIL-SharedServices: Service setup event to handle failure and will not launch until it fires.
       Dec 26 15:56:38 com.apple.spindump: Service exited with abnormal code: 75
       Dec 26 15:56:48 com.apple.spindump: Service exited with abnormal code: 75
       Dec 26 15:56:58 com.apple.spindump: Service exited with abnormal code: 75
       Dec 26 15:57:08 com.apple.spindump: Service exited with abnormal code: 75
       Dec 26 15:57:18 com.apple.spindump: Service exited with abnormal code: 75
       Dec 26 15:57:28 com.apple.spindump: Service exited with abnormal code: 75
       Dec 26 16:00:21 process WindowServer[123] caught causing excessive wakeups. Observed wakeups rate (per sec): 175; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45023
       Dec 26 16:00:23 process com.apple.WebKit[314] caught causing excessive wakeups. Observed wakeups rate (per sec): 207; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45200
       Dec 26 16:08:09 jnl: disk0s4: replay_journal: from: 6376448 to: 7019520 (joffset 0x74a000)
       Dec 26 16:08:12 jnl: disk0s4: journal replay done.
       Dec 26 16:08:12 jnl: disk0s5: replay_journal: from: 18372608 to: 19912704 (joffset 0x745000)
       Dec 26 16:08:16 jnl: disk0s5: journal replay done.
       Dec 26 16:08:46 com.apple.CSConfigDotMacCert-EMAIL-SharedServices: Service setup event to handle failure and will not launch until it fires.
       Dec 26 16:12:26 process WindowServer[124] caught causing excessive wakeups. Observed wakeups rate (per sec): 176; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45026
    Daemons
       com.apple.installer.osmessagetracing
       com.adobe.fpsaud
    Agents
       com.valvesoftware.steamclean
       com.apple.CSConfigDotMacCert-EMAIL-SharedServices
       com.google.keystone.user.agent
       com.apple.AirPortBaseStationAgent
    Bundles
       /Library/Image Capture/Devices/Canon IJScanner1.app
       - jp.co.canon.ijscanner1.scanner.ica
       /Library/Image Capture/Devices/HPScanner.app
       - com.hp.scanModule
       /Library/Image Capture/Devices/Samsung Scanner.app
       - com.samsung.imagecapture.scanner.app
       /Library/Image Capture/Support/Hewlett-Packard/Devices/HPAiOScan.bundle
       - com.hp.HPAiOScan
       /Library/Image Capture/Support/LegacyDeviceDiscoveryHelpers/CIJScannerRegister.app
       - jp.co.canon.cijscannerregister
       /Library/Internet Plug-Ins/Flash Player.plugin
       - com.macromedia.Flash
       /Library/PreferencePanes/Flash Player.prefPane
       - com.adobe.flashplayerpreferences
       /Library/Printers/hp/Fax/HPFaxBackend.app
       - com.hp.CupsFaxBackend
       /Library/Printers/hp/Fax/PDEs/AIOCoverPagePDE.plugin
       - com.hp.print.pde.AIO.CoverPage
       /Library/Printers/hp/Fax/PDEs/AIOFaxRecipientsPDE.plugin
       - com.hp.print.pde.AIO.FaxRecipients
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework
       - com.hp.dmf3
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /ClientUI.framework
       - com.hp.dmf3.ClientUI
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /ClientUI.framework/Versions/3.0/Resources/PlugIns/ClientUI.plugin
       - com.hp.dmf3.ClientUI.plugin
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Configure.framework
       - com.hp.dmf3.Configure
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Core.framework
       - com.hp.dmf3.Core
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Core.framework/Versions/3.0/Resources/PlugIns/CFXmlParser.plugin
       - com.hp.dmf3.plugins.CFXmlParser
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Core.framework/Versions/3.0/Resources/PlugIns/bluetooth.plugin
       - com.hp.dmf3.plugins.transport.bluetooth
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Core.framework/Versions/3.0/Resources/PlugIns/libXmlParser.plugin
       - com.hp.dmf3.plugins.libXmlParser
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Core.framework/Versions/3.0/Resources/PlugIns/network.plugin
       - com.hp.dmf3.plugins.transport.network
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Core.framework/Versions/3.0/Resources/PlugIns/usb.plugin
       - com.hp.dmf3.plugins.transport.usb
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /DataStore.framework
       - com.hp.dmf3.DataStore
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /DeviceID.framework
       - com.hp.dmf3.DeviceID
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /HDT.framework
       - com.hp.dmf3.HDT
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /PML.framework
       - com.hp.dmf3.PML
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Status.framework
       - com.hp.dmf3.Status
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Status.framework/Versions/3.0/Resources/PlugIns/CDPrintingStatus.plugin
       - com.hp.dmf3.plugins.CDPrintingStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Status.framework/Versions/3.0/Resources/PlugIns/CoversStatus.plugin
       - com.hp.dmf3.plugins.CoversStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Status.framework/Versions/3.0/Resources/PlugIns/DeviceAlerts.plugin
       - com.hp.dmf3.plugins.DeviceAlerts
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Status.framework/Versions/3.0/Resources/PlugIns/DeviceStatus.plugin
       - com.hp.dmf3.plugins.DeviceStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Status.framework/Versions/3.0/Resources/PlugIns/DeviceTrays.plugin
       - com.hp.dmf3.plugins.DeviceTrays
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Status.framework/Versions/3.0/Resources/PlugIns/EstimatedPagesStatus.plugin
       - com.hp.dmf3.plugins.EstimatedPagesStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Status.framework/Versions/3.0/Resources/PlugIns/JobsStatus.plugin
       - com.hp.dmf3.plugins.JobsStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Status.framework/Versions/3.0/Resources/PlugIns/SpecialtyPrintingStatus.plugin
       - com.hp.dmf3.plugins.SpecialPrintingStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Status.framework/Versions/3.0/Resources/PlugIns/SuppliesStatus.plugin
       - com.hp.dmf3.plugins.SuppliesStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /XMLServices.framework
       - com.hp.dmf3.XMLServices
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Resources/ PlugIns/statusclient.bundle
       - com.hp.dmfstatusclient
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Runtime/HP IOPrinterClassDriver.plugin
       - com.hp.dmf.printerclassdriver
       /Library/Printers/hp/Frameworks/HPSmartPrint.framework
       - com.hp.print.HPSmartPrint
       /Library/Printers/hp/Frameworks/HPSmartX.framework
       - com.hp.hpio.SmartX64
       /Users/USER/Applications/Dota 2.app
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Acrobat 9 Pro/Acrobat Distiller.app
       - com.adobe.distiller
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Acrobat 9 Pro/Acrobat Uninstaller.app
       - com.adobe.Acrobat.Uninstaller
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app
       - com.adobe.Acrobat.Pro
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Adobe Bridge CS5.app
       - com.adobe.bridge4
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Plug-Ins/Cineon.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Plug-Ins/JPEG2000.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Plug-Ins/MMXCore.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Plug-Ins/MultiProcessor Support.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Plug-Ins/PBM.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Plug-Ins/PCX.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Plug-Ins/Pixar.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Plug-Ins/Radiance.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Plug-Ins/Standard Multiplugin.plugin
       - com.adobe.standard.multiplugin
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Plug-Ins/WBMP.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Plug-Ins/dicom.plugin
       - com.adobe.dicom
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Bridge CS5/Required/Photoshop Adapter.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Device Central CS5/Adobe Device Central CS5.app
       - com.adobe.devicecentral-3.0
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Extension Manager CS5/Adobe Extension Manager CS5.app
       - com.adobe.ExtensionManager
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Adobe Illustrator.app
       - com.adobe.illustrator
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Formats.localized/AuthPlayLib.bundle
       - com.macromedia.Flash
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Formats.localized/FHImport.aip/Contents/Resources/FreeHand Reader.bundle
       - com.adobe.FreehandReader_AI
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Effects.localized/Filter Gallery.plugin
       - com.adobe.FilterGallery
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Filters.localized/Color Halftone.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Filters.localized/Crystallize.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Filters.localized/De-Interlace.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Filters.localized/Mezzotint.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Filters.localized/NTSC Colors.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Filters.localized/Pointillize.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Filters.localized/Radial Blur.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Filters.localized/Smart Blur.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Formats.localized/BMP.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Formats.localized/PCX.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Formats.localized/PNG.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Formats.localized/Pixar.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Formats.localized/Targa.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Illustrator CS5/Plug-ins.localized/PlugPlug.bundle
       - com.adobe.PlugPlug
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe InDesign CS5/Adobe InDesign CS5.app
       - com.adobe.InDesign
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Media Encoder CS5/Adobe Media Encoder CS5.app
       - com.adobe.ame.application
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Media Player.app
       - com.adobe.amp.UUID.1
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app
       - com.adobe.Photoshop
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/3D Engines/Photoshop3DEngine.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/ADM/AdobeADM.bundle
       - com.adobe.coretech.adm
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Automate/CropPhotosAuto.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Automate/HDRMergeUI.plugin
       - com.adobe.HDRMergeUI
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Digimarc/Mac/DigiRead.plugin
       - com.digimarc.mypicturemarc.read
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Digimarc/Mac/DigiSign.plugin
       - com.digimarc.mypicturemarc.embed
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Effects/Filter Gallery.plugin
       - com.adobe.FilterGallery
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin
       - com.adobe.PSAutomate
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/File Formats/Cineon.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/File Formats/JPEG2000.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/File Formats/PBM.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/File Formats/PCX.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/File Formats/Pixar.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/File Formats/Radiance.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/File Formats/U3D.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/File Formats/WBMP.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/File Formats/dicom.plugin
       - com.adobe.dicom
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Filters/Average.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Filters/ChannelPort.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Filters/Clouds.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Filters/Lens Blur.plugin
       - com.adobe.LensBlur
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Filters/Lens Correct.plugin
       - com.adobe.LensCorrect
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Filters/Lighting Effects.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Filters/Liquify.plugin
       - com.adobe.Liquify
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Filters/NTSC Colors.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Filters/Solarize.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Filters/Standard Multiplugin.plugin
       - com.adobe.standard.multiplugin
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Filters/VanishingPoint.plugin
       - com.adobe.VanishingPoint
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Filters/Variations.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Image Stacks/statistics.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Import-Export/FireWire Export.plugin
       - com.adobe.photoshop.plugin.export.firewire
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Import-Export/Save for Web.plugin
       - com.adobe.S4W
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe Photoshop CS5/Scripting/Utilities/ScriptingListener.plugin
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe/Acrobat.com.app
       - com.adobe.mauby.UUID.1
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Adobe/Adobe Help.app
       - chc.UUID.1
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/App Store.app
       - com.apple.appstore
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Add-Ons/Extras/ArchiCAD MoviePlayer.app
       - com.graphisoft.ArchiCAD_MoviePlayer
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Add-Ons/Import-Export/Artlantis Render Studio 2 Out/Contents/Frameworks/CATL.framework
       - com.abvent.fr.catl
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Add-Ons/Local/Frameworks/SpellCheck.bundle
       - com.yourcompany.SpellCheck
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/ArchiCAD.app
       - com.graphisoft.ArchiCAD
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/EventSender.app
       - com.graphisoft.EventSender
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/FTPUploader.app
       - com.graphisoft.FTPUploader
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/GSReport.app
       - com.graphisoft.GSReport
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/LP_XMLConverter.app
       - com.graphisoft.LP_XMLConverter
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/LP_XMLConverter.app
       - com.graphisoft.LP_XMLConverter
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/Apr.framework
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/AprIConv.framework
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/AprUtil.framework
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/AttributeManager.framework
       - com.graphisoft.AttributeManager
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/Expat.framework
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/GDL.framework
       - com.graphisoft.GDL
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/GSQuickTime.framework
       - com.graphisoft.GSQuickTime
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/GSRoot.framework
       - com.graphisoft.GSRoot
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/GSUtils.framework
       - com.graphisoft.GSUtils
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/GSXML.framework
       - com.graphisoft.GSXML
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/GSXMLUtils.framework
       - com.graphisoft.GSXMLUtils
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/GSZLib.framework
       - com.graphisoft.GSZLib
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/GX.framework
       - com.graphisoft.GX
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/Geometry.framework
       - com.graphisoft.Geometry
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/InputOutput.framework
       - com.graphisoft.InputOutput
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/JACK.framework
       - com.graphisoft.JACK
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/Jabberoo.framework
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/LibPartFile.framework
       - com.graphisoft.LibPartFile
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/LibraryManager.framework
       - com.graphisoft.LibraryManager
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/Log4Cxx.framework
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/ModelerGraphics.framework
       - com.graphisoft.ModelerGraphics
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/ObjectDatabase.framework
       - com.graphisoft.ObjectDatabase
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/PixMapIO.framework
       - com.graphisoft.PixMapIO
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/ProjectFile.framework
       - com.graphisoft.ProjectFile
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/TWClientBase.framework
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/TWCommunication.framework
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/TWInstantMessaging.framework
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/TextEngine.framework
       - com.graphisoft.TextEngine
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/VBAttributes.framework
       - com.graphisoft.VBAttributes
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/VBUtils.framework
       - com.graphisoft.VBUtils
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/PreviousLP_XMLConverter/Support/libsigcpp2.framework
       - com.graphisoft.libsigcpp2
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/AddOnManager.framework
       - com.graphisoft.AddOnManager
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Apr.framework
       - com.graphisoft.Apr
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/AprIConv.framework
       - com.graphisoft.AprIConv
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/AprUtil.framework
       - com.graphisoft.AprUtil
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/ArchiCADDialog.framework
       - com.graphisoft.ArchiCADDialog
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/ArchiCADMenu.framework
       - com.graphisoft.ArchiCADMenu
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/ArchiCADResources.framework
       - com.graphisoft.ArchiCADResources
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/AttributeManager.framework
       - com.graphisoft.AttributeManager
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/DG.framework
       - com.graphisoft.DG
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/DG.framework/Versions/A/Frameworks/SpellCheck.bundle
       - com.merzwaren.waste.spellcheck
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/DGGraphix.framework
       - com.graphisoft.DGGraphix
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/DWGDirect.framework
       - com.graphisoft.DWGDirect
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/DXF_DWG_Engine.framework
       - com.graphisoft.DXF_DWG_Engine
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/EDMI_Bundle.bundle
       - com.graphisoft.EDMI_Bundle
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/ElementManager.framework
       - com.graphisoft.ElementManager
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/EventLogger.framework
       - com.graphisoft.EventLogger
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Expat.framework
       - com.graphisoft.Expat
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/FTPUploaderSupport.framework
       - com.graphisoft.FTPUploaderSupport
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GDL.framework
       - com.graphisoft.GDL
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GDLParamUI.framework
       - com.graphisoft.GDLParamUI
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSDisplay.framework
       - com.graphisoft.GSDisplay
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSLogger.framework
       - com.graphisoft.GSLogger
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSMSections.framework
       - com.graphisoft.GSMSections
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSModeler.framework
       - com.graphisoft.GSModeler
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSModeler2D.framework
       - com.graphisoft.GSModeler2D
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSModelerUI.framework
       - com.graphisoft.GSModelerUI
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSProfiler.framework
       - com.graphisoft.GSProfiler
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSQuickTime.framework
       - com.graphisoft.GSQuickTime
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSRoot.framework
       - com.graphisoft.GSRoot
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSUtils.framework
       - com.graphisoft.GSUtils
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSXML.framework
       - com.graphisoft.GSXML
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSXMLUtils.framework
       - com.graphisoft.GSXMLUtils
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GSZLib.framework
       - com.graphisoft.GSZLib
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/GX.framework
       - com.graphisoft.GX
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Geometry.framework
       - com.graphisoft.Geometry
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/HGX.framework
       - com.graphisoft.HGX
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/InputOutput.framework
       - com.graphisoft.InputOutput
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/InternetURL.framework
       - com.graphisoft.InternetURL
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/JACK.framework
       - com.graphisoft.JACK
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/JACKX.framework
       - com.graphisoft.JACKX
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/LibPartFile.framework
       - com.graphisoft.LibPartFile
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/LibraryManager.framework
       - com.graphisoft.LibraryManager
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Log4Cxx.framework
       - com.graphisoft.Log4Cxx
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/MEP.framework
       - com.graphisoft.MEP
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Model3D.framework
       - com.graphisoft.Model3D
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/ObjectDatabase.framework
       - com.graphisoft.ObjectDatabase
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/PDF.framework
       - com.graphisoft.PDF
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/PixMapIO.framework
       - com.graphisoft.PixMapIO
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/ProjectFile.framework
       - com.graphisoft.ProjectFile
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/QE.framework
       - com.graphisoft.QE
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/QGDrawing.framework
       - com.graphisoft.QGDrawing
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Slp.Client.framework
       - com.graphisoft.Slp.Client
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Slp.Common.framework
       - com.graphisoft.Slp.Common
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Slp.Server.framework
       - com.graphisoft.Slp.Server
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/TWClient.framework
       - com.graphisoft.TWClient
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/TWClientBase.framework
       - com.graphisoft.TWClientBase
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/TWCommunication.framework
       - com.graphisoft.TWCommunication
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/TWRoot.framework
       - com.graphisoft.TWRoot
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Tdx.framework
       - com.graphisoft.Tdx
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Client.framework
       - com.graphisoft.Teamwork.Client
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Common.framework
       - com.graphisoft.Teamwork.Common
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Ldap.Ber.framework
       - com.graphisoft.Teamwork.Ldap.Ber
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Ldap.LdapR.framework
       - com.graphisoft.Teamwork.Ldap.LdapR
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Logger.framework
       - com.graphisoft.Teamwork.Logger
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Messaging.CMS.framework
       - com.graphisoft.Teamwork.Messaging.CMS
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Messaging.Client.framework
       - com.graphisoft.Teamwork.Messaging.Client
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.MessagingServerConfigurator.framework
       - com.graphisoft.Teamwork.MessagingServerConfigurator
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Persistence.framework
       - com.graphisoft.Teamwork.Persistence
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Protocol.framework
       - com.graphisoft.Teamwork.Protocol
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Server.Configurator.Core.framework
       - com.graphisoft.Teamwork.Server.Configurator.Core
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Server.Configurator.GUI.framework
       - com.graphisoft.Teamwork.Server.Configurator.GUI
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Server.Management.framework
       - com.graphisoft.Teamwork.Server.Management
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Server.ManagementTool.Core.framework
       - com.graphisoft.Teamwork.Server.ManagementTool.Core
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Server.ManagementTool.GUI.framework
       - com.graphisoft.Teamwork.Server.ManagementTool.GUI
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.ServerMonitorClient.framework
       - com.graphisoft.Teamwork.ServerMonitorClient
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.ServiceDaemonManager.framework
       - com.graphisoft.Teamwork.ServiceDaemonManager
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Wbem.Client.framework
       - com.graphisoft.Teamwork.Wbem.Client
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Wbem.Common.framework
       - com.graphisoft.Teamwork.Wbem.Common
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Wbem.ExportServer.framework
       - com.graphisoft.Teamwork.Wbem.ExportServer
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Teamwork.Wbem.Listener.framework
       - com.graphisoft.Teamwork.Wbem.Listener
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/TeamworkConfiguration.framework
       - com.graphisoft.TeamworkConfiguration
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/TeamworkServerConfiguration.framework
       - com.graphisoft.TeamworkServerConfiguration
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/TeamworkServiceProcess.framework
       - com.graphisoft.TeamworkServiceProcess
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/TextEngine.framework
       - com.graphisoft.TextEngine
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/Tracker.framework
       - com.graphisoft.Tracker
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/UC.framework
       - com.graphisoft.UC
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/UD.framework
       - com.graphisoft.UD
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/VBAttrControls.framework
       - com.graphisoft.VBAttrControls
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/VBAttrDialogs.framework
       - com.graphisoft.VBAttrDialogs
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/VBAttributes.framework
       - com.graphisoft.VBAttributes
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/VBElemDialogs.framework
       - com.graphisoft.VBElemDialogs
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/VBElements.framework
       - com.graphisoft.VBElements
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/VBTo3DConverter.framework
       - com.graphisoft.VBTo3DConverter
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/VBUtils.framework
       - com.graphisoft.VBUtils
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Support/VectorImage.framework
       - com.graphisoft.VectorImage
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/ArchiCAD 13/Uninstall.AC/uninstaller.app
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Audio Splitter.app
       - com.macsome.AudioSplitter
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Automator.app
       - com.apple.Automator
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Battery Health Monitor.app
       - N/A
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/BluePhoneElite 2.app
       - com.mirasoftware.BPE2
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Calculator.app
       - com.apple.calculator
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Calendar.app
       - com.apple.iCal
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/CamTwist/CamTwist.app
       - com.allocinit.CamTwist
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/CamTwist/Effects/CTIRC.bundle
       - com.yourcompany.CTIRC
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/CamTwist/Effects/CTVNC.bundle
       - com.allocinit.CamTwist.CTVNC
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/CamTwist/Effects/Flame.bundle
       - com.allocinit.CamTwist.Flame
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/CamTwist/Effects/Matrix.bundle
       - com.allocinit.CamTwist.Matrix
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Chess.app
       - com.apple.Chess
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Contacts.app
       - com.apple.AddressBook
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/DVD Player.app
       - com.apple.DVDPlayer
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Dashboard.app
       - com.apple.dashboardlauncher
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Dictionary.app
       - com.apple.Dictionary
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/DivX Pro 5.2.1/DivX Config.app
       - com.divxnetworks.DivXConfig
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/DivX Pro 5.2.1/DivX Register.app
       - com.DivXNetworks.DivXRegister
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Dota 2 Test.app
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Dota 2.app
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Dropbox.app
       - com.getdropbox.dropbox
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/EZSwitch.app
       - com.rajmirage.EZSwitch
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Etisalat USB Modem.app
       - com.zte.USBMODEM
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/FaceTime.app
       - com.apple.FaceTime
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Firefox3.app
       - org.mozilla.firefox
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Flip4Mac/Flip4Mac WMV Uninstaller.pkg
       - com.telestream.pkg.Flip4MacWMVUninstaller
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Flip4Mac/WMV Player.app
       - net.telestream.wmv.player
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Font Book.app
       - com.apple.FontBook
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Game Center.app
       - com.apple.gamecenter
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/GarageBand.app
       - com.apple.garageband
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Google Chrome.app
       - com.google.Chrome
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Google Earth.app
       - com.Google.GoogleEarthPlus
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Image Capture.app
       - com.apple.Image_Capture
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Image Tricks.app
       - com.belightsoft.ImageTricks
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Keeper.app
       - com.callpod.keepermac.lite
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Keynote.app
       - com.apple.iWork.Keynote
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Kies.app
       - com.samsung.Kies
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Launchpad.app
       - com.apple.launchpad.launcher
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/LogMeIn Hamachi/HamachiUninstaller.app
       - com.logmein.hamachi.HamachiUninstaller
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/LogMeIn Hamachi/LogMeIn Hamachi Menubar.app
       - com.logmein.hamachimb
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/LogMeIn Hamachi/LogMeIn Hamachi.app
       - com.logmein.hamachi
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/MacHider.app
       - com.macpaw.MacHider
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Mail.app
       - com.apple.mail
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Maps.app
       - com.apple.Maps
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/MediaShare.app
       - com.ranysoft.mediashare
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/MenuTab for Facebook.app
       - com.fiplab.facetab
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Messages.app
       - com.apple.iChat
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Communicator.app
       - com.microsoft.Communicator
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Messenger.app
       - com.microsoft.Messenger
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
       - com.microsoft.language_register
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Additional Tools/Remove Office/Remove Office.app
       - com.microsoft.removeoffice
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Microsoft Entourage.app
       - com.microsoft.Entourage
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Microsoft Excel.app
       - com.microsoft.Excel
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Microsoft Messenger.app
       - Microsoft/com.microsoft.Messenger
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Microsoft PowerPoint.app
       - com.microsoft.Powerpoint
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Microsoft Word.app
       - com.microsoft.Word
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Alerts Daemon.app
       - Microsoft/com.microsoft.AlertsDaemon
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Equation Editor.app
       - com.microsoft.EquationEditor
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Media/Templates/Labels/Label Wizard.plugin
       - com.microsoft.wizards.labels
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Media/Templates/Stationery/Envelope Wizard.plugin
       - com.microsoft.wizards.envelope
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Media/Templates/Stationery/Letter Wizard.plugin
       - com.microsoft.wizards.letter
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Microsoft Cert Manager.app
       - com.microsoft.MicrosoftCertManager
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Microsoft Chart Converter.app
       - com.microsoft.openxml.chart.app
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Microsoft Clip Gallery.app
       - com.microsoft.ClipGallery
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Microsoft Database Daemon.app
       - com.microsoft.entourage.database_daemon
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Microsoft Database Utility.app
       - com.microsoft.entourage.database_utility
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Microsoft Graph.app
       - com.microsoft.Graph
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Microsoft Messaging Library.bundle
       - null
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Microsoft Office Reminders.app
       - com.microsoft.entourage.office_reminders
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Microsoft Office Setup Assistant.app
       - com.microsoft.setupassistant
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Microsoft Project Gallery.app
       - com.microsoft.office_pg
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Microsoft Sync Services.app
       - com.microsoft.entourage.syncservices12
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/My Day.app
       - com.microsoft.myday
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Organization Chart.app
       - com.microsoft.OrgChart
       /Users/omarkhairy18/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Shared Applications/Graphic Filters/MFConverter.bundle
       - com.microsoft.MFConverter
       /Users/omarkhairy18/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Shared Applications/Text Converters/Microsoft Excel 2.x-11.bundle
       - com.microsoft.converters.excel
       /Users/omarkhairy18/Desktop/Omar Harddisk/omarkhairy/Applications/Microsoft Office 2008/Office/Shared Applications/Text Converters/Recover Text Converter.bundle
       - com.microsoft.converters.recover
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Mission Control.app
       - com.apple.exposelauncher
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Mobile Partner.app
       - com.huawei.MobilePartner
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Monopoly Here & Now Edition.app
       - com.TikGames.Monopoly
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Movie Tools/Convert For Internet.app
       - com.ecamm.movie2upload
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Movie Tools/Convert To AAC.app
       - com.ecamm.movie2aac
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Movie Tools/Convert To AIFF.app
       - com.ecamm.movie2aiff
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Movie Tools/Convert To MP3.app
       - com.ecamm.movie2mp3
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Movie Tools/Split Movie Tracks.app
       - com.ecamm.movie2tracks
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Movie Tools/Split Sides of Conversation.app
       - com.ecamm.splitsides
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/NTFS for Mac OS X/Register NTFS for Mac OS X.app
       - com.paragon-software.filesystems.ntfs.Register
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/NeoOffice.app
       - org.neooffice.NeoOffice
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Nokia Multimedia Transfer.app
       - com.nokia.NokiaMultimediaTransfer
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Notes.app
       - com.apple.Notes
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Numbers.app
       - com.apple.iWork.Numbers
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/OpenProj.app
       - org.openproj
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Pages.app
       - com.apple.iWork.Pages
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Paintbrush.app
       - com.soggywaffles.Paintbrush
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Palringo.app
       - com.palringo.PalringoOSX
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Parallels Desktop.app
       - com.parallels.desktop.console
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Parallels/Parallels Image Tool.app
       - com.parallels.server.imagetool
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Parallels/Parallels Transporter.app
       - com.parallels.server.transporter
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Photo Booth.app
       - com.apple.PhotoBooth
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Preview.app
       - com.apple.Preview
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/QuickTime Player.app
       - com.apple.QuickTimePlayerX
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/RealPlayer Converter.app
       - com.real.converter
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/RealPlayer.app
       - com.RealNetworks.RealPlayer
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Reminders.app
       - com.apple.reminders
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Remote Desktop Connection.app
       - com.microsoft.rdc
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Safari.app
       - com.apple.Safari
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Second Life Viewer 2.app
       - com.secondlife.indra.viewer
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Skype.app
       - com.skype.skype
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Solver/Solver.app
       - com.apple.ASApplication
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Sophos Anti-Virus.app
       - com.sophos.sav
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Sophos Remove.app
       - com.sophos.removal
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/StatPlus.app
       - com.apple.ASApplication
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Steam.app
       - com.valvesoftware.steam
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Stickies.app
       - com.apple.Stickies
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/StuffIt Destinations.app
       - com.stuffit.StuffIt-Destinations
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/StuffIt/DropStuff.app
       - com.stuffit.DropStuff
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/StuffIt/MagicMenu.app
       - com.stuffit.MagicMenu
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/StuffIt/StuffIt 2009 Uninstaller.app
       - com.smithmicro.stuffitinstaller
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/StuffIt/StuffIt Archive Manager.app
       - com.stuffit.ArchiveManager
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/StuffIt/StuffIt Expander.app
       - com.stuffit.Expander
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/StuffIt/StuffIt SEA Maker.app
       - com.stuffit.StuffItSEAMaker
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/StuffIt/StuffIt Setup Assistant.app
       - com.stuffit.StuffItSetupAssistant
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/StuffIt/StuffIt User Guide.app
       - com.stuffit.StuffIt_User_Guide
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/StuntMANIA_45_UB.app
       - unity.Sector3.StuntMANIA
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/System Preferences.app
       - com.apple.systempreferences
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/TextEdit.app
       - com.apple.TextEdit
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Time Machine.app
       - com.apple.backup.launcher
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Toast 10 Titanium/CD Spin Doctor.app
       - com.roxio.CDSpinDoctor6
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Toast 10 Titanium/Disc Cover 2 RE.app
       - com.belightsoft.DiscCover2
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Toast 10 Titanium/DiskCatalogMaker.app
       - com.mac.fujisoft.DiskCatalogMaker
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Toast 10 Titanium/Get Backup 2 RE.app
       - com.belightsoft.GetBackup2
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Toast 10 Titanium/Mac2TiVo.app
       - com.roxio.Mac2Tivo
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Toast 10 Titanium/Toast Titanium.app
       - com.roxio.Toast
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/UberStrike.app
       - com.cmune.uberstrike
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Uninstall Etisalat USB Modem.app
       - com.ZTE.Uninstall
       /Users/USER/Desktop/Omar Harddisk/omarkhairy/Applications/Utilities/Activity Monitor.app
       - com.apple.ActivityMonitor
       /Users/USER/Desktop/Om

  • Pivot tables and charts error: Please load datasource first

    hi all,
    i am getting a error: please load data source first in rtf template , only for pivot table and charts(note: normal tables and fields i can insert )
    Please help me with this.
    Thanks and Regards
    Prakhar

    Well... if you think and try long enough, you may find the solution .
    The core problem is to reference to queried values not shown in the table/chart. And there IS a solution.
    Just use...
    NoFilter(RelativeValue([measure prior year_1];([year/month]);-12))
    ... instead of
    RelativeValue([measure prior year_1];([year/month]);-12)
    NoFilter enables RelativeValue to reference to values not present in a table or chart, but available in the report .
    From there on, you can define e.g. the starting point of the category axis of a chart by defining a local filter without losing values to be referenced .

  • PO wise Credit Debit Values

    Dear All
    I need to develop PO wise costing report.
    for that i need to divide charges (VAT, NBT,PAL....) as Cridit and Debit.
    These values picked from KONV table.
    From table how to identify credt and debit
    rgds
    pramod
    Moderator message : Spec dumping is not allowed, read forum rules before posting.  Thread locked.
    Edited by: Vinod Kumar on Aug 11, 2011 12:14 PM

    HI,
    please apply local filter if you have applied global filter and check if it works or not.
    I hope you are aware about local and global filters at query level.
    Regards,
    AL

  • SMF environment variables not working

    I have a Glassfish application in SMF with the following manifest file. I am trying to set the JAVA_HOME to /usr/jdk/latest.
    svccfg -s svc:/application/SUNWappserver/domain1 setenv -m stop JAVA_HOME /usr/jdk/latest
    svccfg -s svc:/application/SUNWappserver/domain1 setenv -m start JAVA_HOME /usr/jdk/latest
    svcadm refresh svc:/application/SUNWappserver/domain1:default
    # svcs -av |grep appser
    online - 12:22:51 249170 svc:/application/SUNWappserver/domain1:default
    # svccfg -s svc:/application/SUNWappserver/domain1 listprop | grep JAVA
    start/environment astring JAVA_HOME=/usr/jdk/latest
    stop/environment astring JAVA_HOME=/usr/jdk/latest
    I have a default instance and the stop/start methods are not defined inside it. After the refresh and restart, I still don't see Java using the /usr/jdk/latest JDK. Does anyone know why?
    Do those variables need to be defined inside the "default1" instance? If so, how do I do that with svccfg?
    <service_bundle type="manifest"
    name="SUNWasu appserver services">
    <service name="application/SUNWappserver/domain1"
    version="1"
    type="service">
    <single_instance/>
    <exec_method type="method"
    name="start"
    exec="/usr/local/glassfish/bin/asadmin start-domain --user admin --passwordfile /usr/local/glassfish/passfile --domaindir /usr/local/glassfish/domains domain1"
    timeout_seconds="0">
    <method_context working_directory=":default">
    <method_credential user="root"
    group=":default"/>
    <!-- privileges="basic,net_privaddr" -->
    </method_context>
    <stability value="Evolving"/>
    </exec_method>
    <exec_method type="method"
    name="stop"
    exec="/usr/local/glassfish/bin/asadmin stop-domain --domaindir /usr/local/glassfish/domains domain1"
    timeout_seconds="0">
    <method_context working_directory=":default">
    <method_credential user="root"
    group=":default"/>
    </method_context>
    <stability value="Evolving"/>
    </exec_method>
    <instance name="default" enabled="false">
    <dependency
    name='network'
    grouping='require_all'
    restart_on='none'
    type='service'>
    <service_fmri value='svc:/milestone/network:default' />
    </dependency>
    <!-- for ZFS, we need this to state this dependency -->
    <dependency
    name='filesystem-local'
    grouping='require_all'
    restart_on='none'
    type='service'>
    <service_fmri value='svc:/system/filesystem/local:default' />
    </dependency>
    </instance>
    <stability value="Evolving"/>
    <template>
    <common_name>
    <loctext xml:lang="C"> Appserver Domain Administration Server </loctext>
    </common_name>
    <documentation>
    <manpage title="Appserver" section="1" manpath="/opt/SUNWappserver/appserver/man"/>
    </documentation>
    </template>
    </service>
    </service_bundle>

    You're right....... it worked.
    The Content Server is case sensitive and the documentation is wrong......
    Thanks!

  • Credit/debit values in report not displaying properly

    HI friends,
                    In one of my report i need to get credit and debit and credit/debit values for the key due date>365 days. I have given the restriction on net due date as <key due date-365.But all the customers in the range above 365 days are not displaying. Only credit values are being displayed that too some are missing.but the inprovider has data more than the report.I need to get all the data into report.Any suggestions

    HI,
    please apply local filter if you have applied global filter and check if it works or not.
    I hope you are aware about local and global filters at query level.
    Regards,
    AL

  • Show suppressed unassigned nodes in Hierachy

    Dear all,
    is there a way to show unassigned nodes of a hierarchy although the hierarchy attributes are set to hide them?
    If not, is there a way to suppress unassigned nodes in a query if the attribute is not set for a hierarchy?
    Thanks in advance
    Oliver

    If the hierarchy attribute is set, not to display unassigned nodes then you would not be able to see them in the report.
    If it is not set , then there are multiple ways of handling it.
    - One is using authoirzations.
    - Second is in the query local filter you can exclude it.(this can be viewed if required).
    - Third is in the query global filter.If you exclude it in the global filter then you would not be able to see it in the report.

Maybe you are looking for

  • Some photo's missing in iPhoto only black screen Appears with ! symbol

    I am using iPhoto 08 and have around 11000 photos in my Library, about 300 all of a sudden have gone missing. The thumbnail is no longer visible only a black screen with the symbol ! appears. Any advice?

  • Report code with ALV

    Hi Can any body provide me the code for report with selection screen using ALV. Thanks in advance Prasanna Kumar

  • Get username in external jsp page + oracle10g 10.1.2 portal server

    <%@page contentType="text/html; charset=windows-1252" import="oracle.portal.provider.v2.render.PortletRenderRequest" import="oracle.portal.provider.v2.http.HttpCommonConstants" import="oracle.portal.provider.v2.ParameterDefinition" %> <% PortletRende

  • Problems using Adobe Captivate 8

    I have installed the trial version of Adobe Captivate 8 and when I open the program the following error appears: "Invalid path for document_root [C:\\Users\M]: (No such file or directory). Make sure that path is either absolute, or it is relative to

  • Why did contacts disappear after backup

    I backed up the ipad, and after that, all of the contacts were gone.  They are still there, because if you start to type a name in mail, the address automatically completes.  But you cannot see the contacts in the contact list. How can they be restor