Custom BW extractor - SOLMAN

Hello experts,
I want to create custom extractors for solman service desk, but i dont khown where the information is stored.
¿someone  have the ERD of solman or the tables list where de information is save?.
Regards

Hi,
someone  havetheERDofsolmanor the tableslist where de information is save?.
check the table  E2E_ACTIVE_WLI
Thanks
Jansi

Similar Messages

  • Custom delta extractor: All data deleted in source table in R/3

    Hi everyone,
    I have made a custom delta extractor from R/3 to a BW system. The setup is the following:
    The source table in R/3 holds a timestamp, which is used for the delta. The data is afterwards loaded to a DSO in the BW system. The extractor works as expected with delta capability. Furthermore if I delete a record in the source table, this is not transmitted to the DSO, which is also as expected.
    The issue is this however: If we delete all data in the source table, then on the next load there is a request showing 1 record transfered to the DSO. This request does, however, not show up in the PSA, and afterwards all data fields in the DSO is set to initial.
    Does anyone know why this happens?
    Thank you in advance.
    Philip R. Jarnhus

    Hi Philip,
    As you have used generic extractor I am not sure how the ROCANCEL will work but you can check the below link for more information,
    [0RECORDMODE;
    Regards,
    Durgesh.

  • Is it Possible to Create Custom Report in SOLMAN

    Hi Experts,
                         I am new to SOLMAN. I have one question. Is it Possible to create our own custom Reports in SOLMAN. If possible
    tell me the variuos types of reports and how we can create.

    Hi
    SAP Solution Manager can be used for entire ALM so you need to clearly specify which area and what report you are talking about
    http://www.sdn.sap.com/irj/sdn/alm-getting-started
    General transaction code for reporting is
    SOLAR_EVAL
    it helps you to build the entire project report phase wise or for service desk or for charms or test management etc
    check if that you are looking for.
    regards
    Prakhar

  • Creation of custom Infocubes, extractors and multiprovider

    Hi all,
            Can somebody give me the information regarding the creation of custom Infocubes, extractors, and multiproviders. It would ne great if you could give me some examples regarding the above in SD.
    Thanks,
    Sekhar

    We will go for the creation of custom infocubes
    when the existing business content doesnot suite your requirement.
    when u r using the one existing business content extractor and u need the same requirement for another cube u can create your own extractor of the same type without changning the existing one.
    we will use multiproviders for reporting purpose.  suppose if u are having some 3 infocubes and u want to display the fields from the 3 cubes then go for the creation of multiprovider.

  • Custom build extractor

    Hello Guru’s
    I am working on Custom Build Extractor through functional module. I have executed the functional module and I got the re cords required.. In RSO2 , I have included  functional module and extract structure  and activated that. But in rsa3 , if I am giving data records per call as 1000 and display extr call as 1 I am getting same amount of records what I want but If I give data records per call as 1000 and display extr call as 10 ,I am getting around 10 times what the records I want. I don’t know what may be the reason. Can any one say where I am going wrong.
    Functional module code : FUNCTION ZFI_COSS_COSP.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_ISOURCE) TYPE  SBIWA_S_INTERFACE-ISOURCE OPTIONAL
    *"     VALUE(I_REQUNR) TYPE  SBIWA_S_INTERFACE-REQUNR
    *"     VALUE(I_MAXSIZE) TYPE  SBIWA_S_INTERFACE-MAXSIZE DEFAULT 1000
    *"     VALUE(I_INITFLAG) TYPE  SBIWA_S_INTERFACE-INITFLAG OPTIONAL
    *"     VALUE(I_UPDMODE) TYPE  SBIWA_S_INTERFACE-UPDMODE OPTIONAL
    *"     VALUE(I_DATAPAKID) TYPE  SBIWA_S_INTERFACE-DATAPAKID DEFAULT
    *"       50000
    *"     VALUE(I_RLOGSYS) TYPE  SRSC_S_INTERFACE-RLOGSYS DEFAULT SPACE
    *"  TABLES
    *"      I_T_SELECT TYPE  SBIWA_T_SELECT OPTIONAL
    *"      I_T_FIELDS TYPE  SBIWA_T_FIELDS OPTIONAL
    *"      E_T_DATA STRUCTURE  ZCOSS_COSP OPTIONAL
    *"  EXCEPTIONS
    *"      NO_MORE_DATA
    *"      ERROR_PASSED_TO_MESS_HANDLER
    Tables : coss, cosp.
    select  objnr gjahr kstar vrgng  beknz  bukrs   geber    wog001    wog002    wog003   wog004  wog005
                 wog006 wog007 wog008 wog009 wog010 wog011 wog012 wog013
                 from coss into table E_T_DATA.
    select  objnr gjahr kstar  vrgng   beknz   bukrs    geber
                 wog001   wog002   wog003   wog004    wog005   wog006
                 wog007   wog008   wog009   wog010    wog011    wog012
                 wog013  from cosp appending table E_T_DATA.
    ENDFUNCTION.
    Extract structure = zcoss_cosp.
    If I need to do any modification in the code plz let me know where and what I have to modify.
    Thanks
    Sam

    Hi,
    I think you need to change the code with passing buffer size into the code. You can insert following three line in your code before selection of the data.
    S_S_IF-REQUNR    = I_REQUNR.
    S_S_IF-DSOURCE   = I_DSOURCE.
    S_S_IF-MAXSIZE   = I_MAXSIZE.
    Check and define all import,export,changing and table parameters for function module.
    Hope it helps.
    Regards,
    Aditya

  • Difference between Customer Generated Extractors and Generic Extractors

    Hi all,
            Can anyone please tell me the difference between Customer Generated Extractors and Generic Extractors.  I know that for all modules Generic extraction is possible by creating a datasource(RSO2) on top of a table, View or SAP Query in SE11.  What are customer generated extractors like LIS, CO/PA and FI/SL. 
    What kind of extraction is used for FI/AR and FI/AP.  To my understanding we have BW Content Extractors.  Can anyone explain the extraction method and delta extraction for AR and AP.
    Thanks,
    Sabrina.

    Hi,
    Customer generated extractors are running on top of statistics data collection process in R/3. They extract data from statistical tables already available in R/3 and also use the mechanism already provided in R/3 to capture the delta.
    For example, PO data goes to statistical table S012 (it is an LIS table) and you can build a generated extractor on top of it. The difference between such extractor and a generic one is the fact that these extractors (eg LIS) use the same mechanism of capturing delta that the statistics table was doing (for example data that goes into S012 is also captured by these generated extractors). Some system tables and structures are generated automatically to support this functionality, you do not have to develop anything for this.
    Generic extractors on the other hand simply let you pull data from table/view/query etc. You have to develop code/functionality to support delta capturing for such extractors. If you built a generic extractor on top of S012 (it is a statistical table - LIS), you can pull its data to BW, but you do not have the delta capturing functionality in such case, you will have to code it yourself.
    As a thumb rule, you go with the standard/generated extractors, and use generic extractors only if it is necessary to be so.
    FI/AR and FI/AP extractors are part of business content (I think) and support delta functionality. To get detailed info on these, you can also look at help documentation -
    http://help.sap.com/saphelp_nw04/helpdata/en/ee/cd143c5db89b00e10000000a114084/frameset.htm
    cheers,

  • Using BW Content Extractors, BW CUSTOMER GENERATED EXTRACTors

    Hi all,
    Can anyone tell me in which circumstances do we go for BW Content Extractors or BW Customer generated extractors.
    what is the difference between both these extractors.
    Thanks,
    Maddy

    Hello,
    Re: Difference b/w  BW content  extractors n customer generated extractors?
    Difference between Customer Generated Extractors and Generic Extractors
    Hope it will help you.
    Regards,

  • Business content Extractors and customer generated extractors

    Hi Gurus,
    I have following doubts on Extractors can u please clarify the following
    1) what is the difference betwwen Business content Extractors and customer generated extractors?
    2)why FI-GL and COPA are called as customer generated extractors ?
    3)what is the difference between FI and Fi-sl and why FI-SL comes under customer generated extractors Extractors why not FI ??
    Regards,
    Nagarjun.

    Hi,
    You will go for Business Content extractor when the Customer requirement match with the content extractor delivered by SAP, other wise you will customize or create a Generic Extractor.
    Check the below link:
    http://help.sap.com/saphelp_nw70/helpdata/en/42/c9bd342fdf1368e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a66d5e07211d2acb80000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c1/ea683cc5e8ca68e10000000a114084/content.htm
    i am not sure abt the customer generated extractors

  • Customer Service - Extractors & Information

    Hello all,
    Can anybody please give me some information about Customer service in BW.
    Information about the extractors...the tables involved.. The extraction procedure..The reports that you might have worked on...
    Thanks for the help..
    Will assign points..

    Hi Rishi,
    I was just wondering to see if you were able to find enogh information on extracting Customer Service information to BI.  I also have a requirement in my project where I need to pull lot of CS information (like for example, Service Order, Depot Repair, Delivery related information) to BI. Since the standard structures does not have all the information required in one place, we are thinking of going for enhancements.  I just thought I will check with you if you have been successfull in implementing any of these,  I would really appreciate if you can share that information.  
    Thank You
    SSV.

  • What's the Relation Between General Ledger and Customer Balances Extractors

    Hi SAP Gurus,
                        Anybody explain the relationship between General_Ledger, Accounts_Payable and Accounts_Receivable Data Extractors ?

    Hi,
    Relationship in what sense?
    All are timestamp based delta datasources, with After image delta.
    *Settings for them are controlled centrally in same BWOM tables. http://help.sap.com/saphelp_bw33/helpdata/en/af/16533bbb15b762e10000000a114084/content.htm
    *In a way AP & AR data are subset of GL data (as documents are posted to GL accounts). In simple, all Document items with Vendor or Customer linked are fetched in AP & AR.
    But extractors pick the data from indexed BSIK/BSAK and BSID/BSAD tables respectively and not from BSEG table (GL Line Items).

  • Charm - customizing landscape in SolMan

    Hello,
    I want to start working with ChaRM at at customer.  I would like to setup a "satellite system" that simulates a real DEV, QA, PRD.  We don't want to touch the current productive route, nor moving things into production while we test Solman.
    I suggesting a new logical system (ERP) pointed to three different clients.  However we are running out of server boxex.  One of the possibility is to have any ERP Sandbox available and then create these three additional  clients (500, 600, 700).  Then create a transport route for these three clients. 
    In this way we are going to have teh possibility of testing charm tickets for client-dependent customizing before moving to the real productive route.
    Do you see any other alternative for this type of simulation and training?  Do you have any example of a landscape for Solution Manager configuration and testing??.
    I appreciate your help
    Esteban Hartzstein

    Hello Esteban,
    I have been testing ChaRM this way for many customer for 2 years and it works perfectly... If you have only one system available I don't see any other way to do it.
    Regards,
    Stéphane.

  • Custom ABAP extractor question

    Hi Geeks,
    I have written an ABAP report for a custom extractor.
    My report pulls all necessary data & modify table ZTABLE.
    Now I want to trigger event in BW using RSSM_RAISE_EVENT.
    which I will use to trigget process chain in BW.
    My question is how BW will recognize my report as custom extractor?
    I am not using RSO2 , I am bit confused abt it.
    Can anybody clear my understanding about how to go abt defining custom extractors using ABAP report, what r the steps..I know how to write the code & I have my code ready
    Thanx in Advance.
    Monica

    Hi Monica,
    You have to create a generic extractor.
    Go to transaction RSO2 on your source system.
    Fill in a name for the extractor.
    In the next screen you have to choose for Extraction with Function Module. If you place you cursor on the FM field and push F1 (Help) you get an example of a FM: RSAX_BIW_GET_DATA_SIMPLE.
    Copy this FM and change the logic for collecting the data in itab e_t_data.
    Cheers,
    Patrick

  • Source System BW - what is "Customizing for extractors" etc.

    Hi,
    Can somebody explain IN DETAIL what is the purpose of
    1)Customizing for the extractors
    2)Transfer Global settings
    3)Transfer exchange rates
    I could not find any documentation in help.sap.com. Is there any documentation?
    thanks a lot

    Jay,
    1)Customizing for the extractors
    This is to modify/control the data transfer settings of the particular source system. It takes you to the SBIW screen (Implementation Guide) directly in the source system. Here you can control your datapacket size, number of datapackets for each IDoc etc. From this screen, you cal also maintain the datasources. All the activities realting to 'maintenance of datasources' can be accessed from here.
    2)Transfer Global settings
    Global tabls such as Fiscal Period tables, Fiscal variant values are transferred to BW from the R/3 system where they are maintained. Do a lookup on tables T00* in SE11 and you can see a bunch of tables.
    3)Transfer exchange rates
    Similar to the above tables, different exchange rates are maintained in the R/3 system. These gets transferred to BW. tables such as TCURR, TCURC, TCURV etc. These are called Global settings.
    Hope it helps
    Gova

  • CRM - CSAT  Extractors  ( Customer Satisfaction Extractors )

    Hello All,
    We are Implementing CRM , and I need to Extract the data from CSAT Extractors to BW . I think the name CSAT is Project Specific.
    Can anyone help me in understanding the overall Functinality, which Datasources I need to look in .
    Thanks & Regards

    Dennis
    Thanks for your reply. I found many usefull information in the link that you informed. Data Sources on Controlling, Financial Accounting, Human Resources, CRM and other subjects. But only description.
    I'm more focused on the conceps and processes od Data Extraction.
    I'm quite well informed on LO Cockpit (Negro's blogs, OSS Note 505700, power point, many threads).
    LO Cockpit has many special concepts and processes (setup table, delta queue, delta processes ABR, AIE, ADD, restructuring, Collective Run, etc). But have seen almost nothing on SAP Help.
    I know that FI-SL and CO-PA have other concepts, and that there are specific processes for creating the Data Sources. I didn't find detailed documentation about these concepts and processes on SAP Help. The same for LIS (although outdated).
    And the other BC Data Sources, how do they work? Do the control Delta? If not, how can we control it? By selection criteria, using safety limits?
    I would d appreciate an indication on these themes.
    Thanks
    César Menezes

  • Customizing an Extractor

    Dear All,
    we need to modify the standard R/3 data extractor in order to extract an additional information that, at the moment, it is not taken from R/3.
    Could you please provide me the best way to do that task?
    Thank you in advance,
    Regards,
    R.C.

    We created our datasource in R/3 and we created an extractor. All went fine.
    In BW we replicated the DataSources and we were able to see the new datasource.
    Then we created an InfoSource pointing at our new datasource and an ODS. The problem is that when we tried to create the update rule for the ODS the following messagge appeared:
    "InfoObject 0recordmode is missing from the InfoSource"
    We went in the infosource and we try to add that infoobject but we do not know how to manage it.
    In the standard structures (Warranty Claim Header/Item) that infoobj is not managed.
    Regards,

