Display/Change Connection Between Selected Actions

Hi guys
We just recently had PI7.0 installed on a new machine (we're still running XI3.0 on the old machine), and we have about 2 interfaces currently running in PI7.0. The problem is this:
- I create an Integration Scenario (appl components, actions, define connection, documentation, etc) & activate it
- I exit the Integration Repository, and when i log on again i'm unable to view the connection of the integration scenario: i get no response when i try to display the connection, the mouse pointer changes to an hour glass but nothing happens
- By the way, there's nothing wrong with my integration scenario, as it does exactly the same with the integration scenario from SAP BASIS 7.00 airline demo
Help

Hi,
1) Check the cache notification from repository(Environment-->cache notification) in that all should be green.
2) run full CPA cache refresh for your XI server.
may this solve your problem.
Regards,
Rohit.
Reward points if helpful.

Similar Messages

  • PWB- Connection between selection screen and Application Form

    Hi Experts,
    I need your help regarding PWB.
    My requirement is, I need to fetch date and amount placed on selection screen into application form and those values I need to print through pwb using SAPScript.
    I am new to PWB so not getting how exactly I need to do this. Please help me on this.
    Thanks in advance.
    Regards,
    Abhijeet

    Hi,
    Write LEAVE TO SCREEN 0 in the PAI of screen 500.
    MODULE user_command_0500 INPUT.
      CASE g_ok_code.
        WHEN 'BACK' OR 'EXIT'.
        Goto Selection screen
          LEAVE TO SCREEN 0.
        WHEN  'CANC' .
          LEAVE PROGRAM.
        WHEN OTHERS.
        Do Nothing
      ENDCASE.
      CLEAR : g_ok_code.
    ENDMODULE.

  • Equipment action log and display changes nnot updating

    Hello Guys,
    it is little strange but for some of the equipments action log and display changes are not being updated.
    The records are there only till 2007 but since 2008 whatever changes we make now they are not being recorded in action log or changes.
    But strange thing here is usage list is being updated as it is supposed to be.
    i have checked most of the config. but really not helpful.
    i am clueless here.
    Can anyone help?
    Thanks & Regards,
    vaibhav

    Hi,
    Please see attached code for your review:
    Appreciate your valuable comments.
      INCLUDE ZXEQMU02
    *By: Ralph McKnight/AC  Date: Mar061998.
    *Description: Additional fields to be saved on append structures
                during equipment add/change - This development was
                Undertaken as a core modification - The exporting
                function parameters were changes to pass back the
                structures with the new user values.
    *Sir4726 - Disable equipment popup box for equipment type 'E'
    *Sartd42467-Add kokrs & kostl to auto maint
    *By Ralph McKnight Apr161998.
    *SARTD 75148 - 4.6C Upgrade, CH4K902173, Import/Export parameters can no
                 longer have the same names, added a Changing parameter to
                 return the changed values of EQUI and EQUZ to save the
                 append structure fields ZAEQUI and ZAEQUZ for Job
                 Resource Scheduling.
               - Also set the flags to update EQUI and EQUZ.
                 by: HBAY342
    *SARTD 92504 - Save new maintenance plant into ABAP memory. Needed for
                 9/26/02 E.Krenz
    *SARTD 109167 - AMI Foreign Trade REquirement. - Validations against
                - AMI Foreign Trade Synchronization tables(ZAESYNCDIV &
                  (ZAESYNCMAT)         before save
                  of the equipment.
    SARTD 111318 - CHLK9A0I4A Check Equipment Acquisition Date, Value and
                     currency to avoid dump by SAP Standard system
    SARTD 113133 AMI project: Added function call to prevent users from
                 manually changing equipments when it is on a AMI transfer
                 form.
    KR 140649    AMI: Added parameter to FM call
                 for Z_AMI_CHCK_IE02_UPDATE_ALLOWED.  E.Krenz 12/23/03
    03/02/2004  HBB8705   CHLK9A0WYR   EQUZ Append field rename
    Modification Log
    Date        User    Transport   KR     Description
    06/29/2005  HBAK946 CHLK9A1N05  169999 RA Equipment Lockdown
                                           If equip is RA, check authority
                                           If no auth., then issue a mess
    06/30/2005  HBAK946 CHLK9A1N29  169999 RA Equipment Lockdown
                                           Only process RA check if in
                                           t-code IE01, IE02 will be
                                           handled in user-exit
    Begin of CH4K902173 - 4.6C upgrade - Changed import/export/changing
    parameters
    Old way follows:
    *This is how the call to this routine should look with our mods.
    *Note: the changes to the std are labeled with "DS Part 6 - RGM1
    call customer-function '001'
         exporting
              data_equi           = equi
              data_eqkt           = eqkt
              data_equz           = equz
              data_iloa           = iloa
         importing
              own_msg             = own_msg
              data_equi           = equi "DS Part 6 - RGM1
              data_eqkt           = eqkt "DS Part 6 - RGM1
              data_equz           = equz "DS Part 6 - RGM1
              data_iloa           = iloa "DS Part 6 - RGM1
         exceptions
              posting_not_allowed = 1
              others              = 2.
    New way follows:
    CALL CUSTOMER-FUNCTION '001'
          EXPORTING
               ACTIVITY_TYPE           = ACTIVITY_TYPE
               DATA_EQUI               = EQUI
               DATA_EQKT               = EQKT
               DATA_EQUZ               = EQUZ
               DATA_ILOA               = ILOA
               MAIN_CLASS              = RM63E-KLASSE
               DATA_RM63E              = RM63E
          IMPORTING
               UPDATE_DATA_EQ          = UPDATE_DATA_EQ
               UPDATE_FLAGS_EQ         = UPDATE_FLAGS_EQ
               UPDATE_DATA_EZ          = UPDATE_DATA_EZ
               UPDATE_FLAGS_EZ         = UPDATE_FLAGS_EZ
          CHANGING
               CHGD_EQUI               = EQUI
               CHGD_EQUZ               = EQUZ
          EXCEPTIONS
               POSTING_NOT_ALLOWED     = 1
               POSTING_NOT_ALLOWED_EXT = 2
               OTHERS                  = 3.
    End of CH4K902173 - 4.6C upgrade - Changed import/export/changing
    Changes for SARTD 111318 to check Acquisition Date, Value and currency
    Commented By Nikhil. Function Module looks to be specific for US.
    *data: v_retval like sy-subrc.
                                                                "CHLK9A0I4A
    *call function 'Z_VERIFY_ACQUISITION_DATA'
                                                                "CHLK9A0I4A
    exporting
                                                                "CHLK9A0I4A
       p_equi        = data_equi
                                                                "CHLK9A0I4A
    importing
                                                                "CHLK9A0I4A
      retval        = v_retval.
                                                                "CHLK9A0I4A
    *if v_retval ne 0.
                                                                "CHLK9A0I4A
    raise posting_not_allowed.
                                                                "CHLK9A0I4A
    *endif.
                                                                "CHLK9A0I4A
    End of changes for SARTD 111318
    *======================================================================
    Begin of AMI
    *======================================================================
    Begin of insert SARTD 113133
    read calling AMI program
    DATA: z_ami_program(30) TYPE c.
    CALL FUNCTION 'Z_AMI_CHECK_AMI_PRG_ACTIVE'
      IMPORTING
        p_ami_program = z_ami_program.
    AMI validations if Equipment Update is allowed
    For checking Equipment Check permission.
    CALL FUNCTION 'Z_AMI_CHCK_IE02_UPDATE_ALLOWED'
      EXPORTING
        active_ami_program = z_ami_program
        data_equz          = data_equz
        data_equi          = data_equi
        data_iloa          = data_iloa
        main_class         = main_class
        data_rm63e         = data_rm63e
      EXCEPTIONS
        update_not_allowed = 8.
    IF sy-subrc NE 0.
      RAISE posting_not_allowed.
    ENDIF.
    Commented By Nikhil. Function Module looks to be specific for US.
    checks for equipment ring fencing (only for manual IE02)
    *if z_ami_program is initial.
    call function 'Z_AMI_IE02_EXIT_RING_FENCING'
          exporting
               data_equz          = data_equz
               data_rm63e         = data_rm63e
          exceptions
               update_not_allowed = 8.
    if sy-subrc ne 0.
       raise posting_not_allowed.
    endif.
    *endif.
    End of INSERT SARTD 113133
    *======================================================================
    End of AMI
    *======================================================================
    *======================================================================
    Begin of RA Equipment Lockdown >> CHLK9A1N05
    *======================================================================
    check if equipment is Radio Active
    DATA: i_matnr_tab LIKE zhazind OCCURS 0 WITH HEADER LINE.
    DATA: v_land1(3) TYPE c.
    DATA: v_ra_flag(1) TYPE c.
    *Begin of code insertion by pavan on 02 June, 2008.
    DATA: zeqpnr_eccn-zeccn TYPE zeqpnr_eccn-zeccn,
          wa_zeqpnr_eccn TYPE zeqpnr_eccn.
    break pkumar.
    IF sy-ucomm = 'BU'.
      IMPORT zeqpnr_eccn-zeccn FROM MEMORY ID 'ZECCNUM'.
      MOVE: data_equi-equnr TO wa_zeqpnr_eccn-zeqnr,
            zeqpnr_eccn-zeccn TO wa_zeqpnr_eccn-zeccn.
      MODIFY zeqpnr_eccn FROM wa_zeqpnr_eccn.
      CLEAR wa_zeqpnr_eccn.
    ENDIF.
    *End of code insertion by pavan on 02 June, 2008.
    IF sy-tcode = 'IE01'.
      IF NOT data_equi-matnr IS INITIAL AND
         NOT data_equz-zzswerk IS INITIAL.
        SELECT SINGLE land1 FROM t001w
               INTO v_land1
               WHERE werks = data_equz-zzswerk.
        CLEAR: i_matnr_tab.
        REFRESH: i_matnr_tab.
        i_matnr_tab-matnr = data_equi-matnr.
        APPEND i_matnr_tab TO i_matnr_tab.
        CALL FUNCTION 'Z_MATERIAL_HAZARD'
          EXPORTING
            pland1    = v_land1
          TABLES
            matnr_tab = i_matnr_tab.
    check if radio active
        READ TABLE i_matnr_tab INDEX 1.
        IF sy-subrc = 0.
          IF i_matnr_tab-ramat = 'X'.
    check if user has Radio Active access
            AUTHORITY-CHECK OBJECT 'S_TCODE'
                        ID 'TCD' FIELD 'ZIE02_RA'.
            IF sy-subrc NE 0.
              MESSAGE w000(z5) WITH 'No access to create RA equipment'.
              RAISE posting_not_allowed.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.
    *======================================================================
    End of RA Equipment Lockdown << CHLK9A1N05
    *======================================================================
    *CHECK NOT data_equi-eqtyp = 'E'.
    *CHECK NOT data_equi-eqtyp = 'F'.
    DATA: v_stor_ucomm LIKE sy-ucomm.
    DATA: v_equnr LIKE data_equz-equnr.
    *Save the system user command field
    v_stor_ucomm = sy-ucomm.
    v_equnr = data_equz-equnr.
    *Get the additional information
    CALL FUNCTION 'Z_GET_MORE_EQUIPMENT_INFO'
      CHANGING
        s_equi    = data_equi
        s_equz    = data_equz
        s_rm63e   = data_rm63e
      EXCEPTIONS
        cancelled = 1.
    *Begin of changes for SARTD 113691
    IF sy-subrc NE 0.                                           "CHLK9A0KY9
      RAISE posting_not_allowed.                                "CHLK9A0KY9
    ENDIF.                                                      "CHLK9A0KY9
    End of changes for SARTD 113691
    *Restore the equip number
    data_equz-equnr = v_equnr.
    data_equz-zzkokrs = data_iloa-kokrs.                        "CHLK9A0WYR
    data_equz-zzkostl = data_iloa-kostl.                        "CHLK9A0WYR
    data_equz-zzswerk = data_iloa-swerk.                        "CHLK9A0WYR
    *****SARTD 109167
    *vALIDATE VALUES PER ami fOREIGN TRADE SYNCHRONIZATION RULES
    *set screen 0101.
    CALL FUNCTION 'Z_AMIFT_VALIDATE_EQUIP_MATNR'
    TABLES
      P_MESSAGES       =
      CHANGING
        p_equi           = data_equi
        p_equz           = data_equz.
    *****SARTD 109167
    CH4K902173 - Should update EQUI and EQUZ, set flag to TRUE.
    chgd_equi = data_equi.                                      "CH4K902173
    chgd_equz = data_equz.                                      "CH4K902173
    *Begin of Changes - CHLK980219 data not retained when creating record
    *UPDATE_FLAGS_EQ = 'X'.                       "CH4K902173
    *UPDATE_FLAGS_EZ = 'X'.                       "CH4K902173
    *End of Changes
    *If cancel was hit then back out of save
    IF sy-subrc NE 0.
      RAISE posting_not_allowed.
    ENDIF.
    *Restore the system user command field
    sy-ucomm = v_stor_ucomm.
    Begin of insert        SARTD 92504, AMI 9/26/02, E.Krenz
    Store new maintenance plant in memory to be used by ZAEQASBR for
    immediate ransfer of maintenance items.
    EXPORT data_equz TO MEMORY ID 'ZAEQASBR'.
    End of insert
    >> CHLK9A1N29
    clear transaction varient before going to IE02 or IE01 main screen
    CALL FUNCTION 'RS_HDSYS_SET_TC_VARIANT'
      EXPORTING
        variant                 = ' '
        flag_client_independent = 'X'
        overwrite_variant       = 'X'.
    << CHLK9A1N29
    Regards,
    vaibhav.

  • I have forgotten my Password to be able to connect between my desktop Mac and Mac Book on my home network. How can I recover the password or change it?

    I have forgotten my Password to be able to connect between my desktop Mac and Mac Book on my home network. How can I recover the password or change it?

    The password used to log in to a user account remotely is the same as you would use to log into it locally. You can also use your Apple ID, so try that.
    To change your login password read OS X Mavericks: Reset a login password
    also OS X Mavericks: If you forget your login password

  • Changing the text displayed in Pagination Navigation Selection

    We are trying to find a way using the ADF tables to modify the text that gets displayed in the combo selection dropdown for page navigation.
    Currently, it will say "1-10 of 8" and we want it to say, for example, "1-10 of 8 pages". Is this possible?

    Hi,
    no. This is an enhancement we are working on for a future release. The String is part of the component and not yet in a message bundle for you to change
    Frank

  • Hello, may I change data between iPad Air and other devices by cable connection (USB), (not using cloud) ?

    Hello, may I change data between iPad Air and other devices by cable connection (USB), (not using cloud) ?

    Do you mean you want to sync or transfer data using a cable? Between and iPad Air and what "other device"?

  • No connect between my iphone and itunes .. version is up to date and windows 7 and change between ports .....?

    no connect between my iphone and itunes .. version is up to date and windows 7 and change between ports .....?

    sorry but i need support from apple .................................

  • Difference between Reauthentication action of Common Task for Authorization Profile

    Hi guys,
    Would you mind helping me to choose reauthentication action for Authorization Profile?
    At Cisco ISE User Guide got "Reauthentication—To choose, select the check box and enter a value in seconds for maintaining connectivity during reauthentication. You can also choose attribute values from the Timer drop-down list. You choose to maintain connectivity during reauthentication by selecting to use either the default (a value of 0) or RADIUS-Request (a value of 1) from the drop-down list. Setting this to the RADIUS-Request value maintains connectivity during the reauthentication process."
    Then, what is "default" behaviour? What is different between default action and Radius-Request action ?
    On the other hands, could someone explain in detail the sequence and priority of IEEE 802.1X, MAC authentication bypass (MAB), and Central Web Authentication (CWA). I read a lot of paper, but still don't get it. It is possible to configure MAB will be fail in Authentication Policy with Wire_MAB ?
    Appreciate all your help!!!

    Hasan Saeed Khan wrote:
    Actually I started off my question with the "implementation of treble control" that SAP course AD940 suggests.
    I had never heard of this treble control and the added value of splitting rolebuilding and profile generation doesn't make much sense to me but that's my personal opinion.
    On the technical side of things: in your first post you state "No authorization data is displayed in the authorization tab unless I enter authorization tab with change button and provide inputs for org level field & generate profile."
    It is also possible to change the data and save this but not generate the profile yet. I just tried this by doing the following:
    Create role
    Add transactions to menu
    Edit profile, org levels & authroization data.
    Hit 'save'.
    Accept proposed profile name.
    Go back to PFCG main screen and ignore message of profile not being generated. (Click 'continue')
    And this leaves me with a role with yellow traffic light on the authorization tab an the profile status is: "Current version not generated"
    So it should be possible to maintain roles and profiles separately.

  • (Trouble printing) Trouble with connection between Macbook Pro and Hp Deskjet 1510.

    Trouble with connection between Macbook Pro and Hp Deskjet 1510. (Nothing Prints).
    I have a Macbook Pro and am having difficulty printing documents from ‘Pages' from my Hp Deskjet 1510. I have installed the necessary software for the printer and it is connected via USB. Every time I try to print the printer icon comes up as it should, 'printing' and then 'job completed' and then the icon disappears. (Nothing is printed.) I thought it might be something to do with Pages compatibility with the printer but exporting the document to Word or making it a PDF doesn’t change anything. I don’t have Microsoft Word on my computer. The scanner does work and when I printed a ‘Test Page’ that worked too.
    Let me know if you know why this is happening.

    With these settings the network now works flawlessly, however, when i have my ethernet cable plugged in, my internet access via my airport card(on the macbook pro) is no longer available. Hoping you can tell me why this would be with this info i've provided.
    Educated guess. The networking devices have priorities as to which are used. The standard order is that Ethernet has a higher priority than Airport.
    While your Ethernet is unplugged it is inactive and the Mac ignores it. Once you plug it in, the Mac sees that it is active and switches traffic to that interface.
    I actually take advantage of this feature at home, but configuring my Airport and Ethernet with identical fixed IP addresses. Normally I'll use Airport, but if I'm copying a huge file and I want faster performance, I'll just walk my MacBook (previously iBook, previously Powerbook) over to my Ethernet switch and plug in my MacBook. Magically, the Mac detects that the Ethernet is active and continues the file transfer uninterrupted over the faster 100baseT Ethernet connection. When the transfer is finished, or if I really need to move back to the Comfy Chair, I unplug the Ethernet cable, and all activity reverts back to the Airport, all without disrupting any existing networking connections.
    You on the other hand have totally different settings for your Ethernet and your Airport, so when you switch to Ethernet, you basically loose your Airport connections.
    Something you can try:
    System Preferences -> Network
    Gear icon on the bottom left, next to the [+] [-] icons.
    Select *Set Service Order...*
    Now Drag the network interfaces into the perfer priority order you want. In this case put Airport above Ethernet.
    NOTE: You may want to create a new Network Location for this, instead of messing with your normal home Location (which is most likely the default Automatic. That way you have your original you can always fall back to.

  • Open connections between AS Java and AS ABAP when using JRA

    Hi, we have a problem with open connections and hope that someone here could give me hint where to find a solution.
    The situation is that we open a connection from a Java application to an AS ABAP. In detail, the application first connects to a statefull session bean on the AS Java by RMI. The bean communicates with the associated AS ABAP by the Java Resource Adapter (JRA).
    All interactions between all components work correctly. But even after we close the application, manually close of the connections (on side of the AS Java) , remove all created and used session beans there are still open connections between the AS ABAP and the AS Java.
    The transaction smgw (Gateway Monitor) shows open connections from jlaunch to our local SAP gateway using the internal communication protocol. Obviously, the established connections are not closed, even when they are open for a week or longer.
    After opening 100 connections, the AS ABAP denies additional connection attempts.
    We have been able to close all open connections by restarting the AS Java or by restarting the Connector over the Visual Administrator (path: Cluster – Server – Services – Connector Container – “select the right connector” – stop / start).
    We have developed our application similar to the tutorial from [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ad09cd07-0a01-0010-93a9-933e247d3ba4]
    Can someone explain to us why the connections stay open for so long? Is there no timeout mechanism? Or is there some way to close the connections from our Java application?

    Hello,
    maybe someone can help us with our problem.
    We have developed our application similar to the tutorial from https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ad09cd07-0a01-0010-93a9-933e247d3ba4 and it was running without problem with the SP12, now we change our system to SP16 and we are having the problem described in note 1083348, but as you can see, for us it was working with SP12 and now it doesn't work with SP16....
    Here is part of our code....
        public List getAll() {
            String functionName = "bla";
            try {
                openConnection();
                MappedRecord response = (MappedRecord) interaction.execute(null, request);
                MappedRecord record = (MappedRecord) response.get("E_S_RETURN_CODE");
                if (((String) record.get("RETURN_CODE")).equalsIgnoreCase("E")) {
                    throw new SQLException((String) record.get("RETURN_TXT"));
            catch (ResourceException exc) {
                throw new EJBException(".");
            catch (SQLException exc) {
                throw new EJBException(".");
            finally {
                closeConnection();
        protected void openConnection() {
            try {
                connection = connectionFactory.getConnection();
                interaction = connection.createInteraction();
            catch (ResourceException exc) {
                interaction = null;
                connection = null;
                throw new EJBException(getExceptionText(exc));
      protected void closeConnection() {
           try {
                if (interaction != null) {
                    interaction.close();
                if (connection != null) {
                    connection.close();
            catch (ResourceException exc) {
                throw new EJBException(".");
    With that code we are getting this error: "Connection handle is already closed and no longer associated with a managed connection" everytime we try to close the connection in the method closeConnection().
    We were thinking that maybe we should not close the connections, because the were already close, and tried not to close the connection (connection.close()), but then after a few time we are getting the following error, because we are not closing the connections:
    Connection to ABAP System could not be opened, because the Connection Factory returns "Cannot get connection for 120 seconds. Possible reasons: 1) Connections are cached within SystemThread(can be any server service or any code invoked within SystemThread in the SAP J2EE Engine), 2) The pool size of adapter "eis/..." is not enough according to the current load of the system or 3) The specified time to wait for connection is not enough according to the pool size and current load of the system. In case 1) the solution is to check for cached connections using the Connector Service list-conns command, in case 2) to increase the size of the pool and in case 3) to increase the time to wait for connection property. In case of application thread, there is an automatic mechanism which detects unclosed connections and unfinished transactions.". Please check the connection defined for the Connection Factory of the Java Resource Adapter with JNDI name...
    Any help?

  • Can't establish wireless connection between the printer and computer.

    I recently upgraded my wireless to an Apple AirPort Time Capsule. I'm able to set up the printer via USB cable. And I'm able to set up the printer on the network via the Airport WPA utility. However I cannot establish a wireless connection between the computer and the printer. When I go to the printers window  in my system prefereces, there is no wireless printer available to add in the "available printers" menu. Only the USB version printer is listed and of course when I disconnect the USB cable it shows as offline.I've tried all the fixes on HP's support pages. I've tried reinstalling the printer on both the router and the computer numerous times. The only thing I haven't done is reinstall the printer using the "Install Wizard" software that is supposed to come with the printer - (mine never came with it in the first place and of course HP doesn't have it available for download). And when I reset the printer to factory settings, then connect it to the computer via the USB, there is no installation software that pops up. Cant even find the **bleep** thing in "Finder". (I'm assuming that it should show up as some sort of external device.) I've checked to make sure both computer and printer are on the same network. (sometimes my computer will grab a connection with the next nearest network.) I've checked all the settings for the printer via the HTML configuration utility. I've even updated my Macbook software and restarted it multiple times. Note: the printer actually worked for a bit when I first switched routers, but the printer's wireless function went offline several times and then quit  altogether. Really frustrated that I bought another HP product thinking this time things would be different. HP is no help unless you want to pay $$ for a phone call. I'm about ready to take this thing out in the desert to use for target practice and never buy another HP product ever again.

    Hi , I saw your post regarding the problems you are having with your LaserJet Pro P1102w Printer not showing on your Macintosh computer. I may have found some resources for you. 
    I have a few questions for you, so I can offer some additional assistance:Before you upgraded to the Apple AirPort Time Capsule, was the printer working wirelessly without any issues?
    When you say; 'I reset the printer to factory settings', how where you trying to do this? 
    I found some instructions from this post: How do I reset my Laserjet p1102w to its defaults, copied here for you:
    To restore the printer back to factory settings, turn the printer off, hold down the wireless button and the cancel button (x button) then turn the printer back on and don't release the two buttons until the printer stops making noise. (When they say turn the printer off, I think they mean unplug the power cable.)
    "I've checked to make sure both computer and printer are on the same network."  Do you know if you are able to access the printers Embedded Web Server (EWS)?To access the EWS - Make sure that the Ready light () is on and that the printer is idle and silent.Press and hold the Cancel button (), and release it when the Ready light () begins blinking.The configuration page prints.Type the IP address or host name of the product in the address field of a supported Web browser, and then press Enter on your keyboardLet me know if this page loads 
    To answer a few more items you have listed:... When I go to the printers window in my system preferences, there is no wireless printer available to add in the "available printers" menu.This could be an issue with your print system, I recommend resetting the printing system and then Repair Disk Permissions - after that try to add the printer again.
    ... the "Install Wizard" software that is supposed to come with the printer - (mine never came with it in the first place and of course HP doesn't have it available for download)HP provides their software/drivers to Apple to be released through your Apple software updates. You can review this document on how to Install a Mac Printer Driver Using Apple Software Update. Which leads into your next point...
    ... there is no installation software that pops upWhen you connect the USB cable your mac may still recognize the printer software as being already installed - check for apple updatesOn the Mac, click the Apple menu (), and then click Software Update, or click About this Mac, and then click Software Update. A list of available updates displays.
    ... Not seeing the printer in "Finder" From what I understand most printers will not show in Finder unless you install a memory card into a supported port on certain printer models, only then will it read it like an external device. A few more things you can check are that the new settings in the Apple AirPort Time Capsule are setup to allow the printer to communicate. There are several of these settings listed in this document; Tips and Workarounds for Common Wireless Network Printer Issues.  HP regularly releases firmware updates that may also correct the problem you are experiencing. You can click on this link to Getting Printer Updates for HP LaserJet Pro P1102w Printer.  I did find 2 more documents that may offer some additional information as well;HP LaserJet Pro P1102w Printer - Connecting the Printer After Changing Your Wireless NetworkAn 'Unable to Find Printer' Error Displays for the HP LaserJet Pro P1102w Printer  Please let me know if any of these steps resolved your issue, or the details of what happened.  I look forward to hearing from you, hopefully with good news!   Thanks, 

  • No Connection between WRT54G and Zhone 6212

    A friend of mine has recently upgraded to DSL from dial-up. The company gave her a Zhone model #6212-I3-200 and she has a Linksys model #WRT54g v5 wireless hub. If she connects direct via wire from the modem to her computer, she has an internet connection. When she tries to get a connection between the wireless up and the computer, she has a wireless connection, but it says limited or no connectivity under the wireless up in the internet connections screen on her computer. She cannot go online thru the wireless hub. What does she need to do in order to get a internet connection thru the wireless hub? Thanks in advance Gregg

    first off , connect the modem to the router's internet port and the computer to the router's port 1...open the router's web interface using http://192.168.1.1 .. the default password is admin ..
    once on the web ui , click on the status tab and check the internet ip add .. if it is 192.168.1.x , change the router's ip add to 192.168.2.1 ..
    if it is 0.0.0.0 , click on setup tab and click on "mac address clone" subtab , enable it and click clone...save the settings...do a power cycle
    click on status tab and check the ip add....if still 0.0.0.0 , click on setup tab and select the internet connection type as PPPoE .. enter the username and password as provided by the isp ...
    check the ip add again ... if you get a valid ip add , try going online...if still not getting any ip add...configure the modem in a bridge mode ...

  • Connectivity between SAP ECC system and SAP BI

    Connectivity between SAP ECC system and SAP BI
    Hi BI-experts!
    I would like to load e.g. transaction data from SAP ECC system into SAP BI system.
    The Loading process is hanging in processing step u201CSERVICE APIu201D.
    The process  in hanging in status "yellow" and then changed after a while to status u201Credu201D.
    [0FI_AR_4 |http://www.file-upload.net/view-1447743/0FI_AR_4.jpg.html ]
    The following steps within Load process are yellow and then red:
    Extraction (messages): Missing messages
    Missing message: Request received
    Missing message: Number of sent records
    Missing message: Selection completed
    Transfer (IDocs and TRFC): Missing messages or warnings
    Request IDoc : Application document posted (is green)
    Data Package 1 : arrived in BW ; Processing : 2nd processing step not yet finished
    Info IDoc 1 : sent, not arrived ; Data passed to port OK
    Info IDoc 2 : sent, not arrived ; Data passed to port OK
    Info IDoc 3 : sent, not arrived ; Data passed to port OK
    Info IDoc 4 : sent, not arrived ; Data passed to port OK
    Subseq. processing (messages) : Missing messages
    Missing message: Subseq. processing completed
    DataStore Activation (Change Log) : not yet activated
    Question:
    Can some one tell me whether my distribution model or other settings are wrong?
    I created 2 distribution model (BD64), one from SAP BW system and other from SAP BI system with message types RSRQST, RSINFO, RSSEND
    Thank you very much!

    Hi Holger.
    this issue is related to the RFC but not the one which is communicating from BI to R/3 rather the one which is communicating from R/3 to BI follow these steps.
    1. check your BI system logical name from the myself source system.
    2. go the ECC and run the transaction sm59
    3. go the ABAP Connection folder and search for your RFC which name would be by default as per your BI logical system name.
    4. double click it and edit it now check whether the Target hostname or ip is OK.
    5. In the logon tab check the client number User and password settings.
    Save it and test it with both Connection Test and Remote Logon.
    if every thing work fine i hope your problem will be solved.
    kind regards,
    Zeeshan

  • How to create ODBC connection between Oracle 10g and MS SQL Server

    Hi,
    Can someone help us with the steps to create an ODBC connection between Oracle APPS using Oracle 10g database and MS SQL Server.
    Requirement is to extract the transactional data from MS SQL Server on a daily basis and dump it into Oracle tables for an interface to be run. Currently it is being done through Dataloader tool which we feel is causing the data issue with Arabic characters. We want to create the ODBC directly between Oracle and MS SQL Server and check if the data is being pulled correctly.
    The data is in sql server 2000 which has data in Arabic_CI_AS character set which is moved to Oracle 10.2.0.3 database with characterset AL32UTF8. The table data is moved to oracle using the dataloader 3.6 standard edition licensed version. We cannot change the character set of Sql Server 2000.
    Please help
    Thanks
    Shanil

    Hi,
    If you're trying to PULL data from SQLServer into an Oracle database, you wouldnt use Oracle ODBC driver for that, so you may want to post in the Heterogeneous Services forum instead:
    Heterogeneous Connectivity
    If you're trying to PUSH data from SQLServer into an Oracle database, you could use ODBC but most folks use OLEDB for that, and the following note on MOS should help:
    How to Create a Sql Server Linked Server With The Oracle Provider for OLE DB     (Doc ID 191368.1)
    As with any NLS related issue, the first thing to do is dump the codepoints of the data in the Oracle database to see if it is stored validly, rather than relying on what the data "looks like" from some tool or other. It's best to check a single row, with only a few characters in it if you can, and you can do that via
    SELECT DUMP(<columname>,1016) FROM <tablename> WHERE ...
    Hope it helps,
    Greg

  • Get error when change connection.

    Hi experts,
    I create the webpage using Jdeveloper 11g and it running ok. After that I only change the connection database from other server, and I get error:
    "ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code = -2"
    This is the original code before I change connection:
    package hr;
    import java.sql.Connection;
    import java.sql.SQLException;
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Statement;
    import java.sql.ResultSet;
    public class DataHandler {
    public DataHandler() {
    String jdbcUrl = "jdbc:oracle:thin:@localhost:1521:ORCL";
    String userid = "srdemo";
    String password = "oracle";
    Connection conn;
    Statement stmt;
    ResultSet rset;
    String query;
    String sqlString;
    public void getDBConnection() throws SQLException{
    OracleDataSource ds;
    ds = new OracleDataSource();
    ds.setURL(jdbcUrl);
    conn=ds.getConnection(userid,password);
    public ResultSet getAllEmployees() throws SQLException{
    getDBConnection();
    stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
    query = "SELECT * FROM products";
    System.out.println("\nExecuting query: " + query);
    rset = stmt.executeQuery(query);
    return rset;
    public ResultSet getEmployeesByName(String name) throws SQLException {
    name = name.toUpperCase();
    getDBConnection();
    stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
    ResultSet.CONCUR_READ_ONLY);
    query =
    "SELECT * FROM products WHERE UPPER(name) LIKE '%" + name + "%' order by prod_id";
    System.out.println("\nExecuting query: " + query);
    rset = stmt.executeQuery(query);
    return rset;
    public static void main(String[] args) throws Exception{
    DataHandler datahandler = new DataHandler();
    ResultSet rset = datahandler.getAllEmployees();
    while (rset.next()) {
    System.out.println(rset.getInt(1) + " " +
    rset.getString(2) + " " +
    rset.getString(3) + " " +
    rset.getString(4));
    rset = datahandler.getEmployeesByName("Free");
    System.out.println("\nResults from query: ");
    while (rset.next()) {
    System.out.println(rset.getInt(1) + " " +
    rset.getString(2) + " " +
    rset.getString(3) + " " +
    rset.getString(4));
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"
    import="java.sql.ResultSet"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
    <title>product</title>
    <link href="css/jdeveloper.css" rel="stylesheet" media="screen"/>
    </head>
    <body><p>
    AnyCo Corporation: HR Application
    </p><p>
    Products Data 
    </p><jsp:useBean id="empsbean" class="hr.DataHandler" scope="session"/><form action="product.jsp">
    Filter by Product name:
    <input type="text" name="query"/>
    <input type="submit" value="Filter"/>
    </form><%ResultSet rset;
    String query = request.getParameter("query");
    if (query != null && query != null)
    rset = empsbean.getEmployeesByName(query);
    else
    rset = empsbean.getAllEmployees();%><table cellspacing="3" cellpadding="2"
    border="1" width="100%">
    <tr>
    <td width="12%">ProductID</td>
    <td width="32%">Name</td>
    <td width="24%">Image</td>
    <td width="32%">Description</td>
    </tr>
    <%while (rset.next ())
    out.println("<tr>");
    out.println("<td>" +
    //rset.getString("prod_id") + "</td><td> " +
    //rset.getString("name") + "</td><td> " +
    //rset.getString("image") + "</td><td> " +
    //rset.getDouble("description") + "</td>");
    rset.getInt("prod_id") + "</td><td> " +
    rset.getString("name") + "</td><td> " +
    rset.getString("image") + "</td><td> " +
    rset.getString("description") + "</td>");
    out.println("</tr>");
    }%>
    </table></body>
    </html>
    This is code after i change the connection:
    package hr;
    import java.sql.Connection;
    import java.sql.SQLException;
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Statement;
    import java.sql.ResultSet;
    public class DataHandler {
    public DataHandler() {
    String jdbcUrl = "jdbc:oracle:thin:@hris-dev.cimb.com:1521:DEV20";
    String userid = "apps";
    String password = "apps";
    Connection conn;
    Statement stmt;
    ResultSet rset;
    String query;
    String sqlString;
    public void getDBConnection() throws SQLException{
    OracleDataSource ds;
    ds = new OracleDataSource();
    ds.setURL(jdbcUrl);
    conn=ds.getConnection(userid,password);
    public ResultSet getAllEmployees() throws SQLException{
    getDBConnection();
    stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
    query = "SELECT * FROM XX_OAF_PRODUCTS";
    System.out.println("\nExecuting query: " + query);
    rset = stmt.executeQuery(query);
    return rset;
    public ResultSet getEmployeesByName(String name) throws SQLException {
    name = name.toUpperCase();
    getDBConnection();
    stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
    ResultSet.CONCUR_READ_ONLY);
    query =
    "SELECT * FROM XX_OAF_PRODUCTS WHERE UPPER(name) LIKE '%" + name + "%' order by prod_id";
    System.out.println("\nExecuting query: " + query);
    rset = stmt.executeQuery(query);
    return rset;
    public static void main(String[] args) throws Exception{
    DataHandler datahandler = new DataHandler();
    ResultSet rset = datahandler.getAllEmployees();
    while (rset.next()) {
    System.out.println(rset.getInt(1) + " " +
    rset.getString(2) + " " +
    rset.getString(3) + " " +
    rset.getString(4));
    rset = datahandler.getEmployeesByName("Free");
    System.out.println("\nResults from query: ");
    while (rset.next()) {
    System.out.println(rset.getInt(1) + " " +
    rset.getString(2) + " " +
    rset.getString(3) + " " +
    rset.getString(4));
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"
    import="java.sql.ResultSet"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
    <title>product</title>
    <link href="css/jdeveloper.css" rel="stylesheet" media="screen"/>
    </head>
    <body><p>
    AnyCo Corporation: HR Application
    </p><p>
    Products Data 
    </p><jsp:useBean id="empsbean" class="hr.DataHandler" scope="session"/><form action="product.jsp">
    Filter by Product name:
    <input type="text" name="query"/>
    <input type="submit" value="Filter"/>
    </form><%ResultSet rset;
    String query = request.getParameter("query");
    if (query != null && query != null)
    rset = empsbean.getEmployeesByName(query);
    else
    rset = empsbean.getAllEmployees();%><table cellspacing="3" cellpadding="2"
    border="1" width="100%">
    <tr>
    <td width="12%">ProductID</td>
    <td width="32%">Name</td>
    <td width="24%">Image</td>
    <td width="32%">Description</td>
    </tr>
    <%while (rset.next ())
    out.println("<tr>");
    out.println("<td>" +
    //rset.getString("prod_id") + "</td><td> " +
    //rset.getString("name") + "</td><td> " +
    //rset.getString("image") + "</td><td> " +
    //rset.getDouble("description") + "</td>");
    rset.getInt("prod_id") + "</td><td> " +
    rset.getString("name") + "</td><td> " +
    rset.getString("image") + "</td><td> " +
    rset.getString("description") + "</td>");
    out.println("</tr>");
    }%>
    </table></body>
    </html>
    This is debug script after I change connection
    C:\Oracle\Middleware\jdk160_05\bin\javaw.exe -client -agentlib:jdwp=transport=dt_socket,server=y,address=2724 -classpath D:\temp\HRapp_EBS\view\classes;C:\Oracle\Middleware\modules\javax.servlet_1.0.0.0_2-5.jar;C:\Oracle\Middleware\modules\javax.jsp_1.1.0.0_2-1.jar;C:\Oracle\Middleware\modules\glassfish.el_2.1.0.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.share_11.1.1\adf-share-support.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.share.ca_11.1.1\adf-share-ca.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.share.ca_11.1.1\adf-share-base.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.share_11.1.1\adflogginghandler.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.idm_11.1.1\identitystore.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.javacache_11.1.1\cache.jar;C:\Oracle\Middleware\jdeveloper\lib\java\api\jaxb-api.jar;C:\Oracle\Middleware\jdeveloper\lib\java\api\jsr173_api.jar;C:\Oracle\Middleware\modules\javax.activation_1.1.0.0_1-1.jar;C:\Oracle\Middleware\jdeveloper\lib\java\shared\sun.jaxb\2.0\jaxb-xjc.jar;C:\Oracle\Middleware\jdeveloper\lib\java\shared\sun.jaxb\2.0\jaxb-impl.jar;C:\Oracle\Middleware\jdeveloper\lib\java\shared\sun.jaxb\2.0\jaxb1-impl.jar;C:\Oracle\Middleware\jdeveloper\adfc\lib\adf-controller.jar;C:\Oracle\Middleware\jdeveloper\adfc\lib\adf-controller-api.jar;C:\Oracle\Middleware\jdeveloper\adfc\lib\adf-controller-rt-common.jar;C:\Oracle\Middleware\jdeveloper\jdev\extensions\oracle.BC4J.jar;C:\Oracle\Middleware\jdeveloper\BC4J\jlib\adfmejb.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.xdk_11.1.1\xmlparserv2.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\adfm.jar;C:\Oracle\Middleware\jdeveloper\BC4J\jlib\adfui.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\groovy-all-1.5.4.jar;C:\Oracle\Middleware\jdeveloper\jlib\ojmisc.jar;C:\Oracle\Middleware\jdeveloper\jlib\commons-el.jar;C:\Oracle\Middleware\jdeveloper\jlib\jsp-el-api.jar;C:\Oracle\Middleware\jdeveloper\jlib\oracle-el.jar;C:\Oracle\Middleware\jdeveloper\adfdt\lib\adf-dt-at-rt.jar;C:\Oracle\Middleware\jdeveloper\adfdt\lib\adf-transactions-dt.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\adfdt_common.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\db-ca.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\jdev-cm.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.share_11.1.1\adf-share-base.jar;C:\Oracle\Middleware\jdeveloper\dvt\lib\dvt-jclient.jar;C:\Oracle\Middleware\jdeveloper\dvt\lib\dvt-utils.jar;C:\Oracle\Middleware\jdeveloper\BC4J\jlib\adfmtl.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\adfmweb.jar;C:\Oracle\Middleware\modules\javax.jms_1.1.1.jar;C:\Oracle\Middleware\jdeveloper\rdbms\jlib\aqapi.jar;C:\Oracle\Middleware\modules\javax.transaction_1.0.0.0_1-1.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-antlr.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-apache-bcel.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-apache-bsf.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-apache-log4j.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-apache-oro.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-apache-regexp.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-apache-resolver.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-commons-logging.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-commons-net.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-icontract.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-jai.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-javamail.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-jdepend.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-jmf.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-jsch.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-junit.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-launcher.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-netrexx.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-nodeps.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-starteam.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-stylebook.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-swing.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-trax.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-vaj.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-weblogic.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-xalan1.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant-xslp.jar;C:\Oracle\Middleware\jdeveloper\ant\lib\ant.jar;C:\Oracle\Middleware\modules\javax.ejb_3.0.1.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model.generic_11.1.1\bc4jdomgnrc.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\bc4jhtml.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\datatags.jar;C:\Oracle\Middleware\jdeveloper\BC4J\jlib\graphtags.jar;C:\Oracle\Middleware\jdeveloper\j2ee\home\oc4jclient.jar;C:\Oracle\Middleware\modules\javax.resource_1.5.1.jar;C:\Oracle\Middleware\jdeveloper\BC4J\jlib\bc4jwizard.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.javatools_11.1.1\resourcebundle.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.ldap_11.1.1\ldapjclnt11.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jps_11.1.1\jps-api.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jps_11.1.1\jps-common.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jps_11.1.1\jps-internal.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jps_11.1.1\jps-unsupported-api.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jps_11.1.1\jacc-spi.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.pki_11.1.1\oraclepki.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.osdt_11.1.1\osdt_core.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.osdt_11.1.1\osdt_cert.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.osdt_11.1.1\osdt_xmlsec.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.iau_11.1.1\fmw_audit.jar;C:\Oracle\Middleware\modules\javax.security.jacc_1.0.0.0_1-1.jar;C:\Oracle\Middleware\jdeveloper\BC4J\jlib\bc4jtester.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\bc4jsyscat.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\bc4jwizard.jar;C:\Oracle\Middleware\jdeveloper\jlib\ohj.jar;C:\Oracle\Middleware\jdeveloper\jlib\help-share.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.bali.share_11.1.1\share.jar;C:\Oracle\Middleware\jdeveloper\jlib\jewt4.jar;C:\Oracle\Middleware\jdeveloper\jlib\oracle_ice.jar;C:\Oracle\Middleware\jdeveloper\ide\lib\idert.jar;C:\Oracle\Middleware\jdeveloper\ide\lib\javatools.jar;C:\Oracle\Middleware\wlserver_10.3\server\lib\wlclient.jar;C:\Oracle\Middleware\jdeveloper\jlib\jdev-cm.jar;C:\Oracle\Middleware\jdeveloper\jdev\lib\dmsstub.jar;C:\Oracle\Middleware\modules\javax.jsf_1.2.0.0.jar;C:\Oracle\Middleware\modules\javax.enterprise.deploy_1.2.jar;C:\Oracle\Middleware\modules\javax.interceptor_1.0.jar;C:\Oracle\Middleware\modules\javax.jws_2.0.jar;C:\Oracle\Middleware\modules\javax.mail_1.1.0.0_1-1.jar;C:\Oracle\Middleware\modules\javax.xml.soap_1.3.1.0.jar;C:\Oracle\Middleware\modules\javax.xml.rpc_1.2.1.jar;C:\Oracle\Middleware\modules\javax.xml.ws_2.1.1.jar;C:\Oracle\Middleware\modules\javax.management.j2ee_1.0.jar;C:\Oracle\Middleware\modules\javax.xml.stream_1.1.1.0.jar;C:\Oracle\Middleware\modules\javax.xml.registry_1.0.0.0_1-0.jar;C:\Oracle\Middleware\modules\javax.persistence_1.0.0.0_1-0.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.webservices_11.1.1\wsclient.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.webservices_11.1.1\wsserver.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.webservices_11.1.1\wssecurity.jar;C:\Oracle\Middleware\jdeveloper\webservices\lib\wsdl.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.webservices_11.1.1\orasaaj.jar;C:\Oracle\Middleware\modules\com.bea.core.weblogic.saaj_1.3.0.0.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.webservices_11.1.1\orawsdl.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.webservices_11.1.1\orawsrm.jar;C:\Oracle\Middleware\jdeveloper\webservices\lib\orawsrel.jar;C:\Oracle\Middleware\jdeveloper\webservices\lib\orajaxr.jar;C:\Oracle\Middleware\jdeveloper\webservices\lib\xsdlib.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.webservices_11.1.1\mdds.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.webservices_11.1.1\wsif.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.fabriccommon_11.1.1\fabric-common.jar;C:\Oracle\Middleware\jdeveloper\modules\org.jaxen_2.2.1D.jar;C:\Oracle\Middleware\jdeveloper\webservices\lib\ojpse.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.osdt_11.1.1\jsr106.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.osdt_11.1.1\jsr105.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.osdt_11.1.1\osdt_wss.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.osdt_11.1.1\osdt_saml.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.osdt_11.1.1\osdt_saml2.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.ldap_0.0\ojmisc.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.http_client_11.1.1.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.xdb_11.1.0.6.0.jar;C:\Oracle\Middleware\modules\javax.management.j2ee_1.2.1.jar;C:\Oracle\Middleware\modules\javax.xml.stream_1.0.0.0.jar;C:\Oracle\Middleware\modules\glassfish.jaxb_2.1.6.jar;C:\Oracle\Middleware\modules\glassfish.jaxb.xjc_2.1.6.jar;C:\Oracle\Middleware\jdeveloper\webservices\lib\oc4j-schemas.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.odl_11.1.1\ojdl.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.odl_11.1.1\ojdl2.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jmx_11.1.1\jmxframework.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jmx_11.1.1\jmxspi.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.dms_11.1.1\dms.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.nlsrtl_11.1.0.6.0\orai18n.jar;C:\Oracle\Middleware\jdeveloper\modules\org.apache.commons.digester_1.7.jar;C:\Oracle\Middleware\jdeveloper\modules\org.springframework_2.0.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.wsm.common_11.1.1\wsm-policy-core.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.wsm.common_11.1.1\wsm-pmlib.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.wsm.agent.common_11.1.1\wsm-pap.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.wsm.agent.common_11.1.1\wsm-agent.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.wsm.common_11.1.1\wsm-secpol.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.javatools_11.1.1\javamodel-rt.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.javatools_11.1.1\javatools-nodeps.jar;C:\Oracle\Middleware\modules\javax.mail_1.4.jar;C:\Oracle\Middleware\jdeveloper\jdev\lib\jdev-rt.jar;C:\Oracle\Middleware\jdeveloper\jdev\extensions\oracle.jdeveloper.jgoodies\forms-1.0.6.jar;C:\Oracle\Middleware\jdeveloper\webservices\lib\jws-api-10.1.3.jar;C:\Oracle\Middleware\jdeveloper\webservices\lib\orawsmetadata.jar;C:\Oracle\Middleware\jdeveloper\javacache\lib\cache.jar;C:\Oracle\Middleware\jdeveloper\ord\jlib\jmf.jar;C:\Oracle\Middleware\jdeveloper\jlib\help4.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\bc4jimdomains.jar;C:\Oracle\Middleware\jdeveloper\ord\jlib\ordim.jar;C:\Oracle\Middleware\jdeveloper\ord\jlib\ordhttp.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\ordim.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.model_11.1.1\ordhttp.jar;C:\Oracle\Middleware\wlserver_10.3\server\ext\jdbc\oracle\11g\ojdbc5.jar;C:\Oracle\Middleware\jdeveloper\jlib\inspect4.jar;C:\Oracle\Middleware\jdeveloper\jdev\lib\ojc.jar;C:\Oracle\Middleware\jdeveloper\webservices\lib\soap.jar;C:\Oracle\Middleware\jdeveloper\jlib\javax-ssl-1_1.jar;C:\Oracle\Middleware\jdeveloper\jlib\jssl-1_1.jar;C:\Oracle\Middleware\modules\javax.activation_1.1.jar;C:\Oracle\Middleware\jdeveloper\uddi\lib\uddiclient.jar;C:\Oracle\Middleware\jdeveloper\uddi\lib\core_services_client.jar;C:\Oracle\Middleware\jdeveloper\uddi\lib\uddiclient_core.jar;C:\Oracle\Middleware\jdeveloper\uddi\lib\uddiclient_api_v2.jar;C:\Oracle\Middleware\jdeveloper\uddi\lib\uddiclient_api_v3.jar;C:\Oracle\Middleware\jdeveloper\uddi\lib\category_client_v3.jar;C:\Oracle\Middleware\jdeveloper\uddi\lib\wsdl2uddi_client_v3.jar;C:\Oracle\Middleware\jdeveloper\uddi\lib\wasp.jar;C:\Oracle\Middleware\jdeveloper\uddi\lib\activation.jar;C:\Oracle\Middleware\jdeveloper\uddi\lib\jaxrpc.jar;C:\Oracle\Middleware\jdeveloper\uddi\lib\saaj.jar;C:\Oracle\Middleware\jdeveloper\uddi\lib\jaxm.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.xdk_11.1.1\xml.jar;C:\Oracle\Middleware\jdeveloper\lib\xsu12.jar;C:\Oracle\Middleware\jdeveloper\lib\xquery.jar;C:\Oracle\Middleware\jdeveloper\orant\lite\classes\olite40.jar;C:\Oracle\Middleware\jdeveloper\sqlj\lib\runtime12.jar;C:\Oracle\Middleware\jdeveloper\jakarta-struts\lib\antlr.jar;C:\Oracle\Middleware\jdeveloper\jakarta-struts\lib\commons-beanutils.jar;C:\Oracle\Middleware\jdeveloper\jakarta-struts\lib\commons-collections.jar;C:\Oracle\Middleware\jdeveloper\jakarta-struts\lib\commons-digester.jar;C:\Oracle\Middleware\jdeveloper\jakarta-struts\lib\commons-fileupload.jar;C:\Oracle\Middleware\jdeveloper\jakarta-struts\lib\commons-logging.jar;C:\Oracle\Middleware\jdeveloper\jakarta-struts\lib\commons-validator.jar;C:\Oracle\Middleware\jdeveloper\jakarta-struts\lib\jakarta-oro.jar;C:\Oracle\Middleware\jdeveloper\jakarta-struts\lib\struts.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.toplink_11.1.1\toplink.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.toplink_11.1.1\antlr.jar;C:\Oracle\Middleware\modules\com.bea.core.antlr.runtime_2.7.7.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.toplink_11.1.1\eclipselink.jar;C:\Oracle\Middleware\jdeveloper\BC4J\jlib\adf-connections.jar;C:\Oracle\Middleware\jdeveloper\BC4J\lib\adfcm.jar;C:\Oracle\Middleware\jdeveloper\modules\features\adf.model_11.1.1.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.mds_11.1.1\mdsrt.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.dms_11.1.1\ojdl2.jar;C:\Oracle\Middleware\jdeveloper\lib\xsqlserializers.jar;C:\Oracle\Middleware\modules\glassfish.jstl_1.2.0.1.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jsf_1.2.7.1\jsf-api.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jsf_1.2.7.1\jsf-ri.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jsf_1.2.7.1\sun-commons-beanutils.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jsf_1.2.7.1\sun-commons-collections.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jsf_1.2.7.1\sun-commons-digester.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jsf_1.2.7.1\sun-commons-logging.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.jsf_1.2.7.1\weblogic-injection-provider.jar;C:\Oracle\Middleware\jdeveloper\adfc\lib\adf-controller-schema.jar;C:\Oracle\Middleware\jdeveloper\jlib\trinidad-api.jar;C:\Oracle\Middleware\jdeveloper\jlib\trinidad-impl.jar;C:\Oracle\Middleware\jdeveloper\jlib\adf-richclient-api-11.jar;C:\Oracle\Middleware\jdeveloper\jlib\adf-faces-databinding-rt.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.share_11.1.1\commons-cli-1.0.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.share_11.1.1\commons-el.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.share_11.1.1\jsp-el-api.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.adf.share_11.1.1\oracle-el.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.xmlef_11.1.1\xmlef.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.oc4j-obsolete_11.1.1\oc4j-unsupported-api.jar;C:\Oracle\Middleware\jdeveloper\modules\oracle.ucp_11.1.0.7.0.jar hr.DataHandler
    Listening for transport dt_socket at address: 2724
    Debugger connected to local process.
    Jun 15, 2009 9:39:03 AM oracle.as.jmx.framework.PortableMBeanFactory setJMXFrameworkProviderClass
    INFO: JMX Portable Framework initialized with platform SPI "class oracle.as.jmx.framework.standardmbeans.spi.JMXFrameworkProviderImpl"
    Jun 15, 2009 9:39:03 AM oracle.as.jmx.framework.PortableMBeanFactory setJMXFrameworkProviderClass
    INFO: JMX Portable Framework initialized with platform SPI "class oracle.as.jmx.framework.standardmbeans.spi.JMXFrameworkProviderImpl"
    Executing query: SELECT * FROM XX_OAF_PRODUCTS
    100 Washing Machine W001 null 1000 spin, A Energy at 40 Deg., 11lb/5kg capacity
    101 Washing Machine W003a null 1200 spin, A+ Energy at 40 Deg., 15lb/6kg capacity
    102 Washing Machine W017 null 1400 spin, A Energy at 40 Deg., 11lb/5kg capacity
    103 Washing Machine T006 null Twin Tub, 800 spin, C Energy at 40 Deg., 10lb/4.5kg capacity
    104 Washer Dryer W001d null 1000 spin, A Energy at 40 Deg., 11lb/5kg capacity, 9lb/4kg drying capacity
    105 Washer Dryer W003d null 1200 spin, A+ Energy at 40 Deg., 15lb/6kg capacity, 11lb/5kg drying capacity
    106 Washer Dryer W017d null 1400 spin, A Energy at 40 Deg., 11lb/5kg capacity, 11lb/5kg drying capacity
    107 Dryer D003 null Vented, B+ Energy, 15lb/6kg capacity
    108 Dryer D011 null Condensing, A Energy, 11lb/5kg capacity
    109 Fridge F011s null 7.5 CUFT, A+ Energy, FF, Auto-Defrost, Silver
    110 Fridge F011w null 7.5 CUFT, A+ Energy, FF, Auto-Defrost, White
    111 Fridge F011b null 7.5 CUFT, A+ Energy, FF, Auto-Defrost, Black
    112 Fridge F004w null 4.5 CUFT, Under Counter, A++ Energy, FF, Auto-Defrost, White
    113 Fridge Freezer FZ007s null 4.5 / 1.5 CUFT, A+ Energy, FF, Auto-Defrost, Silver
    114 Fridge Freezer FZ007w null 4.5 / 1.5 CUFT, A+ Energy, FF, Auto-Defrost, White
    115 Freezer Z002s null 7.5 CUFT, A Energy, FF, Silver
    116 Freezer Z002w null 7.5 CUFT, A Energy, FF, White
    117 Freezer Z002b null 7.5 CUFT, A Energy, FF, Black
    118 Chest Freezer Z001w null 12.5 CUFT, B+ Energy, White
    119 Ice Maker I012 null 30lb capacity storage bin, FF
    Executing query: SELECT * FROM XX_OAF_PRODUCTS WHERE UPPER(name) LIKE '%FREE%' order by prod_id
    Results from query:
    113 Fridge Freezer FZ007s null 4.5 / 1.5 CUFT, A+ Energy, FF, Auto-Defrost, Silver
    114 Fridge Freezer FZ007w null 4.5 / 1.5 CUFT, A+ Energy, FF, Auto-Defrost, White
    115 Freezer Z002s null 7.5 CUFT, A Energy, FF, Silver
    116 Freezer Z002w null 7.5 CUFT, A Energy, FF, White
    117 Freezer Z002b null 7.5 CUFT, A Energy, FF, Black
    118 Chest Freezer Z001w null 12.5 CUFT, B+ Energy, White
    ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code = -2
    JDWP exit error AGENT_ERROR_NO_JNI_ENV(183): [../../../src/share/back/util.c:820]
    Process exited.
    Debugger disconnected from local process.
    Thanks in advance!!!
    Regards,
    Hieu

    What did you do to resolve this issue? It could be helpful to others. Thanks.

Maybe you are looking for

  • Performance problem: Query explain plan changes in pl/sql vs. literal args

    I have a complex query with 5+ table joins on large (million+ row) tables. In it's most simplified form, it's essentially select * from largeTable large join anotherLargeTable anothr on (anothr.id_2 = large.pk_id) join...(other aux tables) where larg

  • No entry in table $ for key $ 554C 400100 20090

    Hi Gurus, While running payroll--for some employees(pre . number 125) the following error is coming: No entry in table $ for key $ 554C 400100 20090 Technical error no. 72 02.01.2009 Processing terminated for EE 00000125 This error is coming while I

  • Intercompany Scenario for Export and without Plant

    Hi Our client creates Big Projects; with two company Codes, One in India and another in Germany. They are working on PS. In most of the cases they get an order and they send the required material through Vendor, Vendor uses his Excise Invoice for sen

  • Help!! printing

    hi I developed an applet and it prints out a value.I m using zebra printer.problem is about layout.can you help me about aligning this value on the paper.it s ok on applet window value is in the center of window but when I print out it doesnt properl

  • PAID THE BIG BUCKS FOR THE BEST GAMING BOARD AND AM VERY UNHA

    I bought the Fatality card for my games AND BUILT A NEW DUAL CORE SLI around it, but now I find I cannot have surround with my DTT2500 I also paid a lot of bucks for. I don't mind moving into the 2st century but a little info from a company that want