Trying to extend the PoRequisitionLinesVO so that I can add a SPEL personal

Create a new OA project in JDeveloper.
Copy from the file server all the files within the $JAVA_TOP/oracle/apps/icx/por/req/server into your MyProjects area.
These are the steps I used to extend the seeded PoRequisitionLinesVO
1) Create a new OA project
2) Add the server.xml file from oracle.apps.icx.por.schema.server (for the EO)
3) Add the server.xml file from oracle.apps.icx.por.req.server (for the VO)
4) Create a new Business components package
5) Create a new VO and select that it is extending the PoRequisitionLinesVO
6) Select the new attribute button to add a new number type attribute and paste the formula into the expression box. Select that java row class should be created
7) Edit the project to add the -Djbo and select the substitution
8) Compile project and copy files onto unix server and load the .jpx file
When I then try and access the shopping cart page (even before trying to add an item that uses the new attribute),
I receive the following error shown below
============
java.lang.NullPointerException
at oracle.apps.fnd.framework.OAException.getAllMessageStackTraces(OAException.java:841)
at oracle.apps.icx.por.common.server.ErrorUtil.handleFatalException(ErrorUtil.java:636)
at oracle.apps.icx.por.req.server.RequisitionAMImpl.loadCurrentReqWithBuyerModifiedLines(RequisitionAMImpl.java:1204)
at oracle.apps.icx.por.req.server.LoadReqSvrCmd.execute(LoadReqSvrCmd.java:66)
at oracle.apps.icx.por.common.server.PorBaseAMImpl.executeServerCommand(PorBaseAMImpl.java:122)
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:324)
at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:189)
at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:679)
at oracle.apps.icx.por.common.webui.ClientUtil.invokeMethod(ClientUtil.java:964)
at oracle.apps.icx.por.common.webui.PorBaseCOImpl.invokeMethod(PorBaseCOImpl.java:194)
at oracle.apps.icx.por.common.webui.PorBaseCOImpl.executeServerCommand(PorBaseCOImpl.java:112)
at oracle.apps.icx.por.req.webui.BaseShoppingCartCO.loadReq(BaseShoppingCartCO.java:511)
at oracle.apps.icx.por.req.webui.ShoppingCartCO.processRequest(ShoppingCartCO.java:70)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581)
at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095)
at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298)
at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711)
at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
at oa_html._OA._jspService(_OA.java:88)
at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
at oracle.jsp.JspServlet.service(JspServlet.java:156)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
at oa_html._OA._jspService(_OA.java:98)
at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
at oracle.jsp.JspServlet.service(JspServlet.java:156)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
at org.apache.jserv.JServConnection.run(JServConnection.java:294)
at java.lang.Thread.run(Thread.java:534)
java.lang.NullPointerException
at oracle.apps.fnd.framework.OAException.getAllMessageStackTraces(OAException.java:841)
at oracle.apps.icx.por.common.server.ErrorUtil.handleFatalException(ErrorUtil.java:636)
at oracle.apps.icx.por.req.server.RequisitionAMImpl.loadCurrentReqWithBuyerModifiedLines(RequisitionAMImpl.java:1204)
at oracle.apps.icx.por.req.server.LoadReqSvrCmd.execute(LoadReqSvrCmd.java:66)
at oracle.apps.icx.por.common.server.PorBaseAMImpl.executeServerCommand(PorBaseAMImpl.java:122)
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:324)
at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:189)
at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:679)
at oracle.apps.icx.por.common.webui.ClientUtil.invokeMethod(ClientUtil.java:964)
at oracle.apps.icx.por.common.webui.PorBaseCOImpl.invokeMethod(PorBaseCOImpl.java:194)
at oracle.apps.icx.por.common.webui.PorBaseCOImpl.executeServerCommand(PorBaseCOImpl.java:112)
at oracle.apps.icx.por.req.webui.BaseShoppingCartCO.loadReq(BaseShoppingCartCO.java:511)
at oracle.apps.icx.por.req.webui.ShoppingCartCO.processRequest(ShoppingCartCO.java:70)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581)
at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095)
at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298)
at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711)
at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
at oa_html._OA._jspService(_OA.java:88)
at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
at oracle.jsp.JspServlet.service(JspServlet.java:156)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
at oa_html._OA._jspService(_OA.java:98)
at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
at oracle.jsp.JspServlet.service(JspServlet.java:156)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
at org.apache.jserv.JServConnection.run(JServConnection.java:294)
at java.lang.Thread.run(Thread.java:534)