Maybe you are looking for

  • Address Book Access While Composing

    Is it true you can't access the address book while composing an email? And once in address book, you can't send to multiple receipients? This udated application seems like a giant leap backwards! Someone please tell me I'm crazy!

  • Ooops...I manually moved iTunes music folder to my new external hard drive

    So I thought I was smart and manually moved my iTunes music folder to my new external hard drive. I've changed the location in Preferences but can't locate my music through iTunes. What do I do now? My library is on my external hard drive, but I read

  • HCM Event Manager is not visible in HRMS 9.1

    Hello Everyone, We are trying to access below : Set up HRMS > System Administration > HCM Event Manager but the HCM Event Manager is not visible to me.Also when I tried to access the objects in Application designer like HCM_EM_MONITOR component and o

  • Will the iPhone 6 ever support the BLE feature of the Keiser M3i exercise bike like it does for the Polar H7?

    The Keiser M3i and the Concept 2 Rowing Ergometer feature BLE but are not recognized natively on the iPhone's bluetooth menu Is there a chance of this being changed on an update of IOS?

  • Failed formatting

    Does anybody know what the following message means? "Formatting was not successful. The image exceeds the maximum allowed size for a dual-layer configuration. What does it mean by IMAGE? Thanks Javp powermac g5   Mac OS X (10.3.9)   dual 2 GHz, 2 GB