DBMS_JAVA.REVOKE

I made to make a function to change password, this function verify the old password with a java procedure soo I had to grant permission to some user
DBMS_JAVA.grant_permission (USER, 'SYS:java.net.SocketPermission', 'localhost', 'resolve');
DBMS_JAVA.grant_permission (USER, 'SYS:java.net.SocketPermission', '127.0.0.1:1569', 'connect,resolve');
now i want to revoke the permission, how i made that

What we figured out, is that you have to query the DBA_JAVA_POLICY table and get the SEQ value for the entry you want removed:
select * from dba_java_policy;
KIND   GRANTEE    TYPE_SCHEMA   TYPE_NAME                 NAME              ACTION     ENABLED      SEQ
GRANT  DMSYS      SYS           java.io.FilePermission    dm/lib/odmapi.jar read       ENABLED       87
GRANT  DMSYS      SYS           java.net.SocketPermission *                 connect    ENABLED       86
. . .With the SEQ value in-hand, then you just run the following to get rid of a single entry in the table:
begin
  DBMS_JAVA.disable_permission(87);
  DBMS_JAVA.delete_permission(87);
end;--=Chuck

Similar Messages

  • DBMS_JAVA Permissions & Host Procedure Errors

    I have a package which calls a procedure "Host" (all source below) to execute a command.
    Everything was working fine, except I was't able to see the DBMS_output results.
    So, I tried to get the DBMS_Java.Set_output to working by playing with the dbms_Java.Grant_permission
    which now have caused my "Host" to no longer work anymore. I see get a message "The handle is invalid."
    Below are the 3 Grant Permission statements I issued with a specific user "LIB" as was logged in as,
    I believe somehow stepped on the Sys priveleges or something.
    Any clue help what I did and how to revoke / regrant the persmission?
    Also how to get the output to appear?
    Code from Package:
                   DBMS_JAVA.SET_OUTPUT(100000);
                   Host(xcopy/y "y:\file1.DAT" "y:\File1\");
    Commands I issued:
    Exec dbms_java.grant_permission('LIB', 'SYS:java.lang.RuntimePermission', 'writeFileDescriptor', '');
    Exec dbms_java.grant_permission('LIB', 'SYS:java.lang.RuntimePermission', 'readFileDescriptor', '');
    Exec dbms_java.grant_permission('LIB', 'SYS:java.io.FilePermission','*', 'execute');
    CREATE OR REPLACE PROCEDURE host (p_command IN VARCHAR2)
    AS LANGUAGE JAVA
    NAME 'Host.executeCommand (java.lang.String)';
    create or replace and compile java source named host as
    import java.io.*;
    public class Host {
    public static void executeCommand(String command) {
    try { String[] finalCommand;
    if (System.getProperty("os.name").toLowerCase().indexOf("windows") != -1) {
    finalCommand = new String[4];
    finalCommand[0] = "C:\\winnt\\system32\\cmd.exe";
    finalCommand[1] = "/y";
    finalCommand[2] = "/c";
    finalCommand[3] = command;
    } else {            // Linux or Unix System
    finalCommand = new String[3];
    finalCommand[0] = "/bin/ksh";
    finalCommand[1] = "-c";
    finalCommand[2] = command; }
    // Execute the command...
    final Process pr = Runtime.getRuntime().exec(finalCommand);
    // Capture output from STDOUT...
    BufferedReader br_in = null;
    try {
    br_in = new BufferedReader(new InputStreamReader(pr.getInputStream()));
    String buff = null;
    while ((buff = br_in.readLine()) != null) {
    System.out.println("stdout: " + buff);
    try {Thread.sleep(100); } catch(Exception e) {} }
    br_in.close();
    } catch (IOException ioe) {
    System.out.println("Error printing process output.");
    ioe.printStackTrace();
    } finally { try {  br_in.close(); } catch (Exception ex) {} }
    // Capture output from STDERR...
    BufferedReader br_err = null;
    try { br_err = new BufferedReader(new InputStreamReader(pr.getErrorStream()));
    String buff = null;
    while ((buff = br_err.readLine()) != null) {
    System.out.println("stderr: " + buff);
    try {Thread.sleep(100); } catch(Exception e) {}}
    br_err.close();
    } catch (IOException ioe) { System.out.println("Error printing execution errors.");
    ioe.printStackTrace();
    } finally { try { br_err.close();
    } catch (Exception ex) {} } }
    catch (Exception ex) {  System.out.println(ex.getLocalizedMessage());    } }};

    Hi Kabeer,
    This is not permission issue problem, because you receive NULL pointer exception. If, database user doesn't have access to the network java.security.AccessControlException is thrown.
    I think, that you have not executed:
    call sdo_mvclient.createmapviewerclient(
    'http://www.mycorp.com:8888/mapviewer/omserver') ;
    in the database session, before using PL/SQL MapViewer API. And, if you really have not executed this, then you will receive null pointer exception, because there is no information about remote MapViewer service in the database session.
    You should follow the steps described in Section 6.2 of MapViewer 11EA1 User Guide. 6.2.1 - network access, 6.2.2 - MapViewer handle declaration (session scope).
    I have deployed mvclient.jar and successfully using remote MapViewer service. Database and Mapviewer are on the different machines and network.
    So, I think your problem is, that you have not declared address of remote MapViewer server in the session. According to documentation it should be declared for each session.
    Regards,
    Andrejus

  • Revoking permissions

    i have a number of java permissions associated with the oracle.aurora.rdbms.security.PolicyTablePermission type that i would like 'disabled':
    select * from user_java_policy order by type_name, name;
    GRANT TANTALIS oracle.aurora.rdbms.security.PolicyTablePermission 0:java.io.FilePermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:java.io.FilePermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:java.io.SerializablePermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:java.lang.RuntimePermission#* ENABLED
    RESTRICT PUBLIC oracle.aurora.rdbms.security.PolicyTablePermission 0:java.lang.RuntimePermission#loadLibrary.* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:java.lang.reflect.ReflectPermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:java.net.NetPermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:java.net.SocketPermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:java.security.AllPermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:java.security.SecurityPermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:java.sql.SQLPermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:java.util.PropertyPermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:java.util.logging.LoggingPermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:javax.net.ssl.SSLPermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:javax.security.auth.AuthPermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:oracle.aurora.rdbms.HandlePermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:oracle.aurora.rdbms.security.PolicyTablePermission#* ENABLED
    GRANT JAVA_ADMIN oracle.aurora.rdbms.security.PolicyTablePermission 0:oracle.aurora.security.JServerPermission#* ENABLED
    my experiments at revoking all of this type have failed:
    call dbms_java.revoke_permission('TANTALIS', 'oracle.aurora.rdbms.security.PolicyTablePermission', '*', 'DISABLE');
    could someone provide me with an example of a call to the dbms_java package that will revoke the permission so that i can easily enable it again?
    thanks in advance.
    Edited by: user521233 on Mar 21, 2011 6:13 PM

    Hi:
    AFAIK you should revoke the same configuration as in grant call, for example:
    for a grant:
    call dbms_java.grant_permission('TANTALIS', 'oracle.aurora.rdbms.security.PolicyTablePermission', '*', 'ENABLED');
    use:
    call dbms_java.revoke_permission('TANTALIS', 'oracle.aurora.rdbms.security.PolicyTablePermission', '*', 'ENABLED');
    Best regards, Marcelo.

  • How to revoke call dbms

    How to revoke a privilege given with the following statement?
    call dbms_java.grant_permission('myschema','java.net.SocketPermission' ,'10.10.16.16' , 'connect,resolve');
    Thanks

    Wrong guess but did you check revoke_permission procedure in dbms_java.

  • How do you revoke a web page's access?

    So a web page asked for access to my computer, and though it had a certificate I've no idea how legit it is or what it wanted access to and tried to click 'no' but this trackpad is still a bit odd (getting used to it also being the click button) and accidentally clicked yes.
    How do I revoke this access?

    Launch the Java Preferences application and open the Security tab. Delete any items in the two lists shown that you don't want.

  • Is it possible to allow the user to revoke its own it resource?

    Is it possible to allow the end-user to somehow revoke its own resource?
    What would be the correct approach if he decides that he doesn't need access to a specific system and decides to terminate his account ?
    Thanks for any insight.
    Adriano.

    One way by creating dummy resource, he will raise a request but no approval will be triggered (if you want then you can modify).
    In the provisioning workflow call the OIM APIs.
    Second approach I have to look into it.

  • Trace File / EJB / dbms_java.grant_permission

    I am trying to deploy a simple Hello World EJB onto Oracle 8.1.7 using Jdeveloper 3.2.
    I get the following error when deploying :
    Loading EJB Jar file and Comm Stubs Jar file...
    error: loadJava has failed to load some classes; Please check trace file!
    *** Errors occurred while deploying the EJB to 8i JVM ***
    *** Deployment completed ***
    My trace file has the following in it :
    *** 2001-05-03 17:33:29.531
    *** SESSION ID:(14.2397) 2001-05-03 17:33:29.531
    Error while creating class oracle/aurora/jndi/sess_iiop/ActivationException
    ORA-29545: badly formed class: User has attempted to load a class (oracle.aurora.jndi.sess_iiop.ActivationException) into a restricted package. Permission can be granted using dbms_java.grant_permission(<user>, LoadClassInPackage...
    could not find oracle/aurora/jndi/sess_iiop/ActivationException in WILLOW2K
    could not find oracle/aurora/jndi/sess_iiop/ActivationException in WILLOW2K
    ORA-29534: referenced object WILLOW2K.javax/naming/InitialContext could not be resolved
    ORA-29545: badly formed class: at offset 128 of packagessb.ssbClient2.main expecting a class-javax.naming.NamingException but encountered a class-oracle.aurora.jndi.sess_iiop.ActivationException.
    ORA-29545: badly formed class: at offset 4 of javax.naming.spi.NamingManager.createObjectFromFactories expecting a class-javax.naming.Context but encountered a class-javax.naming.Context.
    at offset 4 of javax.naming.spi.NamingManager.getStateToBind expecting a class-javax.naming.Context but encountered a class-javax.naming.Context.
    at offset 38 of javax.naming.spi.NamingManager.getStateToBind expecting a class-javax.naming.Context but encountered a class-javax.naming.Context.
    at offset 38 of javax.naming.spi.NamingManager.getStateToBind expecting a class-javax.naming.Name but encountered a class-javax.naming.Name.
    at offset 37 of javax.naming.spi.NamingManager.getURLObject expecting a class-javax.naming.Context but encountered a class-javax.naming.Context.
    ORA-29534: referenced object WILLOW2K.javax/naming/spi/NamingManager could not be resolved
    ORA-29534: referenced object WILLOW2K.javax/naming/spi/NamingManager could not be resolved
    Error while resolving class oracle/aurora/jndi/sess_iiop/ActivationException
    ORA-04043: object /889d46b7_ActivationException does not exist
    I think the error stems from the line :
    (oracle.aurora.jndi.sess_iiop.ActivationException) into a restricted package. Permission can be granted using dbms_java.grant_permission(<user>, LoadClassInPackage...
    Doe anyone know how I can grant the user permission to the above library. How exactly is it done using Oracle 8.1.7 ?
    null

    did you read the install notes (install.htm) or release notes(readme.htm) files for known issues ?
    see the release notes for the following :
    Problems Deploying Business Components for Java Libraries in Different Schema (1095107)
    Attempting to deploy a Business Components for Java library in a different schema from the JDeveloper IDE generates the following error:
    Generating Jar File...done
    Loading EJB Jar file and Comm Stubs Jar file...
    error: loadJava has failed to load some classes; Please check trace file!
    *** Errors occurred while deploying the EJB to 8i JVM ***

  • Issue while revoking AD from organization

    Hello,
    OIM VERSION=9.1.0.1
    Weblogic = 10.3.1
    O.S=WIN 2003 Server
    I have provisioned AD Group to an organization called Xellerate Users & its provisioned successfully & group gets created
    in AD,but when i try to revoke this AD Group it shows 'Delete AD Group' task name as rejected & Response: Could not
    delete group & it also gives following error :
    ERROR,01 Mar 2012 14:52:29,462,[OIMCP.ADCS],com.thortech.xl.integration.ActiveDirectory.tcUtilADTasks : deleteGroup : AD Group Deleted Operation Failed:null
    ERROR,01 Mar 2012 14:52:29,462,[OIMCP.ADCS],====================================================
    ERROR,01 Mar 2012 14:52:29,462,[OIMCP.ADCS],================= Start Stack Trace =======================
    ERROR,01 Mar 2012 14:52:29,462,[OIMCP.ADCS],com.thortech.xl.integration.ActiveDirectory.tcUtilADTasks : deleteGroup
    ERROR,01 Mar 2012 14:52:29,462,[OIMCP.ADCS],
    ERROR,01 Mar 2012 14:52:29,462,[OIMCP.ADCS],Description : null
    ERROR,01 Mar 2012 14:52:29,462,[OIMCP.ADCS],java.lang.NullPointerException
         at javax.naming.directory.BasicAttributes.get(BasicAttributes.java:144)
         at com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController.getAttributeValues(Unknown Source)
         at com.thortech.xl.integration.ActiveDirectory.tcUtilADTasks.getAttributeValue(Unknown Source)
         at com.thortech.xl.integration.ActiveDirectory.tcUtilADTasks.deleteGroup(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpADCSDELETEGROUP.DELETEGROUP(adpADCSDELETEGROUP.java:116)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpADCSDELETEGROUP.implementation(adpADCSDELETEGROUP.java:75)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcProvisioningOperationsBean.retryTasks(Unknown Source)
         at com.thortech.xl.ejb.beans.tcProvisioningOperationsSession.retryTasks(Unknown Source)
         at com.thortech.xl.ejb.beans.tcProvisioningOperations_b03yxm_EOImpl.retryTasks(tcProvisioningOperations_b03yxm_EOImpl.java:915)
         at Thor.API.Operations.tcProvisioningOperationsClient.retryTasks(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at Thor.API.Base.SecurityInvocationHandler$1.run(Unknown Source)
    Thanks,
    Rahul Shah

    Thanks for replying & i want to provision group in AD using AD's AD Group R.O.
    Provisioning part works successfully & creates group in AD.
    Can you please try to provision R.O. 'AD Group' to an organization called 'Xellerate Users' & then try to revoke it & please tell me
    whether group is deleting or not ...
    Thanks
    Rahul Shah

  • Revoked SES with account assignment distributed by quantity cannot be modified or deleted

    Hi All
    I have users who are posting service entry sheet with the account assignment distributed
    on a quantity basis across multiple maintenance orders.  The acceptance works perfectly but we are having problems if a correction or cancellation is required.
    The service acceptance can be revoked successfully but afterwards it is not possible to change the service quantity or to delete the service entry sheet.  When we try we receive an ABAP runtime error:
    Runtime Errors         COMPUTE_BCD_OVERFLOW
    Exception              CX_SY_ARITHMETIC_OVERFLOW
    Date and Time          08.07.2014 14:25:12
    Short text
         Overflow during the arithmetical operation (type P) in program
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "CL_EX_MMSRV_ACC_DIST_SAP======CP" had to be
          terminated because it has
         come across a statement that unfortunately cannot be executed.
    What can you do?
         Note down which actions and inputs caused the error.
         To process the problem further, contact you SAP system
         administrator.
         Using Transaction ST22 for ABAP Dump Analysis, you can look
         at and manage termination messages, and you can also
         keep them for a long time.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_ARITHMETIC_OVERFLOW', was not
          caught in
         procedure "IF_EX_MMSRV_ACC_DIST_SAP~DISTRIBUTE_ACC_ASSIGNMENTS" "(METHOD)", nor
          was it propagated by a RAISING clause.
         Since the caller of the procedure could not have anticipated that the
         exception would occur, the current program is terminated.
         The reason for the exception is:
         An overflow was discovered in an ongoing arithmetical operation with
         operands of type P. Possible causes are:
         1. The result field of type P is too small for the result.
         2. The result or a intermediate result has more than 31 decimal places.
    This problem does not occur if I run the same scenario any of the following variations so I'm confident the problem is related to the account assignment distribution by quantity:
    Single account assignment
    Distributed account assignment via percentage
    No service acceptance/revoke has been posted
    There are ways to get around the problem but I'm trying to find a SAP Note that may be relevant.  I haven't had any luck yet.  Does this problem ring a bell with anybody who might be able to point me towards an appropriate note?
    Thanks
    Robyn

    Hi,
    Kindly refer the below OSS Note, which explains the reason and correction for the error which you are facing.
    1715475 - MAA2: ML81N/MIRO: false postings for Service PO

  • [OIM 9.1.0.2] RESOURCE NOT REVOKED BY ACCESS POLICY WHEN USER DISABLED

    Hi Experts,
    OIM Build Number: 1866.62 ( BP15 )
    IHAC that faced an unexpected behavior on User disabling.
    Some users were associated to groups that had access policies applied.
    When those users were disabled, they didnt lose their associated groups and also the resource and permission associated thru access policy applied to those groups.
    I saw that there was a bug reported to that issue. So I performed the action plan and set up the XL.EvaluateMembershipForInactiveUser System Property as TRUE. Now after disabling the users are properly removed from groups.
    Customer problem: For those users, almost 1000, I did a recon just to estimule the identity, so the membership rule was applied and the groups were removed, but OIM didn't evaluate the access policies and didn't revoke the resources.
    I ran the Evaluate User Policies task, and it seems to be stuck. Should the Evaluate User Policies schedule task work for that scenario? Should the resource after running that task be revoked?
    Any help would be very appreciated.

    Hi Nishith,
    I ran the task, but it seems really stuck. It displays the RUNNING status, but any effect is observed. I have to change task status to INACTIVE in the Design Console.
    This task has 2 attributes: Batch Size= 500 and Number of Threads=20.
    But I have noticed this task in another environment (w/ BP 18 applied), it has 3 attributes: Batch Size= 500 ; Number of Threads=20 and Time Limit in mins=1.
    Is it any enhancement for this task in order to improve its performance, or something like that?
    What else I can check?
    Thanks in advance.

  • AD revoke fails in oim 9.1.0.2

    Hi ALL ,
    i have installed OIM9.1.02 version and integrated AD 2008
    Always AD user revoke is working fine ,but some time i got error like " Account cannot be deleted as context is not empty " then delete task gets failled.
    please help me .
    Thankss,
    CS

    Martin and Rajiv,
    Thanks for your help.
    I'm actually a newbie and I don't have much knowledge of OIM.
    I came to know that I can generate the above mentioned reports by writing and adapter and attaching it to a schedule task. I am aware of how to write the adapter and how the adapter is attached to the schedule task, but I'm not actually aware of what should I code in the adapter in order to fetch the required information. i.e. what should I code, that helps me to generate a report wherein I can find the provisioned resources to a particular user between a period of time.
    I am just not clear with what the approach should be in order to proceed further on this.
    Any help here would really be appreciated.
    I'm sorry for asking such kind of a question, but I'm very new to this and couldn't find a way better than this.
    Regards
    Nikhil

  • Adobe Air Install Package Signed by Revoke Certificate?

    My security settings may be a little more strick than most. I just download the adobe air install package today. I think the revoked signature is preventing the installation. Can anyone confirm the signature? Thanks.

    No problems with the signature on a new Windows 7 x64 / IE10 install with default settings .

  • Service entry sheet cannot revoke acceptance

    Dear All,
    Service PO is created with four line items in Service tab in item details.
    All are entered as short text i.e without service master record.
    Three Service entry sheets are created for the first three items. But only one material document (with mvmt type 101) has been created for those three service entry sheets.
    This material document contains these 3 line items with 3 service entry sheets as reference document.
    For fourth line item in services tab of PO, fourth service entry sheet + material doc (101) created.
    Also in PO history tab of PO, Three GR line items for first material document and Fourth GR line item for second material document displayed.
    In PO history, Only fourth service entry sheet is diplayed.
    Now when we want to revoke acceptance of one of the three SES (with common mat doc), system is not allowing. Its giving error message SE025 as below
    Not possible to cancel acceptance immediately due to aggregation
    Message no. SE025
    Diagnosis
    It is not possible to revoke acceptance due to aggregation of the PO history records.
    Procedure
    To revoke (cancel) acceptance of one or more entry sheets, you must first disaggregate the PO history records (report RM06EKBE).
    But when report RM06EKBE is run, its not getting executed.
    Please suggest how to revoke acceptance of those three SESs.
    Thanks & Regards

    Hello,
    From your description of the problem, I assume this is an inconsistency
    problem. Hence, I would suggest you to carry out the 2 steps in solving
    the problem.
    STEP 1 :  RESTORE THE SES IN THE EKBE
    STEP 2 :  REVOKE THE ACCEPTANCE.
    Report ZMO_EKBEUPDATE is used to solve the STEP 1 and this report works
    for the all SPs. The report is in the Note 527907.
    First run the report in the simulation mode just to realise the missing
    SES. After that the Report can be run without simulation mode.
    This will do a database Update.
    Once the DB Update is done and the SES is in EKBE the you can revoke the
    SES.
    ABOUT THE REPORT ZMO_EKBEUPDATE
    The report in the Note 527907 is a very useful report.
    It does 2 things,
    1. Restores the Missing SES in the EKBE
    2. Solves the inconsistency in the NETWR in ESSR and EKBE.
    For us Point 1 is more important than 2.
    It is the enhanced version of RMESSRK2 from note 442091.
    This Report will solve the current problem and the note that you have
    applied will prevent the future occurrence of the problem.
    if you are still not able to solve this incoinsistency, I would suggest that you open a ticket at SAP.
    Best Regards,
    Arminda Jack

  • What are the files we need to run for to use dbms_java package..

    Hi,
    I want to call java class files in PL/SQL code. I have created the .class file while loading into oracle, showing an error saying that DBMS_JAVA.SHORT_NAME must be declared and some errors like java/io/lang,, Please tell me the necessary packages to run in the database..?
    Regards,
    G. Rajakumar.

    Hi,
    I want to call java class files in PL/SQL code. I have created the .class file while loading into oracle, showing an error saying that DBMS_JAVA.SHORT_NAME must be declared and some errors like java/io/lang,, Please tell me the necessary packages to run in the database..?
    Regards,
    G. Rajakumar. Raja,
    I believe the top-level script our DBAs run is initjvm.sql. It's usually in <oracle home>\javavm\install. You might want to double-check to make sure this is the only thing you'll need.
    Hope this helps,
    -Dan
    http://www.compuware.com/products/numega/dbpartner/dbpordebug.htm
    Debug Java in the Oracle Database

  • Revoke of Service Entry Sheet and hence cancellation of Material document

    Suppose one Service entry sheet you created once you accept Service entry sheet it will create a material document once you revoke the service entry sheet it will create a reversal material document. which table and field we find the relationship in original Material document created against SES and canceled material document against revoke of SES.

    Hello,
      in table MSEG youo can enter with Purchase Order number (EBELN)  and Purchase order item (EBELP): this way you will have all the material documents created for that PO, both for the acceptance and the reversal of the entry sheet. You can use the Reference document (field LFBNR) to see the link between acceptance and reversal of the entry sheet. On top of that, you can use fields "Movement type" (BWART) and "Debit/Credit Indicator" (SHKZG) to distinguish acceptance and reversal of the entry sheet for the same PO item.
    Hope to be useful.
    Best regards,
    Andrea

Maybe you are looking for

  • Acrobat SDK License Agreement Question

    The following is a section of the latest Acrobat SDK License Agreement from the Adobe website: "3.2  Development Restrictions.  You agree that You will not Use the Software to create, develop or use any program, software or service which . . . (b) ca

  • How to get keynote fullscreen on 3 screens

    CAN I HAVE MY SLIDESHOW ON 2,3 OR MORE SCREENS WITH KEYNOTE!? THANKS A LOT

  • Need advice picking a program

    First of all, if this is the wrong form, may the MOD SQUAD people move it to a good place. The powers that be above me have decided that since I teach television that I can teach animation (2d and 3d), and have commanded me to start planning a new co

  • JDeveloper - MapViewer - Svg

    Hi, I'm using mapviewer and svg samples. But I can't work any svg with Embedded OC4J Server. When I work svgmap.jsp in my project, I get a empty map. But if I deploy this project to Standalone OC4J then svg is working. How can I solve this prolem? İs

  • Applescript error in Pages 5.2

    I use a handy dandy applescript that I picked up on the internet a few years back to "highlight" text in Pages docs. Works flawlessly with pages 4.3, but when using it with Pages 5.2 I get the following error "error "Pages got an error: Can't get sel