Regarding Oil & Gas extraction into sap bi

Hi friends
We are above to do extraction  from Industry specific OIL & Gas    ,  and civil projects  \
can anyone has done this kind of project , or atleast guide me how to work on this ( as it is differenct compare to LO & COPA extraction) please help me . i tried to search the relevant objects in Business content i didnt find
thanks in advance
thanks

Hi,
please check this link:
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/405f09c8-ca95-2e10-bd81-8d79bd3afa04?QuickLink=index&overridelayout=true
hope it will give some idea.
and congrats for the good project...!

Similar Messages

  • Custom Document & Custom Doc Legal Control Extraction into SAP BI

    Dear All,
    After all the business content for GTS was activated in GTS and SAP BI, the following configuration steps were taken in GTS to extract this data into BI for
    reporting:
    [1] Integration with Other mySAP.com Components > Data Transfer to the SAP Business Information Warehouse > General Settings > Maintain Control Parameters for Data Transfer [Used ECC as guide]
    [2] Global Trade Services > General Settings > Organizational Structure > Control Settings at FTO Level for SAP NW Business Intelligence (BI) 
    Inserted new records missing when comparing to Assgmt of Feeder System Grouping Org.Units to LLS Org.Units table [/SAPSLL/TCOOGS]
    Turned on BI Active flag for all records  
    [3] Global Trade Services > General Settings > Document Structure > Define Document Types for Application Areas
    For each document type in all the folders, turned on ‘transfer to SAP Netweaver Business Intelligence Active’ flag where it was available to be turned on.
    [4] Global Trade Services > General Settings > Document Structure > Define Item Categories for Application Areas
    For  each item category in all the folders, turned on ‘transfer to SAP  Netweaver Business Intelligence Active’ flag where it was available to be turned on.
    Focusing on custom document and custom document legal control extractors, the data comes from /SAPSLL/CUIT which contains 113K records in development, however, the amount of data extracted into BI is minimal.  So I have a few questions:
    Did I miss any additional configuration swithces to extract into BI?
    SAP Documentation: You have entered a unit of weight in the table for GTS: Control Settings at Foreign Trade Organization Level. This unit of weight must be the common unit of weight that you want to be used in strategic reporting in BI . The values in the fields for gross weight (WEIGR), net weight (WEINE) and unit of weight (WEIDI)
    depend on the unit of weight you maintain at FTO level in the IMG for converting weights for SAP BIDoes each FTO need to be insert with different unit of measure?  ie FTO123 UoM = EA; FTO123 UoM = CS; FTO123 UoM = KG
    Should all the data records from /SAPSLL/CUIT be extracted into Custom Document DSO [0SLL_DS01]? If no, why? If yes, refer to pt 1 and what am I missing?
    SAP Documentation: Only data that belongs to the legal controls for the following legal regulations is transferred to BI:
    German Foreign Trade Laws
    Prohibitions and Restrictions
    Other What is the significance of these legal controls that SAP has decided to only transfer this type into BI? If the client want additional legal controls, would it be possible to extract them into BI?
    If anyone is currently using the std content for BI reporting, any assistance with my questions would be appreciated.
    Sincerely,
    Claire

    Hi Claire,
    Your customizing looks correct. But the amount of data extracted depends on your condition you have defined during extraction(e.g. Creation Date)
    Also in the coding only /SAPSLL/CUIT~ITSTA = space (Standard Item) and A (Item is allocated) is considered in 0SLL_CD_1.
    You could find out reason by debugging to find out exact reason.
    T-code: RSA2 , Enter Data source : 0SLL_CD_1. Then click display.
    Click Extract check ( Shift + F8 ) and put break point in coding FM : /SAPSLL/BW_GET_CD_1
    Best regards,
    Vincent

  • Regarding Upload of data into SAP from Application server using DATA SETS

    Hi all,
    I have a problem when uploading data that is application server [.txt file] into SAP using OPEN DATA SET,READ DATA SET & CLOSE DATA SET it is now going to dump. The file is actually splits the fields by using Tab Delimiter.  
    During uploading some junk values are coming with '#' so it going to dump and giving follow type of error.
    Runtime Errors         CONVT_NO_NUMBER          
    Exception              CX_SY_CONVERSION_NO_NUMBER
    Unable to interpret "#0#0#0#0#0#0#0#" as a number.
    Can any one solve the above issue as i need it urgently.
    Thanks in advance.
    Thanks & Regards,
    Rayeezuddin.

    Hi Hielman,
    Thnaks for that reply and for effort you are putting to solve my issue.
    I had done the same thing what u have posted prior to your reply but still i am getting dump.
    FORM f_get_legacy_data .
      DATA: l_tab type xstring,
            l_tab1(1) type c,
            s type x.
      move '23' to l_tab.
      move l_tab to l_tab1.
    OPEN DATASET v_pfile FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      OPEN DATASET v_pfile FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc <> 0.
       MESSAGE text-207 TYPE c_e.
    ELSE.
      DO.
        CLEAR wa_input1.
       READ DATASET v_pfile INTO wa_input1.
        READ DATASET v_pfile INTO wa_read.
        IF sy-subrc EQ 0.
          move wa_read to i_txt-txt.
          append i_txt.
        ELSE.
          EXIT.
        ENDIF.
      ENDDO.
      s = '09'.
      loop at i_txt.
       move i_txt-txt+10(1) to l_tab1.
       move '#' to l_tab1.
       split i_txt-txt at s into wa_input1-vbeln wa_input1-posnr
        split i_txt-txt at '#' into wa_input1-vbeln wa_input1-posnr
                                       wa_input1-per0bal wa_input1-per1val
                                       wa_input1-per2val wa_input1-per3val
                                       wa_input1-per4val wa_input1-per5val
                                       wa_input1-per6val wa_input1-per7val
                                       wa_input1-per8val wa_input1-per9val
                                       wa_input1-per10val wa_input1-per11val
                                       wa_input1-per12val.
        APPEND wa_input1 TO i_input1.
        CLEAR wa_input1.
      endloop.
    ENDIF.
      CLOSE DATASET v_pfile.
      IF i_input1[] IS INITIAL.
    If there is no data in the legacy file or if the structure of the
    legacy data does not match with that of internal table error message
    need to be displayed.
        MESSAGE text-211 TYPE c_e.
    *&--begin of change--
      ELSE.
        CLEAR: wa_input, wa_input1.
        LOOP AT i_input1 INTO wa_input1.
         MOVE wa_input1 TO wa_input.
          MOVE: wa_input1-vbeln TO wa_input-vbeln,
                wa_input1-posnr TO wa_input-posnr,
                wa_input1-per0bal TO wa_input-per0bal,
                wa_input1-per1val TO wa_input-per1val,
                wa_input1-per2val TO wa_input-per2val,
                wa_input1-per3val TO wa_input-per3val,
                wa_input1-per4val TO wa_input-per4val,
                wa_input1-per5val TO wa_input-per5val,
                wa_input1-per6val TO wa_input-per6val,
                wa_input1-per7val TO wa_input-per7val,
                wa_input1-per8val TO wa_input-per8val,
                wa_input1-per9val TO wa_input-per9val,
                wa_input1-per10val TO wa_input-per10val,
                wa_input1-per11val TO wa_input-per11val,
                wa_input1-per12val TO wa_input-per12val.
          APPEND wa_input TO i_input.
          CLEAR: wa_input, wa_input1.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    " GET_LEGACY_DATA
    When i am giving input as
    Directory  /pw/data/erp/D5S/fi/up
    Name: Backlog1616_D1S.txt
    BKCOPO1           BKSOI1        1000.00                100.00                 -200.00                0                      0                      0                      0                      0                      0                      0
    BKSOPO2           BKSOI2        2222.22                0                      300                    0                      0                      0                      0                      0                      0                      0
    BKSOPO3           BKSOI3        -3000                  400                    0                      0                      0                      0                      0                      0                      0                      0
    BKSOPO4                         4000.55                500                    600                    0                      0                      0                      0                      0                      0                      0
    0040000000        000010        -100                   -110                   -110                   0                      0                      -600                   0                      0                      0                      0
    0040000001        000010        -110                   -110                   0                      0                      0                      -610                   0                      0                      0                      0
    I am getting i_input internal table populated as follows at the end of that subroutine.
    After appending [APPEND wa_input TO i_input].
    BKCOPO1#BK|000000|            0.00 |            0.00 |            0.00    |
    BKSOPO2#BK|000000|            0.00 |            0.00 |            0.00    |
    BKCOPO3#BK|000000|            0.00 |            0.00 |            0.00    |
    BKCOPO4##4|000000|            0.00 |            0.00 |            0.00    |
    0040000000|000000|            0.00 |            0.00 |            0.00    |
    0040000001|000000|            0.00 |            0.00 |            0.00    |
    And output is showing erronious records: 6
    No entries inserted.
    Can you solve this issue.

  • Data extraction into sap table  from legacy oracle database

    Hello All,
        I have a scenario where I have two different software systems (SAP and xyz systems), where a intermediate table will be created in between the two systems that is shared. Data will be updated by the xyz systems into this shared table. Now, my questions regarding this shared table.
       1) Can we write some program or something to get the data from shared table to update the SAP?
       2) If possible send me the suggestions
       3) Please also send me the sample code to get the data from the shared table
    Thanks in advance,
      SDN powered

    this shared table should be compatiable to sap fields...write code to fetch data from this table and assign data to appropriate fields in SAP and insert the data into sap.
    1. Push mechanism
    Write a RFC on SAP side to insert entries into the table.
    Call the RFC from xyz application passing the data you want to insert.
    2. Pull mechanism
    Write a ABAP Program, where you can somehow read the data of the xyz application and insert data into the table.
    3. Flat file
    Dump the data from xyz application into the file.
    Write a ABAP program to read the file and update the table.

  • SSAS Cube Results needs to be extracted into SAP BW

    Hi Experts,
    I wanted to see the possibilty of extracting SSAS cube results in SAP BW. Has anybody done this before? If so can you please share your experience and and also how the connections are done between SSAS and SAP BW?
    Any help is appreciated.

    Any replies on this one.

  • Master data extraction from SAP ECC

         Hi All,
    I am a newbie here and teaching myself SAP BI. I have looked through the forums regarding master data extraction from SAP ECC in all forums but could not answers for my question. Please help me out.
    I want to extract customer attributes from SAP ECC. i have identified the standard data source 0customer_attr and replicated in SAP BI. I have created infopackage for full update. I validated the extractor checker(RSA3) and found 2 records for 0customer_attr.
    When I run the info package, the info package remains in yellow state until it times out. Please let me know in case i am missing anything, Please let me know if there is any other process for master data extraction similar to transaction data extraction.

    Hi All,
    i did the below and afte clicking execute in the Simple job, it takes me back to the Monitor Infopackage screen.
    From your info pack monitor --> menu environment-->job overview--> job in the source system--> prompts for source system(ECC) user id and password, enter them, you will get your job at SM37(ECC), select job and click on log details icon. there you can see details about your error. please share that error screen shot.
    Please find the screenshots.
    I did an Environment -->Check connection and found the below,

  • How to extract non-sap data (A/R Invoices from Legacy system) into SAP ICR

    Hi
    We are trying to bring A/R invoices from a legacy system into SAP ICR special ledger so that ICR tool can be used these items for intercompany reconcilliation. Could you please let's know the way to load these legacy AR invoice items into ICR data base using any function moduels.
    Regards,
    Eswar.

    Hello Eswar,
    In what form do you have these "external" open items? If they are contained in a file you should simply import the file in ICR during data selection using the File Upload functionality. There is no need to store them in a special purpose ledger first. Actually you would have to create a BADI implementation to extract the data from that special purpose ledger during data selection. Please consider using File Upload standard functionality.
    If for some reason this cannot be used you could implement a logic calling RFC enabled function module FB_ICRC_ADD_DATA_RFC which will take the open items you are supplying in your logic and push them into the ICR database. This strategy could be used to include these external open items without them being processed during data selection.
    Best regards,
    Ralph

  • Extraction of data from SAP R/3 Bapi into SAP BW

    hi,
    i am extracting data from sap r/3 bapi into sap bw. can u please send me the link and documents of how to extract the data from bapi to sap bw.
    Answers will be rewarded
    Thanks
    sd shahid

    Hi Swapnali,
    In your case you have to send process order to XI and you have a bapi that satisfies your requirement.
    Here the solution depends what is the triggerring point of the Interface.
    If you want that from SAP side Interface should be triggered, then Use ABAP proxy program
    You have to craete a Abap proxy class using outbound message interafce defined in IR of XI.This can be done by transaction SPROXY.
    Then create a program that call sync/async method that is created by Sproxy t.code.
    In this way , when u will execute the proxy program in R/3 , then call will be made to BAPI in Sap from XI server and u will get output back to your proxy program.
    If your requirement is to not to trigger from SAP then nothing is required in R/3 side.
    In XI , Bapi will be added in imported objects in Integration repository and bapi will be called.
    Hope this will help u.
    Please revert in case of queries.
    Regards,
    Monica

  • How to Extract Huge SAP HR Data into Excel?

    Dear Experts & Gurus,
    Need your Valuable suggestions regarding this scenario.
    I need to extract entire SAP HR data, modules are OM,PA,TM,PY and PD into Excel sheets because our clients are migrating to other ERP. The data volume is very huge, as they are using SAP since 14years. Can we use se16 to extract the data , will it able to handle in extracting the data from HR Tables or any other standard ways to extract this huge data without any dumps or errors .
    Appreciate if you provide some useful suggestions or tips  for this scenario.
    Thank you.
    Regards
    Vicky

    Dear Liran,
    Thanks a lot for your valuable suggestions.its really given an brief idea now.
    First:
    What's the purpose of this data download?
    Do you wish to transfer the data from SAP into the new ERP system? Or do you need the download as a backup?
    Yes , Transfer the data from SAP to New ERP system, it is not for Backup.
    IDOCS/ALE from SAP to New ERP?
    Second
    I think Payroll results stored in cluster tables, so here we need Abaper to write program. For OM , PA and TM can we extract via Se16/ Se16n .
    Thank you very much in advance.
    Regards
    Vicky

  • SAP oil&gas - where to start - Any advice on manuals/guides

    Hello Gurus
    I am new to Oil and gas and intend to pursue this segment for the future. I am an experienced computer professional (10+ years) I am fairly well versed with SAP-MM although experience is limited. I am keen to make a career in SAP Oil and Gas - possibly Upstream or Downstream whichever is possible to learn. I am in the midst of registering myself for a course  in Oil&Gas Accounting or Joint venture analyst. I have not found any course for Downstream. With that said, I have even rented a SAP Oil&gas server to practice. The problem is that I need to get some guidance as to how to go about this in a methodical way.
    I have started to read the manuals along side the SAP - JVA guide that they use for training at SAP. However, there is no step by step guide/manual provided by SAP to really practice or build in order to learn and get a from grasp of the subject. I have found some configuration steps in the SAP Oil&Gas online help files or MySAPOil&Gas while reading. However, the reading of the manuals and online help is only theoretical. One needs some exercises to be performed in order to get a grasp of what is what. Where to start, what to configure outside of basic set-up and why?.
    Would anybody be able to guide me as to how to pursue my goals?.
    1. Is it possible to learn JVA by using the SAP training guide?.
    2. Is it possible to learn TSW by using the SAP training guide?.
    3. Does the system need to be configured and set-up before one can use the SAP Oil&Gas server?. - What specific configuration would be required for Downstream outside of the default configuration after installation.
    4. What sort of configuration / set-up would be required for JVA?.
           (I am aware that every joint venture is different - partner, operator, Eguity group and even Equity)
       a. will the creation of company codes be the usual route as in other SAP modules?.
       b. Is there any special set-up or configuration within the JVA menu for this that is in addition to the normal creation of company code and Enterprise structure?.
    5. Is there any book or manual that can provide additional information as to how to go about learning this subject in order to practice?.
    6. What special requirements are required to learn the downstream module apart from the manuals?.
    7. Can one really learn SAP upstream/Downstream in 30-40 hours being promised/provided by most so called training providers in Bangalore/Hyderabad?.
    I am seriously looking forward to hearing from experienced professionals. I'd appreciate if contributors avoid one or two line statements as I would like to make the thread more meaningful for me and for others in a similar situation.
    Thank you for you help and assistance.
    Cecil

    Cecil:
    each module inside has one sap training module linked to it. I believe the questions you are asking aren't really important when it comes to starting your career path in IS oil. Everything is possible, but to certain extent. You can learn the basic from the training, but to apply that to the business situation, industry experience is needed.
    with training guide, you obtain the basic background and knowledge on terminologies. To become an expert, you need the working experience and lots of researching online.
    Most times Oil and Gas companies use some of the modules provided by Is Oil, for example, TSW and MAP are common ones. If you have time, start with these ones before you lost yourself in all the modules.
    I can ask the following questions.
    5. Is there any book or manual that can provide additional information as to how to go about learning this subject in order to practice?.
    Training is high cost but not necessary. The training manual starts with IOG follows with three digits, you can do some research and learn on your own. If you can't get your answer by searching online, then pay some money to let professionals lead you into the door
    6. What special requirements are required to learn the downstream module apart from the manuals?.
    knowledge on supply chain management, especially in Oil and gas industry. that being said, SAP SD&MM knowledge is often associated and required.
    7. Can one really learn SAP upstream/Downstream in 30-40 hours being promised/provided by most so called training providers in Bangalore/Hyderabad?.
    Define learn. enough to get yourself inthe door and equip you with enough knowledge to explore on your own? yes. enough to teach you enough to handle job tasks? no.
    in SAP start up phase, learning is an endless topic, after two years, you are still learning.
    Hope these helps

  • How to - Extract data from Cloud For Customer into SAP HANA system

    Hello Community,
    I have a requirement for extracting the existing data from Cloud for Customer into separate SAP HANA Box.
    Is it possible to achieve the same ? If yes, Please guide me for the same.
    Awaiting quick response.
    Regards
    Kumar

    Hi Kumar,
    In addition to what Thierry mentioned you could also use the C4C integration via standard Operational Data Provisioning (ODP) interfaces. This integration was acutally built for SAP BW and allows you to access any C4C data sources. From my perspective you can also build upon that for a native SAP HANA integration. Please also have a look at this guide: How To... load SAP Business Suite data into SAP... | SAP HANA.
    Besides that question let me also add the following: SAP Cloud for Customer already runs on SAP HANA since Nov. 2013. You may also use the powerful built-in analytics within C4C for analyzing data and any of your reporting demands. If your report should consider external data as well, you can combined the existing C4C data source with an external, so-called Cloud Data Source. More infomation is published in the C4C Analytics Guide: http://help.sap.com/saphelp_sapcloudforcustomer/en/PDF/EN-3.pdf.
    I hope this helps...
    Best regards,
    Sven

  • Reg.SAP Oil & Gas Certification

    Hi all,
    I need all your suggestion.
    I am looking to do SAP IS Oil & Gas Certification.Rightly I am working as SAP PP Consultant.I have good domain experience of 5 years in manufacturing industry covering all Functions but maximum experience in Production and I have 2.5 years experience in SAP PP Module & SAP Businessone.
    Rightly I am interested in doing SAP IS Oil & Gas certification.I want to know from you all that howz the Job scope for SAP IS oil & Gas.Is my decision of doing Oil & Gas certification for my sort of Experience will be useful or not.Since the Cost involved for certification is huge without knowing the scope doing certification wonu2019t help.
    If my decision is right means which module of IS Oil & Gas is optimum to do Certification(Such as PRA,Upstream Downstream) and how much effort to be taken for it.Is it easy or difficult to do certification for my experience.
    I am in India.I am aware of that only Bharat Petroleum is Conducting course & certification for SAP Oil & Gas and its also only for Primary & Secondary Distribution.
    Please give your valuable suggestion.
    Thanks in Advance,
    M.Badrinarain.

    Hi ,
    There`s a certification called TIOG10 - Oil & Gas Business Processes. You can find the details of the course & schedules
    here : http://www.sap.com/services/education/certification/globaltabbedcourse.epx?context=%5b%5b%7cTIOG10%7c%7c%7c082%7cG%7c%5d%5d%7c
    Regards, Jerin.

  • SAP - Oil & Gas RLM

    Hi,
       I am new to SAP.  I came from SCM background.  I have some knowledge on APO-DP/SNP.  I am thinking to move to Oil & Gas and I believe RLM is close for me.
       I wonder how RLM module is doing in the market.  How are the implementations for this module. 
       Can somebody throw some light on this?
    Thanks In Advance
    Girish

    Hi Girish,
    i think the best way to get in to this module by knowing some of the business process, such as Exchange business flow, Stock transport order, delivery process, packaging, Cross docking etc.
    you can find the link
    http://help.sap.com/saphelp_oil472/helpdata/en/83/496c3a411aab70e10000000a114084/frameset.htm
    OGSD Oil and Gas seconday distribution is also good to know, along with the RLM
    As per the training is concerned there are much to go through if you know the above mentioned business process you can do the configuration.
    hope this may be useful
    BR
    SATISH
    Edited by: Satish Naik on Jul 21, 2008 7:47 AM

  • SAP OIL & GAS MODULE

    Greetings to everybody:
    We are considering acquiring a SAP OIL & GAS module as part of a FI implementation of SAP ERP. I would like to have some information about this module, structure along the SAP infrastructure, and success stories about previous implementations.
    Papers and all the information that you can provide me will be helpful to me.
    Thank you in advance
    Oscar

    Hi Friends,
                            Can anyone tell me how to access SAP Oil and Gas Functionality in SAP System.
    Is there any Specific Transaction Code. Please inform. Because I cannot find the Production and Revenue Accounting and other related functionality in SAP System.
    thanks
    Pavan

  • Oil & Gas construction business.

    Hi,
    What all scenarios may be there pertains to SD module for Engineering & Construction relted company?
    company is into oil & Gas construction projects.
    Reg,
    amol

    Hi,
    http://help.sap.com/saphelp_oilgas61/helpdata/en/08/5c5641988e8247e10000000a1550b0/frameset.htm
    Project, document, and product data management
    Sourcing and procurement
    Process manufacturing models and processes
    Sales and service delivery
    Postsales support
    Traceability, environmental compliance, and quality management
    Inbound/outbound logistics and inventory management
    Financials and controlling
    Regards,
    Saju,S

Maybe you are looking for

  • How to merge calendar month dimension on dashboard??

    Hi All can anyone get me solution for below issue? Report : Vendor Performance Reporting tool : Dashboard Selection : Vendor1 Requirement : Should show the report as you see in pic 1 1. I have three different KPI's which has to be shown in same table

  • Print jetform in duplex mode

    Hi! We have a multipage jetform (designed using Adobe Output designer) called from smartform. User has requested to print the pages as duplex rather than single page printing. I explored all the options of setting "Output option" at the smartform pag

  • I open FCPX, see Events and Projects, then they disappear

    Here's what's going on: 1. Was using macbook to edit, via an external drive (with events and projects folders on root level) 2. Tried using Imac to edit, so I closed everything out,  Unmounted  drive and mounted it on iMac before opening Final Cut. 3

  • Using a custom login page for the portal

    Hi all, I'm currently doing a migration from Plumtree 4.5WS to Plumtree 5.0.4. In the current 4.5WS portal, I'm catering to 3 different login mechanisms due to time-lags in migration of my users' workstations. The 3 mechanisms are: 1) Smart Card Read

  • Chinese language support for adobe reader for HP WEBOS?

    is there any traditional chinese language support for adobe reader for HP WEBOS? if yes, where can I download?