Did your jpx include the VO class files? Have you bounced the apache after substitution?
Check what objects are getting referred in method loadCurrentReqWithBuyerModifiedLines of file RequisitionAMImpl ?
--Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • I have an old iPhone 4 that is not currently connected to a carrier. I'm trying to update the software so that I can download photos before I have it joked up to a carrier and give to my daughter. The phone is frozen. Help

    I have an iPhone 4 not currently hooked up to a carrier.  I am trying to update the software on my computer and it has frozen the phone. The screen has the apple logo and the progress bar three quarters full. How can I unfreeze the phone to continue?

    Leave the SIM in and do a restore as new.
    http://support.apple.com/kb/HT1414

  • I have an airport extreme and am trying to extend the range of the wireless network with an airport express.  I set it up with the help of apple support, both lights are green on both airports, but the range didn't change.  What could be wrong?

    I am trying to extend the range of my wireless network by adding an airport express to an airport extreme.  I configured it with the help of apple support, but it hasn't changed the range that I can access the internet wirelessly in my house.  What could be the problem?  Does weather affect the wireless network??

    So, on the Extreme you checked the box to "allow this network to be extened" ?
    Correct?
    And on the Express, you set it up to "Extend a wireless network" ?
    Correct?
    See this Apple article and see if you missed anything...
    http://support.apple.com/kb/HT4145
    To learn about other options for expanding your Wi-Fi base station wireless network and things you should consider before expanding your network, click here.
    Set up: Components of an extended network
    ➊  Primary Wi-Fi base station (this is the base station connected directly to the Internet)
    ➋  Extended base station
    Configuring a wireless extended network
    To create a wireless extended network, you must place any extended Wi-Fi base stations within range of the primary Wi-Fi base station.
    Start with the device that will be configured as the primary Wi-Fi base station.  Then configure your extended Wi-Fi base stations, ensuring that each is within direct range of the primary Wi-Fi base station.The physical location of extended Wi-Fi base stations will vary according to the building environment and may require some experimentation.
    If you have configured your Wi-Fi base stations in the past, it may be helpful to do a factory default reset of each Wi-Fi base station that will be part of the wireless extended network before you begin.

  • HT3546 I have been unsuccessfully trying to extend the wifi of my Time 2T Capsule with an Airport Extreme 2nd Gen. It works for a while and then loses configuration. I have done everything possible, disconnected it, reset it but it keeps failing, what to

    I have been unsuccessfully trying to extend the wifi of my Time 2T Capsule with an Airport Extreme 2nd Gen. It works for a while and then loses configuration. I have done everything possible, disconnected it, reset it but it keeps failing, what to do?

    What model and firmware is the 2TB TC?
    What firmware is the AE?
    Does the AE get good signal from the TC in its current location?
    Signal can only be extended that is received intact.
    Is it extending on 5ghz? As I remember it a Gen2 AE is only single band, although you can choose either 2.4ghz or 5ghz.
    I am fairly sure you are going to tell me your TC is AC model..
    I would do a couple of things..
    1. Fix the wireless name, make it short, no spaces and pure alphanumeric.
    2. Fix the wireless channel for 2.4ghz so it is not going to jump around.
    3. Get real results from the AE in its current location for signal strength.. this is really only possible on v5 utility. And that is a double pain with Mavericks because you cannot use it.
    Apple have removed all the useful diagnostics from the airport utility. There is next to nothing left. So you need to use the computer and its diagnostics to find signal levels in the location.
    http://support.apple.com/kb/HT5606

  • Trying to extend the WLAN range by adding an additional Airport Extreme second gen with Ethernet as backchannel.

    Hi,
    I'm trying to extend the coverage of my home WLAN by adding an additional airport express. I want to use Ethernet as the back channel but whatever I do this ends up in a situation where the WLAN dies completely. I have been able to extend the range by using WLAN to WLAN extension but this reduced the bandwidth a lot.
    I have an VDSL modem and uses a airport express as access router. with this unit operating by iteself everything works fine.
    It is when I add a second airport express (both second gen) that I get in trouble.
    Any idea of what goes wrong?

    It is best to set up the extra AE to create a wireless network. You should use the same name (SSID) as you did when setting up the first one. Also use the same password and encryption.
    Put the network channel selection on automatic or select different channels for both networks.

  • HT1848 I am trying to transfer my purchases from my iPhone 5 to my new Mac computer.  I get the message stating that it can only be synced with one computer at a time.  I have tried the 2 other ways and I get no options to transfer my purchases.  Help?

    I am trying to transfer my purchases from my iPhone 5 to my new Mac computer.  I get the message stating that it can only be synced with one computer at a time.  I have tried the 2 other ways and I get no options to transfer my purchases.  Help?

    If you see Devices in the big list on the left-hand side of iTunes, it should show the name of your iPhone right below it. You can right-click (or hold ctrl and left click) on the name of the iPhone there, and choose "transfer purchases from iPhone".
    If you're on iTunes 11, you won't see the big list of the left until you go to the View menu at the very top (where you see iTunes/File/Edit/View/etc) and choose Show Sidebar. Then do the same thing: right-click or ctrl and left-click on the iPhone's name below Devices and "transfer purchases from iPhone".
    It'll ask you to authorize the computer for your Apple ID if you haven't yet; to do that, you just type your Apple ID and password in when it asks. If it says you are not authorized but doesn't automatically give you an option to do so, then you can go to the Store menu at the very top and choose "authorize this computer".

  • I am trying to download the latest version of iTunes to my PC (windows XP) and I keep getting an error message or two. One is that it can't uninstall the previous itunes version, the other is that it can't find itunes.msi.

    I am trying to download the latest version of iTunes to my PC (windows XP) and I keep getting an error message or two. One is that it can't uninstall the previous itunes version, the other is that it can't find itunes.msi. I have tried removing  the old version in add/remove programs, but it says the same error. I tried deleting every thing that has itunes in the file/folder/etc and it didn't help.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • I'm trying to sync a 4s so that it can be activated w ATT...my computer says that I need to have 11.1 or higher in order to do that but when I download from the itunes site nothing happens and I still can't sync phone...what am I doing wrong?

    I'm trying to sync a 4s so that it can be activated w ATT...my computer says that I need to have 11.1 or higher in order to do that but when I download from the itunes site nothing happens and I still can't sync phone...what am I doing wrong?

    The screen that says "Download Now" also shows the proposed iTunes version number (in the box below):
    Be sure it indicates 11.1.3.
    If it is, here's further troubleshooting:
    http://support.apple.com/kb/TS1538

  • Im trying to download the new itunes so i can use my iphone 5 , however , the new itunes requires Mac OS X 10.6.8 or later and i cant seem to install that onto my imac even after searching for the new update (my imac is currently on 10.5.8.

    .Im trying to download the new itunes so i can use my iphone 5 , however , the new itunes requires Mac OS X 10.6.8 or later and i cant seem to install that onto my imac even after searching for the new update (my imac is currently on 10.5.8.

    You have already seen that you cannot load the new iTunes into your 10.5.8, so as Neil says, you need Snow Leopard (current cost £14).    And you'll probably need to update the disc you buy via the combo update, though that is free.
    As far as the new iTunes is concerned, there's been a certain amount of grumbling so you may want to study the forums before you update.   The main problem has been with album artwork which does not transfer easily.

  • I use an Apple bluetooth keyboard with my iPad. In messages I can't find a way to "send" a message without tapping on Send on the iPad's screen. I've tried every key and key combo that I can think of. Am I missing something?

    I use an Apple bluetooth keyboard with my iPad. In messages I can't find a way to "send" a message without tapping on Send on the iPad's screen. I've tried every key and key combo that I can think of. Am I missing something?

    I already have multiple devices and by far I like my iPad the most over laptops and the iPad. That including checking out my friends MacBook Air.
    The difference for me is the touch interface on the screen itself for things that do not require a lot of typing. For me, the iPad is more "magical" than anything else I've used.
    Again, I do appreciate your answers but you don't know my situation. Not everything is as it is perceived without knowing me and what I have to go through.

  • Mozilla firefox will not open, and wen i tried to open the uninstall helper, that wont open either

    when i tried to uninstall it, it doesnt open a window to let me uninstall it. when i tried to open it, it doesnt do anything. when i tried to use the uninstall helper, that doesnt open either. idk y Firefox is actin up, ive never had a problem with it before

    Did you check your security software (firewall)?
    A possible cause is security software (firewall) that blocks or restricts Firefox without informing you about that, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process.
    See [[Server not found]] and [[Firewalls]] and http://kb.mozillazine.org/Firewalls
    If necessary then also see:
    * http://kb.mozillazine.org/Browser_will_not_start_up
    * http://kb.mozillazine.org/Error_loading_websites

  • Trying to find the painting app that was on a ipad2 in the apple store.. Help  please :)

    Trying to find the painting app that was on a ipad2 in the apple store.. Help  please :)

    Ya I was going to call them tomorrow but I wanted to play it tonight lol :)
    But it had color pencils and crayons on the left side of it.. It would show the tips of the colors pencils and you could scroll up and down to choose color..
    Thanks for your help tho :)

  • When pulling down a long pulldown menu, the menu, instead of starting a new row, will extend past the bottom and behind the browser so that I can't navigate to an item that's below/behind the screen.

    When pulling down a long pulldown menu, the menu, instead of starting a new row, will extend past the bottom and behind the browser so that I can't navigate to an item that's below/behind the screen. FF should be making a second row for these long pulldown menus, right?

    Nope, there is no second row. There should be a scroll arrow "button" at the bottom and the top of that drop-down to allow you scroll, or you can use the scroll wheel on the mouse scroll further down (or back up).

  • HT3702 was a mistake that I tried to download it my baby that I can do for my account that the new works oh when can I remove it from my account

    was a mistake that I tried to download it my baby that I can do for my account that the new works oh when can I remove it from my account

    Not sure what you are asking - what did you download and what do you want to remove ? If you purchased something that you didn't mean to then all purchases are considered final, but you can try contacting iTunes support and see if they will refund or credit you : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    If you mean something else ... ?

  • I have just tried to instal the ios7 update that fixes the bugs in ios7 and it wouldn't install onto my phone - an error occurred so my phone is not frozen. what do I do?

    I have just tried to install the ios7 update that fixes the initial bugs in ios7 and it wouldn't complete the install - an error occurred. now my phone is frozen and inoperable. what do i need to do to fix?

    Hey dougpm,
    Thanks for the question. I understand you are experiencing issues updating your iPhone to iOS 7. If you have not already done so, you may want to restart or reset the iPhone:
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    If the above steps do not resolve the issue, you'll want to restore your iPhone with iTunes:
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    Thanks,
    Matt M.

