ISG class configuration

dear  all
I want to configure classes for Internet users, who has download limit e.g. 1GB
after finish his quoita his band with will dropdown on 64Kbps for certain period.
than disconnect the user.
AAA configuration
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-qformat:yes;
mso-style-parent:"";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin-top:0in;
mso-para-margin-right:0in;
mso-para-margin-bottom:10.0pt;
mso-para-margin-left:0in;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri","sans-serif";
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:"Times New Roman";
mso-fareast-theme-font:minor-fareast;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;}
aaa group serverradius AAA-SERVERS
server <IP Address> auth-port 1812acct-port 1813
aaa authentication login default local
aaa authentication login WEB_LOGON group AAA-SERVERS
aaa authentication ppp default group AAA-SERVERS
aaa authentication ppp AAA-SERVERS group AAA-SERVERS
aaa authorization network default group radius local
aaa authorization network radiusgroup group AAA-SERVERS
aaa authorization network PREPAID_AUTHOR_LIST group AAA-SERVERS
aaa authorization subscriber-service default group AAA-SERVERS
aaa accounting delay-start all
aaa accounting update periodic 5
aaa accounting network default start-stop group AAA-SERVERS
aaa accounting network AAA_ACCNT_LIST start-stop group AAA-SERVERS
aaa accounting network AAA_ACCNT1 start-stop group AAA-SERVERS
aaa accounting connection default start-stop group AAA-SERVERS
aaa accounting system default start-stop group AAA-SERVERS
please help me to solve this issue...
vikas

dear  allI want to configure classes for Internet users, who has download limit e.g. 1GBafter finish his quoita his band with will dropdown on 64Kbps for certain period.than disconnect the user.AAA configurationaaa group serverradius AAA-SERVERS
server auth-port 1812acct-port 1813
aaa authentication login default local
aaa authentication login WEB_LOGON group AAA-SERVERS
aaa authentication ppp default group AAA-SERVERS
aaa authentication ppp AAA-SERVERS group AAA-SERVERS
aaa authorization network default group radius local
aaa authorization network radiusgroup group AAA-SERVERS
aaa authorization network PREPAID_AUTHOR_LIST group AAA-SERVERS
aaa authorization subscriber-service default group AAA-SERVERS
aaa accounting delay-start all
aaa accounting update periodic 5
aaa accounting network default start-stop group AAA-SERVERS
aaa accounting network AAA_ACCNT_LIST start-stop group AAA-SERVERS
aaa accounting network AAA_ACCNT1 start-stop group AAA-SERVERS
aaa accounting connection default start-stop group AAA-SERVERS
aaa accounting system default start-stop group AAA-SERVERSplease help me to solve this issue...vikas
Hi Vikas,
Try Configure  rate limits based on access list and interface and apply them to the ports  or to VLAN's:
rate-limit input access-group 130 1000000 16000 24000 conform-action transmit exceed-action drop
rate-limit output access-group 130 1000000 16000 24000 conform-action transmit exceed-action drop
Then your acl should define the traffic to limit.  The above command will limit to 1Mb with a little bursting ability.
Hope to Help !!
Ganesh.H
Remember to rate the  helpful post

