BI Content Datasources' ABAP Logic

Dear Friends,
Where and how can I find the BI Content Datasources' ABAP Logic. I am particularly looking for the code for 2LIS_03_BX, 2LIS_03_BF and 2LIS_03_UM.
Thanks!

Hi,
Go to transaction RSO2 (Generic datasources) in ECC, put the datasource name in the transaction data field and click on display, then you will get a warning message at the bottom of the screen like below:
datasource 2lis_03_bf is extacted using function module mcex_bw_lo_api
likewise you can check for other datasources as well. Go to the function modules in SE37 and check the code there.
Regards,
Murali.

Similar Messages

  • ABAP Logic in Transformations-Start or Field Routine

    Hi Experts,
    As i am new to BW Please update me with the ABAP logic  i need to implement in Transformation routine...and please advise me wether i can use that as a Start or field routine for a better performance.
    Target DSO:
    DSO A : Active Table:/BIC/AZDSOA
    Fields (ZLOC,ZPAY_ID,ZNPAY_ID,ZOPAY_ID & ZCHG_DTE)
    Source DSO
    DSO B : Active Table:/BIC/BZDSOA
    (ZLOC,ZPAY_ID)
    DSO C : Active Table:/BIC/CZDSOA
    Fields (ZLOC,ZPAY_ID,ZNPAY_ID & ZCHG_DTE(date))
    While Transfering Data from DSO B-->DSO A
    It should check DSO C for that ZLOC & ZPAY_ID
    If ZCHG_DTE IS Blank then it should pick ZNPAY_ID for that ZLOC & ZPAY_ID from DSO C and update ZNPAY_ID in DSO A
    if ZCHG_DTE IS not Blank then it should pick ZPAY_ID for that ZLOC & ZPAY_ID from DSO C and update ZOPAY_ID & ZCHG_DTE in DSO A
    ZPAY_ID - Pay ID
    ZNPAY_ID -New Pay ID
    ZOPAY_ID -Old Pay ID
    ZCHG_DTE -Change Date
    ZLOC     -Location.
    Logic in words:
    If Change date is Blank then it should pick new pay id for that Location & Pay Id and update NEw pay id field in DSO A
    If Change date is not Blank then it should pick  pay id for that Location & Pay Id and update old pay id field  & change date in DSO A
    Please update me with releavent code
    Thanks

    It must have something to do with your input variables - I ran this FM locally using my DOB and today's date and it worked fine.
    make sure your input date types are in the correct format for the FM.

  • How to print PDF file content from ABAP in background?

    Hi,
    Is it possible to print PDF file content from ABAP in background?
    I have some PDF content which I need to print it, these PDF files are generated outside the SAP.
    Please have you any suggestions?
    Thank you
    Tomas

    <b><u>Solution:</u></b><br>
    <br>
    The target output device must support PDF print, this is only one limitation.<br>
    <br>
    REPORT  z_print_pdf.
    TYPE-POOLS: abap, srmgs.
    PARAMETERS: p_prnds LIKE tsp01-rqdest OBLIGATORY DEFAULT 'LOCL',
                p_fname TYPE file_table-filename OBLIGATORY LOWER CASE,
                p_ncopi TYPE rspocopies OBLIGATORY DEFAULT '1',
                p_immed AS CHECKBOX.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_fname.
      DATA: lv_rc     TYPE i,
            lv_filter TYPE string.
      DATA: lt_files TYPE filetable.
      FIELD-SYMBOLS: <fs_file> LIKE LINE OF lt_files.
      CONCATENATE 'PDF (*.pdf)|*.pdf|' cl_gui_frontend_services=>filetype_all INTO lv_filter.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          file_filter             = lv_filter
        CHANGING
          file_table              = lt_files
          rc                      = lv_rc
        EXCEPTIONS
          OTHERS                  = 1.
      IF sy-subrc NE 0 AND lv_rc EQ 0.
        MESSAGE 'Error' TYPE 'E' DISPLAY LIKE 'S'.
      ENDIF.
      READ TABLE lt_files ASSIGNING <fs_file> INDEX 1.
      IF sy-subrc EQ 0.
        p_fname = <fs_file>-filename.
      ENDIF.
    AT SELECTION-SCREEN.
      DATA: lv_name   TYPE string,
            lv_result TYPE boolean.
      lv_name = p_fname.
      CALL METHOD cl_gui_frontend_services=>file_exist
        EXPORTING
          file                 = lv_name
        RECEIVING
          result               = lv_result
        EXCEPTIONS
          OTHERS               = 1.
      IF sy-subrc NE 0.
        MESSAGE 'Bad file!' TYPE 'E' DISPLAY LIKE 'S'.
      ENDIF.
      IF lv_result NE abap_true.
        MESSAGE 'Bad file!' TYPE 'E' DISPLAY LIKE 'S'.
      ENDIF.
    START-OF-SELECTION.
    END-OF-SELECTION.
      PERFORM process.
    FORM process.
      DATA: lv_name     TYPE string,
            lv_size     TYPE i,
            lv_data     TYPE xstring,
            lv_retcode  TYPE i.
      DATA: lt_file TYPE srmgs_bin_content.
      lv_name = p_fname.
      CALL METHOD cl_gui_frontend_services=>gui_upload
        EXPORTING
          filename                = lv_name
          filetype                = 'BIN'
        IMPORTING
          filelength              = lv_size
        CHANGING
          data_tab                = lt_file
        EXCEPTIONS
          OTHERS                  = 1.
      IF sy-subrc NE 0.
        MESSAGE 'Read file error!' TYPE 'E' DISPLAY LIKE 'S'.
      ENDIF.
      CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
        EXPORTING
          input_length = lv_size
        IMPORTING
          buffer       = lv_data
        TABLES
          binary_tab   = lt_file
        EXCEPTIONS
          failed       = 1
          OTHERS       = 2.
      IF sy-subrc NE 0.
        MESSAGE 'Binary conversion error!' TYPE 'E' DISPLAY LIKE 'S'.
      ENDIF.
      PERFORM print USING p_prnds lv_data CHANGING lv_retcode.
      IF lv_retcode EQ 0.
        WRITE: / 'Print OK' COLOR COL_POSITIVE.
      ELSE.
        WRITE: / 'Print ERROR' COLOR COL_NEGATIVE.
      ENDIF.
    ENDFORM.                    " PROCESS
    FORM print USING    iv_prndst  TYPE rspopname
                        iv_content TYPE xstring
               CHANGING ev_retcode TYPE i.
      DATA: lv_handle    TYPE sy-tabix,
            lv_spoolid   TYPE rspoid,
            lv_partname  TYPE adspart,
            lv_globaldir TYPE text1024,
            lv_dstfile   TYPE text1024,
            lv_filesize  TYPE i,
            lv_pages     TYPE i.
      CLEAR: ev_retcode.
      CALL FUNCTION 'ADS_SR_OPEN'
        EXPORTING
          dest            = iv_prndst
          doctype         = 'ADSP'
          copies          = p_ncopi
          immediate_print = p_immed
          auto_delete     = 'X'
        IMPORTING
          handle          = lv_handle
          spoolid         = lv_spoolid
          partname        = lv_partname
        EXCEPTIONS
          OTHERS          = 1.
      IF sy-subrc NE 0.
        ev_retcode = 4.
        RETURN.
      ENDIF.
      CALL FUNCTION 'ADS_GET_PATH'
        IMPORTING
          ads_path = lv_globaldir.
      CONCATENATE lv_globaldir '/' lv_partname '.pdf' INTO lv_dstfile.
      OPEN DATASET lv_dstfile FOR OUTPUT IN BINARY MODE.
      IF sy-subrc NE 0.
        ev_retcode = 4.
        RETURN.
      ENDIF.
      TRANSFER iv_content TO lv_dstfile.
      IF sy-subrc NE 0.
        ev_retcode = 4.
        RETURN.
      ENDIF.
      CLOSE DATASET lv_dstfile.
      IF sy-subrc NE 0.
        ev_retcode = 4.
        RETURN.
      ENDIF.
      CALL FUNCTION 'ZBAP_RM_PDF_GET_PAGES'
        EXPORTING
          iv_content = iv_content
        IMPORTING
          ev_pages   = lv_pages.
      lv_filesize = XSTRLEN( iv_content ).
      CALL FUNCTION 'ADS_SR_CONFIRM'
        EXPORTING
          handle   = lv_handle
          partname = lv_partname
          size     = lv_filesize
          pages    = lv_pages
          no_pdf   = ' '
        EXCEPTIONS
          OTHERS   = 1.
      IF sy-subrc NE 0.
        ev_retcode = 4.
        RETURN.
      ENDIF.
      CALL FUNCTION 'ADS_SR_CLOSE'
        EXPORTING
          handle = lv_handle
        EXCEPTIONS
          OTHERS = 1.
      IF sy-subrc NE 0.
        ev_retcode = 4.
        RETURN.
      ENDIF.
    ENDFORM.                    " PRINT

  • Reinstallation of Business Content DataSource in SAP R/3

    Hi All,
    For one of the BCT (busines content) DataSource 2LIS_04_P_MATNR, we notice in our system that the Delta process has been changed from 'ABR' in the delivered version to 'D' in the active version due to which we are not able to have delta loads from this DataSource into an ODS.
    We would like to change this back to the BCT delivered version, i.e. revert to the delta process 'ABR'. After we compare the active version with the delivered version in RSA5 the only difference is in the delta process and some field descriptions. Does anyone have any information on:
    1. How we can reinstall the BCT provided DataSource?
    2. How much time would this take?
    3. Would it impact the current delta process whereby this DataSource is feeding various InfoCubes?
    4. Would we need a reinitalization of delta for the current InfoCubes that this DataSource is feeding?
    Appreciate your inputs.
    Thanks,
    -Rakhi

    Hi Ashwin,
    I was looking through many documents in search of answers to my questions so I do not remember which one I had looked at.
    But, I guess I understood what I read incorrectly. I now manually changed the ROOSOURCE setting for delta process in the development system to 'D' (here the active and delivered version were 'ABR') and then did a 'Transfer DataSource', it changed the ROOSOURCE entry back to ABR!
    So I guess you were right, I will go ahead with this approach.
    Many Thanks for your help...you get my points
    BTW, how does one uninstall the BCT DataSource in SAP R/3?
    Cheers,
    -Rakhi

  • ABAP LOGICAL ERRORS

    Expalin about ABAP Logical errors?
    Help me sending appropriate link to understand more.
    Moderator Message: Read the Rules of Engagement of this forum.
    Edited by: kishan P on Dec 27, 2011 9:50 PM

    Hi Vinay,
         You can't delete the ABAP Runtime errors. But  you can catch the errors using catch exception Statement.
    For Example,
    Class-based exceptions are handled in the following control structure:
    TRY.
      ...                       " TRY block (application coding)
    CATCH cx_... cx_... ...
        ...                     " CATCH block (exception handler)
    CATCH cx_... cx_... ...
        ...                     " CATCH block (exception handler)
      CLEANUP.
        ...                     " CLEANUP block (cleanup context)
    ENDTRY.
    Try This Sample Code,
    *--EXAMPLE FOR RUNTIME ERROR--
    *DATA : VALUE1 TYPE I.
    *VALUE1 = 1 / 0.        -
    >>>>>> IT MAKES RUN TIME ERROR.
    *WRITE : VALUE1.
    *-EXAMPLE FOR HOW TO CATCH THE ARITHMETIC ERROR AT THE RUN TIME USING SUBRC----
    DATA : VALUE1 TYPE I.
    CATCH SYSTEM-EXCEPTIONS ARITHMETIC_ERRORS = 1.
    VALUE1 = 1 / 0.
    WRITE : VALUE1.
    ENDCATCH.
    IF SY-SUBRC = 1.
    WRITE : ' IT MAKES ERROR'.
    ELSE.
    WRITE : VALUE1.
    ENDIF.
    Thanks,
    Reward If Helpful.

  • BI content datasource stopped working - fields gone missing...

    Hi everybody!
    My customer is running a BI content version datasource 2LIS_02_ITM.
    In BI, the transfer structure for this datasource has suddenly stopped working. It's claiming that three fields are not delivered by the datasource in the source system.
    example:
    "Field MCEX_UEBTO will not be delivered from DataSource 2LIS_02_ITM in source system SPPCLNT300"
    So I look in SBIW in R/3. I go to BI Content Datasources and further in to 2LIS_02_ITM. There I can't see the fields that the transfer structure in BI are needing. But when I continue to the extract structure for the datasource, MC02M_0ITM, I can see the fields that I'm searching for. Somehow they can't be chosen in the datasource.
    So this has previously worked for years. When I check the delta queue, I can actually see records which has my desired fields included. So somehow the extraction are still working - my setup in BI are still the same, but it seems that the three fields are no longer included in the delivered version of the datasource in R/3
    Any ideas on how to fix this?

    Solution:
    I went in to table ROOSFIELD. There I found the same thing that I saw in RSA2. The three fields had the attribute 'A'
    So after a little time googling how to change fields in ROOSFIELD - I found this piece of code:
    REPORT ZTEST_ROOSFIELD.
    TABLES: ROOSFIELD.
    UPDATE ROOSFIELD CLIENT SPECIFIED SET SELECTION = u2018Pu2019
    WHERE OLTPSOURCE = u2018<Data Source name>u2019
    AND OBJVERS = u2018Au2019
    AND FIELD = u2018<Field to be made visible>u2019.
    WRITE SY-SUBRC.
    Worked like a charm!
    The fields are once again visible in the datasource - and thus BI is happy again!
    Thanks everybody for contributing to the solution to this problem. Points have been awarded!
    //Anders

  • Missing BI content datasources

    Hi all. I have an issue... I'm trying to activate some BI content datasources, but there are missing a lot of them. Do somebody knows why?
    Here are my system status:
    SAP_BW     700     0017     SAPKW70017     SAP NetWeaver BI 7.0
    BI_CONT     703     0009     SAPKIBIIP9     Business Intelligence Content
    Note: It only happens in my BW DEV system. In BW QAS (same installation) there are all the missing datasources.

    There have not many BI content datasources in BI.
    If you are considering ERP data source, you should check RSA6 in ERP/QAS and Compare it with RSA6 in ERP/DEV.
    Transport all datasources in interests from ERP/DEV to ERP/QAS and replicated them to BI/QAS at once, and you will find the missing BI Content data sources.
    hope it can help.
    regards,
    K

  • Abap logic in Transformation End Routine not working correctly

    Hi,
    I wrote a piece of code but during testing I found out that it doesn't meet my requirement.
    Requirement
    I want to extract Standard_Cost for all sales items that meets the conditon. but at the moment only the first sales item in the DSO is showing.
    I would like the following lines to display in the cube as well since the PLITEM is different.
    201021     PI31     REDBACK     999999A     78,850
    201021     PI31     FLXAAA     999999A     3154,000
    DSO Table
    CALWEEK     PLPLANT     PLITEM     SALESITEM     STRDCOST
    201020     IN06     FLXAAA     557868B     6308,000
    201021     FI24     FLXAAA     557868B     6308,000
    201021     FI24     FLXAAA     999999B     0,000
    201021     PI31     REDBACK     999999A     78,850
    201021     PI31     FLXAAA     999999A     3154,000
    InfoCube
    SALESITEM  PLPLANT       SALESDOC       STRDCOST
    999999A     PI31     1100000911         78,850
    Abap Logic
    Data ld_calweek(6) TYPE n.
    Getting the current week based on the system date.
    CALL FUNCTION 'DATE_GET_WEEK'
            EXPORTING
              date         = sy-datum
            IMPORTING
              week         = ld_calweek
            EXCEPTIONS
              date_invalid = 1
              OTHERS       = 2.
    Data rp TYPE tys_TG_1.
    LOOP AT RESULT_PACKAGE INTO rp.
    SELECT SINGLE STRDCOST FROM /N/ABC_EFG00 INTO
    rp-S_STRDCOST
    WHERE SALESITEM = rp-S_ITEMID  AND CALWEEK =
    ld_calweek AND PLPLANT EQ rp-S_SOURCE.
    MODIFY RESULT_PACKAGE FROM rp.
    Clear rp.
    ENDLOOP.
    How do I resolve this
    thanks

    Hi Vaidya
    Select single will always select the first entry from the source which matched your where condition.
    therefore you are not getting all the required data.
    WHERE SALESITEM = rp-S_ITEMID AND CALWEEK =
    ld_calweek AND PLPLANT EQ rp-S_SOURCE.
    according to your logic
    it will pick only one record e.g
    201021 PI31 REDBACK 999999A 78,850
    201021 PI31 FLXAAA 999999A 3154,000
    item id = 999999A
    plplant = PI31
    in this case it will pick only the first record due to select single will fetch only one record (whichever it gets first and which meets your where condition)
    You need to change your code logic and need to include more fileds which differentiates one record from another who have same valued as in your present where condition.
    Thanks
    Navneet

  • Additional content downloads in Logic not showing up in library

    I am trying to download and install the additional content downloads in Logic which from what I understand includes Jam Packs. I have downloaded and installed everything multiple times but cannot see it appear in the Logic library and cannot use them. Help!
    Message was edited by: trenten7
    I'm not sure how to delete a thread (if you can), but it now works. Logic had to "Index" and restart, and they now appear in library. Good luck to anyone else who searched for answers with this problem!

    Nancy O- thank you for your responses and particularly the information about serverside includes.
    On your second post, you point out correctly that the link to the image is through the Library/images.  That is exactly how the library item appears in the code in my web page.
    Further, the code in the library file appears and is saved as  "images/picture-dot-png" but when it the library item is inserted into html code it appears "Library/images/picture-dot-png".
    Perhaps I am missing an intermediate step?  Are the library items compiled in some way?
    I'm willing to take a look at server side includes, but I'd sure like to get my dreamweaver working right.
    Thanks again.

  • How can I add the audio content cd after logic finished installing ?

    There was an eror installing the Audio Content CD 1 and I did not notice. Everything else installed properly, Audio Content CD 2, Jam Pack, but how can I add the Audio Content CD1 after Logic has finished installing?
    If you can help me please be very specific as to how to do it so that I can follow the directions properly.
    Please help me.
    Thanks

    Hi
    You could re-run the installer, or, once you have updated to Logic 9.1.8 you could use the "Download Additional Content" function in the Logic Pro menu. It will tell you what is installed and what is incomplete.
    CCT

  • Business Content Datasources -Do i need a down time?

    Hello friends,
    quick question folks
    I am going live in Production soon.I would like to know if i need to know if i need to request downtime in R3.
        Master Data
    1) 0PM_MAINTPOS_ATTR
        0PM_MAINTPOS_TEXT
        Transactional Data
    2) 0CO_OM_CCA_3
         0CO_OM_CCA_8
    All four datasources mentioned above business content datasources.They are all full load and no lo related.Do i need to request a downtime for them or do i need to fill any tables or clear any ques for them.
    Please advise,
    Ronit.
    (Points shall be assigned)

    Hi Ronit,
    none of these datasources mentioned below require downtime.
    You can go ahead and load data online and also no table filling is required.
    Naveen.A

  • Pl. provide ABAP logic

    Can any body help me in providing the logic (ABAP logic-infopackage) for extracting data for 6th month considering sydatum.
    Logic should be on Caday.
    Example: If I am executing I/P today i.e. 13.01.2012, I should get the data of 01.06.2011 to 30.06.2011.
    Please help. 
    Thanks in Advance.
    Maddali VSKP

    Hi,
    As I am not core ABAPER, I tried below logic in the development. Logic is working fine. I am getting expected results.
    DATA: l_cur_month(2) type n,
    l_pre_month(2) type n,
    l_cur_year(4) type n,
    z_ppredat type DATS,
    z_ppredat1 type INT1,
    z_ppredat2(8) type n,
    z_ppredat3(2) type n,
    l_pre_year(4) type n.
    data: l_idx like sy-tabix.
      read table l_t_range with key
           fieldname = 'CALDAY'.
      l_idx = sy-tabix.
      l_cur_month = sy-datum+4(2).
      l_cur_year = sy-datum(4).
      l_pre_year = sy-datum(4).
      if l_cur_month >= 7.
        l_pre_month = l_cur_month - 7.
      endif.
      if l_cur_month <= 6.
        l_pre_year = l_cur_year - 1.
        l_pre_month = 12 - ( 7 - l_cur_month ).
      endif.
      break-point.
      concatenate l_pre_year  l_pre_month  '01'
      into z_ppredat.
      CALL FUNCTION '/OSP/GET_DAYS_IN_MONTH'
        EXPORTING
          IV_DATE       = z_ppredat
        IMPORTING
          EV_DAYS       = z_ppredat1 .
          z_ppredat3 = z_ppredat1.
      concatenate l_pre_year  l_pre_month z_ppredat3
      into z_ppredat2.
    concatenate  "l_pre_year  l_pre_month  z_ppredat1" into z_ppredat2
      l_t_range-sign = 'I'.
      l_t_range-option = 'BT'.
      l_t_range-low = z_ppredat.
      l_t_range-high = z_ppredat2.
      modify l_t_range index l_idx.
      p_subrc = 0.
    Request you to help me to validate the logic.
    Thanks in Advance,
    Maddali VSKP

  • Abap logic for lookup

    Hi all,
    I have a requirement where i need to lookup for a value in ods1 and based on that value i should update in ods2. can anyone help me with any abap logic --- is there one for look-up ? any sample code would be really helpful.
    ~rahul

    the following method will give the ODS table name
    CALL METHOD cl_rsd_odso=>get_tablnm
                     EXPORTING
                       i_odsobject   = <ods name>
                       i_tabt        = '0'
                     IMPORTING
                       e_tablnm      = ods_tab_name .
    do a select from the ODS table to find whether infoobject A is there and get the value and based on that update ods2.
    Regards
    Raja

  • Activation of Business Content Datasources in CRM Source system

    Hi,
          My Requirement is to activate all Datasources in CRM Develoment server.I have select the entire node in RSA5 and click "Activate Datasources".But for each Datasources system is askin for develoment request.Is there any procedure to activate all Datasources with single Development Request.
    Regards
    Vishal

    This section describes the general settings necessary for BW Integration in CRM.
    If CRM is not involved in your scenario skip this section.
    Transferring Application Component Hierarchy (CRM)
    Procedure
    This step has to be carried out in the CRM system.
    IMG Menu     Integration with Other mySAP Components &#61664; Data Transfer to the SAP Business Information Warehouse &#61664; Business Content DataSources &#61664; Transfer Application Component Hierarchy
    Transaction code     RSA9
    Confirm the security check: Do you want the content application Transfer Component Hierarchy? with YES.
    If a dialog box appears requesting the user to enter a development class, enter a development class in the customers namespace and choose Save or choose Local object.
    If no error message is sent the application component hierarchy has been transferred successfully.
    Cross Connectivity:
    It describes all settings that are necessary to connect the components of the SAP.system landscape with each other. The settings for each combination of two components to be connected are described in a separate structure node. The separate section headings make it possible to identify the activities required to connect certain components with each other. The section headings for components that are not part of the installation can be skipped
    Connecting SAP BI with SAP ERP, SAP CRM
    Procedure
    To carry out the activity, choose one of the following navigation options in the SAP BI system:
    Transaction Code     RSA1
    SAP BI Menu     Modeling &#61664; Data Warehousing Workbench: Modeling
    1.     Choose Modeling.
    2.     Choose Source Systems.
    3.     Select SAP in the window on the right.
    4.     Choose the Context menu (right mouse click).
    5.     Choose Create.
    6.     Make the following entries:
    Field     Entry
    Target computer (server)                            Server of the SAP ERP, SAP CRM or SAP SRM system
    System ID     System ID of the SAP ERP, SAP CRM or SAP SRM system
    System number     System number of the SAP ERP, SAP CRM or SAP SRM system
    Background user in source system     RFCUSER
    Password for source system     welcome
    Background user in BI     RFCUSER (can not be changed in this activity)
    Password for BI user     welcome
    9.     On the dialog box Please log on as an administrator in the following screen choose Continue.
    10.     Log on to the Source System with your administrator user. Choose the correct client.
    11.     On the dialog box New Source System Connection choose Continue.
    12.     On the Replicate Metadata dialog box, choose Only Activate.
    The building block CRM Lead Analysis describes the all the required activities to analyze the Marketing Lead Analysis data from SAP CRM in SAP Business Information Warehouse.
    The analysis is carried out with the following queries of the InfoCube 0MKTG_C01 CRM - Lead Management (SAP BW Business Content).
    The Lead Management InfoCube contains all the characteristics and data used for the administration of leads. This InfoCube enables you to execute the following standard queries available in SAP BW:
    1.     Channel Analysis: This query is used to determine the best channels by which business partners are contacted in the context of a marketing campaign. Following each marketing campaign, the lead manager can compare the success of a given channel to those of others.
    2.     Efficiency Reporting: This query is used to analyze the efficiency with which leads are qualified. By navigating to the sales organizations and the responsible employees for the leads, it is possible to assess how efficiently lead teams are working and to identify areas for improvement.
    3.     Historical Evaluation: Use to help analyze and compare leads over different intervals (comparison of different quarters or years for example) to see if general characteristics in the processing of leads can be identified for these periods.
    4.     Lost Leads: Provides an overview of the number of lost leads in a particular period and the reasons (implemented as a navigation characteristic) for the loss of the leads. This query is used to analyze the main reasons why leads might be lost, with a view to developing new strategies for overcoming these weaknesses.
    5.     Channel Mgmt.: Top-n Lost Leads (Current Year): In a Channel Manager Portal, this query provides an analysis of the leads lost by a Channel Manager over the past 12 months. Channel Managers can also view the leads lost by their Channel Partners. In a Partner Portal, this query shows the top-n unsuccessful leads distributed by a Channel Manager to a Channel Partner. Partner Manager can see the lost leads of the Partner Employees over the year. Partner Employee can view his lost leads over the year.........
    Before starting activities in this building block, you need to perform or check the following steps:
    1.     From the BW Connectivity building block the following activities have to be completed:
    a.     Local Settings è SAP CRM: all activities have to be completed.
    b.     Local Settings è SAP BW: all activities have to be completed.
    c.     Cross Connectivity è Connecting SAP BW with SAP R/3, SAP CRM, SAP SRM: Connect your CRM System.
    2.     From the General Settings for BW Integration building block the following activities have to be completed:
    a.     In section General Settings in CRM all activities have to be completed.
    b.     In section General Settings in SAP BW all activities have to be completed.
    Hope it will helps you........

  • BI Technical Content datasources not found in Quality after transport

    HI All
    I am trying to implement BI technical Content for Admin Cockpit. I was able to implement Technical content Infocubes successfully in development box but when I collected the objects and transported to Quality(collected oblects in seperate requests: info objects in one request, datasources in one request, infocubes, transfer rules and updated rules in one request), I am not able to find the datasources in quality in myself sourcesystem even after repication. but the transport for technical content datasources is successfull. The following are the datasources:
           Comment Entry: Released
           DataSource Replica
               0TCT_DS01                     D17CLNT208
               0TCT_DS02                     D17CLNT208
               0TCT_DS03                     D17CLNT208
               0TCT_DS11                     D17CLNT208
               0TCT_DS12                     D17CLNT208
               0TCT_DS21                     D17CLNT208
               0TCT_DS22                     D17CLNT208
               0TCT_DS23                     D17CLNT208
    can anyone tell me why I am not able to find the datasources in Quality after successfull transport.
    We are on SAP_BW     700   SAPKW70016     SAP NetWeaver BI 7.0.
    thanks

    thanks for your quick responce. I was not able to collect the datasources so I had to manually input them in the transport request. But it worked.
    thanks once again.

