Modules connection

how the different modules of SAP (hr) are conected with each other i.e  OM, PA ,TIME Payroll
link with event and training , PMS , Compensation management, Recruitment

hi
There are integration switch available in table T77S0
for example u can find a entry
PLOGI     ORGA     X     Integration Switch: Organizational Assignment
Regards
Sameer

Similar Messages

  • Root Application Module connecting to 2 databases technologies

    I have an application which needs to connect to 2 different databases.
    I managed to get access to each databases in their own respective Application Modules.
    In order to achieve that, I created a new ViewObject within the "oracle" model, and still used the "MySQL" query. Using the jbo.envinfoprovider property, I can force the Application module to connect to the appropriate database, MySQL in this case.
    Now, my problem is that I need to have a Root application module that will use BOTH "child" application module and eventually BOTH database connections. At the moment, I can only use one at a time. Using the jbo.envinfoprovider property of the ROOT application module allows me to select which of the 2 database I want to use, but I need both.
    To put it in a tree-like structure, here's what I want to achieve :
    ROOT (Oracle + MySQL)
    |
    |__ AppModule1 (Oracle)
    | |
    | |__ View1
    | |__ View2
    |
    |__ AppModule2 (MySQL)
    |
    |_ View3

    What I mean is if I deploy the application on the integrated weblogic server, using the default navigation flow defined in the adfc-config.xml file, when I reach the "forensic" page, it will try to "read" from both database and fail at reading the second database.
    The page displays the following :
    1- a table containing the records from the Oracle database (3 columns=> ID, pattern, solution)
    2- an adf_form used to populate the above table :
    - the ID is bound to a database trigger, so is set to readonly
    - the solution is a text input field
    - the Pattern is a LoV, based on the data found on the MySQL database.
    If I test the page from the "forensic.jspx" itself (by right-clicking and selecting "Run"), I can manage the data just fine (I can do any CRUD operations I want)
    on the other hand, if I go to the "adfc-config.xml" file and (right-click and then select "Run"), the page will only read one of the two database (I can control which one, by changing the jbo.envinfoprovider property of my application module)
    Hope this helps understand what I am trying to achieve.
    Thanks !

  • Aplication Module Connection

    Is it possible to specify the connection that a certain Aplication module/transaction uses?
    I need to have a connection open for each user, thats's why i need to tell the application module the connection to use...
    Please this is very important...
    Daniel Campelo

    1 - out.println("JDBCURL = "+
    appModule.getDBTransaction().getConnectionMetadata().g
    tJdbcURL());
    2 - appModule.getDBTransaction().disconnect();
    3 - out.println("Is connected =
    "+appModule.getDBTransaction().isConnected());
    4 -
    appModule.getDBTransaction().connect(this.getConnectio
    5 - out.println("URL = "+
    this.getConnection().getMetaData().getURL());
    6 - out.println("Is connected =
    "+appModule.getDBTransaction().isConnected());
    7 - out.println("JDBCURL = "+
    appModule.getDBTransaction().getConnectionMetadata().g
    tJdbcURL());
    1 - is printed the JDBCURL of the transaction
    2 - Disconnect
    3 - Confirmation
    4 - The new connection
    5 - gets the url of the new connection (directly)
    6 - Confirms the new connection
    7 - Here he should print an URL equal to the one
    shown in the line 5... Instead it shows an emptye
    string...Shouldn't the DBTransactionImpl class
    actualize the metadata for the new connection?
    I'm getting really desperate...Please is there anyone
    who knows how to or even know if this is a bug or a
    missing feature of the connection? I really need the
    connection done like this.
    TIABH,
    Daniel CampeloSollution :
    Process all listed steps making the following change in the step 4 :
    4 ->
    //Here is the class i needed!!!!!
    DBTransactionImpl2 dbTrans = (DBTransactionImpl2)(appModule.getDBTransaction());
    //And now this method it's not deprecated :)))))))
    dbTrans.connect(this.getConnection());
    So it should be in the end like this :
    1 - out.println("JDBCURL = "+
    appModule.getDBTransaction().getConnectionMetadata().g
    tJdbcURL());
    2 - appModule.getDBTransaction().disconnect();
    3 - out.println("Is connected =
    "+appModule.getDBTransaction().isConnected());
    4 -//Here is the class i needed!!!!!
    4.1 - DBTransactionImpl2 dbTrans = (DBTransactionImpl2)(appModule.getDBTransaction());
    //And now this method it's not deprecated :)))))))
    4.2 - dbTrans.connect(this.getConnection());
    5 - out.println("URL = "+
    this.getConnection().getMetaData().getURL());
    6 - out.println("Is connected =
    "+appModule.getDBTransaction().isConnected());
    7 - out.println("JDBCURL = "+
    appModule.getDBTransaction().getConnectionMetadata().g
    tJdbcURL());

  • Jdeveloper 10g Failed to chekcout the application module connection problem

    Hello friends,
    I am using trying to simulate the demo of "Oracle Application Development Framework (Oracle ADF) declarative and visual J2EE development" given on the same site.
    To do the same I just downloaded the Jdeveloper 10g and followed the steps given in the application.
    While running the page1DataAction in StrutsPageFlow I got the following exception on my internet explorer.
    500 Internal Server Error
    JBO-30003: The application pool (model.AppModuleLocal) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: java.lang.ClassCastException, msg=sun.jdbc.odbc.JdbcOdbcConnection
         at oracle.jbo.JboException.<init>(JboException.java:343)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1759)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2488)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:434)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:241)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:405)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.createWorkerApplicationModule(WSApplicationModuleImpl.java:1606)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.getCustomApplicationModule(WSApplicationModuleImpl.java:1584)
         at oracle.adf.model.bc4j.DCJboDataControl.setDataProvider(DCJboDataControl.java:781)
         at oracle.adf.model.bc4j.DCJboDataControl.<init>(DCJboDataControl.java:140)
         at oracle.jbo.uicli.binding.JUApplication.<init>(JUApplication.java:94)
         at oracle.jbo.uicli.binding.JUApplication.<init>(JUApplication.java:85)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:249)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:93)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:543)
         at oracle.adf.model.servlet.ADFBindingFilter.initializeBindingContext(ADFBindingFilter.java:228)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:84)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:610)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:784)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:536)
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.ClassCastException, msg=sun.jdbc.odbc.JdbcOdbcConnection
         at oracle.jbo.JboException.<init>(JboException.java:343)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:524)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1646)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2488)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:434)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:241)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:405)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.createWorkerApplicationModule(WSApplicationModuleImpl.java:1606)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.getCustomApplicationModule(WSApplicationModuleImpl.java:1584)
         at oracle.adf.model.bc4j.DCJboDataControl.setDataProvider(DCJboDataControl.java:781)
         at oracle.adf.model.bc4j.DCJboDataControl.<init>(DCJboDataControl.java:140)
         at oracle.jbo.uicli.binding.JUApplication.<init>(JUApplication.java:94)
         at oracle.jbo.uicli.binding.JUApplication.<init>(JUApplication.java:85)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:249)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:93)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:543)
         at oracle.adf.model.servlet.ADFBindingFilter.initializeBindingContext(ADFBindingFilter.java:228)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:84)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:610)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:784)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:536)
    ## Detail 0 ##
    java.lang.ClassCastException: sun.jdbc.odbc.JdbcOdbcConnection
         at oracle.jbo.server.OracleSQLBuilderImpl.isConnectionAlive(OracleSQLBuilderImpl.java:3168)
         at oracle.jbo.server.ConnectionPool.getConnectionInternal(ConnectionPool.java:90)
         at oracle.jbo.server.ConnectionPool.getConnection(ConnectionPool.java:65)
         at oracle.jbo.server.ConnectionPoolManagerImpl.getConnection(ConnectionPoolManagerImpl.java:56)
         at oracle.jbo.server.DBTransactionImpl.establishNewConnection(DBTransactionImpl.java:831)
         at oracle.jbo.server.DBTransactionImpl.initTransaction(DBTransactionImpl.java:1067)
         at oracle.jbo.server.DBTransactionImpl.initTxn(DBTransactionImpl.java:5286)
         at oracle.jbo.server.DBTransactionImpl2.connect(DBTransactionImpl2.java:116)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:288)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.connect(ApplicationPoolImpl.java:3515)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2151)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:515)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1646)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2488)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:434)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:241)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:405)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.createWorkerApplicationModule(WSApplicationModuleImpl.java:1606)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.getCustomApplicationModule(WSApplicationModuleImpl.java:1584)
         at oracle.adf.model.bc4j.DCJboDataControl.setDataProvider(DCJboDataControl.java:781)
         at oracle.adf.model.bc4j.DCJboDataControl.<init>(DCJboDataControl.java:140)
         at oracle.jbo.uicli.binding.JUApplication.<init>(JUApplication.java:94)
         at oracle.jbo.uicli.binding.JUApplication.<init>(JUApplication.java:85)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:249)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:93)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:543)
         at oracle.adf.model.servlet.ADFBindingFilter.initializeBindingContext(ADFBindingFilter.java:228)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:84)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:610)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:784)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:536)
    Please help me.As i am new user please tell me Is there any path to be set.
    ThankYou.

    CAN ANYONE HELP ME.

  • Manual module connection​s

    Hallo again!
    Is it possible to connect modules manually. I mean the auto-route function is nice as long as you do not want right angles. I want to connect two modules around the corner with parallel connections.
    Thanks for every help.
    By the way, this forum is great.
    Best regards
    Hilby
    Solved!
    Go to Solution.

    In the Options menu, turn off the Auto Router.
    Please note.... you can manually route the wires - click to change direction, but, if you subsequently move the module, the autorouter kicks in again, and does its thing.
    - cj
    Measurement Computing (MCC) has free technical support. Visit www.mccdaq.com and click on the "Support" tab for all support options, including DASYLab.

  • ACE module connection drops

    I am facing an issue with Cisco ACE module. Have 5 servers serving the connections for applications. However, during peak hours there is lot of dropped connections.
    Also have lot of fragment reassemble.
    Please help how to go ahead troubleshooting the issue.

    it is on the cisco site. In the ACE datasheet to be exact. But I'm talking about the appliance. Not sure about the module. But should be the same. Only thing I was not sure was whether the same limits apply to the base license package, or are the figures lower for the base license. Cisco says that the numbers are the same for the base package.
    however I'm yet to verify it on the field

  • Dell BT 3.55 module connectivity error?

    Hi there,
    I got a new Dell XPS notebook with a BT module 3.55.
    The OS running is Vista.
    Driver or BT stack is by Broadcom/Widcomm.
    The issue is my Nokia cell (N93) fails to connect with it.
    It connects for a moment than gives an error message the BT peripheral device drivers are not installed??
    Hoping to hear from you,
    Regards!

    I did reinstall the BT 3.55 Dell drivers.
    But still face a few issues..........
    1. The N93 gets connected & paired to my note book but gets disconnected in secs....??
    2. Secondly when I click on the BT icon I can receive a file from my XPS notebook but cannot send a file from my cell to the notebook.........the wizard hangs??
    In BT devices> N93> Properties> Services............there are quite a few........I unchecked a few service like Nokia Obex Suite, NokiaSync MLServer, now don’t get yellow icon BT peripheral devices in Device Manager, Sync ML DMClient........ Checked Services are File Transfer Obex, Image Responder, Object Push (Obex), Sync ML Client……….what services need to be checked & unchecked?
    To cut it short why cant i remain connected & why cant I send a file from thr cell..........
    Thanks in advance!

  • Can't hear output of external sound module connected with keyboard to logic

    Hey all, I have two related questions about midi.
    My setup is a macbook, with motu ultralight, and roland sh-32 synthesizer with an evolution mk-225c midi keyboard.
    1- when i have recorded (successfully) a midi sequence into logic using the note enter functions of the synth (has no keyboard), I cannot hear the output of the synth (output is from motu-works fine with everything else)-unless I put phones through the output of the synth.When ido this i can hear the mdi sequence i recorded. If I use the keyboard on it's own, hooked up midi out (only) to midi in of motu, I can hear ALL internal (logic) software synths (es1 etc) can hear no problem.
    I have tried routing the synth in-outs in audio/midi device selector, and added keyboard as well, to no avail.
    2- when I try and record a midi sequence with the synth and use keyboard to play notes, I cannot hear output from logic. Noting that I can hear all output loops, internal synths, audio etc no prob otherwise. I assume I'm doing something wrong and this would be the case with any external synth drum machine etc. I'm banging my head against the wall!
    Hope this makes sense, please help someone.
    Thanks

    Hi Simon,
    simonbatbot wrote:
    Hey all, I have two related questions about midi.
    My setup is a macbook, with motu ultralight, and roland sh-32 synthesizer with an evolution mk-225c midi keyboard.
    1- when i have recorded (successfully) a midi sequence into logic using the note enter functions of the synth (has no keyboard), I cannot hear the output of the synth (output is from motu-works fine with everything else)-unless I put phones through the output of the synth.When ido this i can hear the mdi sequence i recorded. If I use the keyboard on it's own, hooked up midi out (only) to midi in of motu, I can hear ALL internal (logic) software synths (es1 etc) can hear no problem.
    I have tried routing the synth in-outs in audio/midi device selector, and added keyboard as well, to no avail.
    1. You have to route the *audio outs* of your SH-32 into your Motu Ultralight and then select the appropriate inputs in Audio Midi Utility (Audio section). In Logic you have to *create an aux* in for those inputs.
    2- when I try and record a midi sequence with the synth and use keyboard to play notes, I cannot hear output from logic. Noting that I can hear all output loops, internal synths, audio etc no prob otherwise. I assume I'm doing something wrong and this would be the case with any external synth drum machine etc. I'm banging my head against the wall!
    2.You have to connect the external synths to an audio in and route that as above.
    ...if I understand correctly that you play the Evo and want to hear the SH-32, thru Logic? You have to create an *external instrument* track that outputs Midi to the SH-32. The Evo must also be setup in AM-utility as a controller of course.
    regards, Erik.

  • Output module connections

    I am currently using a cRio with a NI 9476 with the D-sub connector kit, so the DAQ has wire terminal outputs. I have found that BNC cables work the best for signal generation, what is the best method of generation signals with wire terminal outputs. I know you cannot convert from wire terminal to coaxial but just looking for suggestions.
    Thanks

    That will all depend on what you are connecting...look at the pinout for the device.  If you want to run a common ground between your DUT and the 9476 you can.  If you are just running the wired around you are correct you cannot use BNC because they will all be carrying seperate voltage signals.
    Doug Farrell
    Product Manager - Condition Monitoring
    National Instruments
    National Instruments Condition Monitoring

  • Application Module connection

    Hallo,
    I have problem finding where db connection is already started. Following Steve Muench example of Dynamic JDBC credentials I have registered DynamicJdbcBindingFilter with code like that:
    session.setAttribute(Configuration.DB_USERNAME_PROPERTY, usrName);
    session.setAttribute(Configuration.DB_PASSWORD_PROPERTY, pswd);
    if (jdbcURL != null) {
    session.setAttribute(Configuration.DB_CONNECT_STRING_PROPERTY,jdbcURL);
    super.doFilter(request, response, chain);
    session.setAttribute(LOGGEDIN_ATTR,NON_NULL_VALUE);
    Just after successful logon I need to call db procedure which sets some application role to logging user (dbms_session.set_role). Where I have to put this code? Where is the first class where I can obtain db connection to do that?

    In the article "How to support dynamic JDBC credentials" on the last page you describe to we have to register the SessionCookie factory with the AM pool.
    Do I have to configure each AM in our application? We have about ~30 AMs ....

  • Design question: ACE module connected to 2 different L3 engine while in bridge mode

    fellow engineers,
    i have been working on a design model , where the ACE mldule will provide SLB for both virtual and real servers. we have been deploying several UCS systems and the customer would like to use the ACE as our Enterprise SLB layer
    configured in bridcge mode.
    the msfc within the 6509 provide the L3 routing. however we may extends multiple vlans (v160-v163) via nexus switch layer (7k,5k,2k) to a FW appliance which now is the svi interface for the extended vlans. these vlans will be configured on a dedicated context.
    the extension is based on the bridge mode operation as follow:
    need help with the following:
    1) if i have 4 bvi's configured, do i need to have default route configured?
    2) my total count for vlans are: v160-v163 for server vlans, and v101 is the management vlan. the svi for this vlan is on the msfc card. the server GW are pointing to each dedicated svi's on  the  FW+L3 apliance.
    3) if my default route on the context is pointing to the v160 svi on the FW+L3 engine, will that prevent the return traffic for other vlans ( v161-v163) from the ace toward the client?
    4) is default route neccessary if you hae the ace in bridge mode.
    it was brought to my attention that if you have multiple vlans configured in bridge mode pointing to another L3 engine, then each vlan would have to be configured on seperate context since you can only have one default route per context.
    i appreciate any feedback on this inquiry. if you need additional information please le me know.
    thanks and best regards,
    raman azizian

    Hi Raman,
    You can have up to eight default routes in one context. What the ACE is doing with the entries is to create a ARP-entry with the name GATEWAY. If you need more then eight entries, just declare gateway as rservers. In that case the ARP-entry is stored as RSERVER instead of GATEWAY. The trick is to tell ACE to learn the MAC-address for the IP-address and store it int the ARP-table. The ACE never learn for itself a MAC-address. Don't forget mac-sticky enable on vlan's facing gateway.
    I'm running one context in bridge mode and have 18 bvi's with FW and Router 6509 as gateways.
    Exampel:
    Interface to ROUTER 6509
    interface vlan 300
      bridge-group 300
      no normalization
      mac-sticky enable
      access-group input BPDU
      access-group input alla
      access-group output alla
      service-policy input lb-int-vlan300
      no shutdown
    rserver host 300GATEWAY
      ip address 164.135.121.47
      inservice
    A#1/prod1# sho arp | i 164.135.121.47
    164.135.121.47  00.08.e3.ff.fc.14  vlan300   RSERVER    4775   239 sec      up
    A#1/prod1#
    Interface to FIREWALL
    interface vlan 802      
      bridge-group 802
      no normalization
      mac-sticky enable
      access-group input BPDU
      access-group input alla
      access-group output alla
      service-policy input lb-int-vlan802
      no shutdown
    rserver host 802GATEWAY
      ip address 192.168.137.1
      inservice
    192.168.137.1   00.23.33.6a.bf.80  vlan802   RSERVER    4785   5 sec        up
    Regards
    Mats

  • How to delete connections for modules in OWB?

    Hi all,
    When we create an Oracle Module in OWB, we can create and specify a connection for the module. But I don't know how to delete or modify those connections. Anyone can tell me a method. Thanks a lot.

    Hi Nikolai Rochnik,
    Thank u. But I think u misunderstood me. I'm not refering to OWB Module locations. Instead, I'm referring to Module Connections. That is:
    /Databases/Oracle/<Module>/Properties/Connection.
    When u enter the screen, u can find the "new DB Link..." button. Now I know that the connections are in fact db links in the design time repository db. So we can modify them using SQL.

  • MSI Z97 Gaming 9 AC - Intel Wireless AC 7260 module don't work

    Hi,
    Please help me, i started my new rig and the wi-fi module (that hard to fit in the mobo) don't even appear in device manager.
    I already tried to dismount and remount the module on the motherboard with extreme care, no success.
    Here is my rig:
    Main Board: MSI Z97 Gaming 9 AC
    Bios Version: 1.4
    Video Card: R9 290X
    Memory: 16 Gb Corsair Vengeance 2400Mhz
    Processor Intel 4790K
    OC: Not yet
    Operating System: Windows 8.1 Pro 64
    Please help me 

    Recheck your WiFi Bluetooth expansion module connection on the board.
    Recheck your MB mounting in the case, i.e. errant standoffs. Perhaps test the board outside the case on a non conductive surface to ensure no potential short exists. Then retest with the WiFi plugged in.

  • Problem with Creation of Source module for MS Access

    I am having a problem in creating a source module connected with an "MS Access" file in OWB 9i using the heterogeneous services. I have created a DSN to an access file (.mdb) and created the HS in Oracle (modified the tsnames.ora and listener.ora files with required details). Created a Database link using this service and it's working fine in SQL PLUS, but I am unable to create a Source module in OWB 9i using this db link, since OWB 9i need a schema name for db link. In MS access it's not possible to have a schema.
    Please help me in solving the above issue.
    Thanks in advance
    Jagan

    What version of OWB and Oracle database are you using? If it is an OWB version 9.0.4 or higher, I presume you are trying to create a non Oracle source module under the Oracle Database node - is this the case? If yes, you should not do that, but create your MS Access module under Databases->Other->Other node (as I understand you are not using ODBC). Let me know if my assumptions are correct.
    Regards:
    Igor

  • How to communicate with a 9401 module using 9151 expansion and 7813r PXI card

    Hi,
    I have just started working with my 7813 R-series card.  I was able to create a simple VI in which I could send and receive digital signals.  Now I would like to do something similar using my 9151 expansion chassis and 9401 C-series module.  If possible I would like to do all of this using windows (no RT for now).  Right now I am right-clicking on "my computer" in the project tree and adding new devices to find the 7813.  From there I have a rough idea of how to build a simple VI using the NI example.  However, I do not know where to look for the expansion chassis or the C-series module.  If any one could give me some advice or point to an example, that would be great.  I have seen the examples in Example Finder for the 9401, but they seem to be using a compactDAQ system as opposed to the PXI setup. 
    Thanks for the help!
    Solved!
    Go to Solution.

    Hello ACE_Lab,
    The steps you should take in order to configure your setup in the LabVIEW project window is as follows:
    Step 1...
    Step 2...This step should auto-populate with the existing PXI-7813R if it is connected. If you want to setup the target without the card connected, the you can just add a new target as follows.
    Step 3...This is the point at which you will be adding the NI-9151 expansion chassis:
    Step 4...
    Step 5...
    Step 6...If you have the module connected to the chassis, you should be able to see the module in the list:
    Step 7...If the module is not connected, you can just select "New Target or Device" from the menu in step 6 and add a new target as follows:
    An example from the Example Finder called "Digital Line Input.vi" should be a good place to start. Below is a screenshot of roughly where you need to start:
    Regards.
    Jeff L.
    Applications Engineer | National Instruments

