Prospecting and Exploitation solutions

We are implementing SAP for an oil and gas company. The company want to manage their Prospecting and Exploitation through PS. Does anyone have some related materials or experiences? We need help eagerly. Thank you!

Are you using SAP's Oil and Gas solution with Joint Venture Accounting.
If I remember correctly we used Business Area's to identify Exploration v Development v Production
Unfortunately no documents available
Steve

Similar Messages

  • Prospecting and Exploitation solutions for oil and gas company

    Now  we are implementing SAP for an oil and gas company, they want to manage Prospecting and Exploitation through PS.Does anyone has some related documents or experiences?We need help eagerly. Thank you!

    Are you using SAP's Oil and Gas solution with Joint Venture Accounting.
    If I remember correctly we used Business Area's to identify Exploration v Development v Production
    Unfortunately no documents available
    Steve

  • I want to change the settings (brightness, contrast, gamma) for my internal cam on Macbook pro. I find having to but a third party software (iglasses, webcam settings) to control basic settings as unnecessary and exploitative. Does anyone have a solution?

    I want to change the settings (brightness, contrast, gamma) for my internal cam on Macbook pro. I find having to but a third party software (iglasses, webcam settings) to control basic settings as unnecessary and exploitative. Does anyone have a solution?

    It is not about payment of $19.95 (Igalsses) or $7.99(webcam settings). This is a very basic setting that should be available in the system settings. The automatic setting of the internal cam does not work great on low lighting as everyone is aware.
    i am just amazed how users take in lying down and suggest solutions such as paying for a 3rd party paid app or improving the lighting in your room.

  • C4C-ERP Integration: Prospect and Customer

    Dear collegues, I am working on ERP-C4C integration. I have the following scenario. 1.Integration is not bidirectional. I.e. Accounts are never sent to ERP from C4C. 2.Prospects are created in C4C. Opportunities are created for Prospects. 3. When a prospect is incluided in a quote, one tickets will be assign to ERP department who will créate an Account in ECC. In this tickets ERP department will have information about the account. 4.This newly created Account should update the existing Prospect in C4C. I.e. Prospect should be converted to an Account without loosing the existing data (e.g. Opportunity). My problem is that when i créate the new account in ERP this account is replicated to C4C like a new Customer because C4C doesn´t find an Internal ID that is mapped to the current External ID being passed. Could you help me? How I can solve this problem? Regards. Carlos.

    Hi Carlos,
    Same requirement in one of the client customer create in ERP and replicate into the C4C and only prospect create in C4C so for that we have implemented the below solution:
    We have make default check to prospect and make that field read-only so when any business user create any account its create prospect by default so they can not create any customer in C4C,
    We have make default value for prospect using SAP Cloud Application Studio and enhance the standard business object (Customer) and default check to the prospect field and make it read-only from back end.
    So using above enhancement we have achieved the requirement , you can contact you cloud developer and ask him to do this type of changes in C4C using SAP Cloud Application Studio.
    please let me know if you need anything else apart from this.
    Regards,
    Mithun

  • Get native file in ucm (ucm and terastack solution working together)

    Hi,
    We use oracle universal content management server (ucm). A lot of files are stored on the hard disk of the system using this content management system. Now we are using Terastack Solution (http://www.hie-electronics.com/) to create backup of the data. The TeraStack Solution is an optical data storage system designed and manufactured to improve performance through affordable and reliable data storage management. Terastack solution archives (writes) all files to dvds and then a module of it truncates all these files to zero byte in size to save disk space. Now terastack solution watches all archived files. If an application tries to open such a file, it intercepts this, blocks this request, then restores the file from the dvd. During this process calling application just waits for the file to open. After restoring terastack solution sends a signal to the calling application, and the file with full contents is opened in the application.
    Now here is the problem:
    Files are check-in oracle content server. Terastack solution has burned these files to dvd and made these files to zero byte in size. Now when we click a link in content server to get a checked-in file (native file), terastack solution intercepts it, restore the file from dvd, then an open/save dialog box open to either open or save the file to a location. We save the file to a folder, open this file and come to know that there is no content in the file. It is still a zero byte file.
    When we checked the file at original location (remember ucm stores files in vault folder), we came to know that file is actually restored successfully by the terastack solution but the content server returned a zero byte file. When we click the link for the same file again to get native file in ucm then we get a fully restored file. i.e. on the first try to get native file we get a zero byte file although it is restored by terastack solution successfully. And on the second try we get file with full contents. On the second try, file has already been restored by terastack solution during the first try and terastack solution ignores files greater than zero byte in size, that’s why client gets a correct file on second try. Having size greater than zero means file is already restored.
    The link in ucm that is used to get native file does not point directly to the desired file. It calls some code in ucm that transmit the required file back to the client. Something like this:
    http://localhost/idc/idcplg?IdcService=GET_FILE&dID=11&dDocName=test_06&allowInterrupt=1
    I think what is going on here is, when we click on a link to get native file that is zero byte in size, content server creates a response for the file, append the size of the file (currently zero) to the header of the response along with other info, and then tries to transmit the file to the client. At this point, terastack solution intercept the request and restore the file. After restoring terastack solution send signal to calling application that file is restored. But the server has already created request for the file and it is not updated during or after the restore, that’s why client gets zero byte file.
    What I want is somehow force the content server to wait until file is fully restored by terastack solution and then transmit the fully restored file to client. Is there any configuration setting for ucm that will achieve the goal?
    Any setting in bin/intradoc.cfg or config/config.cfg or something else?
    Need help.
    Environment:
    OS: Windows XP SP3
    Content Server 10gR3 (Deployed to: IIS, JDK used: v1.5)
    TeraStack Solution (Deployed to: JBoss)

    Thank you for your reply. Although the links to weblayout version of files works perfectly with terastack, but we want to take backup of files in vault folder. Is it possible to change the links that are use to get native file? Can we somehow make these links to directly point to vault files? If yes please tell us how.
    A custom java service to download the native file can also work. Can you please give us a sample code and how to implement it in ucm?
    Please provide one of the solutions. I’m a new comer to ucm, so please provide instructions in more details.
    BTW, I tested the restoration of file using a test dotnet web application. I added code that downloaded a user selected file to the client. The code we used is as under:
    1. FileInfo fi = new FileInfo(filepath);
    2. Response.Clear();
    3. Response.AddHeader("Content-Disposition", "attachment; filename=" + fi.Name);
    4. Response.AddHeader("Content-Length", fi.Length.ToString());
    5. Response.ContentType = GetFileContentType(fi.Extension);
    6. Response.TransmitFile(fi.FullName);
    7. Response.End();
    GetFileContentType() function is a simple function to get content type of a file type.
    Line#4 is important here. A file is zero byte in size when a request to download a file is received by the server, and the server just appends content-length=0 in the header. So even the file is restored by the terastack afterwards, client still receives a zero byte file. At this stage our test application has the same problem, not getting a native file with full contents.
    We removed line# 4 and tried again to download a file thru our test web application. This time client got file with full contents after the file is restored. So we think this Content-Length header is the one that needs to be handled.
    You may find this information useful if you decide to build a java service solution.

  • HELP ASAP!! Lettered password tried first time, caused my ipod to be unrecognized by iTunes and only solution is restore, which I don't want to do!

         I put in a lettered passcode recently and now it won't work anymore and iTunes could not let me type in the password and only solution is to restore it. I really do NOT want to restore it at all because I highly value the info, saved pics and links, especially the music I saved which is only on my ipod, not anywhere else, not even my computer. I am a music person and I work and live for music, and recently I saw a new kind of passcode which can be lettered instead of a 4-digit passcode, so I went ahead with it, which made me comfortable. Until I realized as soon as I clicked the top button (which just put it to sleep or off) and when I click it on, it says it has to be plugged to iTunes. I thought I would have to get home to type in my lettered passcode to get in, which I did. But when I plugged it in, there's no password needed or anything like that. iTunes won't even recognize my iPod, and the solution is to restore it, which I refuse to do, because all my work is in this iPod of mine I've had since nearly 4 years now.
         PLEASE HELP ME ASAP!!!!!!! I can't live without music, I know it's hard to believe but it's true. Is there any other way I can get my iPod to work without having to restore it and lose everything I've worked for in it?? None of it is saved to any other computer or technogical device. Everything is in my iPod. Please help!! I am struggling each day without music, it's impossible, I miss music and I need to hear it, and the iPod is the only way for me to hear as of for now because I am deaf/hard-of-hearing and my hearing aids are broken, so I use the ipod everywhere I go to listen to music on my earphones/headphones, I can't carry my computer anyways, lol. Please may any of you help me solve this problem?? I will be eternally grateful! THANKS SO MUCH!!

    If you are unable to enter the passcode into your device, you will have to restore the device to circumvent that passcode.
    Is the music purchased from iTunes? If it is you can contact iTunes support and ask them to allow you to re-download the music that you purchased from iTunes.
    Also, do you sync the device regularly? When syncing an iPod Touch/iPhone a backup file is made. That backup file doesn't contain your music but it does contain your address book, application data, pictures, notes, etc. After restoring your device, you can try restoring from the last backup that was made of your device so you will not have to start over completely from scratch.
    Hope this helps!

  • Is there a relationship between InfoPath and the "Solution Approval" and "Solution Unpublish" timer jobs?

    One of our developers has a test SP 2010, service pack 2 system. Against it, he is testing form library InfoPath 2010 applications that he is developing.
    There are, over the 2 months he has been working, an increasing number of times that the machine becomes so slow as to be unusable. For instance, in his attempt to publish an updated form this morning, the publish time was about 2 hours.
    I see nothing obvious in the event log.
    However, in the 5.7 million line 14 hive log, there are 5.6 million lines of the form:
    Solution Deployment : Deleting directory C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\Template\Features\FT-01-6d499aed-f899-c88e-5f7e-8dad243ccaf1\solution.xsn.1.0.0.1018.1.0.0.735. Delete if not empty.   ae8f490c-f1bf-4f25-92aa-6fc8e0de7de5
    When I look in the Features subfolder, there are over 13k of folders containing a solutions.xsn and a DLL with the name of the application.
    These folders date back to when the work began.
    When I look at timer job history , all I see are status of Succeeded.
    But I do notice that every minute a series of 6 Solution Approval and 6 Solution Unpublish timer jobs run.
    Since the timer says to run every minute, I suspect that something is wrong with the jobs.
    This being a test machine, there is no reason to have 13k of old copies of the form and dll. He is not going back to one of those as far as I am aware.
    Is there some action that he should be taking that should be "cleaning up" this situation?
    Is there something that a SP admin could do to clean things up so that things no longer take so long to run and create such large log files?
    Thanks for your ideas.

    Try using this document to locate the tag: http://goo.gl/GDeRb
    It could have worn off, depending on how long you have had the notebook and what kind of conditions it has been through.
    Also, where did you happen to purchase it from?
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • How can I import all my gmail contacts into iPad? I use iPad mini and the solutions available on the web are not compatible.

    How can I import all my gmail contacts into iPad? I use iPad mini and the solutions available on the web are not compatible.

    Hello and thanks for the answer.
    I meant by "not compatible" that all the solutions that I found on the web did not work, especially the "Microsoft exchange" one.
    Fortunately I found on the comments of the first website you mentioned the right answer for me, which I copy below:
    Tap Settings > Mail, Contacts, Calendars > Add Account > Other > Add CardDav Account.
    Enter the following information in the fields:
    Server: google.com
    User Name: Enter your full Google email address
    Password: Your Google account password
    Select Next at the top of the screen to complete the setup.
    After you have completed the setup, open the Contacts app on your device. Syncing should begin automatically.
    Additional Information
    Note: Make sure that SSL is enabled (under Advanced settings), and that the port is 443.
    If you are using application based special password go to https://accounts.google.com/Se... and instead of your password put that special code and u r done.

  • Hello hi, i just won't to ask, if there has been any changes on how to find a stolen phone, did some one come up with a fare and good solution. as it is not fare at all when some one could use it for free and there is a lot of things could be done to this

    hello hi, i just won't to ask, if there has been any changes on how to find a stolen phone, did some one come up with a fare and good solution, new Apps. as it is not fare at all when some one could use it for free and there is a lot of things could be done to this condition, no one seem to care,
    i have a story about my sister, am talking on her behalf, she got stolen her phone at a caffee when she just come from a horeble exam, she was very mad and having haedace for not doing well at the exam, i ask her if we could have coffee before we go home, once she sate; while i was getting the coffee for her, some one snicked to her pocket and took the phone, immidatly she feelt it and went on to searching, but nathing was hopefull. what makes it more heart braking is that she worked day and night just to buy the phone and pay for her books and so on as a student. she use to work 16 houres a day before she had to start school. 8 houres in one place and then to the other place. and she was always demanding for more houres to work; one day her boss saw her on her other job and she was serprised to see her and saied OHhh my God Milly if you work like this, i wonder if you servive, how could you also ask for more houres, My sis had to do it she has no parents or any thing, well the phone was taken after only two months of having it. the sad thing is she stile dream having it even though she can't think of buying againe. well me i have tryed a lot of things but i know some were out there there is a solution for people like this, it is not always fare for some one who has payed up to 800 to just loose his ......  
    Thnks

    I'm sorry, but your sister, unless she had already turned on the "Find my iPhone" feature and the person who took the phone has not disabled it, is out of luck. She should report the theft to local police authorities, including the serial number of her iPhone. While her experience is unfortunate, there are good reasons why Apple cannot do anything else about it.
    I hope she gets her phone back.
    Best of luck.

  • I want to find any backup and recovery solution for SharePoint server 2013 enterprise

    Dear Expertise,
    Recent set up SharePoint server 2013 Enterprise, and looking for backup and recovery solution, does the built in Windows Backup can handle it, and how?
    KF

    Hi,
    According to your post, my understanding is that you wanted to know some backup and restore solution for SharePoint 2013.
    There are two Technet articles about the backup and restore, you can have a look at them.
    http://technet.microsoft.com/en-us/library/ee428315(v=office.15).aspx
    http://technet.microsoft.com/en-us/library/ee662536(v=office.15).aspx
    You can also use some third-part software tools to achieve the same scenario.
    http://www.avepoint.com/products/sharepoint-infrastructure-management/data-protection/
    http://www.sharepointreviews.com/sharepoint-reviews-articles/sharepoint-administration/254-sharepoint-backup-recovery-evaluation
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Windows 7 and HP Solution Center

    I just moved from Windows VISTA to Windows 7 RC.  Having issues with my HP photosmart 7280c and HP solution center.  I am unable to install HPSC.  Anyone else experience this issue?  HP support wasn't much help at all, which I don't expect them to be with Win7.  My main issue is scanning.  Even if I try to scan directly connected to the printer, i am getting an error.

    I am seeing the same problem with Windows 7 64-bit as well.

  • I transfered my music into my new mac into itunes media folder from an external, but it dosnt show in itunes.  I have to click on each one to activate it on itunes.  there has to be a better and easier solution.  help

    i transfered my music into my new mac into itunes media folder from an external, but it dosnt show in itunes.  I have to click on each one to activate it on itunes.  there has to be a better and easier solution.  help

    Thank you for your prompt response - I did as you said and did a drag and drop into the iTunes window - it imported and got my album art from the net. When I started Itunes with the shift key down I was prompted to choose a library but since I copied over the media folder and not the library folder I was unable to select that so I guess I will have to create a new library and add in all the music, videos, etc. unless I wait for my laptop and export the library or at least that seems to be the case? In short, all my data (iTunes media folder) is on my external drive and can be added to the blank iTunes screen but I can not choose a library folder. Is there anyway around completely making all those playlists again? I am not sure my laptop will survive the shop with data intact and really hate to start over on those.
    In an unrelated question - I collect old TV shows from the 1950's. Can I make playlists within the home video folder somehow?  In other words like one for Quiz shows, one for comedies, one for police and detective shows, etc. while I am remaking all my playlists for my music if I end up having to go that route?
    Once again thank you for helping me out. I am not too Itunes savvy and really appreciate you taking the time to answer.

  • Difference Between SAP ECC 6.0 and SAP Solution

    Dear Experts,
       We are in the process of implementing a new SAP Structure.
        We are taking a hosted model from vendor which is called SBH (Subscription Based Hosting) of SAP Solution
      So my question to all experts is that, what is the exact difference between SAP ECC 6.0 and SAP Solution SBH model.
       If any comparison chart,  it would be helfull.
    Do reply asap.
    Thanks in advance,
    Nilesh Jain

    Hi Nilesh,
    Looking at the image below, you will find out that ECC6 is under SAP ERP, and SAP ERP is under SAP Solution:
    SAP solution is of a bigger element and ECC 6 is a component of it.
    Regards,
    Rod

  • Fax and voice solution technical details!

    can any body send me the links or details in the Oracle Colloboraion suit OCS explanation about the How to Fax and technical detail about that .It would be nice if I got the general and both technical detail VOICE and FAX solution of OCS?
    Thanks in Advance !

    Documentation for Voice and FAX are available through the link on the top called "Documentation". Just follow the link to Collaboration Suite Documentation.
    Please let me know if you are looking for anything further and beyond this.

  • After downloading a pdf from a website, how can I view the file in Safari 6.0.4 (just as I can in Safari 5.0.6)?  I bet that it's simple, but I've missed something, somewhere, and a solution will be greatly appreciated.

    After downloading a pdf from a website, how can I view the file in Safari 6.0.4 (just as I can in Safari 5.0.6)?  I bet that it's simple, but I've missed something, somewhere, and a solution will be greatly appreciated.

    Hello Kirk,
    Thank's for your efforts, and I just wish that this was the solution.  Unfortunately, it isn't because, after double-clicking on the pdf in the website, it simply "opens" in another Safari window as a black screen - the pdf is there, somewhere, but not visible (either as an icon, or as a document). 
    When I right-click in the black Safari window, where the file is supposed to be, the only option available to display the file is to "Open file in Internet Explorer" (which is not what I want to do).  Other options include saving or printing the pdf, which I don't want until I've confirmed that it's the form that I want.  The same options are offered if I right-click on the file icon in the website.
    Any other suggestions, please?

Maybe you are looking for

  • Trouble Viewing iWeb site on dot Mac account

    I have a home office and I also have a studio. When I am at home working, I have no trouble viewing photo pages on my dot mac account from either Safari or Firefox. When I am at my studio, however, I cannot browse my photo pages on Safari nor with Fi

  • Visual C++2005(8.0) and 11i

    Greetings, Our 11.5.9 financials environment consists of two nodes: Web/Forms are on W2000, and everything else is on HPUX. We have installed the Visual C++ version 6.0 on the W2000 a years ago when we setup the W2000 server. Now, we are moving the W

  • Firewire input for OnLocation CS4

    Hi all, i have been using a firewire out of my Panasonic 3CCD HD camera to a firewire in on an older vista machine.  i have upgraded to an Envy 15-1050NR computer.  It has 3 Universal Serial Bus(USB) 2.0,3rd port shared with eSATA Headphone-out/Micro

  • I can't open old mails, what can I do?

    I can't open old mails, what can I do?

  • HT1338 I have downloaded Mac OS X 10.7.4, but it's telling cant be saved and its not installed

    Hi all, I have downloaded the OS X Lion 10.7.4. It's showing downloaded, but it's not getting installed. I am getting a pop-up saying, Update cant be saved. I have OS X Lion 10.7 installed in my system