Oracle Projects, POand INV integration? need help

Dear All Project Gurus,
We are all having Oracle Purchasing , Inventory , Order Management and Project Costing modules implemented.
The issue is that
we want to place a Standard PO with Project/Task details for the
inventorisable/Stockable Items. So that the Items canbe inventoirsed i.e Received/Inspected/Delivered.
The system doesnot allow to do so.
So I want to know,
Where does this gets validated that only is the detination type in PO is as expense, the Project and Task details tab gets enabled.
Appriciated any solution Guru's
Thanks in Advance
Shameer

Hi
The solution you are suggesting will be involved in a highly complex customization. Since you will need to cover many processes.
When you purchase items for inventory destination, without PJM, Oracle Inventory sends the receiving transaction to GL account of inventory valuation, and from Payables it sends to GL the price variances and any additional costs. If you are going to customize you might need to deal with both sources.
The customization should deal with subsequent transactions like return to vendor and correction of receiving transactions, and any debit memos or adjustments of supplier invoices.
Once the items are in Inventory, there is no functionality of reservation per project. Think about solving such requirement, including methods to track the quantities per project. This is solved by PJM.
When you issue items from Inventory to a project, standard system credits inventory valuation account and debits project cost account. However, based on your previous customization, the project was already charged when items were received. So you need also to work around this process, so the project will not be double charged, and the accounting effect will also be modified. Note, PJM knows not to transfer costs to PA when items are issued from the same project locator in Inventory.
If users transfer the items to another project, you don't have a feature to adjust costs and transfer them between projects. Note, PJM deals nicely with items transfered between projects.
Dina

