Date of last extraction from DataSource 0HR_PP_REC_52 is not available

Hi ,
Iam getting another error for data source 0HR_PP_REC_52 , it follows:
Date of last extraction from DataSource 0HR_PP_REC_52 is not available HR_BIW_PP 1
Please help as iam not aware of this type of extrcator.
Thanks in advance.

Hi,
Did you delete the request under scheduler menu of your infopackage?
Scheduler->Init options from the Source system->delete the request
run Init with transfer option now. If it doesn;t help, simply replicate the datasources once and try initializing.
Regards,
Suman

Similar Messages

  • Date of last extraction from DataSource 0HR_PY_PP_2 is not available

    Hello all,
    We are using this data source to extract data for HR in BW. We are currently on BI 7.0
    When I used this datasource in BW development system it worked fine. But now I am trying to extract data using the same datasource in BW QA system and I am getting this error.
    "Date of last extraction from DataSource 0HR_PY_PP_2 is not available     HR_BIW_PP"
    The datasource is delta supported so I am trying to init it, and thats when I am getting this error.
    Has anyone seen this message before, can some give some suggestions?
    Thanks in advance

    Just quick check, check rsa3 if you can get any data and  also it seems like it is complaining about changes in extract structure, can you compare the extract structure of the two system manually? If you have made changes to the extract structure, did you move that change in the source system? Sometimes it worth it to replicate the datasource and reactivate the transfer structure using program RSActiTran.
    thanks.
    Wond

  • Data Transfer using DataSink from DataSource to MediaLocator not working

    I wrote this pretty straightforward program to transfer from a DataSource to a MediaLocator and when i run it nothing happens. I waited for around 10 minutes and still nothing happened. I manually closed the program to see if any data has been transferred to the destination file but the destination file timpu.mp3 is empty. Can someone tell me why it isn't working?
    import javax.swing.*;
    import javax.media.*;
    import java.net.*;
    import java.io.*;
    import javax.media.datasink.*;
    import javax.media.protocol.*;
    class Abc implements DataSinkListener
         DataSource ds;
         DataSink dsk;
         public void transfer() throws Exception
              ds=Manager.createDataSource(new MediaLocator(new File("G:/java files1/jmf/aa.mp3").toURL()));
              MediaLocator mc=new MediaLocator(new File("G:/java files1/jmf/timpu.mp3").toURL());
              dsk=Manager.createDataSink(ds,mc);
              System.out.println(ds.getContentType()+"\n"+dsk.getOutputLocator().toString());
              dsk.open();
              dsk.start();
              dsk.addDataSinkListener(this);
         public void dataSinkUpdate(DataSinkEvent event)
              if(event instanceof EndOfStreamEvent)
                   try
                        System.out.println("EndOfStreamEvent");
                        dsk.stop();
                        dsk.close();
                        System.exit(1);
                   catch(Exception e)
    public class JMFCapture5
         public static void main(String args[]) throws Exception
              Abc a=new Abc();
              a.transfer();          
    }Message was edited by:
    qUesT_foR_knOwLeDge

    Have thrown this together - so it's not pretty, but should give you an idea
    public class ABC extends JFrame implements DataSinkListener, ControllerListener, ActionListener{
        private Container cont;
        private JButton jBRecord;
        private boolean bRecording = false;
        private Processor recordingProcessor;
        private DataSource recordingDataSource;
        private DataSink recordingDataSink;
        private Processor mainProcessor;
        private DataSource mainDataSource;
         public ABC(){
            super("Basic WebCam Handler");
            cont = getContentPane();
            cont.setLayout(new BorderLayout());
            //     control panel buttons
            jBRecord = new JButton("R+");
            jBRecord.setToolTipText("Record On / Off");
            cont.add(jBRecord, BorderLayout.NORTH);
            //     & Listeners
            jBRecord.addActionListener(this);
            addMyCamera();
            pack();
            setVisible(true);
        private void addMyCamera()
            Vector vCDs = CaptureDeviceManager.getDeviceList(null); //     get Devices supported
            Iterator iTCams = vCDs.iterator();
            while(iTCams.hasNext())
                CaptureDeviceInfo cDI = (CaptureDeviceInfo)iTCams.next();
                if(cDI.getName().startsWith("vfw:"))
                    try{
                        MediaLocator mL = cDI.getLocator();
                        mainDataSource = Manager.createCloneableDataSource(Manager.createDataSource(mL));
                        mainProcessor = Manager.createProcessor(mainDataSource);
                        mainProcessor.addControllerListener(this);
                        mainProcessor.configure();
                        break;
                    }catch(Exception eX){
                        eX.printStackTrace();
         private void startRecording(){
             if(!bRecording){
                  try{
                    System.out.println("startRecording");
                    recordingDataSource = ((SourceCloneable)mainDataSource).createClone();
                    recordingProcessor = Manager.createProcessor(recordingDataSource);
                    recordingProcessor.addControllerListener(this);
                    recordingProcessor.configure();
                    bRecording = true;
                  }catch(Exception eX){
                       eX.printStackTrace();
         private void stopRecording(){
             if(bRecording){
                System.out.println("stopRecording");
                bRecording = false;
                try{
                    recordingProcessor.close();
                    recordingDataSink.stop();
                    recordingDataSink.close();
                }catch(Exception eX){
                     eX.printStackTrace();
        public void actionPerformed(ActionEvent e)
            Object obj = e.getSource();
            if(obj == jBRecord)
                if(jBRecord.getText().equals("R+"))
                    jBRecord.setText("R-");
                    startRecording();
                else
                    jBRecord.setText("R+");
                    stopRecording();
         *     ControllerListener
        public void controllerUpdate(ControllerEvent e)
              Processor p = (Processor)e.getSourceController();
             if(e instanceof ConfigureCompleteEvent){
                   System.out.println("ConfigureCompleteEvent-" + System.currentTimeMillis());
                   if(p == recordingProcessor){
                     try{
                         VideoFormat vfmt = new VideoFormat(VideoFormat.CINEPAK);
                         TrackControl [] tC = p.getTrackControls();
                         tC[0].setFormat(vfmt);
                         tC[0].setEnabled(true);
                         p.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.QUICKTIME));
                         Control control = p.getControl("javax.media.control.FrameRateControl");
                         if(control != null && control instanceof FrameRateControl){
                              FrameRateControl fRC = (FrameRateControl)control;
                             fRC.setFrameRate(30.0f);
                     catch(Exception eX)
                         eX.printStackTrace();
                   else{
                        p.setContentDescriptor(null);
                   p.realize();
             else if(e instanceof RealizeCompleteEvent){
                   System.out.println("RealizeCompleteEvent-" + System.currentTimeMillis());
                   try{
                        if(p == mainProcessor){
                             Component c = p.getVisualComponent();
                             if(c != null){
                                  cont.add(c);
                             p.start();
                             validate();
                        else if(p == recordingProcessor){
                         GregorianCalendar gC = new GregorianCalendar();
                             File f = new File("C:/Workspace/" + gC.get(Calendar.YEAR) + gC.get(Calendar.MONTH) +
                                 gC.get(Calendar.DAY_OF_MONTH) + gC.get(Calendar.HOUR_OF_DAY) +
                                 gC.get(Calendar.MINUTE) + gC.get(Calendar.SECOND) + ".mov");
                         MediaLocator mL = new MediaLocator(f.toURL());
                         recordingDataSink = Manager.createDataSink(p.getDataOutput(), mL);
                         p.start();
                         recordingDataSink.open();
                         recordingDataSink.start();
                   }catch(Exception eX){
                        eX.printStackTrace();
             else if(e instanceof EndOfMediaEvent){
                  System.out.println("EndOfMediaEvent-" + System.currentTimeMillis());
                p.stop();
             else if(e instanceof StopEvent){
                System.out.println ("StopEvent-" + System.currentTimeMillis());
                p.close();
         public void dataSinkUpdate(DataSinkEvent event)
              if(event instanceof EndOfStreamEvent){
                   try{
                        System.out.println("EndOfStreamEvent-" + System.currentTimeMillis());
                        recordingDataSink.stop();
                        recordingDataSink.close();
                   }catch(Exception e){
         public static void main(String args[]) throws Exception
              ABC a=new ABC();
    //          a.transfer();          
    }

  • You do not have authorization to extract from DataSource ZZ_TD_EBAN COMPONE

    Hi,
    Iam facing the problem As
    You do not have authorization to extract from DataSource ZZ_TD_EBAN COMPONENT.
    ERROR IN SUBSTEP
    ERROR IN SUBSTEP
    Error reading the data of InfoProvider ZDP_VIRT..
    I had created a Virtual Infoprovider. and taking the Dat source ZZ_TD_EBAN.
    done the Trasf and DTP. for data source to cube. which was bulit in BI7..
    i can see the flow AS Source system- datasource- virtual provider.
    for virtual provider at run time it picks the data  from source.
    But when i rum the query on this VP iam getting error     as
    You do not have authorization to extract from DataSource ZZ_TD_EBAN COMPONE
    even if i chek data at virtual provider level byclicking  display Data..
    after selecting the fields  once i execute . there aso iam facing the same error. as
    You do not have authorization to extract from DataSource ZZ_TD_EBAN COMPONENT.
    Once i get in tthe error.. i can see the below msg.. but even though not able to solve .. i need your assistence.
    You are not authorized to extract from DataSource ZZ_TD_EBAN in application component: MM .
    System Response
    The authorization check was performed with the following field values:
    DataSource: ZZ_TD_EBAN
    Application component: MM
    Subobject: DATA
    Activity: 03
    Procedure
    To be able to extract from the DataSource, you need authorization for authorization object S_RO_OSOA (authorizations SAPI-DataSource) with the field values specified above.
    Procedure for System Administration
    There is a role template S_RO_OSOA_TMPL (DataSource (OSOA) Display/Maintain/Extract) available that contains the authorizations to display, change and extract all DataSources.
    Pls help mewith your valuable answer.

    Hi ,
    As given in your error message that S_RO_OSOA authorization object is missing . You need to include this auth object in the ID from which you are extracting the data using the TCODE : PFCG . You can ask the basis person to do so for you .
    When you run any report on a virtual infoprovider , you need to give the authorization of the DTP & the transformations apart from your cube and datasource in PFCG so that it can display the output in the report . This setting is only necessary for virtual cubes.
    You can always check the missing authorizations in tcode : SU53 .
    Hope the above reply was helpful.
    Kind Regards,
    Ashutosh Singh

  • Infospoke error +The last extraction for this InfoSpoke is not yet Complete

    Hello Experts,
                      I am receiving the error  "The last extraction for this InfoSpoke is not yet Complete " while starting the load for Infospoke.
    Please advice
    Thanks and Regards,
    Rezwan Asraf Ali

    Hi,
    This error RSBO320 is usually related to an inconsistency of infospoke internal tables which is will need to be reset manually by SAP developers. So you'll probably be best opening a ticket under BW-WHM-DBA-OHS.
    Rgds,
    Colum

  • What features from previous versions are not available in Adobe Photoshop Elements 12?

    What features from previous versions are not available in Adobe Photoshop Elements 12?
    A handful of features from previous versions are not available in Photoshop Elements 12 due to new product support for 64-bit systems.
    Below, we list the features and the easy alternatives available to you in version 12:
    The Magic Extractor ToolAlternative: Use the Quick select tool together with the Refine Edge tool to quickly select and extract anything from your photos.
    Texture Fill
    Alternative: Use the Edit > Fill Layer option and select the "Pattern" option for Contents. You would have to pre load the pattern file with the texture you want.
    Here is a tutorial on how to create a pattern file: http://www.hongkiat.com/blog/creating-custom-pattern-in-photoshop/
    Frame from video (imports a frame from video in PremiereElements)Alternative: Use the freeze-frame feature in Premiere Elements to capture a frame in video and save it as a photo
    Interactive layout mode in Photomerge PanoramaAlternative: None
    Photoshop ShowcaseAlternative: Try Adobe Revel. Elements 12 will let you view and share your Elements photos and videos across smartphones, tablets, and the web, via Adobe Revel.
    Enhance>Adjust Color>Color VariationsAlternative: None specifically, but you can use Auto Smart Tone
    Filter>Render>Lighting EffectsAlternative: None

    I thought Adobe staff only came here in their "spare time"?

  • How can I deactivate a device from Sync, which is not available already?

    How can I deactivate a device from Sync, which is not available already? It would be good to have a list of my synced devices.

    '''To deactivate synced devices:'''
    1. Open the Sync options window.
    2. Click on Deactivate This Device. A prompt will appear.
    3. Click Reset All Information to confirm. Your device's data will no longer be synced with the server's Sync data and you'll be logged out of your Sync account.
    For more Information on Adding, renaming and deactivating your devices
    please follow the link [https://support.mozilla.org/en-US/kb/how-do-i-manage-my-firefox-sync-account?esab=a&s=sync+devices&r=0&as=s#w_adding-renaming-and-deactivating-your-devices Managing Sync Devices]

  • Favorites exported from Internet Explorer are not available in Bookmarks drop down list as they should.

    Favorites exported from Internet Explorer are not available in Bookmarks drop down list as they should. Where can I find them?

    You can usually find the imported IE Favorites in a folder ("From Internet Explorer") at the bottom of the Bookmarks Menu folder (Bookmarks > Organize Bookmarks).
    If you can't find them in the "From Internet Explorer" folder then try this:
    Export the favorites in IE to an HTML file (bookmarks.html): File > Import and Export<br />
    Import the HTML file in Firefox 3: Bookmarks > Organize Bookmarks > Import & Backup > Import HTML: From File
    http://kb.mozillazine.org/Import_bookmarks ("Import from another browser" and "Import from file")

  • Data extraction from datasource-0CRM_SRV_PRO_PLAN

    When we executed query 0CRM_FOCS_Q0002, result was not having any data.
    As this query is related with infocube 0CRM_FOCS, when we checked in RSA1- the datasource related to it was 0CRM_SRV_PRO_PLAN.
    When I checked in RSA3 in CRM system,this datasource showed just 1 entry.
    But this blog-https://scn.sap.com/thread/289692 gave me an additional thought that something should be done to extract actual records.
    Actually what should we do to get complete records from datasource 0CRM_SRV_PRO_PLAN

    Hi
    Talk with someone from CRM team. Did they run a service plan simulation?
    The datasource delivers data that are enabled after you simulate expected  service orders based on existing service plans.The data is only calculated during the simulation can be transferred to SAP BW for further analysis and strategic service planning.
    hope that clarifies
    Martin

  • Processing overdue error during delta extraction from datasource 0CO_OM_CCA

    Hi,
    I'm getting "Processing overdue error" in BW while extracting delta from datasource 0CO_OM_CCA_9. all other extraction jobs from R3 -> BW are successful. Even Delta init on this datasource is successful & problem is only with delta package.
    I appreciate if someone could provide information based on the following error details on this issue.
    here are the extraction steps we followed.
    Full load of fiscal years 2006 & 2007 Into transactional cube.
    load budget data into transactional cube.
    compression of the cube with "0 elimination"
    Delta Initialization with fiscal period selections 1/2008 to 12/9999
    all the above steps were successful.
    and when delta package is scheduled, we are getting following errors.
    BW system log
    BW Monitoring job is turning red with following message.
    Technical : Processing is overdue
    Processing Step : Call to BW
    Sending packages from OLTP to BW lead to errors
    Diagnosis
    No IDocs could be sent to the SAP BW using RFC.
    System response
    There are IDocs in the source system ALE outbox that did not arrive in
    the ALE inbox of the SAP BW.
    Further analysis:
    Check the TRFC log.
    You can get to this log using the wizard or the menu path "Environment -> Transact. RFC -> In source system".
    Removing errors:
    If the TRFC is incorrect, check whether the source system is completely
    connected to the SAP BW. Check especially the authorizations of the
    background user in the source system.
    R3 Job Log
    Even after BW job turns to red, R3 job continues to run for 2 hours and
    eventually gets cancelled with an ABAP dump & here is the log.
    Job
    started
    Step 001 started (program SBIE0001, variant &0000000110473, user ID
    BWREMOTE) DATASOURCE = 0CO_OM_CCA_9
    Current Values for Selected Profile Parameters
    abap/heap_area_nondia.........2000000000 *
    abap/heap_area_total..........2000000000 *
    abap/heaplimit................20000000 *
    zcsa/installed_languages......EDJIM13 *
    zcsa/system_language..........E *
    ztta/max_memreq_MB...........2047 *
    ztta/roll_area................6500000 *
    ztta/roll_extension...........2000000000 *
    ABAP/4 processor: SYSTEM_CANCELED
    Job cancelled
    Thanks,
    Hari Immadi
    http://immadi.com
    SEM BW Analyst

    Hi Hari,
    We were recently having similar problems with the delta for CCA_9.  And activating index 4 on COEP resolved our issues.
    Yes, by default there is a 2 hour safety interval for the CCA_9 DataSource.  You could run this extractor hourly but at the time of extraction you will only be pulling postings through 2 hours prior to extraction time.  This can be changed for testing purposes but SAP strongly discourages changing this interval in a production environment.  SAP does provide an alternative described in OSS note 553561.  You may check out this note to see if it would work for your scenario.
    Regards,
    Todd

  • Hierarchy extract from R3 to BI not successful

    Hi,
    We are in the process of extracting 0ACCOUNT hierarchy from R3. Any of the hierarchies cannot be pulled.
    BI receives 4 info Idocs with one indicating of no of data records to be pulled.
    But, never getting a data package.
    RSA3 shows records. It has only 1586 records.
    Other extractions except for hierarchies are working fine.
    Following is the background job log in R3:
    Step 001 started (program SBIE0001, variant &0000000006432, user ID ALEREMOTEBID
    Asynchronous transmission of info IDoc 2 in task 0001 (0 parallel tasks)
    DATASOURCE = 0ACCOUNT_0109_HIER
             Current Values for Selected Profile Parameters               *
    abap/heap_area_nondia......... 2000683008                              *
    abap/heap_area_total.......... 2000683008                              *
    abap/heaplimit................ 40894464                                *
    zcsa/installed_languages...... ED                                      *
    zcsa/system_language.......... E                                       *
    ztta/max_memreq_MB............ 2047                                    *
    ztta/roll_area................ 3000320                                 *
    ztta/roll_extension........... 2000683008                              *
    BEGIN BW_BTE_CALL_BW204040_E 5,009 2,011
    END BW_BTE_CALL_BW204040_E 5,009 2,011
    BEGIN EXIT_SAPLRSAP_004 5,009 2,011
    END EXIT_SAPLRSAP_004 5,009 2,011
    Asynchronous send of data package 1 in task 0002 (1 parallel tasks)
    IDOC: Info IDoc 2, IDoc No. 279049, Duration 00:00:00
    IDoc: Start = 12.08.2009 14:36:50, End = 12.08.2009 14:36:50
    Asynchronous transmission of info IDoc 3 in task 0003 (1 parallel tasks)
    IDOC: Info IDoc 3, IDoc No. 279050, Duration 00:00:00
    IDoc: Start = 12.08.2009 14:36:55, End = 12.08.2009 14:36:55
    Synchronized transmission of info IDoc 4 (1 parallel tasks)
    IDOC: Info IDoc 4, IDoc No. 279051, Duration 00:00:00
    IDoc: Start = 12.08.2009 14:36:55, End = 12.08.2009 14:36:55
    Job finished
    Thanks in advance,
    Isiri.

    Hi Gary,
    The data flow is correctly enabled. The data packeges doesnot arrive BI at all. ( Not coming to PSA ).
    Could not track using BD87 command. Data package is not getting generated in R3. But info idoc says of data availability.
    Checked job log of R3. It doesn't indicate of generating data packages. Couldn't find any error message as well.
    Following is the message from extraction node of BI monitor.
    "Data packet 000001 had 15876 records selected for it"
    But, with this messsage, the node is red, which has been timeout. Kept running for the whole day.
    It should have come within seconds.
    Thanks,
    Isiri.

  • Filter by "Result from another query" option not available in Webi

    Hi all
    I am trying to filter one query by zipcode based on the results of a previously run query in the same report. However this option is not available on the drop down when I drag zipcode into the filter pane. I am restricted to the options: Constant, Value(s) from a list, Prompt or Object.
    I have "use subqueries enabled" within my universe and the data is held in an RMDBS (i.e. it is not an OLAP universe) so I expected this functionallity to be available.
    I am using XI 3.2 and Java version 1.6.0.15, i.e. up to date.
    Any help would be greatly appreciated.
    Thanks
    Sharon

    Sharon,
    Here is one method to achieve your objective, however, it involves the use of Merge Dimensions.  Here goes:
    In the Edit Query mode, build two queries, where the first query has all the objects, to include Zip code, and the second query has the zip code, filtered for the one at hand.  (you probably have done this portion already)
    In the Edit Report mode, think of your data set as Query1 (all the data objects you want) and Query2 (zip code and filtered on that zip code) and thus you'll have Query1.zip and Query2.zip.  If you build a grid containing all the data you want from Query1, then simply add Query2.zip to that grid, voila, the grid will be "filtered" due to the "merge" that occurs under the wire.  The 'problem' here is that you have two columns that are repetitive and there is no inherent way to "hide" a column in WebI other than masking the column with white on white (font/borders) or some folks sometimes apply Alterters to achieve the same.
    Best of luck in moving forward with your task.
    Thanks,
    John

  • Is it possible to view the data that is extracted from logical database.

    Hi ,
    i have a standard program(T-code F.38) that uses logical database.This program also uses fields groups to define the structure.
    Now my question how can i see the data that is been fetched from logical database?Is that possible?
    I need to do further modifications on this data.Please advice whether its possible?

    hi,
    one possibility is dat.  goto SLDB give ur ldb name and goto source code.
    u will get code.
    now see dat and by giving same conditions u can check data using se16.

  • How can I update all photos to LR5. Last update from LR4.5 did not upgrade the files in LR4.5 folder

    How can I update ALL photos to LR5. form LR4.5.I have reinstalled LR5 to to trigger the up date to no avail.

    In the Lightroom menu, go to file/open catalog.  Locate your Lightroom 4 catalog and choose it.  Lightroom will create a new copy of that catalog in the format for Lightroom 5.

  • Last iCloud backup info when phone not available

    My wife's iPhone 5 has smashed screen. Need to know when last iCloud backup was. How can I do this without being able to look on the actual phone.
    Also can anyone confirm that the entire camera roll would have been backed up?

    iCloud: iCloud storage and backup overview
    The day before.
    If the phone still works you can do a manual backup to iTunes on your computer and not have to rely on the phone display.

Maybe you are looking for