Reg: Access

Hello All,
In one environment, I have two networks: private and public.
I have one machine with two network interfaces (above one) running databases 9.0.1.0 and 8.1.7.4.
If I want that the 8.1.7.4 database should be accessible only by the users working on private network, what I need to do ?
Database 8.1.7.4 should not be visible(accessible) to the users working in public network.
Thanking in anticipation.

Run 8.1.7.4 on different port and block that using firewall to public network
OR
if you had configured one intefrace to public and another for private (You don't see that in practical anyway), Then run 817 listener only on this private interface.

Similar Messages

  • REg Access Profile -View

    Hi
    I would like to know the access limit when i Use the acess profile for an object in related information section as 'View'.
    Any inputs would be highly appreciated
    Thank You
    Meena

    Hi,
    The View access level is typically set in the Related Information of the given object.
    When the access level is set to View, it will inherit the access level of the parent object.
    for example: if Access Level for Account = Read/Edit and the Access Level in the Related Information of Account for Open Activities = View, then the access level for Open Activities will be inherited from Account, i.e. it too will be Read/Edit.
    Note: Read Only is not equal to View.
    Ady

  • Reg : Access control installationn

    HI all,
    My system has kernel 6.40 SP19 . i am trying to installing grc access control 5.3 .Can we go ahead with installtion Is there any difference between netweaver 2004 and netweaver 2004s.but i access control has a prerequisite of having netweaver 2004s sp12.So can we go ahead with installtion .
    Edited by: Ambarish annapureddy on Nov 19, 2008 4:22 PM

    Hi Ambarish,
    For AC5.3 a SAP NW AS 7.0 SP12 or higher is required as by advised by SAP.
    Pls go through the following presentation from SAP GRC RIG team on SAP GRC Access Control 5.3 Pre-installation requirements
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a07b4cc8-1a57-2b10-1798-d2fec068473a
    Hope this helps.
    Regards,
    Kiran Kandepalli.

  • Reg:Access Keys

    Hi,
      Can anyone please tell me is it possible to create access key for Z programs.If possible how can we do it??

    hi,No acess key is needed for creating z programs .
    Basis team  creates and provide you with an Developer Access key for doing any development activity.
    you can check table DEVACCESS. enter  your user ID to see access key is  generated or not. IF you dont find any entry you have to contact Basis .
    thanks

  • REg Access profile

    Hi
    In my default access profile, for activity i have given read/Edit.
    under Account>Open Activity i have given read only
    under SR> Open Activity I have given View access.
    But in both the cases i.e activity of other users under Account and Activity of other Users under SR I am able to edit them . How is this posssible, as i have given access to edit only Activity of other users which is under SR.
    Kindly help me with the same.

    Hi,
    Are you a member of the Account Team? If so you may have permission to edit all associated records against that Account?
    Thanks
    Oli @ Innoveer

  • Reg accessing the webi reports from visual C#

    Hi,
        I m using visual studio 2005 c#.Can some one throw lights on how to access the webi reports using this environment....
    Thanks & Regards
    Rakul Alagu.

    Thank you for you reply! So there is no way to access a Crystal Reports Server from an arbitrary application using URLs out of the box? I would have to implement this "automated access" feature inside the server by myself. Is this correct?
    If this is the case, I think I will do the whole report generation without a dedicated Crystal Reports Server. I have compared different alternatives for replacing the old RDC component of the C++ application described above. I think the best way would be to replace it via the JRC API of CR4E 2.0. In this case, I would have to access the Java API via JNI or by calling an external Java program, which generates and exports the reports.
    In both cases (CR Server vs. JRC API) I would have to implement new application logic. But a dedicated Crystal Reports Server needs to be maintained and administered... And I think the Crystal Reports Server would be a bit oversized for my purposes (generating and exporting reports)...
    If somebody has got other suggestions for replacing the RDC component (CR XI R2) inside a C++ application in order to use this application under Linux, I would be thankful .

  • Hi reg access sewquence

    hi
    when we create n save access sequence no request is generated.but when we create n save a table we get a request.but ac cess sequence is a conbination of tables.then y dont we get request.

    Hi Anil,
    If you are working on Sand Box, it will be stored only in sand box. If it is in Dev or some other clients it is available in all clients without doing any transportation, that is  the meaning of cross client.
    Hope you understood.
    Venkat Cheedalla

  • Reg: Access the container element value inside the Task's description tab

    Hi All,
          I need to call one of my container element into the task's description tab as text symbols.
    Please let me know how to do it.
    Regards,
    Selva.

    define an importing element in the task container.
    map this importing element with the element in the workflow container.
    now you can use this task container element in your description text box. (method exxplained in the previous post to this problem)
    rgds,

  • Reg:Accessing webservices in BSP

    Hi All,
    I have imported a web service into my bsp application and I am using one of its methods.I am able to send input to the model method but unable to get back the response from the model i.e after execution.
    Can anyone help me in this issue.Points will be rewarded for the helpful answer.
    Thanks in advance.

    Hi DurgaRao,
    Your application might be giving an exception while determining the business system.
    U can catch that exception by using the classes CX_AI_SYSTEM_FAULT and CX_AI_APPLICATION_FAULT.
    Some times it may raise the exception GET_BUSINESS_SYSTEM_ERROR An error occurred when determining the business system (SLD_API_EXCEPTION)
    so please try first by putting that catch.
    the following links contains some useful information which may solve ur problem.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6066fbe8-edc4-2910-9584-a9601649747d
    Consume web service in ABAP proxy with SOAP header
    Thanks,
    Bhavyasri.

  • Reg  : Accessing dynamically created attribute

    Hi All,
             I had created a dynamic node ("demo") and added two attributes ("appid" & "apptext") to it. And also i created three elements for that node and binded the values. Now my dynamic node is having 3 records. I am creating link to action dynamically and binded a action called "onClick". Now in the output i am getting
    linktoaction1
    linktoaction2
    linktoaction3
    Now i am stuck with, when i am clicking either of these 3 linktoactions in runtime, i am able to get only the first record. May i know how to traverse through the node. i.e on clicking of linktoaction2 i want to fetch second records of the node and simillarly and linktoaction1 and linktoaction2. I used the following code in "onClick"
    IWDNode dynnode = wdContext.currentContextElement().node().getChildNode      ("demo",IWDNode.LEAD_SELECTION);
    IWDNodeElement ele = dynnode.getCurrentElement();
    String text = (String)ele.getAttributeValue("Apptext");
    wdComponentAPI.getMessageManager().reportSuccess(text);
    Thanks,
    Mugundhan.

    Hi Nikil,
    Ya i had assigned only one action for the three linktoactions. I am filling my dynamic node according to the number of records coming from the RFC. How can i pass the index value (i.e) how to identify that which action is being clicked. I am little confused. Thia is what i wrote in my coding,
    In Init method,
    IWDNodeInfo nodeInfo=wdContext.getNodeInfo().addChild("demo", null,true,true,
    true,false,false,true,null,null,null);
    nodeInfo.addAttribute("Applid", "com.sap.dictionary.string");
    nodeInfo.addAttribute("Apptext", "com.sap.dictionary.string");
    IWDNode node = wdContext.wdGetAPI().getRootNode().getChildNode("demo",IWDNode.NO_SELECTION);
      for(int i=0; i<wdContext.nodeEt_Mobileportal().size();i++)
         IWDNodeElement nodeElem = node.createElement();
         nodeElem.setAttributeValue("Applid", wdContext.nodeEt_data().getEt_dataElementAt(i).getApplid());
         nodeElem.setAttributeValue("Apptext", wdContext.nodeEt_data().getEt_dataElementAt(i).getApptext());
         node.addElement(nodeElem);
    In domodify method,
        if(firstTime)
           IWDTransparentContainer cont= (IWDTransparentContainer)view.getElement("menu");          
           for( int i=0; i<wdContext.nodeEt_Mobileportal().size(); i++)
           IWDLinkToAction link  = (IWDLinkToAction)view.createElement(IWDLinkToAction.class,"link"+i);
                  link.setText(wdContext.nodeEt_Mobileportal().getEt_MobileportalElementAt(i).getApptext());
           link.setOnAction(wdThis.wdGetGotoappAction());                    
           cont.addChild(link);
    Thanks,
    Mugundhan

  • Embedded PDF on web page fails to display

    We have a number of PDFs that are shown embedded in IE (versions vary).  This worked fine with Adobe Reader 9.5 but with 10, PDF fails to display. 
    Page takes a while to report error.  Error:
    There is a problem with Adobe Acrobat/Reader.  If it is running, please exit and try again.  (103:103)
    I found a few other discussion similar to this in the forum but didn't find a definitive root cause. 
    In our situation, we found that if the user launching the web page runs Adobe Reader as standalone first, the error doesn't happen. 
    While workaround exists, I am trying to understand the root cause to see if we can correct this for all the users in automated manner instead of
    mandating launching of Reader standalone as a prerequite step.  Quite a few users using this web app.
    Since launching of Reader standalone works, my guess is that some config/setup is done only after first use.  I see that, for example,
    reg keys are added under HKCU on first use.  I don't know why first use from browser differs from first use from standalone though.  Difference in
    reg access?  Enable/Disable browser plug-in produces different behavior so I don't think the setting is on the browser side.  What other factors
    may be in play here?
    All ideas welcome.  Thanks in advance.

    Got a couple follow up questions.  Postiing the response here.
    1.  Please send us step by step method on how to recreate the problem, and the URL of the PDF file that shows the issue.
    * Write a simple console application that does nothing but starting a browser. Browser URL set to any web site with embedded PDF. I believe I used a sample on Adobe's site for last test.
    2. Is everyone in your company experiencing the same issue?
    * Yes, everyone can be affected.
    3. Does the error show up on any PDF or just the embedded PDF?
    * Only embedded.
    4. Does the problem occur with Firefox?
    * Not browser specific.
    5. Do you have any other version of Reader or Acrobat installed on the same system?
    * No, clean test box. Tested with 10.0.0 first. Failed. Then cleaned up install and installed 10.1.3. Cannot repro with 9.5.
    Root cause appears to be Protected Mode. If I disable that, it works.

  • I saw that the APPLE TV product can be used with VIMEO videos.  can i still access VIMEO videos to my TV with a reg PC or do i have to have an APPLE?

    i saw that the APPLE TV product can be used with VIMEO videos.  can i still access VIMEO videos to my TV with a reg PC or do i have to have an APPLE?

    Intermittent problems are often a result of interference. Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.

  • Reg : Error in Portal while accessing BI Report.

    Hi,
       When I am trying to access BI report in the portal I got the following error  in Portal
       User #### has no RFC authorization for function group SYST.
    Please assist to resolve the issue.
    Thanks,
    Prakash.

    Hi
    This is an authorization issue.
    Either include SYST in authorization object S_RFC.
    Or assign SAP_ALL role to the user and then try.

  • Error accessing web application in OC4J-reg.

    Hi All,
    We deployed a web application into oc4j 903.
    We got the ERROR 1 when trying to access the application. Then we replaced the jaxb-rt-1.0-ea.jar & jaxp.jar in oc4j with the latest
    version from jwsdk1.1. Then we got the ERROR 2. This error is thrown because it is trying to use JXDocumentBuilderFactory from
    xmlparserv2.jar in oc4j instead of DocumentBuilderFactory in jaxp.jar. Then we tried to uncomment the tag "<web-app-class-loader
    search-local-classes-first="true" include-war-manifest-class-path="true" />" in orion-web.xml file. This ensures the use of jaxp.jar
    instead of xmlparserv2.jar but we got the ERROR 3. Now we don't know how to proceed further. Are we going in the right direction or
    are we missing anything?
    I will appreciate if any of you can provide any inputs.
    Please reply to me directly.
    ERROR 1:
    500 Internal Server Error
    ee.wm.jwlf.module.ModuleManagerException: Modules mappings loading failed.
    at ee.wm.jwlf.module.BaseModuleManager.init(BaseModuleManager.java:54)
    at
    ee.wm.jwlf.controller.MainServlet.getModuleManager(MainServlet.java:432)
    at ee.wm.jwlf.controller.MainServlet.init(MainServlet.java:72)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpApplication.loadServlet(HttpApplication.java:1956)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpApplication.findServlet(HttpApplication.java:4355)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2484)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:617)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
    at
    EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
    at java.lang.Thread.run(Unknown Source)
    Caused by: ee.wm.jwlf.module.mapping.ModuleMappingDAOException:
    Initialization of modules mappings source failed.
    at
    ee.wm.jwlf.module.mapping.ModuleMappingJAXBDAOImpl.initializeSource(ModuleMappingJAXBDAOImpl.java:255)
    at ee.wm.jwlf.module.BaseModuleManager.init(BaseModuleManager.java:49)
    ... 11 more
    Caused by: javax.xml.bind.JAXBException: Provider
    com.sun.xml.bind.ContextFactory could not be instantiated:
    java.lang.IncompatibleClassChangeError: Implementing class - with
    linked exception:[java.lang.IncompatibleClassChangeError: Implementing
    class]
    at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:118)
    at
    javax.xml.bind.ContextFinder.searchcontextPath(ContextFinder.java:233)
    at javax.xml.bind.ContextFinder.find(ContextFinder.java:153)
    at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:281)
    at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:238)
    at
    ee.wm.jwlf.module.mapping.ModuleMappingJAXBDAOImpl.initializeSource(ModuleMappingJAXBDAOImpl.java:228)
    ... 12 more
    ERROR 2:
    500 Internal Server Error
    ee.wm.jwlf.module.ModuleManagerException: Modules mappings loading
    failed.
    at ee.wm.jwlf.module.BaseModuleManager.init(BaseModuleManager.java:54)
    at
    ee.wm.jwlf.controller.MainServlet.getModuleManager(MainServlet.java:432)
    at ee.wm.jwlf.controller.MainServlet.init(MainServlet.java:72)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpApplication.loadServlet(HttpApplication.java:1956)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpApplication.findServlet(HttpApplication.java:4355)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2484)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:617)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
    at
    EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
    at java.lang.Thread.run(Unknown Source)
    Caused by: ee.wm.jwlf.module.mapping.ModuleMappingDAOException:
    Initialization of modules mappings source failed.
    at
    ee.wm.jwlf.module.mapping.ModuleMappingJAXBDAOImpl.initializeSource(ModuleMappingJAXBDAOImpl.java:255)
    at ee.wm.jwlf.module.BaseModuleManager.init(BaseModuleManager.java:49)
    ... 11 more
    Caused by: java.lang.IllegalArgumentException
    at
    oracle.xml.jaxp.JXDocumentBuilderFactory.setAttribute(JXDocumentBuilderFactory.java:133)
    at
    ee.wm.jwlf.module.mapping.ModuleMappingJAXBDAOImpl.initializeSource(ModuleMappingJAXBDAOImpl.java:235)
    ... 12 more
    ERROR 3:
    500 Internal Server Error
    ee.wm.jwlf.module.ModuleManagerException: Modules mappings loading failed.
    at ee.wm.jwlf.module.BaseModuleManager.init(BaseModuleManager.java:54)
    at ee.wm.jwlf.controller.MainServlet.getModuleManager(MainServlet.java:432)
    at ee.wm.jwlf.controller.MainServlet.init(MainServlet.java:72)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpApplication.loadServlet(HttpApplication.java:1956)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpApplication.findServlet(HttpApplication.java:4355)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2484)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:617)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
    at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for
    J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
    at java.lang.Thread.run(Thread.java:536)
    Caused by: ee.wm.jwlf.module.mapping.ModuleMappingDAOException: Initialization of modules mappings source failed.
    at ee.wm.jwlf.module.mapping.ModuleMappingJAXBDAOImpl.initializeSource(ModuleMappingJAXBDAOImpl.java:255)
    at ee.wm.jwlf.module.BaseModuleManager.init(BaseModuleManager.java:49)
    ... 11 more
    Caused by: java.lang.ClassCastException
    at javax.xml.parsers.DocumentBuilderFactory.newInstance(DocumentBuilderFactory.java:139)
    at ee.wm.jwlf.module.mapping.ModuleMappingJAXBDAOImpl.initializeSource(ModuleMappingJAXBDAOImpl.java:231)
    ... 12 more
    Thanks & Regards,
    Yoga

    Thanks Avi -- I did have a JDK versioning problem when first deploying in OC4J 9.0.4 -- but when I used JDK1.4.1 things worked. The problem appears to be that some classes are present in several different JAR files in the JDev libraries. Can anyone tell me about the dependencies out there between these JAR files? I can run the application in JDeveloper's OC4J container but cannot get it to deploy on 9.0.4 standalone.
    1) I had this error for a bit... the problem was caused by bc4jmt.jar and mc4jct.jar in my MT deployment.
    java.lang.IncompatibleClassChangeError
         at oracle.jbo.common.ampool.ApplicationPoolImpl.createSessionCookie(ApplicationPoolImpl.java:418)
    2) now I get this error -- looks like another version incompatibility. Can anyone shed light on this??
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.LinkageError, msg=Class oracle/jbo/ApplicationModule violates loader constraints
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:532)

  • Reg. Access seq for MRP Price

    Dear Friends
    I have to create new pricing procedure for domestic sales, in this case, I need to create condition types for MRP Price,MRP Discount,BED,ECES,SHEC and VK11 also I maintained, but I faced access sequence problem,for MRP Price condition type  I assigned the access seq. what is put in  PR00 Condition type .if the enter the MRP Price which is treated as net price in header.so, which type of access sequence I have to use for the MRP the same  should come in next to the PR00 condition type.
    otherwise MRP should work as dummy should not involve anything. if remove the access seq in MRP Price,during billing release
    I am facing TAXINJ problem. I want access seq also.
    Pls help me.
    Thanks in advance
    Rajakumar.K

    Dear Raja Kumar,
    Kindly ask your client/business on what level they want to maintain the MRP...
    Once a decision is made on this, please update in the thread.
    Thanks & Regards,
    Hegal K Charles

Maybe you are looking for