How to display dropdown on pop-up

I need to disply dropdown on pop-up for user selection. Once the values is selected from dropdown on pop-up i need to fetch that value.
Can you plese help me.
Thanks in Advance,
Regards,
Raja

Hi Seshu,
Disable the parent iviews message area before calling the child(popup) window. Then you can get the message in the child(popup) window.
According to documentation, oldest (parent) message area would be used if there are more than one windows (in a layout).
Thanks,
Raags
PS: If useful reward points

Similar Messages

  • How to display System Tray Pop up in MAC OS?

    Hi all,
    I need a simple solution for MAC application...
    I want to display a System Tray Pop up on some event
    Can anybody help me out in this?
    Thanks in advance.

    Hi,
    yet it works fine, see following code fragment
    public class Main {
        public static void main(String[] args) {
            try {
                if (SystemTray.isSupported()) {
                    TrayIcon trayIcon = new TrayIcon(Toolkit.getDefaultToolkit().getImage("duke.gif"));
                    SystemTray.getSystemTray().add(trayIcon);
                    trayIcon.displayMessage("Look!", "I've got some news for you", TrayIcon.MessageType.INFO);
                } else {
                    throw new RuntimeException("SystemTray not supported");
            } catch (AWTException e) {
                e.printStackTrace();
    }

  • How to display message in Ajax Model pop-up extender/overlay on click of a link button

    I am dynamically create the link button using reapeter control and each link assign to different type of content.i want to show the content in  a overlay / Ajax modal pop-up extender. ( Content Type: Video/PDF/Text).
    I need to know how to display the content in overlay/Modal pop-up on click of the link button.

    Hi,
    According to your description, my understanding is that you want to display the content of Video/PDF/Text in a pop-up dialogue when clicking the link button.
    I suggest you can use the Jquery media plugin to open the file content in a pop up dialogue.
    Here is a detailed code demo for your reference:
    Jquery: Open PDF File in browser with Modal Popup using Jquery Media Plugin
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to display check box in atable control

    hi
    here is my requirement
    how can i display check box in table control and also when i check that check box it has to dispaly one pop up screen with the records of table control row
    points will be rewarded
    Thanks&Regards
    Nagesh.Paruchuri

    Hi,
    See this code for how to display check box in atable control
    *---- Table declaration.
    TABLES: KNA1.
    CONTROLS TC1 TYPE TABLEVIEW USING SCREEN 200.
    CONTROLS TC2 TYPE TABLEVIEW USING SCREEN 300.
    *---- Data declaration.
    DATA:OKCODE LIKE SY-UCOMM.
    DATA:V_KNA1 LIKE KNA1.
    *DATA:ERROR TYPE C.
    *---- Internal Table declaration.
    DATA:BEGIN OF IT_TAB OCCURS 0,
          CHK,
          VBELN TYPE VBELN_VA,
          KUNNR TYPE KUNAG,
          ERDAT TYPE ERDAT,
          AUDAT TYPE AUDAT,
          VBTYP TYPE VBTYP,
         END OF IT_TAB.
    DATA:BEGIN OF IT_TAB1 OCCURS 0,
          VBELN TYPE VBELN_VA,
          POSNR TYPE POSNR_VA,
          MATNR TYPE MATNR,
          MATWA TYPE MATWA,
          PMATN TYPE PMATN,
         END OF IT_TAB1.
    *&      Module  USER_COMMAND_0100  INPUT
    MODULE USER_COMMAND_0100 INPUT.
      OKCODE = SY-UCOMM.
      CASE OKCODE.
        WHEN 'DISP' OR SPACE.
          SELECT *
             FROM VBAK
             INTO  CORRESPONDING FIELDS OF TABLE IT_TAB
             WHERE KUNNR = KNA1-KUNNR.
          IF SY-SUBRC <> 0.
            MESSAGE 'No sales document exists'(001) TYPE 'I'.
          ENDIF.
          LEAVE TO SCREEN 200.
          CLEAR OKCODE.
    *--- To leave Transaction
        WHEN 'BACK' .
          LEAVE PROGRAM.
          CLEAR OKCODE.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Module  validate_kunnr  INPUT
    MODULE VALIDATE_KUNNR INPUT.
      V_KNA1 = KNA1.
      SELECT SINGLE *
        FROM KNA1
       WHERE KUNNR = KNA1-KUNNR.
    *-----Process error condition
      IF SY-SUBRC <> 0.
        CLEAR KNA1.
        KNA1-KUNNR = V_KNA1-KUNNR.
        CASE OKCODE..
          WHEN 'BACK' OR 'EXIT' .
            LEAVE PROGRAM.
        ENDCASE.
        MESSAGE 'Customer Does Not Exist'(002) TYPE 'I'.
        LEAVE TO SCREEN 100.
      ENDIF.
    ENDMODULE.                 " validate_kunnr  INPUT
    *&      Module  STATUS_0100  OUTPUT
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'PF'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0200  INPUT
    MODULE USER_COMMAND_0200 INPUT.
      CASE OKCODE.
        WHEN 'BACK' OR 'EXIT' OR 'CANCEL'.
          LEAVE TO SCREEN 100.
          CLEAR OKCODE.
          CLEAR IT_TAB1.
        WHEN 'DISP' .
          CLEAR OKCODE.
          READ TABLE IT_TAB WITH KEY CHK = 'X'.  
       IF SY-SUBRC = 0.
            SELECT  VBELN   POSNR  MATNR MATWA PMATN
         FROM VBAP
         INTO  TABLE IT_TAB1
         WHERE VBELN = IT_TAB-VBELN.
            IF SY-SUBRC = 0.
              SORT IT_TAB.
              DESCRIBE TABLE IT_TAB LINES TC1-LINES.
              LEAVE TO SCREEN 300.
            ELSE.
              MESSAGE E016(YBHV).
            ENDIF.
          ELSE.
            MESSAGE 'Please select one record' TYPE 'I'.
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0200  INPUT
    *&      Module  STATUS_0200  OUTPUT
    MODULE STATUS_0200 OUTPUT.
      SET PF-STATUS 'PF3'.
    ENDMODULE.                 " STATUS_0200  OUTPUT
    *&      Module  USER_C.OMMAND_0300  INPUT
          text
    MODULE USER_COMMAND_0300 INPUT.
      SET PF-STATUS 'PF3'.
      CASE OKCODE.
        WHEN 'BACK' OR 'EXIT' OR 'CANCEL'.
          CLEAR OKCODE.
          LEAVE TO SCREEN 200.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0300  INPUT
    *&      Module  modify  INPUT
    MODULE MODIFY INPUT.
      MODIFY IT_TAB INDEX TC1-CURRENT_LINE.
    ENDMODULE.                 " modify  INPUT
    *&      Module  okcode  OUTPUT
          text
    MODULE OKCODE OUTPUT.
      CLEAR OKCODE.
    ENDMODULE.                 " okcode  OUTPUT
    Reward Pointsa If usefull
    Regards
    Fareedas

  • How to display Current Year and Month in Drop Down list

    Hi Dear friends,
    I am devloping a report. It has got 2 pages--input and output(Report) page.
    IN input page, user will select Month and Year from drop down list as one of the input parameters. (seperate drop down list 4 month and year)
    Now, my problem is:
    HOw to display current month and year by default in the dropdown list...........
    I hope my question is clear.
    Please help.
    Regards,
    ASh

    NO da,
    it is not working.
    First i tired with for-loop. I initialized variable "i" to -2 (i=-2) I would get the year drop down list from 2003 but, by default 2003 would come.
    So, i posted the question.
    I tried your code. It is giving following error.
    A Servlet Exception Has Occurred
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occured between lines: 122 and 127 in the jsp file: /test/inpt.jsp
    Generated servlet error:
    C:\Program Files\Apache Tomcat 4.0\work\localhost\general\test\inpt$jsp.java:182: Invalid type expression.
    first.set(Calendar.YEAR, 2003)
    ^
    An error occured between lines: 127 and 131 in the jsp file: /test/inpt.jsp
    Generated servlet error:
    C:\Program Files\Apache Tomcat 4.0\work\localhost\general\test\inpt$jsp.java:186: Invalid declaration.
    out.write("\r\n \r\nYear : \r\n \r\n"); ^ An error occured between lines: 198 and 203 in the jsp file: /test/inpt.jsp Generated servlet error: C:\Program Files\Apache Tomcat 4.0\work\localhost\general\test\inpt$jsp.java:282: Invalid type expression. first1.set(Calendar.YEAR, 2003) ^ An error occured between lines: 203 and 207 in the jsp file: /test/inpt.jsp Generated servlet error: C:\Program Files\Apache Tomcat 4.0\work\localhost\general\test\inpt$jsp.java:286: Invalid declaration. out.write("\r\n \r\nYear :\r\n \r\n");
    ^
    4 errors
    Pls. Help.
    Regards,
    Ashu

  • How to display a IE page in a view ,not popup  ?

    Hi! All
    Question 1st:
    I have create a html page by webdynpro,
    I want display this page in a view ,
    but when run this code,
    the IE page popup ,
    can you help me set the IE page in current view ?
    public void wdDoInit()
       //@@begin wdDoInit()
       String text = "<html><head></head><body>this is my test</body><html>";
       try
           IWDCachedWebResource resource = WDWebResource.getWebResource
             text.getBytes("UTF-8"), WDWebResourceType.UNKNOWN
            resource.setResourceName("test.html");
            IWDWindow window =
    wdComponentAPI.getWindowManage().createNonModalExternalWindow(
            resource.getUrl(WDFileDownloadBehaviour.OPEN_INPLACE.ordinal()), 
            resource.getResourceName());
            window.show();
        catch(Exception ex)
            wdComponentAPI.getMessageManager().reportException( new WDNonFatalException(ex), false );
    Question 2nd:
      I have create a value context attribute under context.
      it's  name is "mywindow"
      it's  type is "com.sap.tc.webdynpro.services.session.api.IWDWindow"
      Do you know how to display  "mywindow" in a view ?
      I try to put mywindow in a InputField or a IFrame,
      but all failed !
    Thanks!

    Hi,
    This is the code to open up a window
        IWDWindow win = wdComponentAPI.getWindowManager().createModalWindow(wdThis.wdGetAPI().getComponentInfo().findInWindows(<window_name>));
        wdContext.currentContextElement().set<window_context>(win);
        win.setWindowPosition(WDWindowPos.CENTER);
        win.setWindowSize(250,150);
        win.setTitle("New Window");
        win.show();
    This will open up as a pop-up. If you want to open a html page on the same window then put an iframe in your view and set its source property correspondingly.
    Regards,
    Murtuza

  • How to display error message in Popup window

    Hi,
    I have main view and when I click button I opened new pop up window.
    I have some validation for the form in pop up window. I want to display the error message in pop up window.
    Please let me know how to get it.
    Thanks

    Hi mami,
           Is is very difficulty to request focus to the POP window..in our case we are trying lot of time ..but we are not success to display massage in pop window.
    you will  put TEXTView in you pop window where you want to display massage in you POPWINDOW.
    and Create one context value Attribute as Massage
    Value Attribute-----ErrMassage.
    ErrMassage Attribute set your Text property of TEXTVIEW  UI Element.
    If(your condition is TRUE){
    //Excute Your code perfectly.
    else
    wdContext.currentContextElement().setErrMassage("Please provide proper name");
    In this way we were this massage showing in our popwindow..
    thanks
    jati

  • How to display a pdf document in an ADF Task Flow?

    I have a requirement where I need to display a pdf doc in RHS task flow, upon a linked clicked on LHS task flow. Passing the pdf doc name is what I know already. All I need to know is, how to display the pdf doc in a task flow.
    Remember, I don't want to display this as a "POP-UP".
    Appreciate help on this!
    Edited by: Yousuf Baig on Mar 9, 2013 9:01 PM

    try like this...
    <af:panelSplitter id="ps1" orientation="horizontal"
    <f:facet name="first">
    <f:facet name="second">
    <af:panelHeader
    <af:region....(have a fragment and use fileDownloadActionListener)
    </af:panelHeader>
    </f:facet>
    </af:panelSplitter>

  • How to Display F4 help as a list box

    Hello Experts,
    I have a I have added a Z field to the Shopping Cart: "ZZCBR_INDICATOR". This fields has a domain with 3 fixed values:
    Value / Description
    Y-YES
    N-No
    U-Unknown
    I created this Customer Fields (CUF) in a structure and appended the  structures into INCL_EEW_PD_HEADER_CSF_SC and INCL_EEW_PD_HEADER_CSF.
    The field is appearing correctly in the Shopping Cart and the values are saved. So far, so good.
    Here is my question:
    Can I make the field look like a traditional listbox ? Right now is appearing as an input field with binoculars to the side.
    I found a similar question in this forum and followed the following thread
    Re: How to display Customer Fields like a dropdown listbox ?
    I added the code that was given in that thread. I also set an external Break point to see whether the program was called, It dint call that program. please help me out on this.I am using SRM 5.00,  I really appreciate your help on this.
    Thanks And Regards
    Sanjeev
    Edited by: Sanjeev Gowda on Jul 23, 2009 5:40 PM
    Edited by: Sanjeev Gowda on Jul 23, 2009 5:51 PM

    I had to write the code in the begining of the form and i had wrote it at the end of the form.

  • How to get rid of pop ups

    how to get rid of pop ups

    Could you please help us repair our Macbook after downloading MPlayerX. Followed your instructions from an earlier post and the result is as follows, hoping it helps.
    Thanks in anticipation
    Start time: 21:18:19 03/21/15
    Revision: 1237
    Model Identifier: MacBook7,1
    Memory: 2 GB
    System Version: Mac OS X 10.6.8 (10K549)
    Kernel Version: Darwin 10.8.0
    64-bit Kernel and Extensions: No
    Time since boot: 35 days 20:35
    UID: 501
    Graphics/Displays
        NVIDIA GeForce 320M
            Color LCD (Main)
            Display Connector
    SerialATA
        Hitachi HTS545025B9SA02                
    VM
        Pageouts: 903201
    File opens (per sec)
        RealPlayer Down (UID 501) => /private/var/folders/rG/rGFFQw8IFXCCMRtksag4TE+++TI/-Tmp-/TemporaryItems (status 0): 3
    XPC cache: No
    Listeners
        cupsd: ipp
        krb5kdc: kerberos
        launchd: afpovertcp
        launchd: microsoft-ds
        launchd: netbios-ssn
        launchd: ssh
    Diagnostic reports
        2015-03-15 plugin-container crash
        2015-03-21 InstallerT crash
        2015-03-21 plugin-container crash
    I/O errors
        disk1s1: do_jnl_io: strategy err 0x6 2
        disk6s2: do_jnl_io: strategy err 0x6 1
    Volumes
        disk0s2:
        disk3s1:
        disk1s1:
    HCI errors
        Bus: 0x26 Addr: 2 Errors: 15
    USB
        USB High-Speed Bus
          Host Controller Location: Built-in USB
          Host Controller Driver: AppleUSBEHCI
          Bus Number: 0x24
            Built-in iSight
              Location ID: 0x24600000 / 2
              Current Available (mA): 500
              Current Required (mA): 500
        USB High-Speed Bus
          Host Controller Location: Built-in USB
          Host Controller Driver: AppleUSBEHCI
          Bus Number: 0x26
        USB Bus
          Host Controller Location: Built-in USB
          Host Controller Driver: AppleUSBOHCI
          Bus Number: 0x06
            BRCM2070 Hub
              Location ID: 0x06600000 / 3
              Current Available (mA): 500
              Current Required (mA): 94
                Bluetooth USB Host Controller
                  BSD Name: en4
                  Location ID: 0x06630000 / 4
                  Current Available (mA): 500
                  Current Required (mA): 0
            Apple Internal Keyboard / Trackpad
              Location ID: 0x06300000 / 2
              Current Available (mA): 500
              Current Required (mA): 40
        USB Bus
          Host Controller Location: Built-in USB
          Host Controller Driver: AppleUSBOHCI
          Bus Number: 0x04
    Shutdown codes
        -60 1
    Kernel log
        Sat Mar 21 12:43:21 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (d2,2ee6)->(db,2d69).
        Sat Mar 21 12:43:26 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (ec,269d)->(ee,51d).
        Sat Mar 21 12:43:30 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (f1,231d)->(f9,2375).
        Sat Mar 21 12:43:31 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (fb,1375)->(fd,2759).
        Sat Mar 21 12:43:35 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (10a,1b06)->(10d,149e).
        Sat Mar 21 12:43:56 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (147,736)->(157,751).
        Sat Mar 21 12:44:50 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (21a,1c72)->(21b,224f).
        Sat Mar 21 12:45:25 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (296,2098)->(297,2f45).
        Sat Mar 21 12:45:58 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (30d,2c50)->(30f,16ee).
        Sat Mar 21 12:46:01 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (315,1eee)->(318,a67).
        Sat Mar 21 12:46:02 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (31b,2c67)->(31d,44e).
        Sat Mar 21 13:13:48 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1b9,2be3)->(1bc,1bd4).
        Sat Mar 21 13:14:01 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1e8,214)->(1eb,29a9).
        Sat Mar 21 13:14:28 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (24c,e76)->(24d,2a38).
        Sat Mar 21 13:14:48 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (292,2d96)->(294,a78).
        Sat Mar 21 13:15:33 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (333,2235)->(335,e78).
        Sat Mar 21 13:22:55 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (966,13c0)->(967,280d).
        Sat Mar 21 14:10:23 Sound assertion "0 != result" failed in AppleMikeyDevice at line 765 goto handler
        Sat Mar 21 14:10:23 Sound assertion "0 != result" failed in AppleMikeyDevice at line 795 goto handler
        Sat Mar 21 14:10:23 Sound assertion "0 != dispatchToStateMachinePosition ( dequeuedEvent )" failed in AppleMikeyDevice at line 721 goto handler
        Sat Mar 21 14:19:50 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (7ec,185a)->(7ed,246d).
        Sat Mar 21 17:31:29 Sound assertion "0 != result" failed in AppleMikeyDevice at line 765 goto handler
        Sat Mar 21 17:31:29 Sound assertion "0 != result" failed in AppleMikeyDevice at line 795 goto handler
        Sat Mar 21 17:31:29 Sound assertion "0 != dispatchToStateMachinePosition ( dequeuedEvent )" failed in AppleMikeyDevice at line 721 goto handler
        Sat Mar 21 20:24:16 jnl: disk6s2: close: journal 0x55f7e04, is invalid.  aborting outstanding transactions
    System log
        Sat Mar 21 13:23:44 /Applications/Firefox.app/Contents/MacOS/plugin-container.app/Contents/MacOS/pl ugin-container ava error: addNewReferenceEntryMMCO ref (3) buffer is full (retire_cnt = 0, fnumMin = 4, lte = 0, sidx = 4, sid = 12 *)
        Sat Mar 21 16:24:51 mDNSResponder PenaltyTimeForServer: PenaltyTime negative -107383, (server penaltyTime 1210501235, timenow 1210608618) resetting the penalty
        Sat Mar 21 19:36:30 firefox CGAffineTransformInvert: singular matrix.
        Sat Mar 21 19:36:30 firefox CGAffineTransformInvert: singular matrix.
        Sat Mar 21 19:36:30 firefox CGAffineTransformInvert: singular matrix.
        Sat Mar 21 19:36:31 firefox CGAffineTransformInvert: singular matrix.
        Sat Mar 21 19:36:31 firefox CGAffineTransformInvert: singular matrix.
        Sat Mar 21 19:36:31 firefox CGAffineTransformInvert: singular matrix.
        Sat Mar 21 20:23:16 mDNSResponder PenaltyTimeForServer: PenaltyTime negative -12076, (server penaltyTime 1224901235, timenow 1224913311) resetting the penalty
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:27:34 fseventsd event logs in /Volumes/Backups/.fseventsd out of sync with volume.  destroying old logs. (101926 0 102146)
        Sat Mar 21 20:27:34 fseventsd log dir: /Volumes/Backups/.fseventsd getting new uuid: UUID
        Sat Mar 21 20:31:49 com.apple.backupd Event store UUIDs don't match for volume: Macintosh HD
        Sat Mar 21 20:31:49 com.apple.backupd Node requires deep traversal:/ reason:must scan subdirs|new event db|
    Console log
        Sat Mar 21 21:15:18 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:15:28 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:15:38 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:15:48 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:15:58 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:16:08 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:16:18 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:16:28 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:16:38 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:16:48 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:16:58 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:17:08 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:17:18 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:17:28 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:17:38 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:17:48 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:17:58 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:18:08 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:18:18 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:18:28 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:18:39 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:18:49 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:18:59 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:19:09 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:19:19 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
    Daemons
        cn.com.zte.PPPMonitor.plist
        com.adobe.fpsaud
        com.apple.suhelperd
        -    status: 2
        com.openssh.sshd
        com.rim.BBDaemon
        com.vix.cron
        com.zeobit.MacKeeper.AntiVirus
        com.zeobit.MacKeeper.plugin.AntiTheft.daemon
        de.novamedia.VMRServer
        jp.co.canon.MasterInstaller
        org.apache.httpd
        org.cups.cupsd
        org.ntp.ntpd
        org.postfix.master
        org.samba.nmbd
        org.samba.smbd
        org.x.privileged_startx
    Agents
        cn.com.zte.mobile.usbswapper.plist
        -    status: 1
        com.Installer.completer.download
        com.Installer.completer.ltvbit
        com.Installer.completer.update
        com.apple.Kerberos.renew.plist
        -    status: 1
        com.apple.mrt.uiagent
        -    status: 255
        com.codecm.uploader
        com.google.keystone.user.agent
        com.jdibackup.ZipCloud.notify
        com.rim.BBLaunchAgent
        com.rim.RimAlbumArtDaemon
        com.sierrawireless.SwitchTool
        com.spotify.webhelper
        com.zeobit.MacKeeper.Helper
        org.openbsd.ssh-agent
        org.x.startx
    User overrides
        jp.co.canon.Inkjet_Extended_Survey_Agent
    Startup items
        /Library/StartupItems/iCoreService/iCoreService
        /Library/StartupItems/iCoreService/StartupParameters.plist
    Global login items
        /Library/Application Support/TrendMicro/TmccMac/TmLoginMgr.app
        /Library/Application Support/BlackBerry/BlackBerry Device Manager.app
    User login items
        iTunesHelper
        -    missing value
        AirPort Utility
        -    missing value
        Kindle
        -    /Applications/Kindle.app
        Dropbox
        -    /Applications/Dropbox.app
        Android File Transfer Agent
        -    /Users/USER/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app
        fuspredownloader
        -    missing value
        RealPlayer Downloader Agent
        -    /Users/USER/Library/Application Support/RealNetworks/RealPlayer Downloader Agent.app
        KiesAgent
        -    /Applications/Kies.app/Contents/MacOS/KiesAgent.app
        TmLoginMgr
        -    /Library/Application Support/TrendMicro/TmccMac/TmLoginMgr.app
        BlackBerry Device Manager
        -    /Library/Application Support/BlackBerry/BlackBerry Device Manager.app
    Firefox extensions
        Google Translator for Firefox
        Words-Chinese Pinyin Dictionary
        Test Pilot
    Widgets
        Currency Converter
    Restricted files: 2944
    Lockfiles: 25
    Universal Access
    Contents of /Library/LaunchAgents/cn.com.zte.mobile.usbswapper.plist
        -    mod date: Sep 27 21:40:29 2011
        -    checksum: 1550256407
        <?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>cn.com.zte.mobile.usbswapper.plist</string>
            <key>OnDemand</key>
            <false/>
            <key>ProgramArguments</key>
            <array>
                <string>/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>program</key>
            <string>/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile</string>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.rim.BBAlbumArtCacher.plist
        -    mod date: Nov  9 09:24:42 2011
        -    checksum: 2868431736
        <?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>KeepAlive</key>
            <true/>
            <key>Label</key>
            <string>com.rim.RimAlbumArtDaemon</string>
            <key>OnDemand</key>
            <false/>
            <key>Program</key>
            <string>/Library/Application Support/BlackBerry/RimAlbumArtDaemon</string>
            <key>ProgramArguments</key>
            <array>
                <string>RimAlbumArtDaemon</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.rim.BBLaunchAgent.plist
        -    mod date: Nov  9 09:24:43 2011
        -    checksum: 908705504
        <?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>KeepAlive</key>
            <true/>
            <key>Label</key>
            <string>com.rim.BBLaunchAgent</string>
            <key>OnDemand</key>
            <false/>
            <key>Program</key>
            <string>/Library/Application Support/BlackBerry/BBLaunchAgent.app</string>
            <key>ProgramArguments</key>
            <array>
                <string>BBLaunchAgent</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.sierrawireless.SwitchTool.plist
        -    mod date: Sep  8 04:26:41 2010
        -    checksum: 872926754
        <?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.sierrawireless.SwitchTool</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Library/Sierra/SierraDevSupport</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>TimeOut</key>
            <integer>90</integer>
            <key>KeepAlive</key>
            <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/cn.com.zte.PPPMonitor.plist
        -    mod date: Feb  9 14:34:28 2009
        -    checksum: 4232615395
        <?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>cn.com.zte.PPPMonitor.plist</string>
            <key>OnDemand</key>
            <false/>
            <key>ProgramArguments</key>
            <array>
                <string>/Library/Application Support/ZTE/PPPMonitord</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>program</key>
            <string>/Library/Application Support/ZTE/PPPMonitord</string>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.zeobit.MacKeeper.AntiVirus.plist
        -    mod date: Sep 20 11:22:10 2011
        -    checksum: 4244331265
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
            <dict>
                <key>Disabled</key>
                <false/>
                <key>Label</key>
                <string>com.zeobit.MacKeeper.AntiVirus</string>
                <key>Program</key>
                <string>/Library/Application Support/MacKeeper/AntiVirus.app/Contents/MacOS/AntiVirus</string>
                <key>OnDemand</key>
                <false/>
            </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.zeobit.MacKeeper.plugin.AntiTheft.daemon.plist
        -    mod date: Sep 20 11:15:14 2011
        -    checksum: 3798729423
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
            <dict>
                <key>Disabled</key>
                <false/>
                <key>Label</key>
                <string>com.zeobit.MacKeeper.plugin.AntiTheft.daemon</string>
                <key>Program</key>
                <string>/Library/Application Support/MacKeeper/MacKeeperATd</string>
                <key>OnDemand</key>
                <false/>
            </dict>
        </plist>
    Contents of /Library/LaunchDaemons/jp.co.canon.MasterInstaller.plist
        -    mod date: May 21 15:15:24 2014
        -    checksum: 1894334785
        <?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>jp.co.canon.MasterInstaller</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Library/PrivilegedHelperTools/jp.co.canon.MasterInstaller</string>
            </array>
            <key>ServiceIPC</key>
            <true/>
            <key>Sockets</key>
            <dict>
                <key>MasterSocket</key>
                <dict>
                    <key>SockFamily</key>
                    <string>Unix</string>
                    <key>SockPathMode</key>
                    <integer>438</integer>
                    <key>SockPathName</key>
                    <string>/var/run/jp.co.canon.MasterInstaller.socket</string>
                    <key>SockType</key>
                    <string>Stream</string>
                </dict>
        ...and 3 more line(s)
    Contents of /System/Library/LaunchAgents/com.apple.AirPortBaseStationAgent.plist
        -    mod date: Jun 24 20:01:21 2011
        -    checksum: 1071213906
        <?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>EnableTransactions</key>
            <true/>
            <key>KeepAlive</key>
            <dict>
                <key>PathState</key>
                <dict>
                    <key>/Library/Preferences/com.apple.AirPortBaseStationAgent.launchd</key>
                    <true/>
                </dict>
            </dict>
            <key>Label</key>
            <string>com.apple.AirPortBaseStationAgent</string>
            <key>ProgramArguments</key>
            <array>
                <string>/System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent</string>
                <string>-launchd</string>
                <string>-allowquit</string>
            </array>
        </dict>
        </plist>
    Contents of /System/Library/LaunchDaemons/com.apple.xprotectupdater.plist
        -    mod date: Jun 11 06:13:23 2013
        -    checksum: 2156521427
        <?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.apple.xprotectupdater</string>
            <key>ProgramArguments</key>
            <array>
                <string>/usr/libexec/XProtectUpdater</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>StartCalendarInterval</key>
            <dict>
                <key>Hour</key>
                <integer>21</integer>
                <key>Minute</key>
                <integer>10</integer>
            </dict>
        </dict>
        </plist>
    Contents of /System/Library/LaunchDaemons/de.novamedia.VMRServer.plist
        -    mod date: Aug 29 20:04:21 2012
        -    checksum: 2973122774
        <?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>de.novamedia.VMRServer</string>
            <key>RunAtLoad</key>
            <true/>
            <key>OnDemand</key>
            <false/>
            <key>WorkingDirectory</key>
            <string>/usr/local/bin</string>
            <key>ProgramArguments</key>
            <array>
                <string>/usr/local/bin/VMRServer</string>
            </array>
            <key>ServiceDescription</key>
            <string>Vodafone Mobile Wi-Fi</string>
        </dict>
        </plist>
    Contents of /private/etc/authorization
        -    mod date: Feb 14 00:47:29 2015
        -    checksum: 3542104272
        <?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 971 more line(s)
    Contents of /private/etc/hosts
        -    mod date: Feb 10 17:28:54 2015
        -    checksum: 1028826818
        127.0.0.1    localhost
        255.255.255.255    broadcasthost
        ::1             localhost
        fe80::1%lo0    localhost
        10.0.0.138    pocket.wifi
    Contents of Library/LaunchAgents/com.Installer.completer.download.plist
        -    mod date: Mar 21 12:47:58 2015
        -    checksum: 2802156794
        <?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.Installer.completer.download</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Users/USER/Library/Application Support/IM.Installer/Completer.app/Contents/MacOS/InstallerT</string>
                <string>-trigger</string>
                <string>download</string>
                <string>-isDev</string>
                <string>0</string>
                <string>-installVersion</string>
                <string>17498</string>
                <string>-firstAppId</string>
                <string>544010071</string>
            </array>
            <key>WatchPaths</key>
            <array>
                <string>/Users/USER/Downloads</string>
            </array>
            <key>isAllowToSuggest</key>
            <string>false</string>
        </dict>
        ...and 1 more line(s)
    Contents of Library/LaunchAgents/com.Installer.completer.ltvbit.plist
        -    mod date: Mar 21 12:47:59 2015
        -    checksum: 3353910712
        <?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.Installer.completer.ltvbit</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Users/USER/Library/Application Support/IM.Installer/Completer.app/Contents/MacOS/InstallerT</string>
                <string>-trigger</string>
                <string>ltvbit</string>
                <string>-isDev</string>
                <string>0</string>
                <string>-installVersion</string>
                <string>17498</string>
                <string>-firstAppId</string>
                <string>544010071</string>
            </array>
            <key>StartCalendarInterval</key>
            <dict>
                <key>Hour</key>
                <integer>4</integer>
                <key>Minute</key>
                <integer>49</integer>
            </dict>
        ...and 2 more line(s)
    Contents of Library/LaunchAgents/com.Installer.completer.update.plist
        -    mod date: Mar 21 12:47:58 2015
        -    checksum: 3717148078
        <?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.Installer.completer.update</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Users/USER/Library/Application Support/IM.Installer/Completer.app/Contents/MacOS/InstallerT</string>
                <string>-trigger</string>
                <string>update</string>
                <string>-isDev</string>
                <string>0</string>
                <string>-installVersion</string>
                <string>17498</string>
                <string>-firstAppId</string>
                <string>544010071</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>StartCalendarInterval</key>
            <dict>
                <key>Hour</key>
                <integer>12</integer>
                <key>Minute</key>
        ...and 4 more line(s)
    Contents of Library/LaunchAgents/com.codecm.uploader.plist
        -    mod date: Apr  5 10:32:01 2012
        -    checksum: 1595122189
        <?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.codecm.uploader</string> <key>OnDemand</key> <true/> <key>KeepAlive</key> <dict> <key>SuccessfulExit</key> <false/> </dict> <key>RunAtLoad</key> <true/> <key>Program</key> <string>/Users/USER/Library/Application Support/Codec-M/codecm_uploader</string> <key>LimitLoadToSessionType</key> <string>Aqua</string> </dict> </plist>
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist
        -    mod date: Oct  9 10:44:00 2014
        -    checksum: 2799884167
        <?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.google.keystone.user.agent</string>
            <key>LimitLoadToSessionType</key>
            <string>Aqua</string>
            <key>ProgramArguments</key>
            <array>
              <string>/Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bu ndle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftw areUpdateAgent</string>
              <string>-runMode</string>
              <string>ifneeded</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>StartInterval</key>
            <integer>3523</integer>
            <key>StandardErrorPath</key>
            <string>/dev/null</string>
            <key>StandardOutPath</key>
            <string>/dev/null</string>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.jdibackup.ZipCloud.autostart.plist
        -    mod date: Mar 21 12:48:37 2015
        -    checksum: 784630351
        <?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.jdibackup.ZipCloud.autostart</string>
            <key>ProgramArguments</key>
            <array>
                <string>open</string>
                <string>/Applications/ZipCloud.app/Contents/Resources/Utility.app</string>
                <string>-n</string>
                <string>--args</string>
                <string>9</string>
                <string>-l</string>
            </array>
            <key>StandardOutPath</key>
            <string>/Users/USER/Library/Logs/ZipCloud/lagent_out.log</string>
            <key>StandardErrorPath</key>
            <string>/Users/USER/Library/Logs/ZipCloud/lagent_err.log</string>
            <key>RunAtLoad</key>
            <true/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.jdibackup.ZipCloud.notify.plist
        -    mod date: Mar 21 12:48:37 2015
        -    checksum: 4054896881
        <?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.jdibackup.ZipCloud.notify</string>
            <key>ProgramArguments</key>
            <array>
                <string>open</string>
                <string>/Applications/ZipCloud.app/Contents/Resources/Utility.app</string>
                <string>--args</string>
                <string>7</string>
                <string>1</string>
            </array>
            <key>StandardOutPath</key>
            <string>/Users/USER/Library/Logs/ZipCloud/lagent_out.log</string>
            <key>StandardErrorPath</key>
            <string>/Users/USER/Library/Logs/ZipCloud/lagent_err.log</string>
            <key>StartInterval</key>
            <integer>1200</integer>
            <key>RunAtLoad</key>
            <false/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.spotify.webhelper.plist
        -    mod date: Mar 25 11:58:35 2013
        -    checksum: 2530324778
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
         <key>Label</key>
         <string>com.spotify.webhelper</string>
         <key>KeepAlive</key>
         <dict>
          <key>NetworkState</key>
          <true/>
         </dict>
         <key>RunAtLoad</key>
         <true/>
         <key>Program</key>
         <string>/Users/USER/Library/Application Support/Spotify/SpotifyWebHelper</string>
         <key>SpotifyPath</key>
         <string>/Applications/Spotify.app</string></dict>
        </plist>
    Contents of Library/LaunchAgents/com.zeobit.MacKeeper.Helper.plist
        -    mod date: Feb 22 13:49:38 2012
        -    checksum: 3499570668
        <?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>Disabled</key>
            <false/>
            <key>EnvironmentVariables</key>
            <dict>
                <key>ZBTimeStamp</key>
                <string>20111117180719</string>
            </dict>
            <key>Label</key>
            <string>com.zeobit.MacKeeper.Helper</string>
            <key>OnDemand</key>
            <false/>
            <key>Program</key>
            <string>/Applications/MacKeeper.app/Contents/Resources/MacKeeper Helper.app/Contents/MacOS/MacKeeper Helper</string>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/jp.co.canon.Inkjet_Extended_Survey_Agent.plist
        -    mod date: May 21 15:21:24 2014
        -    checksum: 1116988227
        <?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>jp.co.canon.Inkjet_Extended_Survey_Agent</string>
            <key>OnDemand</key>
            <true/>
            <key>ProgramArguments</key>
            <array>
                <string>/Applications/Canon Utilities/Inkjet Extended Survey Program/Inkjet Extended Survey Program.app/Contents/Resources/Canon_Inkjet_Extended_Survey_Agent</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>StartInterval</key>
            <integer>86400</integer>
        </dict>
        </plist>
    Bad plists
        /Library/Preferences/DirectoryService/ActiveDirectory.plist
        /Library/Preferences/DirectoryService/ActiveDirectoryDomainPolicies.plist
        /Library/Preferences/DirectoryService/ActiveDirectoryDynamicData.plist
        /Library/Preferences/DirectoryService/ContactsNodeConfig.plist
        /Library/Preferences/DirectoryService/ContactsNodeConfigBackup.plist
        /Library/Preferences/DirectoryService/DirectoryService.plist
        /Library/Preferences/DirectoryService/DirectoryServiceDebug.plist
        /Library/Preferences/DirectoryService/DSLDAPv3PlugInConfig.plist
        /Library/Preferences/DirectoryService/DSRecordTypeRestrictions.plist
        /Library/Preferences/DirectoryService/SearchNodeConfig.plist
        /Library/Preferences/DirectoryService/SearchNodeConfigBackup.plist
        Library/Preferences/com.apple.iphotomosaic.plist
    Applications
        /Applications/Address Book.app
        -    com.apple.AddressBook
        /Applications/Adobe Digital Editions 2.0.app
        -    com.adobe.adobedigitaleditions.app
        /Applications/Android File Transfer.app
        -    com.google.android.mtpviewer
        /Applications/App Store.app
        -    N/A
        /Applications/Calculator.app
        -    com.apple.calculator
        /Applications/Canon Utilities/IJ Manual/Easy Guide Viewer/Canon IJ On-screen Manual.app
        -    jp.co.canon.ij.easy-guide-viewer
        /Applications/Canon Utilities/IJ Network Tool/Canon IJ Network Tool.app
        -    jp.co.canon.IJNetworkTool
        /Applications/Canon Utilities/IJ Scan Utility/Canon IJ Scan Utility2.app
        -    jp.co.canon.ij.scanutility2
        /Applications/Canon Utilities/Inkjet Extended Survey Program/Inkjet Extended Survey Program.app
        -    jp.co.canon.InkjetExtendedSurveyProgram
        /Applications/Canon Utilities/My Image Garden/AddOn/CIG/CiGDownLoadAPP.app
        -    jp.co.canon.MIGCig
        /Applications/Canon Utilities/My Image Garden/My Image Garden.app
        -    jp.co.canon.MyImageGarden
        /Applications/Canon Utilities/Quick Menu/Canon Quick Menu.app
        -    jp.co.canon.IJ.QuickMenu
        /Applications/Codec-M.app
        -    com.whitesmoke.Codec-M
        /Applications/DVD Player.app
        -    com.apple.DVDPlayer
        /Applications/Dashboard.app
        -    com.apple.dashboardlauncher
        /Applications/Dictionary.app
        -    com.apple.Dictionary
        /Applications/Dropbox.app
        -    com.getdropbox.dropbox
        /Applications/Firefox.app
        -    org.mozilla.firefox
        /Applications/Flip4Mac/WMV Player.app
        -    net.telestream.wmv.player
        /Applications/Font Book.app
        -    com.apple.FontBook
        /Applications/Image Capture.app
        -    com.apple.Image_Capture
        /Applications/InstallMac/Reset Search.app
        -    com.tabatoo.InstallerT
        /Applications/Kies.app
        -    com.samsung.Kies
        /Applications/Kindle.app
        -    com.amazon.Kindle
        /Applications/MacKeeper.app
        -    com.zeobit.MacKeeper
        /Applications/Mail.app
        -    com.apple.mail
        /Applications/Mobile Broadband Ma

  • Idoc-xi-file scenario.  how to display file in html format

    I am not sure whether this is a valid question.........but want to confirm as it was asked by somebody
    In idoc-xi-file scenario.......  how to display file in html format ??
    Thanks in advance
    Kumar

    Hi Vijayakumar,
    Thanks for your reply !! You mean to say I got to use XSLT mapping and also .htm and .html extension together to produce the html file ?? or it is sufficient to use any one of them to produce the html file ??
    Regards
    Kumar

  • In sap scripts how to display the driver program

    Hi,
        I Want to know the sap scripts How to display the output to driver program

    Hi,
    Go to NACE Transaction.
    Select application for ex: if sales V1.
    Click on output types.
    Select the output type for ex : BA00
    Double click on Processing routines.
    There you can find the Driver Program name and Script/smart form name.
    Reward if useful.
    Thanks,
    Raju

  • How to display username in RTF BI publisher report?

    Please advice how to display username in RTF BI publisher report?
    May be this can be done via hidden parameter of BIP report which default value will be set up with macro like {$username$} (or smth like)?
    Thanks in advance!

    Thanks. That worked. I was trying to get it as part of a multi-table query, aliasing dual. But that doesn't work in SQL Plus either so I guess I can't do that.
    I was trying
    select o.*, d.:xdo_user_name
    from oblix_audit_events o, dual d
    Before that I was trying
    select
    :xdo_user_name as USER_ID,
    :xdo_user_roles as USER_ROLES,
    :xdo_user_report_oracle_lang as REPORT_LANGUAGE,
    :xdo_user_report_locale as REPORT_LOCALE,
    :xdo_user_ui_oracle_lang as UI_LANGUAGE,
    :xdo_user_ui_locale as UI_LOCALE
    from dual
    but I must have fat fingered something because that works now too. Thanks.
    So if I need to do this in it's own query and I'm using an RTF template, how do I make that work?
    If I have to do it with it's own

  • How to display and edit the clob datatype column from Data base

    Hi ,
    I have a requiremsnt as below
    1) One Table having some columns with CLOB data type along with varchar columns
    2) need to display the data from DB in search screen and need to be edited clob column in edit screen
    I created EO and VO with that Table and how to display the clob value into the input box for editing.
    using Jdev 11.1.1.5.0 version.
    Can you please help on this.
    THanks & REgards,
    Madhu

    Hi,
    If you are using an inputText component to display a Character Large Object (CLOB), then you will need to create a custom converter that converts the CLOB to a String.
    For custom convertor refer below link,
    http://docs.oracle.com/cd/E2438201/web.1112/e16181/af_validate.htm#BABGIEDH
    (section7.4 Creating Custom JSF Converters)
    Thanks,
    Santosh M E

  • How to display URL images and URL link (html) from Smartforms?

    Hi Gurus,
    I'm having difficulty on how to display targeted URL images and URL link from the smartforms, after i sending it out as html mail. The mail i sent just can be preview as a plain text, which can't execute the html code that i put inside the smartforms itself. I follow a few step from this very useful blog.. Hopefully, you guys can give me some solutions or ideas on this.
    /people/pavan.bayyapu/blog/2005/08/30/sending-html-email-from-sap-crmerp -thanks to Pavan for his useful blog.
    My code is like this..
    <--- Start Code.
    FORM call_smartforms.
      DATA : lv_subject TYPE so_obj_des,
             lc_true(1) VALUE 'X',
             lw_control_parameters TYPE ssfctrlop,
             lw_output_options TYPE ssfcompop,
             lc_graphics(8) VALUE 'GRAPHICS',
             lw_xsfparam_line TYPE ssfxsfp,
             lc_extract(7) VALUE 'EXTRACT',
             lc_graphics_directory(18) VALUE 'GRAPHICS-DIRECTORY',
             lc_mygraphics(11) VALUE 'mygraphics/',
             lc_content_id(10) VALUE 'CONTENT-ID',
             lc_enable(6) VALUE 'ENABLE',
             lw_job_output_info TYPE ssfcrescl,
             lw_html_data TYPE trfresult,
             lw_graphics TYPE ssf_xsf_gr,
             lt_graphics TYPE tsf_xsf_gr,
             lv_html_xstr TYPE xstring,
             lw_html_raw LIKE LINE OF lw_html_data-content,
             lv_incode TYPE tcp00-cpcodepage VALUE '4110',
             lv_html_str TYPE string,
             lv_html_len TYPE i,
             lc_utf8(5) VALUE 'utf-8',
             lc_latin1(6) VALUE 'latin1',
             lv_offset TYPE i,
             lv_length TYPE i,
             lv_diff TYPE i,
             lt_soli TYPE soli_tab,
             lw_soli TYPE soli,
             lc_mime_helper TYPE REF TO cl_gbt_multirelated_service,
             lv_name TYPE mime_text VALUE 'sapwebform.htm',
             lv_xstr TYPE xstring,
             lw_raw TYPE bapiconten,
             lt_solix TYPE solix_tab,
             lw_solix TYPE solix,
             lv_filename TYPE string,
             lv_content_id TYPE string,
             lv_content_type TYPE w3conttype,
             lv_obj_len TYPE so_obj_len,
             lv_bmp TYPE so_fileext VALUE 'BMP',
             lv_description TYPE so_obj_des VALUE 'Graphic in BMP format',
             lc_doc_bcs TYPE REF TO cl_document_bcs,
             lc_bcs TYPE REF TO cl_bcs,
             lc_send_exception TYPE REF TO cx_root,
             lw_adsmtp TYPE lty_adsmtp,
             lv_mail_address TYPE ad_smtpadr,
             lc_recipient TYPE REF TO if_recipient_bcs,
             lc_send_request TYPE REF TO cl_bcs,
             lv_sent_to_all TYPE os_boolean.
      DATA : v_language TYPE sflangu VALUE 'E',
             v_e_devtype TYPE rspoptype.
      v_form_name = 'ZTEST_EMAIL'.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = v_form_name
        IMPORTING
          fm_name            = v_namef
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
    starting here. ***
    Set title for the output
      lv_subject = 'Smartforms.'.
    Set control parameters to "no dialog"
      lw_control_parameters-no_dialog = lc_true.
    IF lw_service_subject-code = lc_fm1.
    *--- To get output device type
      CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
        EXPORTING
          i_language    = v_language
          i_application = 'SAPDEFAULT'
        IMPORTING
          e_devtype     = v_e_devtype.
      lw_output_options-tdprinter = v_e_devtype.
      lw_control_parameters-getotf = 'X'.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
    Set output options
      lw_output_options-xsf        = lc_true.
      lw_output_options-xsfcmode   = lc_true.
      lw_output_options-xsfoutmode = 'A'.
      lw_output_options-xsfoutdev  = space.
      lw_output_options-xsfformat  = lc_true.
      lw_xsfparam_line-name  = lc_graphics.
      lw_xsfparam_line-value = lc_extract.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
      lw_xsfparam_line-name  = lc_graphics_directory.
      lw_xsfparam_line-value = lc_mygraphics.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
      lw_xsfparam_line-name  = lc_content_id.
      lw_xsfparam_line-value = lc_enable.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
    Get the smartform content
      CALL FUNCTION v_namef
        EXPORTING
          control_parameters   = lw_control_parameters
          output_options       = lw_output_options
    *pass other application specific parameters (eg order number, items ).
      IMPORTING
          job_output_info    = lw_job_output_info
      TABLES
          tt_tabh              = tt_tabh
          tt_tabb              = tt_tabb
          tt_tabf              = tt_tabf
      EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 4
          OTHERS           = 5.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
      lw_html_data  = lw_job_output_info-xmloutput-trfresult.
      lt_graphics[] = lw_job_output_info-xmloutput-xsfgr[].
      CLEAR lv_html_xstr.
      LOOP AT lw_html_data-content INTO lw_html_raw.
        CONCATENATE lv_html_xstr lw_html_raw INTO lv_html_xstr IN BYTE MODE.
      ENDLOOP.
      lv_html_xstr = lv_html_xstr(lw_html_data-length).
      CALL FUNCTION 'SCP_TRANSLATE_CHARS'
        EXPORTING
          inbuff       = lv_html_xstr
          incode       = lv_incode
          csubst       = lc_true
          substc_space = lc_true
        IMPORTING
          outbuff      = lv_html_str
          outused      = lv_html_len
        EXCEPTIONS
          OTHERS       = 1.
    *HACK THE HTML CODE GENERATED BY SMARTFORM TO MAKE THE
    *EXTERNAL IMAGES APPEAR AS <IMG> TAG IN HTML
      REPLACE ALL OCCURRENCES OF '<IMG' IN lv_html_str WITH '<IMG' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '/>' IN lv_html_str WITH '/>' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '</A>' IN lv_html_str WITH '' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '<' IN lv_html_str WITH '<' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '>' IN lv_html_str WITH '>' IGNORING CASE.
    CALL METHOD html_control - >load_mime_object
       EXPORTING
         object_id  = 'ZWN'
         object_url = 'ZWN.GIF'
       EXCEPTIONS
         OTHERS     = 1.
      REPLACE ALL OCCURRENCES OF lc_utf8 IN lv_html_str WITH lc_latin1.
    REPLACE ALL OCCURRENCES OF lc_utf8 IN lv_html_str WITH 'iso-8859-1'.
       break mhusin.
      lv_html_len = STRLEN( lv_html_str ).
      lv_offset = 0.
      lv_length = 255.
      WHILE lv_offset < lv_html_len.
        lv_diff = lv_html_len - lv_offset.
        IF lv_diff > lv_length.
          lw_soli-line = lv_html_str+lv_offset(lv_length).
        ELSE.
          lw_soli-line = lv_html_str+lv_offset(lv_diff).
        ENDIF.
        APPEND lw_soli TO lt_soli.
        ADD lv_length TO lv_offset.
      ENDWHILE.
      CREATE OBJECT lc_mime_helper.
      CALL METHOD lc_mime_helper->set_main_html
        EXPORTING
          content     = lt_soli
          filename    = lv_name
          description = lv_subject.
      LOOP AT lt_graphics INTO lw_graphics.
        CLEAR lv_xstr.
        LOOP AT lw_graphics-content INTO lw_raw.
          CONCATENATE lv_xstr lw_raw-line INTO lv_xstr IN BYTE MODE.
        ENDLOOP.
        lv_xstr = lv_xstr(lw_graphics-length).
        lv_offset = 0.
        lv_length = 255.
        CLEAR lt_solix[].
        WHILE lv_offset < lw_graphics-length.
          lv_diff = lw_graphics-length - lv_offset.
          IF lv_diff > lv_length.
            lw_solix-line = lv_xstr+lv_offset(lv_length).
          ELSE.
            lw_solix-line = lv_xstr+lv_offset(lv_diff).
          ENDIF.
          APPEND lw_solix TO lt_solix.
          ADD lv_length TO lv_offset.
        ENDWHILE.
        CONCATENATE lc_mygraphics lw_graphics-graphics text-001 INTO lv_filename.
        CONCATENATE lc_mygraphics lw_graphics-graphics text-001 INTO lv_content_id.
        lv_content_type = lw_graphics-httptype.
        lv_obj_len      = lw_graphics-length.
    *Add images to the email
        CALL METHOD lc_mime_helper->add_binary_part
          EXPORTING
            content      = lt_solix
            filename     = lv_filename
            extension    = lv_bmp
            description  = lv_description
            content_type = lv_content_type
            length       = lv_obj_len
            content_id   = lv_content_id.
      ENDLOOP.
      TRY.
          lv_subject = lv_subject.
          lc_doc_bcs = cl_document_bcs=>create_from_multirelated(
                   i_subject          = lv_subject
                   i_multirel_service = lc_mime_helper ).
        CATCH cx_document_bcs INTO lc_send_exception.
        CATCH cx_bcom_mime INTO lc_send_exception.
        CATCH cx_gbt_mime INTO lc_send_exception.
      ENDTRY.
    Create send request
      TRY.
          lc_bcs = cl_bcs=>create_persistent( ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
      TRY.
          lc_bcs->set_document( i_document = lc_doc_bcs ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
    Set-up email receiver
      lv_mail_address = '[email protected]'.
    TRANSLATE lv_mail_address TO UPPER CASE.
      TRY.
          lc_recipient = cl_cam_address_bcs=>create_internet_address(
              i_address_string = lv_mail_address ).
        CATCH cx_address_bcs INTO lc_send_exception.
      ENDTRY.
      TRY.
          lc_bcs->add_recipient( i_recipient = lc_recipient ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
    Send smartforms as HTML email
      TRY.
          lc_bcs->send( ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
      COMMIT WORK.
      WRITE:/ 'Mail sent'.
    ENDFORM.                    "call_smartforms
    End Code --->
    Thanks and Regards.

    1- put your images in a directory under the web app directory. Example: app/images/
    2- in your jsp, use: String file = application.getRealPath("/images/"); to get the images directory. See http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/ServletContext.html#getRealPath(java.lang.String)
    3- it's not the right forum to post this kind of question. Post them in the JSP/Servlet JSTL forum instead

Maybe you are looking for

  • DVI to component video - possible?

    I'm trying to find a way to connect the DVI output of my MacBookPro 1.1 to the component video inputs of a Sony STR-DH810 receiver which is hooked up to my TV. I discovered I can't use the HDMI inputs on that receiver with an alternate audio source,

  • For fellow linux users: non-GUI handbrake command

    hey there fellow linux users... if you happen to have a new video ipod and happen to have handbrake and happen to not want to use the GUI, or it doesnt work... your in luck! just enter this command: ./HBTest -vb 450 -w 320 -i /mnt/LodeStar/10/DVD -o

  • Tables for Release strategies

    Hi ... I was referring to MM table doc , in that it is mentioned table EBELN & EBELP are for Purchase Order header / Line and BANFN & BNFPO are for PR header/ Line. But for release strategy ...people told me to refer CEKKO for PO and CEBAN for PR. do

  • Mapping of Header Value

    Hi, i have following source structure. <item> <header> <name>test</name> </header> <pos> <id>1</id> </pos> <pos> <id>2</id> </pos> <item> <item>... and need this target structure. <item> <id>1<id> <name>test</name> <item> <item> <id>2<id> <name>test<

  • IPHONE Watchlist app not working with VCenter6 console

    When are they going to update the IPHONE version of watchlist? The console no longer works with VCenter6, but the Android version does.