Maybe you are looking for

  • F:view causing problem in 11.1.1.4

    Hi, We are facing some problem in our application when we move to Jdev 11.1.1.4 from 11.1.1.3. I have even developed a sample app which works fine in 11.1.1.3 but gives an error in 11.1.1.4. We use <f:view> with a phaseListener inside one of the jsff

  • Load-Balancing with Coherence BackingMapListener, CacheStore etc?

    Hi - I am looking for advice on load-balancing across a cluster. Currently we insert objects into a Coherence cluster. Each storage node also runs a CEP instance. BackingMapListeners detect Coherence insert events, and inject the rows into the local

  • XI Error NO_RECEIVER_CASE_ASYNC.RCVR_DETERMINATION

    My scenario is like this client 010 NumberRangeRequest_Out --> XI --> NumberRangeRequest_IN client 020 and after this client 020 NumberRangeConfirmation_Out --> XI --> NumberRangeConfirmation_Out client 010 when i execute NumberRangeRequest_Out from

  • New firmware of 5320 xm

    V05.16 for which? My product code 0571013. And latest ver is 04.13. Over the air i downloaded v05.16 but it show that it is not supported.

  • N900, How good is it?

    Hi Guy's, New to the boards, and Nokia actually (giving up on Sony Ericsson) I have been looking at the N900 and it seems like a great phone and I'm really looking forward to getting my hands on it. I'm due an upgrade next Monday, and Im in desperate