Similar Messages

  • Example of ISG PBHK configuration

    Could anyone share an example of ISG's PBHK configuration, pretty please?
    i'm facing an issue when applying PBHK within the subscriber policy. Here is what i do:
    policy-map type service PBHK
     ip portbundle
    policy-map type control ISG
     class type control always event session-start
      1 service-policy type service name PBHK
      10 service-policy type service name S_L4R
     class type control always event session-restart
      1 service-policy type service name PBHK
      10 service-policy type service name S_L4R
     class type control always event account-logon
      10 authenticate aaa list RAD_SRV
    access-list 100 permit ip any host 192.168.8.227
    ip portbundle
     length 5
     match access-list 100
     source GigabitEthernet2
    interface GigabitEthernet1
     description endhosts
     ip address 192.168.0.254 255.255.255.0
     ip helper-address vrf SRV 192.168.8.228
     service-policy type control ISG
     ip subscriber l2-connected
      initiator unclassified mac-address
    interface GigabitEthernet2
     description server-dhcp-int_gw
     vrf forwarding SRV
     ip address dhcp
     ip portbundle outside
    When i enable the network interface on the end host i see whole bunch of debug messages saying:
    Portbundle Hostkey: Apply inbound direction from Service Profile configuration
    Portbundle Hostkey[uid:33]: No free port-bundles - feature failed
    Portbundle Hostkey[uid:33]: Key update: remove port-bundle 0.0.0.0:0
    Portbundle Hostkey[uid:33]: Sent a PBHK session key remove
    How can it be out of ports, if none of  them are used?
    ISG#show ip portb sta
    Bundle-length = 5
    Bundle-groups: -
    IP Address               Free Bundles       In-use Bundles
    192.168.8.230            2016               0

    Hi Arseniy,
    I think the issue here may be that the PBHK source interface is in a VRF (SRV) different than the VRF of the interface where subscriber arrives (global).
    I would suggest to change the PBHK source to use an interface not in a VRF. Perhaps use a loopback interface for that. You should still be able to configure ' ip portbundle outside' on the desired interface in VRF SRV.
    Hope this helps.

  • Class configured as CertStore (bouncycastle)

    Hi all,
    I'm working in a J2ee application where I need to use the bouncy castle package.
    I'm doing some tests with a local application, in my PC with jdsdk1.4.2 and a package of bouncy castle for 1.4.
    It justs tries to retrieve the certificate information from a pkcs7 encoded string... it works fine locally but when I try to run it in a weblogic server, I'm having this kind of exception...
    java.security.NoSuchAlgorithmException: class configured for CertStore: org.bouncycastle.jce.provider.CertStoreCollectionSpi not a CertStore while doing...
    certs = s.getCertificatesAndCRLs("Collection", "BC");how do I change this class configuration for the CertStore... or which do you think that can be the problem?
    thanks in advance

    solved!
    the problem was due different release versions of bouncy castle in compilation and in execution.

  • Explanation of a client-class configuration in a CNR

    Hi, we have a CNR with a client-class configured, and the value defined in the client-lookup-id field is: "(try (request option "relay-agent-info" "remote-id") "default")". I can understand the expression but what I don't know is where is defined this parameter "default", which fields does it include, etc.
    Can anybody please help me?
    Kind regards.

    I just did another test to make sure I'm not blowing smoke ;)
    and it works, here's the manifest:
    Manifest-Version: 1.0
    Main-Class: LongManifest
    Created-By: 1.3.0 (Sun Microsystems Inc.)
    Class-Path: aaaaaaaaaaaaaaaaaaaaaaaaa.jar bbbbbbbbbbbbbbbbbbbbbbbbb.jar ccccccccccccccccccccccccc.jar ddddddddddddddddddddddddd.jar
    And what it looks like after the jar cmf ...
    Manifest-Version: 1.0
    Created-By: 1.3.0 (Sun Microsystems Inc.)
    Class-Path: aaaaaaaaaaaaaaaaaaaaaaaaa.jar bbbbbbbbbbbbbbbbbbbbbbbbb.ja
    r ccccccccccccccccccccccccc.jar ddddddddddddddddddddddddd.jar
    Main-Class: LongManifest
    Which is just like what you posted, and mine works - why didn't yours?
    To be honest, when I did my first test a long time ago, I never bothered to see what the resultant manifest looked like, I was just happy that it worked. :)
    -Ron
    I can email you my sample if you like

  • ADF BC Base Classes Configuration by Application possible ?

    I configured the base classes to use in Tools -> Preferences -> Business Components -> Base Classes
    This works fine, but when changing to other application I have the same base classes which is a problem if you have different base classes per application.
    Is this possible, any workaround ?
    Thanks,
    Claudio.

    I think you should make changes at project level instead of IDE level.
    Tools -> Project Properties -> Business Components -> Base Classes
    Hope this helps.
    Luis R.

  • OAAM 11g R2: Unable to load java class for custom configurable action

    Need to configure a Configurable Action to get triggered for a particular action at a given checkpoint.
    Steps Followed:
    1. Created a java class implementing com.bharosa.vcrypt.tracker.dynamicactions.intf.DynamicAction, getParameters() and execute() methods were implemented in that java class.
    2. Added necessary jars from $ORACLE_IDM_HOME\oaam\cli\lib to the build classpath.
    3. Compiled and created a jar with it.
    4. Extracted the oracle.oaam.extensions.war file into a working folder.
    5. Added the Custom Jar created in step 3 into <working folder>/WEB-INF/lib/
    6. Changed the following in MANIFEST.MF in <working folder>/META-INF/:
    Specification-Version:11.1.2.0.1
    Implementation-Version:11.1.2.0.1
    7. Rejar-ed the oracle.oaam.extensions.war from the working folder using following command:
    jar -cvfm oracle.oaam.extensions.war <working folder>\META-INF\MANIFEST.MF -C <working folder>/ .
    8. Stopped the oaam_admin_server1, oaam_offline_server1 and oaam_server_server1.
    9. Deleted the oracle.oaam.extensions deployment from the weblogic.
    10. Deployed the newly created oracle.oaam.extensions as a shared library for oaam_admin_server1 and oaam_server_server1.
    11. Started all managed servers.
    But when I tried to create an action template with the java class I just created, it was throwing following error
    +java.lang.ClassNotFoundException: *+
    Unable to load configurable action class *. Ensure the class is made available in the class path.
    Referred following documents:
    1.      http://docs.oracle.com/cd/E27559_01/admin.1112/e27207/cfgactions.htm
    2.     http://docs.oracle.com/cd/E27559_01/dev.1112/e27206/cfg-action.htm
    3.     http://docs.oracle.com/cd/E27559_01/dev.1112/e27206/extend.htm
    Kindly help me. Thanks in advance.
    Edited by: 917717 on Dec 12, 2012 7:16 PM

    This thread is a bit stale but I thought it might help to clarify one point about custom jar files on UCCX.
    To properly load a custom jar:
    Upload it into the classpath directory in the document repository. 
    Select it under System | Custom Classes Configuration
    Finally you need to restart the CCX Engine and the CCX Administration services.  If you have HA you need to restart them on both servers. 
    Other notes:
    When referencing your class in the CCX Editor, use the fully qualified name of the class.  Lots of other classes use things like Element or Document so you need to be explicit. The editor only knows about the 20 native classes by their object names.  If you create a Document object in the editor you are really creating a com.cisco.doc.Document object.  If you loaded jdom.jar and you wanted a jdom document then you need to create an object of type org.jdom.Document.
    When compiling your custom jar files, be sure to compile for the version of Java that the CCX Engine runs.  In general UCCX 7.X and older use Java 1.4.  UCCX 8.X and higher use Java 1.6.  Several of the core Java classes had significant changes between 1.4 and 1.6. If you ran your code on UCCX 7 or earlier and now it fails in UCCX 8.X or higher, recomplile for Java 1.6 and you classes will likely work again.
    Finally, check for security violations in UCCX 8.X or higher.  Cisco has restricted some of the things you can do.  These URL's have more information:
    http://docwiki.cisco.com/wiki/Engine
    http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0
    -Steven
    Please help us make the communities better.  Rate helpful posts!

  • I have used SAP doc mgmt for years. We copied a client and now when I configure a Class to my DMS DIR and go to CV01n Additional Data NONE of the characteristic entry boxes show up. Additional Data is blank.

    I have used SAP doc mgmt for years. We copied a client and now when I configure a Class to my DMS DIR and go to CV01n Additional Data NONE of the characteristic entry boxes show up. Additional Data is blank.
    It appears there must be some high level setting missing in the client. I have checked all authorizations and cannot find a difference between this client and all of the other clients we have. Only this one client does not show the class characteristics in the Additional Data tab.
    Any ideas of why this standard function is not working). It does not matter which DIR I config the 017 class to, nothing shows on Additional Data.

    Hi,
    The issue is resolved. We are working in a sandbox with Class configuration on a DMS issue related to standard class 017. There are no standard settings in SPRO - Cross-Application Components | Maintain Object Types and Class Types | for the object type DRAW that will allow "auto-populating" characteristic values as we do with VC class 300.
    For whatever reason DRAW and class 017 are not configured by SAP in the same manner as class 300 for example.
    We made a config entry for DRAW Class 017 VBAP. Let's just say the system did not like that.
    We are exploring other options.

  • Patch problem in Oracle ISG.

    While invoking ISG service from SOA client to Create a EBS project we were getting the following error:
    1) 
    FND_SOA_SERVICE_EXECUTION_ERR:oracle.apps.fnd.soa.util.SOAException: ServiceExecutionError: Error while executing the service Exception returned from JCA Service Runtime. Exception returned from JCA Service Runtime. null 
    For this we applied Patch 8607523 [MERGE LABEL REQUEST ON TOP OF 10.1.3.4 FOR BUGS 7393405 7027175 6862461] contains pcapps.rar which includes the jar files AppsAdapter.jar, DBAdapter.jar & AqAdapter.jar that are required by ISG on IAS ORACLE HOME .
    2)
    Then we received the following error 
    oracle.apps.fnd.soa.util.SOAException: ServiceExecutionError: Error while executing the service Exception returned from JCA Service Runtime. Missing class: oracle.tip.adapter.fw.log.ISGLogObjectPerRequest Dependent class:
    For this we applied Patch 9668283 (to fix error: Missing class: oracle.tip.adapter.fw.log.ISGLogObjectPerRequest) on IAS ORACLE HOME ,
    but on applying Patch 9668283 the other patch i.e 8607523 is getting rolled back and vice versa.
    Hence we are in a loop between the above 2 errors. Does anyone has any idea of any patch of how to get rid of this.
    Please help.

    Hi Sai-oadba,
    We have the front end logs and it says :
    errorTrace: oracle.apps.fnd.soa.util.SOAException: ServiceExecutionError: Error while executing the service Exception returned from JCA Service Runtime. Missing class: oracle.tip.adapter.fw.log.ISGLogObjectPerRequest Dependent class: oracle.apps.fnd.soa.util.AdapterLogger Loader: oafm.root:0.0.0 Code-Source: /u02/EBS/DEV/apps/apps_st/comn/java/classes/ Configuration: <library> in /u02/EBS/DEV/apps/apps_st/comn/webapps/oafm/ The missing class is not available from any code-source or loader in the system. at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.handleRequest(JCAHandler.java:135) at oracle.apps.fnd.soa.provider.SOAProvider.processMessage(SOAProvider.java:366) at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:958) at oracle.j2ee.ws.server.WebServiceProcessor$1.run(WebServiceProcessor.java:388) at java.security.AccessController.doPrivileged(Native Method) at javax.security.auth.Subject.doAs(Subject.java:396) at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:385) at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:481) at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114) at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96) at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:200) at javax.servlet.http.HttpServlet.service(HttpServlet.java:763) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234) at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29) at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:619) oracle.apps.fnd.soa.util.SOAException: ServiceGenerationError: Exception returned from JCA Service Runtime. Missing class: oracle.tip.adapter.fw.log.ISGLogObjectPerRequest Dependent class: oracle.apps.fnd.soa.util.AdapterLogger Loader: oafm.root:0.0.0 Code-Source: /u02/EBS/DEV/apps/apps_st/comn/java/classes/ Configuration: <library> in /u02/EBS/DEV/apps/apps_st/comn/webapps/oafm/ The missing class is not available from any code-source or loader in the system. at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.invoke(JCAHandler.java:328) at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.handleRequest(JCAHandler.java:123) at oracle.apps.fnd.soa.provider.SOAProvider.processMessage(SOAProvider.java:366) at oracle.j2ee.ws.server.provider.ProviderPro

  • Error Missing class: oracle.xdb.XMLType with xdb.jar in JDeveloper 10.1.3

    I am using JDeveloper 10.1.3 and get the following error when executing the web service proxy with my call to the web service( this web service is using class OracleXMLSave with method insertXML):
    I have included the xdb.jar in my project properties libraries of the web service project and added a file group with xdb.jar to the properties of the webservices.deploy. What else needs to be done? This worked in JDeveloper 10.1.2.
    THE ERROR after running proxy in log window:
    java.rmi.ServerException:
    start fault message:
    caught exception while handling request: caught exception while handling request: oracle.classloader.util.AnnotatedNoClassDefFoundError:
         Missing class: oracle.xdb.XMLType
         Dependent class: dbdata2package.DBDataOperations
         Loader: DBData2WSApp-DBData2Operations-WS.web.WebServices:0.0.0
         Code-Source: /D:/h/cots/Oracle/JDeveloper10g10.1.3/j2ee/home/applications/DBData2WSApp-DBData2Operations-WS/WebServices/WEB-INF/classes/
         Configuration: WEB-INF/classes/ in D:\h\cots\Oracle\JDeveloper10g10.1.3\j2ee\home\applications\DBData2WSApp-DBData2Operations-WS\WebServices\WEB-INF\classes
    The missing class is available from the following locations:
         1. Code-Source: /D:/h/cots/Oracle/JDeveloper10g10.1.3/j2ee/home/applications/DBDataWSApp-webservice-WS/WebServices/WEB-INF/lib/xdb.jar (from WEB-INF/lib/ directory in D:\h\cots\Oracle\JDeveloper10g10.1.3\j2ee\home\applications\DBDataWSApp-webservice-WS\WebServices\WEB-INF\lib)
         This code-source is available in loader DBDataWSApp-webservice-WS.web.WebServices:0.0.0.
         2. Code-Source: /D:/h/cots/Oracle/JDeveloper10g10.1.3/j2ee/home/applications/DBDataWSApp-DBDataOperations-WS/WebServices/WEB-INF/lib/xdb.jar (from WEB-INF/lib/ directory in D:\h\cots\Oracle\JDeveloper10g10.1.3\j2ee\home\applications\DBDataWSApp-DBDataOperations-WS\WebServices\WEB-INF\lib)
         This code-source is available in loader DBDataWSApp-DBDataOperations-WS.web.WebServices:0.0.0.
    :end fault message
         at oracle.j2ee.ws.client.StreamingSender._raiseFault(StreamingSender.java:545)
         at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:390)
         at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:111)
         at dbdata2packageproxy.runtime.DBData2WSSoapHttp_Stub.insertData(DBData2WSSoapHttp_Stub.java:80)
         at dbdata2package.DBData2WSSoapHttpPortClient.insertData(DBData2WSSoapHttpPortClient.java:54)
         at dbdata2package.DBData2WSSoapHttpPortClient.main(DBData2WSSoapHttpPortClient.java:34)
    Process exited with exit code 0.

    Hi,
    actually you increment the index
    pstmt.setString(++idx,inrecord.getCommentID());
    which means you never have an index of 0 but always start with 1
    Frank

  • How to send a variable from one class to another?

    hello,
    i have "One.as", which is the document class for one.swf.
    i also have "two.swf", with "Two.swf" entered as its document
    class...
    One loads two into it. two is basically a 10 frame movieClip
    with a variable at the beginning called "var endFrame:Boolean =
    false", then on the last frame it says endFrame = true.
    my question: how in the world do I communicate this back to
    One.as??? i've tried ENTER_FRAME listeners, declaring the variable
    here and there... and many other embarrassingly usuccessful
    strategies.
    i would just like to load in "three.swf" after two.swf
    finishes... but One needs to know that it has indeed finished.
    your help would be greatly appreciated. thanks

    yarkehsiow,
    > David,
    > thank you for responding.
    Sure thing! :)
    > so does what you are saying mean that endFrame is a
    property of
    > two (the movieClip), or Two (the Class)?
    If you've written a property named endFrame for your Two
    class, then
    yes, Two.endFrame is a property of that class.
    Looking back at your original post, I see that you wrote
    this:
    > One loads two into it. two is basically a 10 frame
    movieClip
    > with a variable at the beginning called "var
    endFrame:Boolean = false",
    > then on the last frame it says endFrame = true.
    So it sounds like your Two class extends MovieClip. (I'm not
    sure
    that's true, but that's what it sounds like.) That means your
    Two class
    supports all the features of the MovieClip class, including a
    play() method,
    a currentFrame property, and so on. In addition, you've added
    new
    functionality that amounts to -- by the sound of it -- a
    property named
    endFrame. If you made your property public (i.e., public var
    endFrame),
    then it should be accessible by way of an object reference to
    your Two
    instance.
    myTwoInstance.endFrame;
    > so can i invoke that method in One.as? do I call it
    Two.endFrame (if
    > (Two.endFrame == true) {?
    Methods are things an object can *do,* such as
    gotoAndPlay(). What
    you're describing is a property (a characteristic ... in this
    case, a
    Boolean characteristic). You wouldn't use the expression
    Two.endFrame
    unless that property was static. Static classes are those
    that cannot have
    an instance made of them. Think of the Math class. It
    contains numerous
    static properties in the form of constants, such as Math.PI,
    Math.E,
    Math.SQRT2, and so on. You can't create an instance of the
    Math class -- it
    wouldn't make sense to -- so Math is a static class.
    On the other hand, you definitely create instances of the
    MovieClip
    class. Every movie clip symbol is an instance of MovieClip
    class, which
    means that each instance carries its own unique values for
    MovieClip class
    members. The MovieClip class defines x and y properties, but
    each movie
    clip symbol (that is, each instance of the MovieClip class)
    configures its
    own values of those properties, depending on where each
    instance is located
    on the Stage.
    Assuming your Two class is not static, then somewhere along
    the line,
    your One class will have to make an instance of it. Somethine
    like ...
    // inside your One class ...
    var myTwo:Two = new Two();
    ... at which point that myTwo variable because a reference to
    that
    particular instance of Two. You can invoke Two methods on
    that instance.
    You can invoke Two properties and events on that instance.
    You can invoke
    whatever functionality is defined by the Two class on that
    myTwo instance.
    If Two extends MovieClip, that means you can also invoke any
    MovieClip class
    member on that myTwo instance.
    At some point in your One class, you can refer to that myTwo
    instance
    later and check if the value of myTwo.endFrame is true or
    false.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • DBM Creation of New Vehicle and the relationship with Valuation Class

    HI SAP,
    I'm having problem when creating new vehicle in /DBM/VM.  The Valuation Class that i use for VEHI is 4010. when i click
    on save the system show valuation class 3200 not allowed for material type vehicle config. i already check my valution class
    configuration, My Materia Type VEHI does not link with 3200. how do i resolve this issue ?

    Commander Sauk,
    From the error message it appears that valuation class tied up with your vehicle model is 3200.
    Is it a very new model for which no vehicles created so far?
    Can you please post accounting 1 view of material too showing valuation class as well as valuation category settings?
    Please also check split valuation is correctly setup for plant you are selecting for vehicle.
    check and reply with findings.
    Thanks
    Ritesh

  • Customisation settings for VC Configuration copy from Purchase order to GRN(Goods Receipt note)

    Hi Experts
    I was looking for Customisation settings for VC Configuration copy from Purchase order to GRN(Goods Receipt note),
    Please share.
    Regards
    Sandeep

    Hi Ritesh
    Thanks for your reply,
    I checked  both of these transaction  we need to select 3 option Characetrstics frm configuration(prio) and classification. I will check that, I had one more question
    In PO VC configuration is called for class type-300  and  in GRN VC configuration  is called for class type -023. How it will fetch the variant class configuration to Batch class configuration?
    Once we had faced some issues the copy from PO to GRN was happening for some batches & some batches it was not happening.
    yes we have activated Mill Functions in our ERP box.
    Regards
    Sandeep

  • BarcodeEncoder class:  java.lang.ClassNotFoundException

    Hi, I am trying to add barcoding capability to our XML Publisher based report. We are trying to use Code128 barcode font and I have gone through the drill detailed out by Monsieur Dixter (thanks to him) on his blog and the XML Publisher documentation. Initially, I had been successful .. this was around 3 months ago in our DEV environment, when my template was under initial stages of development on the layout/format side. I was able to scan the barcode using a scanner. So, I froze the code and migrated the jar files to other test environments. But once the code got to other environments, the barcode stopped working. I suspected that one reason could be that the JVM couldnt find my class, which is what has been happenning. Even though I got the new instance bounced several times, the error keeps occuring and I am unable to scan the barcode.
    Would appeciate if could provide me some pointers.
    Thanks
    Vikram
    XMLP Version: 5.6.3
    EBiz: 12.0.4
    Below is the error .. The referred barcode class is placed in the custom java classpath, $XXMMX_TOP/java/classes configured by our DBA's. Other custom classes/jar placed in this classpath are being picked up, such those done for OA Framework customizations.
    I have turned the XDO Debug ON and could extract the following log:-
    ===================================================================================
    [070909_053458413][oracle.apps.xdo.oa.schema.server.TemplateInputStream][STATEMENT] initStream(): oa-date-validation: null
    [070909_053458420][oracle.apps.xdo.oa.schema.server.TemplateInputStream][STATEMENT] initStream(): xdo.TemplateValidation: null
    [070909_053458420][oracle.apps.xdo.oa.schema.server.TemplateInputStream][STATEMENT] initStream(): template validation is on
    [070909_053458482][][STATEMENT] TemplateHelper.runProcessTemplate() called
    [070909_053458482][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [070909_053458482][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [070909_053458482][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [070909_053458482][][EXCEPTION] [DEBUG] [SECURITY_GROUP_ID]:[0]
    [070909_053458482][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [070909_053458482][][EXCEPTION] [DEBUG] [NLS_CHARACTERSET]:[UTF8]
    [070909_053458482][][EXCEPTION] [DEBUG] [RESP_APPL_ID]:[-1]
    [070909_053458482][][EXCEPTION] [DEBUG] [NLS_LANGUAGE]:[AMERICAN]
    [070909_053458488][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [070909_053458488][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [070909_053458488][][EXCEPTION] [DEBUG] [NLS_NUMERIC_CHARACTERS]:[.,]
    [070909_053458488][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS=(PROTOCOL=tcp)(HOST=dd100-d.mmx.com)(PORT=1525)))(CONNECT_DATA=(SID=DEV)))]
    [070909_053458488][][EXCEPTION] [DEBUG] [RESP_ID]:[-1]
    [070909_053458488][][EXCEPTION] [DEBUG] [FND_MAX_JDBC_CONNECTIONS]:[500]
    [070909_053458488][][EXCEPTION] [DEBUG] [FND_JDBC_USABLE_CHECK]:[false]
    [070909_053458488][][EXCEPTION] [DEBUG] [USER_ID]:[-1]
    [070909_053458488][][EXCEPTION] [DEBUG] [NLS_TERRITORY]:[AMERICA]
    [070909_053458488][][EXCEPTION] [DEBUG] [FND_JDBC_PLSQL_RESET]:[false]
    [070909_053458488][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[true]
    [070909_053458488][][EXCEPTION] [DEBUG] [NLS_DATE_FORMAT]:[DD-MON-RR]
    [070909_053458488][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [070909_053458488][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.HIGH]:[-1]
    [070909_053458489][][EXCEPTION] [DEBUG] [NLS_SORT]:[BINARY]
    [070909_053458489][][EXCEPTION] [DEBUG] [NLS_DATE_LANGUAGE]:[AMERICAN]
    [070909_053458489][][EXCEPTION] [DEBUG] [LOGIN_ID]:[-1]
    [070909_053458489][][EXCEPTION] [DEBUG] ------- Properties stored in Java System Properties -------
    [070909_053458489][][EXCEPTION] [DEBUG] [APPLTMP]:[mmx/dev/applinst/apps/DEV_hpxda100/appltmp]
    [070909_053458489][][EXCEPTION] [DEBUG] [java.runtime.name]:[Java(TM) 2 Runtime Environment, Standard Edition]
    [070909_053458489][][EXCEPTION] [DEBUG] [java.protocol.handler.pkgs]:[oracle.apps.xdo.common.net.protocol]
    [070909_053458489][][EXCEPTION] [DEBUG] [sun.boot.library.path]:[mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/IA64N]
    [070909_053458489][][EXCEPTION] [DEBUG] [java.vm.version]:[1.5.0.04 jinteg:07.27.06-16:18 IA64]
    [070909_053458489][][EXCEPTION] [DEBUG] [OVERRIDE_DBC]:[true]
    [070909_053458489][][EXCEPTION] [DEBUG] [dbcfile]:[mmx/dev/applinst/apps/DEV_hpxda100/appl/fnd/12.0.0/secure/DEV.dbc]
    [070909_053458489][][EXCEPTION] [DEBUG] [java.vm.vendor]:[Hewlett-Packard Company]
    [070909_053458489][][EXCEPTION] [DEBUG] [java.vendor.url]:[http://www.hp.com/go/Java]
    [070909_053458489][][EXCEPTION] [DEBUG] [path.separator]:[:]
    [070909_053458489][][EXCEPTION] [DEBUG] [APPLCSF]:[mmx/dev/applinst/apps/DEV_hpxda100/logs/appl/conc]
    [070909_053458489][][EXCEPTION] [DEBUG] [java.vm.name]:[Java HotSpot(TM) Server VM]
    [070909_053458489][][EXCEPTION] [DEBUG] [file.encoding.pkg]:[sun.io]
    [070909_053458489][][EXCEPTION] [DEBUG] [sun.os.patch.level]:[unknown]
    [070909_053458489][][EXCEPTION] [DEBUG] [user.dir]:[mmx/dev/applinst/apps/DEV_hpxda100/logs/appl/conc/log]
    [070909_053458489][][EXCEPTION] [DEBUG] [java.vm.specification.name]:[Java Virtual Machine Specification]
    [070909_053458490][][EXCEPTION] [DEBUG] [java.runtime.version]:[1.5.0.04-_27_jul_2006_10_52]
    [070909_053458490][][EXCEPTION] [DEBUG] [CLIENT_PROCESSID]:[11676]
    [070909_053458490][][EXCEPTION] [DEBUG] [java.awt.graphicsenv]:[sun.awt.X11GraphicsEnvironment]
    [070909_053458490][][EXCEPTION] [DEBUG] [java.endorsed.dirs]:[mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/endorsed]
    [070909_053458490][][EXCEPTION] [DEBUG] [os.arch]:[IA64N]
    [070909_053458490][][EXCEPTION] [DEBUG] [JTFDBCFILE]:[mmx/dev/applinst/apps/DEV_hpxda100/appl/fnd/12.0.0/secure/DEV.dbc]
    [070909_053458490][][EXCEPTION] [DEBUG] [java.io.tmpdir]:[var/tmp/]
    [070909_053458490][][EXCEPTION] [DEBUG] [line.separator]:[
    [070909_053458490][][EXCEPTION] [DEBUG] [java.vm.specification.vendor]:[Sun Microsystems Inc.]
    [070909_053458490][][EXCEPTION] [DEBUG] [os.name]:[HP-UX]
    [070909_053458490][][EXCEPTION] [DEBUG] [XDO_TOP]:[mmx/prod/applbin/apps/apps_st/appl/xdo/12.0.0]
    [070909_053458490][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [070909_053458490][][EXCEPTION] [DEBUG] [sun.java2d.fontpath]:[]
    [070909_053458490][][EXCEPTION] [DEBUG] [cpid]:[262016]
    [070909_053458490][][EXCEPTION] [DEBUG] [sun.jnu.encoding]:[8859_1]
    [070909_053458490][][EXCEPTION] [DEBUG] [oracle.apps.fnd.common.Pool.leak.mode]:[stderr:off]
    [070909_053458490][][EXCEPTION] [DEBUG] [java.library.path]:[/mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/IA64N:/mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/IA64N/server:/mmx/dev/applbin/apps/tech_st/10.1.3/ap
    psutil/jdk/jre/../lib/IA64N:/mmx/dev/applbin/apps/tech_st/10.1.3/lib32:/mmx/dev/applbin/apps/tech_st/10.1.3/lib:/mmx/dev/applbin/apps/apps_st/appl/cz/12.0.0/bin:/mmx/dev/applbin/apps/apps_st/appl/iby/12.0.0/bin:/mmx/dev/applbin/apps/app
    s_st/appl/pon/12.0.0/bin:/mmx/dev/applbin/apps/tech_st/10.1.3/lib32:/mmx/dev/applbin/apps/tech_st/10.1.3/lib:/mmx/dev/applbin/apps/apps_st/appl/cz/12.0.0/bin:/mmx/dev/applbin/apps/apps_st/appl/iby/12.0.0/bin:/mmx/dev/applbin/apps/apps_s
    t/appl/pon/12.0.0/bin:/usr/lib]
    [070909_053458490][][EXCEPTION] [DEBUG] [java.specification.name]:[Java Platform API Specification]
    [070909_053458490][][EXCEPTION] [DEBUG] [java.class.version]:[49.0]
    [070909_053458491][][EXCEPTION] [DEBUG] [sun.management.compiler]:[HotSpot Server Compiler]
    [070909_053458491][][EXCEPTION] [DEBUG] [os.version]:[B.11.23]
    [070909_053458491][][EXCEPTION] [DEBUG] [LONG_RUNNING_JVM]:[true]
    [070909_053458491][][EXCEPTION] [DEBUG] [user.home]:[home/appldev]
    [070909_053458491][][EXCEPTION] [DEBUG] [user.timezone]:[America/New_York]
    [070909_053458491][][EXCEPTION] [DEBUG] [java.awt.printerjob]:[sun.print.PSPrinterJob]
    [070909_053458491][][EXCEPTION] [DEBUG] [file.encoding]:[8859_1]
    [070909_053458491][][EXCEPTION] [DEBUG] [java.specification.version]:[1.5]
    [070909_053458491][][EXCEPTION] [DEBUG] [CACHEMODE]:[DISTRIBUTED]
    [070909_053458491][][EXCEPTION] [DEBUG] [user.name]:[appldev]
    [070909_053458491][][EXCEPTION] [DEBUG] [java.class.path]:[/mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/lib/dt.jar:/mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/lib/tools.jar:/mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/j
    re/lib/rt.jar:/mmx/dev/applbin/apps/apps_st/comn/java/lib/appsborg2.zip:/mmx/dev/applbin/apps/apps_st/comn/java/classes]
    [070909_053458491][][EXCEPTION] [DEBUG] [DBCFILE]:[mmx/dev/applinst/apps/DEV_hpxda100/appl/fnd/12.0.0/secure/DEV.dbc]
    [070909_053458491][][EXCEPTION] [DEBUG] [java.vm.specification.version]:[1.0]
    [070909_053458491][][EXCEPTION] [DEBUG] [java.home]:[mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/jre]
    [070909_053458491][][EXCEPTION] [DEBUG] [sun.arch.data.model]:[32]
    [070909_053458491][][EXCEPTION] [DEBUG] [user.language]:[en]
    [070909_053458491][][EXCEPTION] [DEBUG] [java.specification.vendor]:[Sun Microsystems Inc.]
    [070909_053458491][][EXCEPTION] [DEBUG] [java.vm.info]:[mixed mode]
    [070909_053458492][][EXCEPTION] [DEBUG] [logfile]:[mmx/dev/applinst/apps/DEV_hpxda100/logs/appl/conc/log/FNDOPP262016.txt]
    [070909_053458492][][EXCEPTION] [DEBUG] [java.version]:[1.5.0.04]
    [070909_053458492][][EXCEPTION] [DEBUG] [java.ext.dirs]:[mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/ext]
    [070909_053458492][][EXCEPTION] [DEBUG] [sun.boot.class.path]:[/mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/rt.jar:/mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/i18n.jar:/mmx/dev/applbin/apps/tech_st/10.1.3/app
    sutil/jdk/jre/lib/sunrsasign.jar:/mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/jsse.jar:/mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/jce.jar:/mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/charsets.jar
    :/mmx/dev/applbin/apps/tech_st/10.1.3/appsutil/jdk/jre/classes]
    [070909_053458492][][EXCEPTION] [DEBUG] [java.vendor]:[Hewlett-Packard Co.]
    [070909_053458492][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [070909_053458492][][EXCEPTION] [DEBUG] [file.separator]:[]
    [070909_053458492][][EXCEPTION] [DEBUG] [java.vendor.url.bug]:[http://www.hp.com/go/Java]
    [070909_053458492][][EXCEPTION] [DEBUG] [sun.io.unicode.encoding]:[UnicodeBig]
    [070909_053458492][][EXCEPTION] [DEBUG] [sun.cpu.endian]:[big]
    [070909_053458493][][EXCEPTION] [DEBUG] [APPLOUT]:[out]
    [070909_053458493][][EXCEPTION] [DEBUG] [sun.cpu.isalist]:[ia64r0]
    [070909_053458493][][STATEMENT] TemplateHelper.runProcessTemplate(): Configuration file :null
    [070909_053458499][][STATEMENT] TemplateHelper.runProcessTemplate(): user-variable.OA_MEDIA property not found in the property list.
    [070909_053458501][][STATEMENT] TemplateHelper.runProcessTemplate(): APPS_FRAMEWORK_AGENT profile found. Setting it to user-variable.OA_MEDIA property : http://dev.mmx.com:8004/OA_MEDIA
    [070909_053458501][][STATEMENT] TemplateHelper.runProcessTemplate(): Setting the locale info to xslt._XDOLOCALE property : en-US
    [070909_053458503][][STATEMENT] TemplateHelper.runProcessTemplate(): Profile CLIENT_TIMEZONE found : America/New_York Setting it to xslt._XDOTIMEZONE property
    [070909_053458529][][STATEMENT] TemplateHelper.runProcessTemplate(): Calling FOProcessor.
    [070909_053458529][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [070909_053458529][][STATEMENT] Logger.init(): LogDir=/mmx/dev/applbin/apps/apps_st/appl/xdo/12.0.0/temp
    [070909_053458536][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor constructor is called.
    [070909_053458536][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor has been initialized without default config.
    [070909_053458536][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setData(InputStream) is called.
    [070909_053458537][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [070909_053458537][][STATEMENT] Logger.init(): LogDir=/mmx/dev/applbin/apps/apps_st/appl/xdo/12.0.0/temp
    [070909_053458537][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_070909_053458537_fo_data_181.xml' is created.
    [070909_053458571][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setTemplate(InputStream)is called.
    [070909_053458571][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_070909_053458537_fo_data_182.xsl' is created.
    [070909_053458587][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_070909_053458537_fo_out83.out' is created.
    [070909_053458587][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutput(OutputStream)is called.
    [070909_053458587][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setLocale is called with 'en-US'.
    [070909_053458587][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutputFormat(byte)is called with ID=1.
    [070909_053458588][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.generate() called.
    [070909_053458588][oracle.apps.xdo.template.FOProcessor][STATEMENT] createFO(Object, Object) is called.
    [070909_053458591][oracle.apps.xdo.template.fo.datatype.AttrKey][STATEMENT] WARNING: Found undetermined AttrKey: xdofo:in-table
    [070909_053459583][][ERROR] java.lang.ClassNotFoundException: xxmmx.oracle.apps.xdo.template.rtf.util.barcoder.IDAutoBarcodeEncoder
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:168)
    at oracle.apps.xdo.template.rtf.util.XDOBarcodeUtil.registerVendor(XDOBarcodeUtil.java:101)
    at oracle.apps.xdo.template.rtf.XSLTFunctions.register_barcode_vendor(XSLTFunctions.java:2725)
    at sun.reflect.GeneratedMethodAccessor47.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.xdo.parser.v2.XSLExtFunctions.callStaticMethod(XSLExtFunctions.java:111)
    at oracle.xdo.parser.v2.XPathExtFunction.evaluateMethod(XPathExtFunction.java:307)
    at oracle.xdo.parser.v2.XPathExtFunction.evaluate(XPathExtFunction.java:226)
    at oracle.xdo.parser.v2.XSLValueOf.processAction(XSLValueOf.java:101)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLForEach.processAction(XSLForEach.java:147)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLForEach.processAction(XSLForEach.java:147)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
    at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
    at oracle.xdo.parser.v2.XSLTemplate.processAction(XSLTemplate.java:191)
    at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:512)
    at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:489)
    at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:271)
    at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:155)
    at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:192)
    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:585)
    at oracle.apps.xdo.common.xml.XSLT10gR1.invokeProcessXSL(XSLT10gR1.java:624)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:421)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:233)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1659)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:969)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5916)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3452)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3541)
    at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:244)
    at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:172)

    I wrote a blog entry about how jdev version match wls versions here http://tompeez.wordpress.com/2011/09/14/jdeveloper-versions-vs-weblogic-server-versions/
    Timo

  • Missing class file for extended controller

    Any response/advice is greatly appreciated.
    I've searched the forums, and I saw some had this error, but the post wasn't resolved. We are on 12.1.3. I've done this plenty of times when we were on 11.5.10 with great success. I've personalize a page to look at my extendedController, bounced apache:
    adapcctl.sh stop
    adoacorectl.sh stop
    adoacorectl.sh start
    adapcctl.sh start
    Web page brings up:
    oracle.apps.fnd.framework.OAException: oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.classloader.util.AnnotatedNoClassDefFoundError, msg= Missing class: emsc.oracle.apps.emscper.dor.webui.ExtDocsOfRecordUpdateCO (wrong name: ExtDocsOfRecordUpdateCO) Dependent class: emsc.oracle.apps.emscper.dor.webui.ExtDocsOfRecordUpdateCO Loader: oacore.root:0.0.0 Code-Source: /demsci/applmgr/common/java/classes/ Configuration: <library> in /demsci/applmgr/common/webapps/oacore/
    Verified spelling, ensure class file is where it is suppose to be:
    $ echo $JAVA_TOP
    /demsci/applmgr/common/java/classes
    $ echo `pwd`
    /demsci/applmgr/common/java/classes/emsc/oracle/apps/emscper/dor/webui
    Created new /dor/webui directory as user applmgr.
    $ ls -ltr $JAVA_TOP/emsc/oracle/apps/emscper/dor/webui
    total 9
    -rw-r--r-- 1 apdemsci aademsci 3243 Nov 28 18:26 ExtDocsOfRecordUpdateCO.java
    -rwxrwxrwx 1 apdemsci aademsci 3710 Nov 28 18:26 ExtDocsOfRecordUpdateCO.class
    ClassPath has the $JAVA_TOP listed:
    /demsci/applmgr/common/java/classes
    Thanks

    I moved the extended class to the standard directory: $JAVA_TOP/oracle/apps/per/dor/webui
    Recompiled it there
    From Functional Administrator, changed the path of the extended controller to the standard path:
    oracle.apps.per.dor.webui.ExtDocsOfRecordUpdateCO
    Bounced apache/cleared cached.
    Received the same error, very strange....
    Missing class: oracle.apps.per.dor.webui.ExtDocsOfRecordUpdateCO (wrong name: ExtDocsOfRecordUpdateCO) Dependent class: oracle.apps.per.dor.webui.ExtDocsOfRecordUpdateCO Loader: oacore.root:0.0.0 Code-Source: /demsci/applmgr/common/java/classes/ Configuration: <library> in /demsci/applmgr/common/webapps/oacore/
    Verified the class file is there and it is where it is suppose to be:
    $ pwd
    /demsci/applmgr/common/java/classes/oracle/apps/per/dor/webui
    you have mail in /var/spool/mail/apdemsci
    $ ls -ltr ExtDocsOfRecordUpdateCO.class
    -rw-r--r-- 1 apdemsci aademsci 3710 Nov 29 15:29 ExtDocsOfRecordUpdateCO.class
    Makes no sense...
    For your other point, I don't want rename the subdirectory since we have other extensions dependent on the path name.
    Thanks

  • RE:How to call a constructor or a .class file using jsp?

    try like this:
    <%@page import="folder_name.*%>
    <jsp:useBean id="info" class="folder_name.class_name"
    />
    now use your code:
    <%info.method_name()%>But my GetInfo class reside in this following folder!!!
    GetInfo.class location:
    D:/jakarta-tomcat-4.1.24/webapps/chart/WEB-INF/classes/GetInfo.class
    Configuration.jsp location
    D:/jakarta-tomcat-4.1.24/webapps/chart/Configuration.jsp
    This effectively means that I do not have a folder!!
    So I put in this
    <jsp:useBean id="info" class="GetInfo" />
    <%info.SetElement("VISUAL");
    info.startXML();
    String Visual = info.ReturnVISUAL();%>
    <%=Visual%>
    and get the following error:
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: -1 in the jsp file: null
    Generated servlet error:
    [javac] Since fork is true, ignoring compiler setting.
    [javac] Compiling 1 source file
    [javac] Since fork is true, ignoring compiler setting.
    [javac] D:\steve\jakarta-tomcat-4.1.24\work\Standalone\localhost\chart\Configuration_jsp.java:60: cannot resolve symbol
    [javac] symbol : class GetInfo
    [javac] location: class org.apache.jsp.Configuration_jsp
    [javac] GetInfo info = null;
    [javac] ^
    [javac] D:\steve\jakarta-tomcat-4.1.24\work\Standalone\localhost\chart\Configuration_jsp.java:62: cannot resolve symbol
    [javac] symbol : class GetInfo
    [javac] location: class org.apache.jsp.Configuration_jsp
    [javac] info = (GetInfo) pageContext.getAttribute("info", PageContext.PAGE_SCOPE);
    [javac] ^
    [javac] D:\steve\jakarta-tomcat-4.1.24\work\Standalone\localhost\chart\Configuration_jsp.java:65: cannot resolve symbol
    [javac] symbol : class GetInfo
    [javac] location: class org.apache.jsp.Configuration_jsp
    [javac] info = (GetInfo) java.beans.Beans.instantiate(this.getClass().getClassLoader(), "GetInfo");
    [javac] ^
    [javac] 3 errors
    at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:130)
    at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:293)
    at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:353)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370)
    at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:473)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:432)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:356)
    at ConfigurationServlet.service(ConfigurationServlet.java:80)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
    at java.lang.Thread.run(Thread.java:536)
    then I put in this code:
    <%@page import="GetInfo.*"%>
    <jsp:useBean id="info" class="GetInfo" />
    <%info.SetElement("VISUAL");
    info.startXML();
    String Visual = info.ReturnVISUAL();%>
    and get the following error:
    org.apache.jasper.JasperException: /Configuration.jsp(19,21) equal symbol expected
    at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:94)
    at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:428)
    at org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:126)
    at org.apache.jasper.compiler.Parser.parseAttribute(Parser.java:169)
    at org.apache.jasper.compiler.Parser.parseAttributes(Parser.java:136)
    at org.apache.jasper.compiler.Parser.parseAttributes(Parser.java:149)
    at org.apache.jasper.compiler.ParserController.figureOutJspDocument(ParserController.java:254)
    at org.apache.jasper.compiler.ParserController.parse(ParserController.java:173)
    at org.apache.jasper.compiler.ParserController.parse(ParserController.java:153)
    at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:227)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:369)
    at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:473)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:432)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:356)
    at ConfigurationServlet.service(ConfigurationServlet.java:114)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
    at java.lang.Thread.run(Thread.java:536)

    Okay, Tomcat doesn't like it when you don't use packages in the WEB-INF/classes folder, don't ask me why, it's just the way it is.
    Rewrite your class so it exists in a package:package myclasses;
    public class GetInfo { ... }Compile it and put it in the WEB-INF/classes directory so you should have:
    WEB-INF/classes/myclasses/GetInfo.class
    Your import statement should be:<%@ page import="myclasses.GetInfo" %>and continue coding as before.
    Let me know how it goes.
    Anthony

Maybe you are looking for