Maybe you are looking for

  • What are the criterias to consider while deciding when to run the mrp?

    Hello Friends, Actually i was just thinking,if any company wants to run the mrp for planning than how to decide,when to run the mrp(daily,weekly,monthly). One of the factor,while deciding this could be the raw material procurements,right?if they proc

  • Need to add special characters in sap scripts

    Hi All,    I need to add special characters in sap script. I have used them as it is my script,but in the print preview i am able to see '#' instead of those special characters.Can anybody please tell me the way in which we can add special characters

  • Is it possible to reset the default image size for VIEW in photoshop elements EDIT menu?

    When I go into the Edit menu, I have to click on "Fit on Screen" to enlarge the view.  Is there a way to change the default size of the  Edit image so that the larger size I get with "Fit on Screen" is the new default?"

  • Change of IP address resulting in unknown error when publishing.

    Hi there, I was recently forced to change my IP address to a dedicated one as I transferred the data of my website and the podcast associated with it from a desktop to the Macbook I'm currently on. I am quite a novice in all these affairs and the amo

  • Intercompany Sales for 3 companies

    Hi All Expert, I am now facing big problem in setting of Intercompany sales. Now I want to set a new Company C, with Sales and Bill to Oversea customer, but goods are purchased from Company B, and the goods are produced by Company A and Ship to Custo