Similar Messages

  • ORACLE PROJECT PORTFOLIO MANAGEMENT INTEGRATION PACK FOR PRIMAVERA P6 & EBS

    Hi,
    Where can I get the software ORACLE PROJECT PORTFOLIO MANAGEMENT INTEGRATION PACK FOR PRIMAVERA P6 and Oracle E-Business Suite?
    Suggest me.
    Regards,
    Mini

    It should be possible. However I will suggest you get in touch with your local sales representative for clarifying licensing policy. It may require you to purchase full license of AIA foundation pack and SOA suite.
    Oracle is expected to release new PIP solution for P6 and R12. You may want to wait for that. Search the forum and you will find lot of threads with details.
    Sachin

  • Oracle web site - Your site needs help

    I somewhat new Oracle and being a developer for years and using software vendor web sites to get things can be challenging.
    However, Oracle is one of the worst web sites I have ever seen.
    I am trying to download the Oracel Client (Yeah...where the heck is it??) and haven't found it for over 30 minutes.
    Searching your site really stinks...it's awful!!!!!
    Finding anything is like...well...you can't!
    Do yourself AND especially your client(s) a favor...Make your web site easy to use...it really needs help.

    I have too very really frustated by Oracle Website for several years. Just today I was trying to download the Oracle personal edition, and putting 'download' or 'oracle personal edition' in the search box, and the results are mainly white papers and tech docs. The menu option also are not really hepful, neither the site-map.
    So after 30 mins, i finally got to what i was looking for. The thing is that while trying to get to the page, you get lost in the Oracle 'labyrinth' web-site and come across several interesting docs ( which i wont understand everything anyway). Its like going to the supermarket for an advertised product at $10 and you get out of the supermarket with lots of stuff at $300 you were not aiming to buy at first.
    Got my point ...well, I think Oracle wants to keep its website as it is. A company like Oracle does not lack resources to develop a more modern, easy-to-use and quick web-site. Certainly, the website handles a lot of info and lays on Oracle Portal ( if am right) but am sure Oracle does not lack database /application server and expertise to make it quicker and better !!
    Oliver

  • HELP!! Flash project due monday and need help asap

    I am a student of the University of Phoenix and I am taking a multi media class, I was given an assingment to create a flash movie given a code to place in the movie and I cannot get it to work, I have one error, I also have no experiance with codes it wasn't a prereq., I need help and the Academic Advisor told me to post here, I am getting nowhere fast please help me! I will attach and hopefully someone will be able to assist me it probably is simple, but the movie needs to stop and replay with the button.
    Thank you in advance.I have been working for 3 days and getting nowhere.

    noone's going to be able to help you much with the swf (unless they are willing to decompile it).  you could copy and paste the code in this forum and probably get some help.  and, if you uploaded your fl somewhere and posted a link, you might get some help.

  • Text loading and formating in menu based project??? need help

    so here is my deal, code follows, i can get the text to load from a txt. file in the project folder but i can get it to behave the way i need it too. 1. the formating is not working 2. i cant get it to null after i navigate away from the page. I think if i can do those two things i will be done and good to go can anyone help? i have a total of 3 pages that need text to load ad be formated Oct, Nov, and Dec and there al 1,2,3 respectfuly.
    var myFormatOct:TextFormat = new TextFormat();
    myFormatOct.size = 13;
    myFormatOct.leading = 1;
    myFormatOct.align = TextFormatAlign.RIGHT;
    var myTextLoaderOct1:URLLoader = new URLLoader();
    var myTextField_txtOct1:TextField = new TextField();
    myTextField_txtOct1.wordWrap=true;
    myTextField_txtOct1.width = 325;
    myTextField_txtOct1.height = 550;
    myTextField_txtOct1.x = 80;
    myTextField_txtOct1.y = 190;
    var myTextLoaderOct2:URLLoader = new URLLoader();
    var myTextField_txtOct2:TextField = new TextField();
    myTextField_txtOct2.wordWrap=true;
    myTextField_txtOct2.width = 325;
    myTextField_txtOct2.height = 550;
    myTextField_txtOct2.x = 350;
    myTextField_txtOct2.y = 190;
    var myTextLoaderOct3:URLLoader = new URLLoader();
    var myTextField_txtOct3:TextField = new TextField();
    myTextField_txtOct3.wordWrap=true;
    myTextField_txtOct3.width = 325;
    myTextField_txtOct3.height = 550;
    myTextField_txtOct3.x = 600;
    myTextField_txtOct3.y = 190;
    myTextLoaderOct1.addEventListener(Event.COMPLETE, onLoadedOct1);
    myTextLoaderOct2.addEventListener(Event.COMPLETE, onLoadedOct2);
    myTextLoaderOct3.addEventListener(Event.COMPLETE, onLoadedOct3);
    function onLoadedOct1(e:Event):void {
    myTextField_txtOct1.text = e.target.data;
    addChildAt(myTextField_txtOct1,5);
    function onLoadedOct2(e:Event):void {
    myTextField_txtOct2.text = e.target.data;
    addChildAt(myTextField_txtOct2,5);
    function onLoadedOct3(e:Event):void {
    myTextField_txtOct3.text = e.target.data;
    addChildAt(myTextField_txtOct3,5);
    myTextLoaderOct1.load(new URLRequest("myTextOct1.txt"));
    myTextLoaderOct2.load(new URLRequest("myTextOct2.txt"));
    myTextLoaderOct3.load(new URLRequest("myTextOct3.txt"));

    You don't appear to show any attempt to apply the format to the textfields.  You either set it as the default before you add text or set it to the format after it has been written to the textfield.  Here is a link to help documentation that will explain...
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/TextFormat.h tml
    As far as nulling goes, there is no attempt shown for that as well, so it is not really clear (to me) what you intend/mean as far as nulling it.  To clear a textfield you can just assign iut an empty string... as in ""

  • Deploying Forms with Forms6i/Oracle Internet Application Server 8i - need help!

    Hi Gurus!
    I am trying to setup the Oracle Internet Application Server 8i (Release 1.0)and deploy the forms to the web. The server is on Solaris. I have installed and configured the application server. I used the 'runform.htm'and 'test.fmx' to test the installation of the application server on the Server machine. In that case it works fine and shows the message 'Application Server is up and running'. Where as if I tried to access the same 'runform.htm'and 'test.fmx' from another client machines through a web browser it is not executing the 'test.fmx' and throws the following error:
    " FRM-92060:Failed to connect to the Server. Bad machine specification:'hostname':9001"
    Details...
    oracle.forms.engine.RunformException:FRM-92060: Failed to connect to the Server.
    I am using the default port#9001 to run the Forms server (i tried using another port and i got the same error). The web server is listnening on the port 7777.
    I am not sure what needs to be fixed. Can someone please through some light on this?
    Thanks!
    null

    The Oracle 8i jvm component (formerly known as JSERVER) was designed to support server side java.
    This component was initially developed and included in the Oracle 8i rdbms 8.1.5.
    Enhancements continued to be implemented with the 8.1.6 and 8.1.7 releases
    IAS uses the same oracle 8i JVM from the rdbms to support java code on the middle tier.
    Here's how the IAS version and the RDBMS version match up on the Oracle 8i jvm's features.
    RDBMS 8.1.6 with IAS 1.0.0 (unix) / 1.0.1(NT)
    RDBMS 8.1.7 with IAS 1.0.2 (new name IAS 9i)
    8.1.6 / IAS 1.0.0 / IAS 1.0.1 supports :
    session EJB's(1.0 spec), corba objects and java stored procedures
    8.1.7 / IAS 1.0.2 (aka IAS 9i) supports :
    The 8.1.7 implementation will support the 8.1.6 features listed above plus the ejb 1.1 spec (entity ejb's -- see below), servlets and java server pages.
    note : in another thread Mr. Devin clarified the current status of the EJB 1.1 spec (entity beans)in the 8.1.7 solaris release and the future win nt release.
    If I remember correctly, Mr. Devin reported a last minute issue has delayed the support for the entity bean feature but ejb spec 1.0 / 1.1 session beans are in place.
    When the entity bean issue is resolved, a software patch needed to support the entity bean feature will be provided in a rdbms patch.
    for additional technical info, please review :
    http://otn.oracle.com/products/oracle8i/pdf/8iR3_nfs.pdf
    http://otn.oracle.com/products/ias/listing.htm#tech
    i hope this helps ...

  • Oracle XE 10g database offline need help getting it back in 11g EE

    Our server crashed...completely crashed...lightning took it clean out. It was older hardware running server 2003, oracle xe 10g, so we replaced it with a newer better server running 2008r2 (64bit I might add).
    I need to bring the old database, tablespaces and datafiles back online with the new server and the new instance of Oracle.
    I have sucessfully installed oracle 11g EE and can create new a new database (all is online with this), but I need my old data back for PCM 13.1. I cannot find any good online documentation regarding this issue, and we are down until its corrected. Obviously just copying the data over isnt going to work, so any help is much appreciated.
    I have good copies of the old hard drives with the folder structures intact, but there is no chance of getting the old OS back online without purchasing old matching hardware and just slamming the drives into it.
    Basically how do I get the new instance of Oracle to open and run my older database...how do I restore it?

    I did it...yay! Here's what I did...I installed a fresh copy of oracle 10g xe in my virtual xp mode. Stopped the database after installation...deleted and replaced the oradata and fast_recovery_area folders with my old data. Started the database and everything worked so far. In the server with 2008 r2 I installed 11g xe, same system password. I then installed SQL Developer on both computers (easier for me than typing out the scripts). In the XP mode 10g xe computer I did a FULL data pump export to a dump directory. I then moved the dump file to the new server and ran a data pump import, appending data if existing. First time, failed....checked the log and obviously I missed the fact the folder structure MUST be the same for the datafiles or I would have to remap (too much work). The default oradata folder is different in 10g than 11g. I created the oradata folder in 11g xe in the same location as 10g would put it and ran the import script again. BAM, it worked this time...I have my data back in 11g xe and my software was able to find it like it should. Thank you for your consideration and help...hope this helps someone else down the road.

  • Installing Oracle iLearning....Need Help!!!!

    Anyone know what I need to install to get Oracle iLearning working on Windows 2000? Any help is needed and appreciated.

    The main Downloads index http://www.oracle.com/technology/software/index.html has a section called Applications with a link to the E-delivery site, where you could find both iLearning and EBS with Oracle Learning Management.

  • Im doing my final year project here and i need help- karasi

     my name's karasi and im from singapore..currently doing my final year at nanyang polytechnic..diploma in electronics, computer and communications engineering..im new to this labVIEW software as my supervisor just gave me this..my supervisor will be giving my project details next week and im pretty sure tht i really do need alot of help in this to pass my final year project..so any kind helpers who would wanna help me in this would u pls kindly email me at [email protected] thnk you..
    Solved!
    Go to Solution.

    The PCR here is used to monitor and analyze the temperature of the substance. I'm supposed to make a user interface with 4 display of graphs overlapping each other. And the buttons are used to control which graph should come up first. Once when a button is shown, the button should greyed out. I've attached on an example that my supervisor gave me on how it should look like. Thanks! 
    Attachments:
    imgA.jpg ‏75 KB

  • Please, oh Please someone help me.  My FCP keeps quitting unexpectedly and I'm in the middle of my biggest project ever. I need help!

    My FCP keeps quitting unexpectedly, it’ll start load up and then quit around 16% of loading my project.  Please, someone help me this is my biggest project.

    You do know where the project is, don't you? Select the project in the finder and get info for thr project. How big is the file.
    You can find how to trash your preferences <a class="jive-link-external" href="http://www.fcpbook.com/Misc1.html">here</a>.
    You do have the media on separate drive, don't you? If yes, unmount the drive with the application closed. Drag it to the trash. Trash your preferences. Launch the application. Reset the scratch disk if you have to. Open the project. What happens?

  • PROJECT DUE TODAY __ NEED HELP!!!

    i posted earlier about how DVDStudio is quitting itself while rendering the menu. i think exactly what it says is rendering menu1, language menu. i sat here and watched it for 4 hours and it gets to 60%, shuts down. no file to be found, nothing. i have used the burn, format/build, and stopped that and i just want to build it. i have rebuilt, recompressed, and re-encoded this movie countless times, so please do not tell me to re-compress, encode, or import my files - that IS NOT working.
    i can't just throw it together via iDVD, as the menu has already been approved in the first proof and is what they are expecting. this just started happening this weekend, i'm not sure what's going on. PLEASE HELP!!!
    matt
    ps - dvdstudio 4, powerbook G4, external 800 gb raid drive holds all the video files and i have tried to set preferences to build to that drive and to the system drive. i have encoded via compressor AND dvd studio.

    there is no chance for me to copy it, as DVDSP shuts down too quickly.
    when i re-open the program, there is no record of my effort to build prior. everything reads completed until it reaches "rendering Menu 1, Language 1", then it takes appx 4 hours to render 60%, then it closes up.
    i have done an "updated" installation and now i am re-encoding again to try to start over. this is a very simple project. one menu consisting of 4 loops (m2v), one audio track in menu (ac3), and one text button that leads to an 8 minute long track (m2v).

  • Design for wireless project....need help....

    Hi Team
    i have a requirement from client and need suggestions on the design. Client has 1 main office and 5 remote branches. client requires wireless in all offices. approx 600 access points with 100 in each location client requires all wireless access points to be registered at HO controller and a redundant controller to be at the branch. if the controllet @ HO goes down access point to be served by the controller local to the site.
    Is this type of a design possible ? kindly do help me in suggesting the best for my clent.
    Thanks !!!

    The 7500 has two 10 gig connections that can be used. So you will need a 10 gig module to connect that to. You don't need to use a tertiary wlc unless you have one available. Usually two is good enough. Again.. You need to decide if you want to go local or h-reap. You can go either way, but why put one wlc in HQ and the other at the remote site. If your concern is 100% redundancy, then put two out at each site. If you have more money to use, then add another WLC at HQ for your tertiary. Now I don't think you need more than a 5508-500 at HQ because the percentage of loosing all 6 sites WLC's is pretty slim. If you go h-reap, then put the WLC's at HQ. Get 3 5508-500 for redundancy unless you have the WiSM2. If you have 10gig, then two 7500's will do. You have many options.
    Thanks,
    Scott Fella
    Sent from my iPhone

  • "Unable to open project file." i need help! URGENT

    before the problem...
    my film project and all its files were in a WD external drive. i had some problems with soundtrack pro being too slow because the files were on an external drive, so i bought 2 Internal Seagate drives. i moved all my files to the internal drives, and i changed my scratch disk to my new drive.
    i have done this procedure several times before, and i never faced this problem before!
    after...
    so i went on to launch my FCP project, and while loading i got this message "Unable to open project file."
    how can i fix it?

    nope!
    but here is what i did:
    i reformatted it, and moved the files again... and surprisingly, it worked!
    computers have a mind of their own sometimes!
    but now i have another problem... i opened soundtrack pro to work on the same project, but its very slow! it keeps freezing whenever i want to make any actions.
    whats the problem? and how can i fix it?

  • BSP / Portal Integration - Need Help!

    Greetings,
    We are running a BSP which has many pages and is displayed through the Enterprise Portal.  When the Portal splits the BSP pages up, the main DO_INIT runs every time someone clicks a tab (very slow).  The user appears to get a separate session for every tab.  When running the BSP's directly from the backend system (not split into Portal tabs) this does not happen.  This is making our performance unacceptable.
    Any ideas are appreciated!
    We are running NetWeaver Portal 7.0 SP12 against an ABAP backend of SAP ECC 6.0 / ERP 6.0 SP10.
    Thanks!
    Kris

    Hi Kristjan,
    The BSP applications which you have used looks like is embedded in the main portal application.
    Instead I would suggest you to call your BSP application from DO_INITATTRIBUTES method. Use construct_url_from_bsp method for calling another BSP.
    Reward points if helpful.
    Thanks,
    Chaith.

  • Integration between primavera 8.1 and Ebiz-Oracle Project

    Hi all ,
    I need to integrate Primavera p6 v 8.1 with oracle E-busniess suite 12.1.2 is that possible ?
    Regards,,
    Mohamed

    Please see if these docs help.
    How to Integrate Primavera with Oracle Projects E-Business Suite? [ID 1091836.1]
    Oracle Project Portfolio Management Integration Pack for Primavera P6 and Oracle E-Business Suite 2.5 - Release Notes [ID 959567.1]
    Oracle Project Portfolio Management Integration Pack for Primavera P6 and Oracle E-Business Suite 2.5 - Implementation Guide [ID 956562.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Value of upgrading WSS 3.0 To SharePoint Foundation?

    We have a WSS 3.0 site which the primary purpose is for storing documents that are shared with external business partners who have AD accounts in our domain without them needing to have VPN and access to our file servers.  It is especially useful for

  • Is it possible to buy an iphone from us and use it into france?

    I all i would like to know if it possible to buy an unlocked iphone 4S from apple store(US), and use it into france? With french operator Thank you Max

  • Content Query order by

    I am using this CMIS query for a content query: SELECT cmis:name from cmis:document WHERE IN_TREE('/AcqUCM/IDC:Folder/687225755214001010') ORDER BY cmis:name ASC I am getting an error: Caused by: oracle.webcenter.content.integration.cmis.query.ParseE

  • Query for total size of the spatial data

    Hi, I found some posts to determine the size of the spatial table but is there a query I can use to determine the exact size of my spatial column. I have about 2 mil. geometry points and I would like to know exactly how many bytes it is. Thanks in ad

  • Read Combination segments for material account from item level

    Dear Value Consultant, Read Combination segments for material account from item level "For any inventory transactions" Is there is away to read the material account from item level , to affect the real combination segments not general combinations se