Maybe you are looking for

  • MSI KT6V won't boot, won't go to bios setup, hangs at memory check.

    Hey guys. I made the mistake of buying his motherboard from a mom and pop shop on a Saturday afternoon right before they close (not open today for support :/ ). I've checked the forums for a similar issue and it looks like mine may be unique. Without

  • How do I sync my email on iPhone and iPad?

    My hotmail account does not sync between my iPhone and my iPad although the iPad does sync email between itself and my computer.

  • Attachment setting in mail server

    Hi All,            We have configured Mail server.The attached file that user receiving has the extension u201C.OTFu201D, but they like to receive it with extension u201C.TXTu201D.  Can you please let me know how to proceed with this. Thanks in advan

  • Problems with JAVA SE 6 in 1 Program.

    Hello, I'm a new guy here, so sorry for mistakes Problem that JAVA seems does not work propertly. This is the text from error.log in program that I want to start: "1020=The JVM found at {0} is damaged.\r\nPlease reinstall or define EXE4JJAVAHOME\r\nt

  • How to impleament Single Sign On on local installation Server

    Hi, we installed ERP.60(ABAP + Oracle) on Windows2003 by local installation. But we need Active Directory integration for SSO with Microsoft Kerberos SSP. Is it possible to implement SSO? If it is possible, Please tell me the step. Best Regards