PROBLEM IN CREATING A REGUALR EXPRESSION-VERY VERY URGENT.

I WANT TO CREATE A REGUALAR EXPRESSION THAT WILL CHECK WHETHER THE FIRST AND THE LAST CHARACTER OF A STRING CONTAIN ANY SPECIAL CHARACTERS LIKE #,!,@ .
EX- IF I GIVE THE INPUT "#java#", it will give me error,
whereas IF I GIVE THE INPUT "java", it will not give me error.
CAN ANYBODY PLZ HELP ME OUT WITH THE REQUIRED CODE.

This guy's been shouting questions at us for over a month now. We should stop making fun of him and start helping him:
import java.awt.*;
import java.awt.event.*;
public class StopShouting {
    public static void main(String[] args) {
        Toolkit kit = Toolkit.getDefaultToolkit();
        kit.setLockingKeyState(KeyEvent.VK_CAPS_LOCK, false);
}

Similar Messages

  • Problem in creating a Regular Expression with gnu

    Hi All,
    iam trying to create a regular expression using gnu package api..
    gnu.regex.RE;
    i need to validate the browser's(MSIE) userAgent through my regular expression
    userAgent is like :First one ==> Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
    i wrote an regular expression like this:
    Mozilla.*(.*)\\s*(.*)compatible;\\s*MSIE(.*)\\s*(.*)([0-9]\\.[0-9])(.*);\\s*(.*)Windows(.*)\\s*NT(.*)\\s*5.0(.*)
    Actaully this is validating my userAgent and returns true, my problem is, it is returning true if userAgent is having more words at the end after Windows NT 5.0 like Second One ==> Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0) Testing
    i want the regularExpression pattern to validate the First one and return true for it, and has to return false for the Second one..
    my code is:
    import gnu.regexp.*;
    import gnu.regexp.REException;
    public class TestRegexp
    public static boolean getUserAgentDetails(String userAgent)
         boolean isvalid = false;
         RE regexp = new RE("Mozilla.*(.*)\\s*(.*)compatible;\\s*MSIE(.*)\\s*(.*)([0-9]\\.[0-9])(.*);\\s*(.*)Windows(.*)\\s*NT(.*)\\s*5.0(.*)");
         isvalid = regexp.isMatch(userAgent);
         return isvalid;
    public static void main(String a[])
         String userAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)";
         boolean regoutput = getUserAgentDetails(userAgent);
         System.out.println("***** regoutput is ****** " + regoutput);
    }please help me in solving this..
    Thanks in Advance..
    thanx,
    krishna

    Ofcourse, i can do comparision with simple string matching..
    but problem is the userAgent that i want to support is for all the MSIE versions ranging from 5.0 onwards, so there will the version difference of IE like MSIE 6.0..! or MSIE 5.5 some thing like that..
    any ways i will try with StringTokenizer once..!
    seems that will do my work..
    Thanks,
    krishna

  • SessionEJBClient problem...(ClusterableRemoteRef)..very urgent

    Hi all,
    I am working with weblogic 6.1sp1.. while accessing EntityHome
    through session bean,i am not getting following Exception
    (ClusterableRemoteRef)while runing the sessionClient.. any body can pl
    help me very urgently..
    Thanks in advance
    Chandu([email protected], [email protected])
    Exception:
    ClusterableRemoteRef(192.168.10.6 [192.168.10.6])/286
    java.rmi.RemoteException: EJB Exception: ; nested exception is:
    java.lang.NoClassDefFoundError: ejb.DataEntityBean.DataHome
    Start server side stack trace:
    java.rmi.RemoteException: EJB Exception: ; nested exception is:
    java.lang.NoClassDefFoundError: ejb.DataEntityBean.DataHome
    java.lang.NoClassDefFoundError: ejb.DataEntityBean.DataHome
    at ejb.LoginSessionBean.LoginBean.class$(LoginBean.java:17)
    at ejb.LoginSessionBean.LoginBean.checkName(LoginBean.java:65)
    at
    ejb.LoginSessionBean.LoginBean_4p68pl_EOImpl.checkName(LoginBean_4p68pl_EOImpl.java:36)
    at
    ejb.LoginSessionBean.LoginBean_4p68pl_EOImpl_WLSkel.invoke(Unknown
    Source)
    at
    weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:296)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:265)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace
    ; nested exception is:
    java.lang.NoClassDefFoundError: ejb.DataEntityBean.DataHome
    Start server side stack trace:
    java.lang.NoClassDefFoundError: ejb.DataEntityBean.DataHome
    at ejb.LoginSessionBean.LoginBean.class$(LoginBean.java:17)
    at ejb.LoginSessionBean.LoginBean.checkName(LoginBean.java:65)
    at
    ejb.LoginSessionBean.LoginBean_4p68pl_EOImpl.checkName(LoginBean_4p68pl_EOImpl.java:36)
    at
    ejb.LoginSessionBean.LoginBean_4p68pl_EOImpl_WLSkel.invoke(Unknown
    Source)
    at
    weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:296)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:265)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace....

    Hi woollen,
    Thanks for reply.. myi application's packaging is correct only..
    package ejb.DataEntityBean and other one is..
    package ejb.LoginSessionBean
    I deployed two ejbs and tested entity bean with java client.But when i called entity ejb in
    the session ejb that time i am facing this problem..
    thanks in advance
    chandu
    Rob Woollen wrote:
    You're getting a NoClassDefFoundError. That would generally indicate that you're
    application's packaging is not correct.
    First, I would recommend removing any application classes from the server's class path.
    Then, I would package your application as an EAR file. If you're still having problems,
    you'll need to show us how you've packaged your application.
    -- Rob
    softstar wrote:
    Hi all,
    I am working with weblogic 6.1sp1.. while accessing EntityHome
    through session bean,i am not getting following Exception
    (ClusterableRemoteRef)while runing the sessionClient.. any body can pl
    help me very urgently..
    Thanks in advance
    Chandu([email protected], [email protected])
    Exception:
    ClusterableRemoteRef(192.168.10.6 [192.168.10.6])/286
    java.rmi.RemoteException: EJB Exception: ; nested exception is:
    java.lang.NoClassDefFoundError: ejb.DataEntityBean.DataHome
    Start server side stack trace:
    java.rmi.RemoteException: EJB Exception: ; nested exception is:
    java.lang.NoClassDefFoundError: ejb.DataEntityBean.DataHome
    java.lang.NoClassDefFoundError: ejb.DataEntityBean.DataHome
    at ejb.LoginSessionBean.LoginBean.class$(LoginBean.java:17)
    at ejb.LoginSessionBean.LoginBean.checkName(LoginBean.java:65)
    at
    ejb.LoginSessionBean.LoginBean_4p68pl_EOImpl.checkName(LoginBean_4p68pl_EOImpl.java:36)
    at
    ejb.LoginSessionBean.LoginBean_4p68pl_EOImpl_WLSkel.invoke(Unknown
    Source)
    at
    weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:296)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:265)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace
    ; nested exception is:
    java.lang.NoClassDefFoundError: ejb.DataEntityBean.DataHome
    Start server side stack trace:
    java.lang.NoClassDefFoundError: ejb.DataEntityBean.DataHome
    at ejb.LoginSessionBean.LoginBean.class$(LoginBean.java:17)
    at ejb.LoginSessionBean.LoginBean.checkName(LoginBean.java:65)
    at
    ejb.LoginSessionBean.LoginBean_4p68pl_EOImpl.checkName(LoginBean_4p68pl_EOImpl.java:36)
    at
    ejb.LoginSessionBean.LoginBean_4p68pl_EOImpl_WLSkel.invoke(Unknown
    Source)
    at
    weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:296)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:265)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace....

  • SSRS Variance expression problem. Create a Variance expression. Compare current month with same month from previous year.

    Hello,
    I am using VS2010 shell.  I have a matrix report where I have a row group by Year.  Then I have a column group by Month. 
    When I run the report, I get 2013 data on top of 2014 data.  Now I need to create a variance by year for each month.
    So in the example below, I need to create an expression that will pull the variance for Oct 01... subtracting 2013 from 2014 for the months.  So I need to Subtract 8,222 - 4290.  I have no clue.
    Here is what my rdl looks like.
    Thank you for your help. 

    Hi Adrian,
    If I understand correctly, you want to calculate the difference order between 2013 and 2014 for every month. And there are only two years in the FISCAL_YEAR field.
    If in this scenario, we can simply use the following expression to achieve your requirement:
    =first(Fields!ORDER.Value)-last(Fields!ORDER.Value)
    The following screenshot is for your reference:
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Error while creating datasource in planing. very urgent

    while configuring a datasource he gets an error failed to authenticate user admin against NYULDAP .
    this error her gets after entering the datasource name as EDPM_EDU in the config utility for confuguring a datasource..
    please hellp asap..
    i checkd the configuration.log too and found this..
    Launching Hyperion Configuration Utility Program
    HYPERION_HOME: D:\Hyperion
    In HspDBPropertiesLocationPanel constructor
    In HspDBPropertiesLocationPanel queryEnter
    Resource Bundle is java.util.PropertyResourceBundle@a20232
    Product Name in file is PLANNING
    Availability Date is 20051231
    Creating rebind thread to RMI
    java.rmi.server.ExportException: Port already in use: 11433; nested exception is:
    java.net.BindException: Address already in use: JVM_Bind
    at sun.rmi.transport.tcp.TCPTransport.listen(Unknown Source)
    at sun.rmi.transport.tcp.TCPTransport.exportObject(Unknown Source)
    at sun.rmi.transport.tcp.TCPEndpoint.exportObject(Unknown Source)
    at sun.rmi.transport.LiveRef.exportObject(Unknown Source)
    at sun.rmi.server.UnicastServerRef.exportObject(Unknown Source)
    at java.rmi.server.UnicastRemoteObject.exportObject(Unknown Source)
    at java.rmi.server.UnicastRemoteObject.exportObject(Unknown Source)
    at java.rmi.server.UnicastRemoteObject.<init>(Unknown Source)
    at com.hyperion.planning.HyperionPlanningBeanFactoryImpl.<init>(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.createRebindThread(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.<init>(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.getStaticHome(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.getStaticHome(Unknown Source)
    at com.hyperion.planning.HspDSPanelManager.queryExit(HspDSPanelManager.java:124)
    at com.hyperion.cis.config.wizard.ProductCustomInputPanel.queryExit(ProductCustomInputPanel.java:114)
    at com.installshield.wizard.awt.AWTWizardUI.doNext(Unknown Source)
    at com.installshield.wizard.awt.AWTWizardUI.actionPerformed(Unknown Source)
    at com.installshield.wizard.swing.SwingWizardUI.actionPerformed(Unknown Source)
    at com.installshield.wizard.swing.SwingWizardUI$SwingNavigationController.notifyListeners(Unknown Source)
    at com.installshield.wizard.swing.SwingWizardUI$SwingNavigationController.actionPerformed(Unknown Source)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.net.BindException: Address already in use: JVM_Bind
    at java.net.PlainSocketImpl.socketBind(Native Method)
    at java.net.PlainSocketImpl.bind(Unknown Source)
    at java.net.ServerSocket.bind(Unknown Source)
    at java.net.ServerSocket.<init>(Unknown Source)
    at java.net.ServerSocket.<init>(Unknown Source)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createServerSocket(Unknown Source)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createServerSocket(Unknown Source)
    at sun.rmi.transport.tcp.TCPEndpoint.newServerSocket(Unknown Source)
    ... 44 more
    Resource Bundle is java.util.PropertyResourceBundle@a20232
    Product Name in file is PLANNING
    Availability Date is 20051231
    com.hyperion.css.CSSAuthenticationException: Failed to authenticate user admin against provider Native Directory
    Error Code: 2
    com.hyperion.css.CSSAuthenticationException: Failed to authenticate user admin against provider NYULDAP Error Code: 2
    thanks.

    well thankx for the inputs. well but te screen dosent move from tht point. as we enter a datasource name, it gives this error. and we havent logged into anywhr to give the access credentials.
    am wondering how then whts the point in knowing the username and pwd if i give edit datasource .
    thankx

  • Create a batch file "very urgent"

    i want to create a batch file that run every hour to update the user_status table fields according to the following formula
    if login = 1 and login_time status = 0 then login =3

    Write this statement into a text file and name it as
    say test.sql
    UPDATE user_status
       SET login = 3
    WHERE login = 1
       AND login_time = 0;Then write a script in UNIX as following
    $vi test_script.ksh
    !# /bin/ksh
    sqlplus `@test.sql`save it
    write a crom job for every hour.
    Codes not tested...
    Hope this helps
    Ghulam

  • Problem while loading applet in opera- very urgent please

    hi,
    I am having problem while loading applet in opera browser. Showing "Applet loading " continuously. I am trying to use URLConnection to read information from applet's own host. I cant find the exact problem what is happening, Since there is no error message in browser Javaconsole.
    If anybody have idea on this please help me. I am in great hurry.
    Thanks in advance.
    Rao. V

    hi this is rao,
    I inserted a lot of System.out statements throughout applet life cycle. But they are not displaying in java console. I think the problem is in Opera-java settings. Since i am new to the opera environment i cant get right solution.
    Please help me if anybody having clear idea on this aspect.
    thanks in advance

  • Problem in creating New line in --File writing(Urgent)

    Hi all
    I am facing a tipical problem.
    I am writing a Text file using FileWriter and i am using "\n" for writing a new line,
    but when i open notepad all are falling on a single line with a special char
    (if i open the text file in some other editor vie wis very fine)
    C-0-1@C-1-0@ C-2-1
    @ is where i am writing new line.
    but this king of writing is not supported by my third party tool to which i am sending the text file
    as parameter..
    Kindly any one provide me a solution.
    Bye

    newlines differ between windows and linux/unix. Windows' new line character is somthing like "\n\m" where linux uses "/n". So to keep your program platform independent I would suggest using System.getProperty("line.separator") so your code might look like:
    String s = "C-0-1" + System.getProperty("line.separator") + "C-1-0" + System.getProperty("line.separator") + "C-2-1";
    //then write the string to the filethis will give you the appropriate newline character for the platform your program runs on.

  • Problem description: My computer is running very slow ever since I switched to Yosemite.  I get the multicolored wheel just opening my browser at times and waiting for a page to open, or an application.  Any ideas other than rebooting my computer to

    Problem description:
    My computer is running very slow ever since I switched to Yosemite.  I get the multicolored wheel just opening my browser at times and waiting for a page to open, or an application.  Any ideas other than rebooting my computer to get the problem to alleviate for a few days?
    EtreCheck version: 2.1.8 (121)
    Report generated February 16, 2015 at 2:35:55 PM PST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2009) (Technical Specifications)
        iMac - model: iMac10,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                Empty  
            BANK 1/DIMM0
                Empty  
            BANK 0/DIMM1
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM1
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 11 days 19:34:2
    Disk Information: ℹ️
        ST3500418ASQ disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            BOOTCAMP (disk0s4) /Volumes/BOOTCAMP : 60.76 GB (15.30 GB free)
            Macintosh HD (disk1) / : 438.11 GB (351.62 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 438.49 GB Online
        HL-DT-ST DVDRW  GA11N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple Internal Memory Card Reader
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        hp officejet 4200 series
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.accountsd.plist
        [killed]    com.apple.AirPlayUIAgent.plist
        [killed]    com.apple.bird.plist
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudd.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.coreservices.uiagent.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.iconservices.iconservicesagent.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.pluginkit.pkd.plist
        [killed]    com.apple.printtool.agent.plist
        [killed]    com.apple.recentsd.plist
        [killed]    com.apple.secd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.spindump_agent.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        19 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.AssetCacheLocatorService.plist
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.coresymbolicationd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.diagnosticd.plist
        [killed]    com.apple.emond.aslmanager.plist
        [killed]    com.apple.iconservices.iconservicesagent.plist
        [killed]    com.apple.iconservices.iconservicesd.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.periodic-monthly.plist
        [killed]    com.apple.periodic-weekly.plist
        [killed]    com.apple.sandboxd.plist
        [killed]    com.apple.softwareupdate_download_service.plist
        [killed]    com.apple.spindump.plist
        [killed]    com.apple.tccd.system.plist
        [killed]    com.apple.wdhelper.plist
        [killed]    com.apple.xpc.smd.plist
        20 processes killed due to memory pressure
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [running]    com.GoodShop.updater.plist [Click for support]
    User Login Items: ℹ️
        None
    Internet Plug-ins: ℹ️
        o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        Google Earth Web Plug-in: Version: 5.2 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.2.4 [Click for support]
        RealPlayer Plugin: Version: Unknown [Click for support]
        AdobePDFViewerNPAPI: Version: 10.1.13 [Click for support]
        DivXBrowserPlugin: Version: 2.0 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0
        googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        AdobePDFViewer: Version: 10.1.13 [Click for support]
        GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 [Click for support]
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.79 [Click for support]
        VSeeHelper: Version: VSeeHelper 1.0.0.0 - SDK 10.8 [Click for support]
    Safari Extensions: ℹ️
        avast! Online Security
        Goodshop app
    3rd Party Preference Panes: ℹ️
        DivX  [Click for support]
        Flip4Mac WMV  [Click for support]
        MacFUSE  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 438.11 GB Disk used: 86.50 GB
        Destinations:
            Backup [Local]
            Total size: 159.70 GB
            Total number of backups: 3
            Oldest backup: 2014-11-24 05:20:18 +0000
            Last backup: 2015-02-01 03:04:02 +0000
            Size of backup disk: Too small
                Backup size 159.70 GB < (Disk used 86.50 GB X 3)
    Top Processes by CPU: ℹ️
             8%    WindowServer
             5%    DashboardClient
             3%    mds
             2%    launchd
             0%    ocspd
    Top Processes by Memory: ℹ️
        64 MB    WindowServer
        52 MB    thunderbird
        34 MB    mds
        34 MB    Mail
        30 MB    mds_stores
    Virtual Memory Information: ℹ️
        654 MB    Free RAM
        834 MB    Active RAM
        777 MB    Inactive RAM
        903 MB    Wired RAM
        102.49 GB    Page-ins
        1.46 GB    Page-outs
    Diagnostics Information: ℹ️
        Standard users cannot read /Library/Logs/DiagnosticReports.
        Run as an administrator account to see more information.

    Hi Linc!  Sorry for the delay.  Here is the information:
    Start time: 16:48:08 02/28/15
    Revision: 1241
    Model Identifier: iMac10,1
    System Version: OS X 10.10.2 (14C109)
    Kernel Version: Darwin 14.1.0
    Time since boot: 10 days 21:04
    UID: 502
    SerialATA
        ST*******ASQ                          
    USB
        officejet 4200 series (Hewlett Packard)
    Bluetooth
        Apple Wireless Mouse
    FileVault 2: On FileVault master keychain appears to be installed
    FileVault 1: On
    I/O wait time (ms/s)
        launchd (UID 0): 53
    Font issues: 40
    Firewall: On
    System caches/logs
        1987 MB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-01-31 SecurityAgent crash
        2015-02-01 2BUA8C4S2C.com.agilebits.onepassword4-helper crash
        2015-02-01 IMDPersistenceAgent crash
        2015-02-01 secd crash
        2015-02-20 Inkjet7 crash
        2015-02-28 IMDPersistenceAgent crash
        2015-02-28 secd crash x2
    Kernel log
        Feb 23 07:06:08 Failed to get hibernate image filename
        Feb 23 17:07:05 Failed to get hibernate image filename
        Feb 24 07:06:05 Failed to get hibernate image filename
        Feb 24 17:47:13 Failed to get hibernate image filename
        Feb 24 18:31:50 IOAudioStream[0xffffff802df40400]::clipIfNecessary() - Error: counted 1 clip more than one buffer ahead errors.
        Feb 24 19:14:41 Failed to get hibernate image filename
        Feb 24 20:56:40 Failed to get hibernate image filename
        Feb 24 22:14:14 Failed to get hibernate image filename
        Feb 24 22:38:31 Failed to get hibernate image filename
        Feb 25 06:58:23 Failed to get hibernate image filename
        Feb 25 17:40:53 Failed to get hibernate image filename
        Feb 25 21:04:27 Failed to get hibernate image filename
        Feb 25 21:31:52 Failed to get hibernate image filename
        Feb 26 07:03:06 Failed to get hibernate image filename
        Feb 26 17:06:59 Failed to get hibernate image filename
        Feb 27 06:58:56 Failed to get hibernate image filename
        Feb 27 17:02:56 Failed to get hibernate image filename
        Feb 27 19:17:20 Failed to get hibernate image filename
        Feb 27 23:04:12 Failed to get hibernate image filename
        Feb 28 10:09:19 Failed to get hibernate image filename
        Feb 28 13:07:21 Failed to get hibernate image filename
        Feb 28 14:08:38 Failed to get hibernate image filename
        Feb 28 15:11:16 Failed to get hibernate image filename
        Feb 28 16:18:21 msdosfs_fat_uninit_vol: error 6 from msdosfs_fat_cache_flush
        Feb 28 16:29:32 Failed to get hibernate image filename
    System log
            label = "2.5.4.3";
            "localized label" = "2.5.4.3";
            type = string;
            value = "courier.sandbox.push.apple.com";
        Feb 28 16:30:55 loginwindow ERROR | __50-[MCXDLauncher(Private) startNetworkChangeThread:]_block_invoke | Unable to GetMCXAgentPort
        Feb 28 16:31:09 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8424]
        Feb 28 16:31:44 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8433]
        Feb 28 16:32:36 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:34:16 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:38:37 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "1Password mini" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:38:49 WindowServer WSGetSurfaceInWindow : Invalid surface 769181205 for window 4518
        Feb 28 16:38:49 WindowServer WSGetSurfaceInWindow : Invalid surface 769181205 for window 4518
        Feb 28 16:38:56 WindowServer WSGetSurfaceInWindow : Invalid surface 1023641180 for window 4522
        Feb 28 16:38:56 WindowServer WSGetSurfaceInWindow : Invalid surface 1023641180 for window 4522
        Feb 28 16:39:06 WindowServer WSGetSurfaceInWindow : Invalid surface 1058035653 for window 4525
        Feb 28 16:39:06 WindowServer WSGetSurfaceInWindow : Invalid surface 1058035653 for window 4525
        Feb 28 16:39:22 WindowServer WSGetSurfaceInWindow : Invalid surface 996085260 for window 4530
        Feb 28 16:39:22 WindowServer WSGetSurfaceInWindow : Invalid surface 996085260 for window 4530
        Feb 28 16:39:33 WindowServer WSGetSurfaceInWindow : Invalid surface 1034343505 for window 4534
        Feb 28 16:39:33 WindowServer WSGetSurfaceInWindow : Invalid surface 1034343505 for window 4534
        Feb 28 16:39:39 Google Chrome Helper CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Feb 28 16:39:39 Google Chrome Helper CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Feb 28 16:46:20 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8979]
        Feb 28 16:49:02 loginwindow ERROR | __50-[MCXDLauncher(Private) startNetworkChangeThread:]_block_invoke | Unable to GetMCXAgentPort
    Daemons
        com.apple.AccountPolicyHelper
        com.apple.AssetCacheLocatorService
        com.apple.CodeSigningHelper
        com.apple.MobileFileIntegrity
        com.apple.awdd
        com.apple.backupd-auto
        com.apple.cache_delete
        com.apple.coresymbolicationd
        com.apple.ctkd
        com.apple.diagnosticd
        com.apple.emond.aslmanager
        com.apple.iconservices.iconservicesagent
        com.apple.iconservices.iconservicesd
        com.apple.ifdreader
        com.apple.installd
        com.apple.installer.osmessagetracing
        com.apple.nehelper
        com.apple.networkd_privileged
        com.apple.nsurlsessiond_privileged
        com.apple.nsurlstoraged
        com.apple.periodic-daily
        com.apple.periodic-monthly
        com.apple.periodic-weekly
        com.apple.sandboxd
        com.apple.secinitd
        com.apple.security.syspolicy
        - status: -15
        com.apple.softwareupdate_download_service
        com.apple.softwareupdated
        com.apple.spindump
        com.apple.sysmond
        com.apple.systemstatsd
        com.apple.tccd.system
        com.apple.watchdogd
        com.apple.wdhelper
        org.cups.cupsd
    Agents
        2BUA8C4S2C.com.agilebits.onepassword4-helper
        com.adobe.ARM.UUID
        com.apple.AirPortBaseStationAgent
        com.apple.imdpersistence.IMDPersistenceAgent
        - status: -10
        com.apple.secd
        - status: -10
    User crontab
        59 16 * * 7 /Applications/MacScan\ 2/MacScan.app/Contents/MacOS/MacScan -autoscan YES
    Firefox extensions
        Mozilla Firefox hotfix
    Widgets
        iCal
    iCloud errors
        cloudd 7
        comapple.InputMethodKit.UserDictionary 2
        CallHistorySyncHelper 1
    Continuity errors
        sharingd 1
    Restricted files: 174
    Lockfiles: 30
    High file counts
        Desktop: 54
    Accessibility
        Scroll Zoom: On
    Contents of /System/Library/Security/authorization.plist
        - mod date: Oct  9 02:17:00 2014
        - checksum: 2720110640
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>comment</key>
        <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
        <key>rights</key>
        <dict>
        <key></key>
        <dict>
        <key>class</key>
        <string>rule</string>
        <key>comment</key>
        ...and 1850 more line(s)
    Contents of /private/etc/authorization.deprecated
        - mod date: Oct 25 13:37:39 2014
        - checksum: 842352627
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>comment</key>
        <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
        <key>rights</key>
        <dict>
        <key></key>
        <dict>
        <key>class</key>
        <string>rule</string>
        <key>comment</key>
        ...and 1013 more line(s)
    Contents of /private/etc/pam.d/prl_disp_service
        - mod date: Mar  5 03:24:01 2010
        - checksum: 1160556194
        auth       required       pam_nologin.so
        auth       optional       pam_afpmount.so
        auth       sufficient     pam_securityserver.so nullok
        auth       sufficient     pam_unix.so  nullok
        auth       required       pam_deny.so
        account    required       pam_permit.so
        password   required       pam_deny.so
        session    required       pam_permit.so
        session    optional       pam_afpmount.so
    Contents of /private/etc/pam.d/prl_disp_service.snow_leopard
        - mod date: Mar  5 03:24:01 2010
        - checksum: 2633576920
        auth       optional       pam_krb5.so
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
        auth       optional       pam_krb5.so
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Aug  1 17:37:19 2012
        - checksum: 408149527
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Applications
        /Applications/Acrobat 6.0 Professional/Acrobat 6.0.2 Professional.app
        - N/A
        /Applications/Acrobat 6.0 Professional/Acrobat Distiller 6.0.2.app
        - com.adobe.distiller
        /Applications/Adobe/Acrobat.com.app
        - com.adobe.mauby.UUID.1
        /Applications/Adobe/Adobe Help.app
        - chc.UUID.1
        /Applications/Bible Explorer 4.app
        - com.BE8.wordsearchbible.corp
        /Applications/DivX Converter.app
        - N/A
        /Applications/DivX Player.app
        - com.divx.DivX_Player
        /Applications/DivX/DivX Community.app
        - com.spritec.DVD
        /Applications/DivX/DivX Products.app
        - com.spritec.DVD
        /Applications/DivX/DivX Support.app
        - com.spritec.DVD
        /Applications/DivX/Uninstall DivX for Mac.app
        - com.divxinc.uninstalldivxformac
        /Applications/FOX News Live.app
        - FoxPlayerAIR.UUID.1
        /Applications/Flip4Mac/WMV Player.app
        - net.telestream.wmv.player
        /Applications/Garmin Express.app
        - com.garmin.renu.client
        /Applications/Garmin WebUpdater.app
        - com.garmin.WebUpdater
        /Applications/Hewlett-Packard/HP Image Edit.app
        - com.hp.hpimageedit
        /Applications/Hewlett-Packard/HP Image Print.app
        - com.hp.photo.imageprint
        /Applications/Hewlett-Packard/HP Image Zone.app
        - com.hp.imagezone
        /Applications/Hewlett-Packard/HP Instant Share.app
        - com.hp.photo.instantshare
        /Applications/Hewlett-Packard/HP Panorama Stitching.app
        - com.hp.PanoramaStitching
        /Applications/Hewlett-Packard/HP Photo and Imaging Software/HP E-mail Portal/HP E-mail Portal
        - N/A
        /Applications/Hewlett-Packard/HP Photo and Imaging Software/HP Photo and Imaging Director/Director Docker.app
        - com.hp.director.docker
        /Applications/Hewlett-Packard/HP Software Update.app
        - com.hp.softwareupdate
        /Applications/Hewlett-Packard/HP Uninstaller
        - N/A
        /Applications/Karaoke Maker/Audacity.app
        - net.sourceforge.audacity
        /Applications/Macromedia Studio 8/Macromedia Contribute 3/Contribute
        - com.macromedia.Contribute
        /Applications/Macromedia Studio 8/Macromedia Contribute 3/Contribute/Contents/MacOS/Contribute
        - N/A
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8
        - com.macromedia.Dreamweaver
        /Applications/Macromedia Studio 8/Macromedia Extension Manager/Extension Manager.app
        - com.macromedia.ExtensionManager
        /Applications/Macromedia Studio 8/Macromedia Fireworks 8/Fireworks 8.app
        - com.macromedia.fireworks
        /Applications/Macromedia Studio 8/Macromedia Flash 8 VideoEncoder/Flash 8 Video Encoder.app
        - com.macromedia.FLVEncoder
        /Applications/Macromedia Studio 8/Macromedia Flash 8/Flash 8.app
        - com.macromedia.flash.8
        /Applications/Microsoft AutoUpdate.app
        - com.microsoft.autoupdate
        /Applications/Microsoft Office 2004/Additional Tools/Handheld Sync Installer
        - com.MindVision.VISEX
        /Applications/Microsoft Office 2004/Additional Tools/Handheld Sync Installer/Contents/MacOSClassic/Handheld Sync Installer
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Microsoft Language Register/Microsoft Language Register
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Remote Desktop Connection/Remote Desktop Connection
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Remove Office/Remove Office
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Windows Media Installer
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Windows Media Installer/Contents/MacOS/Windows Media Installer
        - N/A
        /Applications/Microsoft Office 2004/MSN Messenger.app
        - Microsoft/com.microsoft.Messenger
        /Applications/Microsoft Office 2004/Microsoft Entourage
        - N/A
        /Applications/Microsoft Office 2004/Microsoft Excel
        - N/A
        /Applications/Microsoft Office 2004/Microsoft PowerPoint
        - N/A
        /Applications/Microsoft Office 2004/Microsoft Word
        - N/A
        /Applications/Microsoft Office 2004/Office/Alerts Daemon.app
        - Microsoft/com.microsoft.AlertsDaemon
        /Applications/Microsoft Office 2004/Office/Database Utility
        - N/A
        /Applications/Microsoft Office 2004/Office/Equation Editor
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Cert Manager.app
        - com.microsoft.certmgr
        /Applications/Microsoft Office 2004/Office/Microsoft Clip Gallery
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Database Daemon
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Error Reporting.app
        - com.microsoft.error_reporting
        /Applications/Microsoft Office 2004/Office/Microsoft Graph
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Office Notifications
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Query
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Sync Services.app
        - com.microsoft.entourage.syncservices
        /Applications/Microsoft Office 2004/Office/Organization Chart
        - N/A
        /Applications/Microsoft Office 2004/Office/Project Gallery Launcher
        - N/A
        /Applications/Open XML Converter.app
        - com.microsoft.OfficeConverter
        /Applications/OpenOffice.app
        - org.openoffice.script
        /Applications/Quicken 2007/Quicken 2007
        - com.intuit.quicken
        /Applications/Quicken 2007/Quicken 2007/Contents/MacOS/Quicken 2007
        - N/A
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Emergency Records Organizer
        - com.intuit.ero
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Emergency Records Organizer/Contents/MacOSClassic/Emergency Records Organizer
        - N/A
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Home Inventory.app
        - com.intuit.HomeInventory
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Quicken Backup Utility.app
        - com.intuit.quicken.dotmac
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Quicken Scheduler
        - N/A
        /Applications/RealPlayer Converter.app
        - com.real.converter
        /Applications/RealPlayer.app
        - com.RealNetworks.RealPlayer
        /Applications/TorBrowser.app
        - N/A
        /Applications/Utilities/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Applications/Utilities/Adobe Utilities.localized/Adobe Updater6/Adobe Updater.app
        - "com.Adobe.ESD.AdobeUpdaterApplication"
        /Library/Application Support/Adobe/AdobePDF.app
        - com.Adobe.print.AdobePDF.bef
        /Library/Application Support/DivX/DivXUpdater.app
        - com.divx.DivXUpdater
        /Library/Application Support/Hewlett-Packard/Software Update/HP Rules Processor.app
        - com.hp.rulesprocessor
        /Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app
        - com.hp.HPScheduler
        /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater
        - N/A
        /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater/Contents/MacOS/HP Software Updater
        - N/A
        /Library/Application Support/Microsoft/HV1.0/Microsoft Help Viewer.app
        - com.microsoft.helpviewer
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Charts.app
        - com.microsoft.openxml.chartconverter.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Excel.app
        - com.microsoft.openxml.excel.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Word.app
        - com.microsoft.openxml.word.app
        /Library/Application Support/Microsoft/Office Converter Support/pptfc.app
        - com.microsoft.openxml.powerpoint.app
        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
        - com.microsoft.silverlight.sllauncher
        /Library/Application Support/Script Editor/Templates/Cocoa-AppleScript Applet.app
        - com.apple.ScriptEditor.id.cocoa-applet-template
        /Library/Application Support/Script Editor/Templates/Droplets/Droplet with Settable Properties.app
        - com.apple.ScriptEditor.id.droplet-with-settable-properties-template
        /Library/Application Support/Script Editor/Templates/Droplets/Recursive File Processing Droplet.app
        - com.apple.ScriptEditor.id.file-processing-droplet-template
        /Library/Application Support/Script Editor/Templates/Droplets/Recursive Image File Processing Droplet.app
        - com.apple.ScriptEditor.id.image-file-processing-droplet-template
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/flashplayer
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_burn_cd.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_export_images.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_import_images.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_panorama_stitch.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_folders.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_image_edit.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_image_print.app
        - N/A
        /Library/Documentation/User Guides and Information.localized/Apple Hardware Test Read Me.app
        - com.apple.AppleHardwareTestReadMe
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.Template
        /Library/Image Capture/Scripts/Import and View with iPhoto.app
        - com.hp.iPhoto.icautotask
        /Library/Parallels/Parallels Mounter.app
        - com.parallels.server.mounter
        /Library/Printers/hp/Fax/fax.backend
        - com.hp.fax
        /Library/Printers/hp/Fax/rastertofax.filter
        - com.hp.rastertofax
        /Library/Printers/hp/cups/filters/commandtohp.filter
        - com.hp.print.cups.filter.commandtohp
        /Library/Printers/hp/cups/filters/pdftopdf.filter
        - com.hp.print.cups.filter.pdftopdf
        /Library/Printers/hp/cups/tools/autosetup.tool
        - com.hp.print.autosetup
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_bepbmhgboaologfdajaanbcjmnhjmhfn/Default bepbmhgboaologfdajaanbcjmnhjmhfn.app
        - com.google.Chrome.app.Default-bepbmhgboaologfdajaanbcjmnhjmhfn-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_blpcfgokakmgnkcojhhkbfbldkacnbeo/Default blpcfgokakmgnkcojhhkbfbldkacnbeo.app
        - com.google.Chrome.app.Default-blpcfgokakmgnkcojhhkbfbldkacnbeo-internal
        /Users/USER/Library/Caches/com.adobe.Reader.ARM/UUID/Adobe Reader Updater.app
        - com.adobe.ARM
        /mike's old computer/Adobe/AdobePDF.app
        - com.Adobe.print.AdobePDF.bef
        /mike's old computer/Adobe/Installers/R2/Setup.app
        - com.adobe.Installers.Setup
        /mike's old computer/Deimos Rising/Deimos Rising
        - N/A
        /mike's old computer/IA_Installers/TypingMaster_for_Mac/TypingMasterMac.app
        - N/A
        /mike's old computer/TypingMasterMac/UninstallerData/Uninstall TypingMaster for Mac.app
        - N/A
        /mike's old computer/TypingMasterMac/itutoreng.app
        - N/A
        /mike's old computer/adobe applications/Adobe GoLive CS/Adobe GoLive CS.app
        - com.adobe.GoLive
        /mike's old computer/adobe applications/Adobe Illustrator CS/2.app
        - com.adobe.illustrator
        /mike's old computer/adobe applications/Adobe InDesign CS/InDesign CS.app
        - com.adobe.InDesign
        /mike's old computer/adobe applications/Adobe InDesign CS/Plug-Ins/Online/AUMLibrary.cfm/Contents/SharedSupport/Adobe Update Manager.app
        - com.adobe.ESD.AUM
        /mike's old computer/adobe applications/Adobe Photoshop CS/Adobe ImageReady CS.app
        - com.adobe.ImageReady
        /mike's old computer/adobe applications/Adobe Photoshop CS/Adobe Photoshop CS.app
        - com.adobe.Photoshop
        /mike's old computer/adobe applications/Adobe Version Cue/Uninstall Adobe Version Cue.app
        - N/A
        /old computer stuff/At Ease Setup Folder/At Ease Setup
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Apple System Profiler
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Calculator
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Chooser
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/FaxStatus
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Graphing Calculator
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Browse the Internet
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Connect To...
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Mail
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Key Caps
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Note Pad
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Remote Access Status
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Scrapbook
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Sherlock
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/SimpleSound
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Stickies
        - N/A
        /old computer stuff/OLDIESystem Folder/Application Support/IntelliTools/Classic Sending Helper
        - N/A
        /old computer stuff/OLDIESystem Folder/Application Support/Norton AntiVirus ƒ/NAV Small Scanner
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Appearance
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Apple Menu Options
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/AppleTalk
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/ColorSync
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Configuration Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Control Strip
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Date & Time
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/DialAssist
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Energy Saver
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Extensions Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/File Exchange
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/File Sharing
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/General Controls
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Infrared
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Internet
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Keyboard
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Location Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Memory
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Microsoft Office Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Modem
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Monitors & Sound
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Mouse
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Numbers
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/QuickTime™ Settings:™ Settings:
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/QuikSync
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Remote Access
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Speech
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Startup Disk
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/TCP:IP
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Text
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Users & Groups
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Web Sharing
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Application Switcher
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/ColorSync Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Control Strip Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Desktop PrintMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Desktop Printer Spooler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/FBC Indexing Scheduler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/FaxMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Find/Find by Content Indexing
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Folder Actions
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Norton Scheduler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/PrintMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Time Synchronizer
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Web Sharing Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Help/Apple Help Viewer/Help Viewer
        - N/A
        /old computer stuff/OLDIESystem Folder/MacTCP DNR
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/Desktop Printer Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/Network Setup Scripting
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/URL Access Scripting
        - N/A
        /old computer stuff/OLDIESystem Folder/System Extensions (Disabled)/AOL 5.0 Backup Installer
        - N/A
        /old computer stuff/Tony Hawk's Pro Skater 4/Tony Hawk's Pro Skater 4.app
        - com.aspyr.thps4
    Frameworks
        /Library/Frameworks/Adobe AIR.framework
        - com.adobe.AIR
        /Library/Frameworks/DivX Toolkit.framework
        - com.divx.divxtoolkit
        /Library/Frameworks/EWSMac.framework
        - com.eSellerate.EWSMac67108868
        /Library/Frameworks/HPSmartPrint.framework
        - com.hp.print.HPSmartPrint
        /Library/Frameworks/MacFUSE.framework
        - com.google.MacFUSE
        /Library/Frameworks/PrintMeSSL.framework
        - com.efi.printme.ssl
        /Library/Frameworks/TSLicense.framework
        - net.telestream.license
    PrefPane
        /Library/PreferencePanes/DivX.prefPane
        - com.divx.divxprefs
        /Library/PreferencePanes/Flip4Mac WMV.prefPane
        - net.telestream.wmv.prefpane
        /Library/PreferencePanes/MacFUSE.prefPane
        - com.google.MacFUSE
    Bundles
        /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin
        - info.emagic.driver.unitor
        /Library/Contextual Menu Items/ParallelsCM.plugin
        - com.parallels.cmplugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/AdobeCP15.plugin
        - com.adobe.adobecp
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Flash Player.plugin
        - com.macromedia.FlashPlayer-10.6.plugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/adobecp.plugin
        - com.adobe.adobecp20
        /Library/Internet Plug-Ins/AdobePDFViewer.plugin
        - com.adobe.acrobat.pdfviewer
        /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
        - com.adobe.acrobat.pdfviewerNPAPI
        /Library/Internet Plug-Ins/DivXBrowserPlugin.plugin
        - com.divx.DivXBrowserPlugin
        /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
        - net.telestream.wmv.plugin
        /Library/Internet Plug-Ins/GarminGpsControl.plugin
        - com.garmin.GarminGpsControl
        /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
        - com.Google.GoogleEarthPlugin.plugin
        /Library/Internet Plug-Ins/Silverlight.plugin
        - com.microsoft.SilverlightPlugin
        /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin
        - com.google.googletalkbrowserplugin
        /Library/Internet Plug-Ins/iPhotoPhotocast.plugin
        - com.apple.plugin.iPhotoPhotocast
        /Library/Internet Plug-Ins/o1dbrowserplugin.plugin
        - com.google.o1dbrowserplugin
        /Library/Printers/Macromedia/PDEs/FlashPaperPDE.plugin
        - com.macromedia.flashpaper.pde.FlashPaperPDE
        /Library/Printers/PPD Plugins/AdobePDFPDE.plugin
        - com.Adobe.print.AdobePDF.pde
        /Library/QuickLook/GBQLGenerator.qlgenerator
        - com.apple.garageband.quicklookgenerator
        /Library/QuickLook/ParallelsQL.qlgenerator
        - com.parellels.quicklookgenerator
        /Library/Spotlight/GBSpotlightImporter.mdimporter
        - com.apple.garageband.spotlightimporter
        /Library/Spotlight/Microsoft Entourage.mdimporter
        - com.microsoft.entourageMDImporter
        /Library/Spotlight/ParallelsMD.mdimporter
        - com.parallels.mdimporter
        /Users/USER/Library/Application Support/Google/Chrome/PepperFlash/12.0.0.70/PepperFlashPlayer.plugin
        - com.macromedia.PepperFlashPlayer.pepper
        /Users/USER/Library/Internet Plug-Ins/CitrixOnlineWebDeploymentPlugin.plugin
        - com.citrixonline.mac.WebDeploymentPlugin
    Library paths
        /Applications/Karaoke Maker/libmp3lame.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/Frameworks/libwchar.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/CoreTypes.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCURL.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCrypto.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibSSL.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/SystemFrameworkUtils.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/ZLib.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/DWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKCmdCaps.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKCmdFS.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKEngine.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/AdobePIM.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/PWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_caps.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_oobelib.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_upgrade.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/UWA/UWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/core/AdobePIM.dylib
        /Library/Application Support/DivX/Libraries/libDivXDesktopSupport.dylib
        /Library/Application Support/DivX/QtPlugins/accessible/libqtaccessiblewidgets.dylib
        /Library/Application Support/DivX/QtPlugins/iconengines/libqsvgicon.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqgif.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqico.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqjpeg.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqmng.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqsvg.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqtiff.dylib
        /Library/Application Support/DivX/QtPlugins/script/libqtscriptdbus.dylib
        /Library/Application Support/DivX/QtPlugins/sqldrivers/libqsqlite.dylib
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
        /Library/Frameworks/MacFUSE.framework/Versions/A/Resources/Debug/libfuse.dylib. dSYM/Contents/Resources/DWARF/libfuse.dylib
        /Library/Frameworks/MacFUSE.framework/Versions/A/Resources/Debug/libfuse_ino64. dylib.dSYM/Contents/Resources/DWARF/libfuse_ino64.dylib
        /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Core.framework/Versions/3.0/Libraries/libHPIOnetsnmp.5.dylib
        /Library/Printers/hp/Frameworks/HPSmartX.framework/Versions/B/Resources/lib/SxC FReader.dylib
        /Library/Printers/hp/Frameworks/HPSmartX.framework/Versions/C/Resources/lib/SxC FReader.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libnspr4.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libnssckbi.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libplc4.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libplds4.dylib
        /Users/USER/Library/Application Support/Firefox/Profiles/w5owlxqa.default/gmp-gmpopenh264/1.1/libgmpopenh264.dy lib
        /Users/USER/Library/Application Support/Google/Chrome/WidevineCDM/1.4.6.758/_platform_specific/mac_x64/libwidev inecdm.dylib
        /Users/USER/Library/Caches/com.apple.ScreenSaver.Engine/com.apple.vision/com.ap ple.vision.64FaceCoreCLKernel.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libpbodbc3.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-jni-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-pb-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-rw-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-util-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/tomcat/webapps/ROOT/WEB-INF/components/com.adobe.bauhaus.nativecomm/res/VCF oundation.dylib
        /usr/lib/libgutenprint.2.0.3.dylib
        /usr/local/lib/libfreetype.6.3.16.dylib
        /usr/local/lib/libfreetype.6.dylib
        /usr/local/lib/libfreetype.dylib
        /usr/local/lib/libfuse.2.dylib
        /usr/local/lib/libfuse_ino64.2.dylib
    Installations
        Norton AntiVirus Application: 6/20/10, 10:21 PM
        Symantec Scheduler: 6/20/10, 10:21 PM
        Microsoft® Silverlight™ Browser Plug-In: 6/19/10, 8:25 PM
        Parallels Desktop 5 for Mac: 6/10/10, 6:02 AM
        MacFUSE Core: 6/10/10, 6:03 AM
    Elapsed time (sec): 317
    <Edited By Host>

  • While creating Billing, system is very slow..performance issue

    Hi,
    While creating Billing, system is very slow. How can I debugg and provide the analysis where is the exact problem.
    This is showing performance issue.
    Waiting for kind response.
    Best Regards,
    Padhy
    Moderator Message : Duplicate post locked.
    Edited by: Vinod Kumar on May 12, 2011 10:59 AM

    hi,
    Chk the links
    http://help.sap.com/saphelp_nw04/helpdata/en/4a/e71f39488fee0ce10000000a114084/content.htm
    Re: How to create Secondary Index?
    How may secondary indices I can create on the ODS?
    Deletion of ODS index
    Ramesh

  • SAPscript Output Problem - Very Urgent - Please help

    Hi,
    I am having the following problem with SAPscript.
    In the Main Window, I have instructions to the printer in the ZPL2 language (For Zebra Printer).
    There are also several variables, which are highlighted in Gray and enclosed in the’&’.
    There are also several elements – all of them empty except for the one where this code is.
    Now, I received this program to modify in terms of code and the output.
    IF you have never done any work with Zebra Printing, the way it is done is that you create a label using the Zebra BarOne or Zebra Designer program, then output it to an ‘itf’ file, upload it into a standard text as .itf and copy the uploaded contents to the main window. When printing to a Zebra printer, the Zebra printer will read the instructions and will print the output.
    Here is the problem: The config for the output type is correct.
    When doing a printing test from SAPscript, I get the right output and the Zebra printer is able to print it.
    However, the real process for this task will go through MB02. There, if I create a spool request using the proper method (select output type and etc.), it will go the spool. However, if I print preview or output (doesn’t work with the Zebra printer, so I have to output to the Laser printer), it will output the following (none of the following includes any of the ZPL2 code/instructions. Instead, it seams to print the variables contents with the field name next to it – This isn’t whats it’s the Main window!!!)
    http://img244.imageshack.us/img244/6915/66052475zk2.jpg
    Please help. I have debugged but don’t know what to do and can’t find anything wrong.
    This is very urgent. Any help will be useful.
    Thanks,
    John

    Ok, maybe I have confused others in regards to the issue as well.
    We expect this label to be output from a Zebra Printer.
    When output through Sapscripts printing test, the preview from the spool shows the ZPL2 code in small font (non readible if a created a screenshot) and if sent to the Zebra Printer, it prints the label correctly.
    When output through MB02, the preview from the spool shows the code that I have attached to the 1st post in this thread. If I try to output to the Zebra Printer, nothing happens because the ZPL2 instructions are not even in the preview and therefore, the Zebra printer recieves no instructions. I should not have mentioned the laser printer, because it has nothing to do with this issue.
    I hope that this makes the issue a little more clear and understandable. Please help.
    Here is the ZPL2 coding before uploading to standard text (only difference is that once uploaded,  the '/' characters are removed.) However, I believe that the problem may lie in the print program and how it compiles but I debugged and haven't really seen where it comes from:
    /:NEW-PAGE
    / ^XA
    / DFNEW-RE-1FS
    / ^PRC
    / LH0,0FS
    / ^LL1830
    / ^MD0
    / ^MNY
    / LH0,0FS
    / FO244,854A0N,55,46CI13FRFB154,1,0,LFN999^FS
    / FO819,698A0N,55,46CI13FRFN998FS
    / FO245,477A0N,55,46CI13FRFB755,1,0,RFN997^FS
    / FO389,926A0N,55,46CI13FRFB654,1,0,RFN996^FS
    / BY3,3.0FO42,1072B3N,N,152,N,YFRFN995FS
    / FO276,1258A0N,55,46CI13FRFN995FS
    / FO484,774A0N,55,46CI13FRFN994FS
    / FO817,774A0N,55,46CI13FRFN993FS
    / FO611,556A0N,55,46CI13FRFN992FS
    / FO245,556A0N,55,46CI13FRFN991FS
    / FO397,117A0N,55,46CI13FRFN990FS
    / FO245,405A0N,55,46CI13FRFB880,1,0,RFN989^FS
    / FO244,698A0N,55,46CI13FRFN988FS
    / FO629,998A0N,55,46CI13FRFN987FS
    / FO244,623A0N,52,42CI13FRFN986FS
    / FO397,261A0N,55,46CI13FRFB404,1,0,RFN985^FS
    / FO819,854A0N,55,46CI13FRFN984FS
    / FO725,554A0N,55,46CI13FRFN983FS
    / FO397,189A0N,55,42CI13FRFB695,1,0,RFN982^FS
    / FO397,333A0N,55,42CI13FRFN981FS
    / FO638,333A0N,55,42CI13FRFN980FS
    / FO391,21A0N,63,63CI13FRFB433,1,0,CFN979^FS
    / FO36,698A0N,55,46CI13FR
    / FDWBS:FS
    / FO37,405A0N,55,46CI13FR
    / FDMATL:FS
    / FO37,478A0N,62,44CI13FR
    / FDDESC:FS
    / FO554,698A0N,55,46CI13FR
    / FDSUPPLIER:FS
    / FO32,625A0N,55,46CI13FR
    / FDTEXT:FS
    / FO35,1258A0N,55,46CI13FR
    / FDBATCH NO:FS
    / FO770,775A0N,63,51CI13FR
    / FD/FS
    / FO32,854A0N,55,46CI13FR
    / FDESHM:FS
    / FO37,556A0N,55,46CI13FR
    / FDQTY:FS
    / FO32,998A0N,55,46CI13FR
    / FDSAP MATERIAL DOC NO:FS
    / FO525,333A0N,55,46CI13FR
    / FDofFS
    / FO556,854A0N,55,46CI13FR
    / FDINSPECT:FS
    / FO32,926A0N,55,46CI13FR
    / FDUNLOADING:FS
    / FO37,117A0N,55,46CI13FR
    / FDSTOCK TYPE:FS
    / FO32,774A0N,55,46CI13FR
    / FDPURCHASE ORDER:FS
    / FO37,188A0N,55,46CI13FR
    / FDDELIVER TO:FS
    / FO37,260A0N,55,46CI13FR
    / FDSTORAGE LOC:FS
    / FO37,332A0N,55,46CI13FR
    / FDCONTAINERS:FS
    / FO1,1359GB1217,0,6^FS
    / FO594,1359GB0,474,6^FS
    / ^XZ
    /:NEW-PAGE
    / ^XA
    / ^XFNEW-RE-1.ZPL
    / FN999FD&ATWRT_HAZAMAT(6)&^FS
    / FN998FD&EKKO-LIFNR&^FS
    / FN997FD&MABDR-MAKTX&^FS
    / FN996FD&MSEG-ABLAD&^FS
    / FN995FD&MSEG-CHARG&^FS
    / FN994FD&MSEG-EBELN&^FS
    / FN993FD&MSEG-EBELP&^FS
    / FN992FD&MSEG-ERFME&^FS
    / FN991FD&MSEG-ERFMG&^FS
    / FN990FD&MSEG-INSMK(1)&^FS
    / FN989FD&MSEG-MATNR&^FS
    / FN988FD&MSEG-MAT_PSPNR&^FS
    / FN987FD&MSEG-MBLNR&^FS
    / FN986FD&MSEG-SGTXT(40)&^FS
    / FN985FD&MSEG-UMLGO&^FS
    / FN984FD&QALS-PRUEFLOS&^FS
    / FN983FD&V_BACKORDER&^FS
    / FN982FD&V_NAME3&^FS
    / FN981FD&WS_CNTR&^FS
    / FN980FD&WS_CON&^FS
    / FN979FD&WS_HEADER& &^FS
    / ^PQ1,0,1,N
    / ^XZ
    / ^FX End of job

  • Create multiple root in a JTree??????very urgent..pl

    hello
    i have a jtree which takes a defaultMutableTreenode as its parameter.
    My problem is that i have to create multiple root.
    and what i get with this is a single root at the top.
    what is the solution for creating multiple roots in a jtree.
    pl. help its very urgent
    thanx
    hussain

    Hello Hussain,
    I found in the sourcecode of JTree the following constructor which might is be helpful for you:
    * Returns a <code>JTree</code> with each element of the specified
    * <code>Vector</code> as the
    * child of a new root node which is not displayed. By default, the
    * tree defines a leaf node as any node without children.
    * @param value a <code>Vector</code>
    * @return a <code>JTree</code> with the contents of the
    *          <code>Vector</code> as children of the root node
    * @see DefaultTreeModel#asksAllowsChildren
    public JTree(Vector value) {
    this(createTreeModel(value));
    this.setRootVisible(false);
    this.setShowsRootHandles(true);
    Greetings
    Helmut

  • Have a big problem with report. Very urgent please help

    I have a report rep1. When I run the report via batch thru command rwclient to create a file it failed. I got the follwoing error message:
    REP-0177: Error while running in remote server
    Job 1413 is terminated due to connection timeout.
    It does not even try for few seconds before gives this message. I ran some other batch reports whihc took 15 minutes and they were fine.
    So, I stopped running the bad report for the day thinking the report is still not dead. I ran the same rep1 next day I still get the same error message. But this time when I ran I looked at the appserver showjobs (which lists the reports that were running and that already ran). The job number is different But still it fails in 3 seconds with the job number 1413 and connection time out. Can any one tell what might be the problem.
    Any number of times I run this job I get the same job number with same error (all this is only if I run it as batch using rwclient). If I run this as online by calling it from a form it returns the results without any problems.
    Please help. Very urgent.
    Thanks in advance.
    Asha

    You might want to delete the report server .dat file and restart the server and try
    his also could be one of the issues we had seen and fixed in 9.0.2.3. Please ensure you have the latest patch applied
    Thanks
    The Oracle Reports team

  • SQL Loader Oracle 10g problem in upload date with time data -- Very urgent.

    Hi
    I am trying to upload data using SQL loader. There are three columns in the table
    defined as DATE. When I tried upload a data like this '2007-02-15 15:10:20', it is not loading time part. The date stored as 02/15/2008' only. There is not time on that. I tried with many different format nothing work. Can please help me ?
    I have also tried with to_date --> to_timestamp it did not work.
    The application is going to be in production, I cannot change DATE to TIME STAMP. This is very urgent.
    LASTWRITTEN "decode(:LASTWRITTEN,'null',Null, to_date(:LASTWRITTEN,'YYYY-MM-DD HH24:Mi:SS'))",
    CREATEDON "decode(:CREATEDON,'null',Null, to_date(:CREATEDON,'YYYY-MM-DD HH24:Mi:SS'))",
    LASTUPDATEDON(21) "decode(:LASTUPDATEDON,'null',Null, to_date(:LASTUPDATEDON(21),'DD/MM/YYYY HH24:MI:SS'))"

    Your problem is most likely in decode - the return type in your expression will be character based on first search value ('null'), so it will be implicitly converted to character and then again implicitly converted to date by loading into date column. At some of this conversions you probably are loosing your time part. You can try instead use cast:
    SQL> desc t
    Name                                      Null?    Type
    LASTWRITTEN                                        DATE
    CREATEDON                                          DATE
    LASTUPDATEDON                                      DATE
    SQL> select * from t;
    no rows selected
    SQL> !cat t.ctl
    LOAD DATA
    INFILE *
    INTO TABLE T
    TRUNCATE
    FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' TRAILING NULLCOLS
    LASTWRITTEN
    "decode(:LASTWRITTEN,'null',cast(Null as date),
      to_date(:LASTWRITTEN,'YYYY-MM-DD HH24:MI:SS'))",
    CREATEDON
    "decode(:CREATEDON,'null',cast(Null as date),
      to_date(:CREATEDON,'YYYY-MM-DD HH24:MI:SS'))",
    LASTUPDATEDON
    "decode(:LASTUPDATEDON,'null',cast(Null as date),
      to_date(:LASTUPDATEDON,'DD/MM/YYYY HH24:MI:SS'))"
    BEGINDATA
    2007-02-15 15:10:20,null,null
    null,2007-02-15 15:10:20,null
    null,null,15/02/2007 15:10:20
    SQL> !sqlldr userid=scott/tiger control=t.ctl log=t.log
    SQL*Loader: Release 10.2.0.3.0 - Production on Fri Feb 29 00:20:07 2008
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 3
    SQL> select * from t;
    LASTWRITTEN         CREATEDON           LASTUPDATEDON
    15.02.2007 15:10:20
                        15.02.2007 15:10:20
                                            15.02.2007 15:10:20Best regards
    Maxim

  • VERY URGENT - Adobe forms with email problems

    I THERE - I AM A ADOBE FORMCENTRAL CLIENT I HAVE MY PAYEMENTS ON DAY BUT FOR SOME REASON THE ADOBE STOP RESENDING TO MY EMAUIL ACOUNT AND TO MY CLIENTS  EMAIL ACCOUNT THE SUMARY OF THE FORM THAT IS SUBMITED. THIS IS VERY URGENT THAT BE FIXED FROM YOU SIDE PLS LET ME KNOW WHAT IS HAPENING.
    PLS FIX THIS URGENT AS I HAVE MY CLIENTS SCREEMING ON ME
    PLS ANSWER TO
    [email protected]

    Now is working
    after 2 hours is working now. but this have never hapen before. now I am
    woried with this ADOBE FORM system!!!! it can hapen and I never know.
    br
    henrique
    2014-04-25 21:29 GMT+01:00 Josh_Corey <[email protected]>:
        Re: VERY URGENT - Adobe forms with email problems
    created by Josh_Corey <http://forums.adobe.com/people/Josh_Corey> in
    FormsCentral - View the full discussion<http://forums.adobe.com/message/6331228#6331228

Maybe you are looking for

  • Oracle Auditing for Insert/delete in a Table

    Dear Oracle Guru's I have a Master table for which records are added manually using the Insert command and not by any front end tools. I have no Auditing for this table , like when an insert/delete is made in to this table. Does oracle provides any o

  • T500 and Microsoft Bluetooth Mobile 5000 Mouse

    Hello, how is it possible that the Mouse can connect to the Laptop ? Regards

  • Scheduling in Ora Apps

    Hi, I have a requirement where in the third party will enqueue the data to the queue. I want that in Oracle Apps, the data should be read as soon enqueued into the queue. I have written a procedure to dequeue the data but dont know how to trigger it.

  • Using Adobe portfolio

    Hi Everyone,      Using 'Adobe Acrobat XI Pro' I could not find out the option to add 'already opened files' to Adobe portfolio folder . Please help to resolve this issue. For Admin, If this feature is not included yet in any Adobe version, take this

  • XR - IOS QOS issue.

    Hello Masters ,   While trying  to configure QOS in ASR 9001 , I am getting the below error . Kindly help me to find a solution for it. interface GigabitEthernet0/0/1/3.824897  service-policy output ######PARENT-256K !!% 'qos-ea' detected the 'warnin