Error occurred while loading Generic extraction using Function module

Hi all
I'm trying to do INIT for Generic Extractor using Function module, but i'm getting error as "Error occurred in the source system"
Error message from the source system
Diagnosis
An error occurred in the source system.
System Response
Caller 09 contains an error message.
Further analysis:
The error occurred in Extractor .
Refer to the error message.
Procedure
How you remove the error depends on the error message.
Note
If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.
Job terminated in source system --> Request set to red
Message no. RSM078
Can u help plz....

Hi Vishnu
This are the Job log details i found in source system...Can u tell what whould be the problem?
Message
Job started
Step 001 started (program SBIE0001, variant &0000000002861, user ID
Asynchronous transmission of info IDoc 2 in task 0001 (0 parallel tasks)
DATASOURCE = ZYFI102
RLOGSYS    =
REQUNR     = REQU_D9Y4CZDQULRIHRRVU33KOLQZO
UPDMODE    = D
LANGUAGES  = *
         Current Values for Selected Profile Parameters               *
abap/heap_area_nondia......... 0                                       *
abap/heap_area_total.......... 10737418240                             *
abap/heaplimit................ 40000000                                *
zcsa/installed_languages...... DE                                      *
zcsa/system_language.......... E                                       *
ztta/max_memreq_MB............ 2047                                    *
ztta/roll_area................ 3000000                                 *
ztta/roll_extension........... 2000000000                              *
No authorization for Acct type D
Job cancelled after system exception ERROR_MESSAGE
Thanks in advance
Edited by: MohanDP on Feb 25, 2011 11:58 AM
Edited by: MohanDP on Feb 25, 2011 12:01 PM

Similar Messages

  • Generic Extraction - Using Function Modules

    Hi Friends,
    Can you pl let me know the step by step process for creating generic extraction using function module?
    Thanks in Advance.
    Regards,
    Ari.
    Please search the forum before posting a thread
    Edited by: Pravender on Aug 5, 2010 7:31 PM

    Hi,
    Plz find this doc.
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a0f46157-e1c4-2910-27aa-e3f4a9c8df33.
    And go this link...
    http://www.sdn.sap.com/irj/scn/advancedsearch?query=genericextractionwithfunctionmadule
    Regards.....KP
    Edited by: kundan.sap on Aug 5, 2010 4:35 PM

  • Generic extraction using function module and view

    hi every one ,
    iam new to bw and can anyone plz tell me how to extract the data from R/3 to bw using generic extractor by creating function module and a view
    thank u,
    kishore

    Hi Kishore,
    Check this blog:
    /people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
    Also Check this doc:
    http://help.sap.com/saphelp_nw04/helpdata/en/3f/548c9ec754ee4d90188a4f108e0121/frameset.htm
    Generic Extractors
    Generic data sources
    Generic DS
    Bye
    Dinesh

  • Error in Data selection in R/3 Generic Extraction Using function Modules

    Hi Friends,
    I have created a a generic data source using function module to load data from PA0000 and PA0001 Tables ,Function module is working fine when i execute it indipendently and  the data source is also working fine when i extract data using RSA3. it is showing correct no of records 157.
    When loading data into DSO from BW (using 3.x/7.0 flows) data is comming to PSA  all 157 records but in the RSMO the load status is showing yellow when i look into the step by step analysis it is
    data selection successfully started
    Data selection successfully ended
    All Data packets completed.
    are showing in red.
    after and hour time load getting failed and in the error message it is showing " job terminated in source system---> Request set to red"
    it is giving this message wir no RSM 78.
    Please let me know it

    Hi Jerry,
    Thanks for the immediate replay
    But here in my source system job is getting terminated.
    this is the status of job in Job logs.
    the job is running till this step not going ahead.
    Call customer enhancement BW_BTE_CALL_BW204010_E (BTE) with 157 records 
    Result of customer enhancement: 157 records                             
    Call customer enhancement EXIT_SAPLRSAP_001 (CMOD) with 301 records     
    Result of customer enhancement: 157 records                             
    Asynchronous send of data package 000001 in task 0002 (1 parallel tasks)
    pl. update me if any idea.

  • Error in Generic extraction using function module

    Hi,
    I have created a generic datasource which will will have the same fields as table tcurr(except client field).
    whenever i am trying to check it in rsa3..it is giving the error"Error in extracting data".
    Can you kindly suggest where is the mistake?
    The code of my function module is as follows:
    TABLES: ZMOHSTRUCT.         "Name of the structure
    DATA: L_S_SELECT TYPE SBIWA_S_SELECT.
    STATICS: l_maxsize TYPE sbiwa_s_interface-maxsize,
    g_counter_datapakid LIKE SY-TABIX,
    g_cursor TYPE CURSOR.
    RANGES: L_R_GDATU  FOR ZMOHSTRUCT-GDATU.
    IF i_initflag = sbiwa_c_flag_on.
    CASE I_ISOURCE.
          WHEN 'ZDSTCURR'.
          WHEN OTHERS.
            IF 1 = 2. MESSAGE e009(r3). ENDIF.
            log_write 'E'                  "message type
                      'R3'                 "message class
                      '009'                "message number
                      I_ISOURCE    "message variable 1
                      ' '.                 "message variable 2
            RAISE error_passed_to_mess_handler.
        ENDCASE.
    APPEND LINES OF i_t_select TO g_t_select.
    g_s_interface-requnr    = i_requnr.
        g_s_interface-isource   = i_isource.
        g_s_interface-maxsize   = i_maxsize.
    APPEND LINES OF i_t_fields TO g_t_fields.
    ELSE.
      IF g_counter_datapakid = 0.
    LOOP AT g_t_select INTO l_s_select WHERE fieldnm = 'GDATU'.
            MOVE-CORRESPONDING l_s_select TO L_R_GDATU.
            APPEND L_R_GDATU.
          ENDLOOP.
    l_maxsize = g_s_interface-maxsize.
         OPEN CURSOR WITH HOLD g_cursor FOR
         SELECT KURST
          FCURR
          TCURR
          GDATU
          UKURS
          FFACT
          TFACT
    FROM TCURR
      WHERE GDATU IN L_R_GDATU.
    ENDIF.
    FETCH NEXT CURSOR g_cursor
                   APPENDING CORRESPONDING FIELDS
                  OF TABLE E_T_DATA
                  PACKAGE SIZE l_maxsize.
        IF sy-subrc <> 0.
         CLOSE CURSOR g_cursor.
         RAISE no_more_data.
       ENDIF.
        g_counter_datapakid = g_counter_datapakid + 1.
      ENDIF.             
    Regards,
    Mohua

    Hi
    Look at below links
    Re: Generic function module for delta - which FM ?
    http://www.jt77.com/business-warehouse/work-flow-03485.html

  • Generic Extraction using Function Module

    i want to know the step by step procedure for this extraction and also why we need to go for this, i mean in which scenario this is the best method. and do we need to write any abap code for doing this.and also i need what alla transaction codes we use including concepts.

    1> I don't have a step by step procedre doc. But, there is a sample fucntion module, RSAX_BIW_GET_DATA_SIMPLE. You can take a look at this to create urs.
    2> It is an alternative to the of using InfoSet query (using ABAP datasource) where you cannot split the data to be extracted into DataPackages. So, it is very helpful for huge extracts.
    3> Yes, you have to write ABAP code for this.
    4> Transactions used.
    Create function module - SE37
    Create DataSource  using FM - RSO2
    that is all!
    Regards,
    Sree
    Message was edited by: Sree Damodararaj

  • Urgent: Problems in Generic Extraction by Function Module

    Hi BW Gurus,
    I am new to SDN and also new to generic extraction using function module. My requirement is to extract long text(142 char) from CRM to BW as the text is not stored in database table I used function module read_text with in another ZXXX function module copy of (RSAX_BIW_GET_DATA_SIMPLE). In my extract structure I used GUID(char,32), Langu, long text(142 char) and 2 placeholders. Text can be extracted by passing STXH table fields(Tdname, Tdid, Tdobject, Tdspars) to read_text as parameters and i also need to use CRMD_ORDERADM_H field GUID(32 char) to compare 1st 32 chars of tdname(70 char) with Guid to select Guids and loop thru this Guids and for each Guid i need to append lines of text to e_t_data but as i donot know ABAP i unable to write the code for this. Through my friends help i wrote code when i check in RSA3 it is displaying the text but when i replicate into BW and load into data target in monitor the status is red with records initially but afterwards it will be red status again with 0 from 0 records for initial load again.when i check on job logs the errors i have are:
    The background job has created a job log file of 2Gb size and it is currently on a infinite loop writing entries into the SAP System Log that it cannot write to the Job log file due to “Error 22 for write/read access to a file” this is because of the datasource i have created. Please find my Function module and if anyone would please correct FM and send me that will be really great.I appreciate it in advance.
    MY Function Module is:
    FUNCTION Z_CRMORDERH_STR_TXT.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_REQUNR) TYPE  SRSC_S_IF_SIMPLE-REQUNR
    *"     VALUE(I_DSOURCE) TYPE  SRSC_S_IF_SIMPLE-DSOURCE OPTIONAL
    *"     VALUE(I_MAXSIZE) TYPE  SRSC_S_IF_SIMPLE-MAXSIZE OPTIONAL
    *"     VALUE(I_INITFLAG) TYPE  SRSC_S_IF_SIMPLE-INITFLAG OPTIONAL
    *"     VALUE(I_READ_ONLY) TYPE  SRSC_S_IF_SIMPLE-READONLY OPTIONAL
    *"     VALUE(I_REMOTE_CALL) TYPE  SBIWA_FLAG DEFAULT SBIWA_C_FLAG_OFF
    *"  TABLES
    *"      I_T_SELECT TYPE  SRSC_S_IF_SIMPLE-T_SELECT OPTIONAL
    *"      I_T_FIELDS TYPE  SRSC_S_IF_SIMPLE-T_FIELDS OPTIONAL
    *"      E_T_DATA STRUCTURE  YCRM_TEXT_STR OPTIONAL
    *"  EXCEPTIONS
    *"      NO_MORE_DATA
    *"      ERROR_PASSED_TO_MESS_HANDLER
    ***"  EXCEPTIONS     NO_MORE_DATA
    *"      ERROR_PASSED_TO_MESS_HANDLER
      Tables: CRMD_ORDERADM_H, STXH.
    Auxiliary Selection criteria structure
    data: l_s_select type srsc_s_select.
    Maximum number of lines for DB table
      Statics: s_s_if type srsc_s_if_simple,
    counter
             s_counter_datapakid like sy-tabix,
    Cursor
             s_cursor type cursor.
    data: i_crmtext type standard table of TLINE .
      types: begin of xsreph ,
              GUID type CRMD_ORDERADM_H-guid,
            end of xsreph.
       data: i_guid type standard table of xsreph.
      data: I_TEXT type STXH-TDNAME.
      data: xempl like  YCRM_TEXT_STR occurs 0 with header line.
      data: t_tab like dd03l-tabname.
    Select ranges
      ranges: l_r_guid for CRMD_ORDERADM_H-guid.
             l_r_connid  for sflight-connid.
    Initialization mode (first call by SAPI) or data transfer mode
    (following calls) ?
      if i_initflag = sbiwa_c_flag_on.
    Initialization: check input parameters
                    buffer input parameters
                    prepare data selection
    Check DataSource validity
        case i_dsource.
          when 'yCRM_TEXT'.  " for S_SREPH1
          when others.
            if 1 = 2. message e009(r3). endif.
    this is a typical log call. Please write every error message like this
            log_write 'E'                  "message type
                      'R3'                 "message class
                      '009'                "message number
                    i_dsource   "message variable 1
                      ' '.                 "message variable 2
            raise error_passed_to_mess_handler.
        endcase.
       append lines of i_t_select to s_s_if-t_select.
    Fill parameter buffer for data extraction calls
        s_s_if-requnr    = i_requnr.
        s_s_if-dsource = i_dsource.
        s_s_if-maxsize   = i_maxsize.
    Fill field list table for an optimized select statement
    (in case that there is no 1:1 relation between InfoSource fields
    and database table fields this may be far from beeing trivial)
       append lines of i_t_fields to s_s_if-t_fields.
    we will do our selection based on what is in the p table for the
    infoobject
      else.                 "Initialization mode or data extraction ?
    Data transfer: First Call      OPEN CURSOR + FETCH
                   Following Calls FETCH only
    First data package -> OPEN CURSOR
        if s_counter_datapakid = 0.
    Fill range tables BW will only pass down simple selection criteria
    of the type SIGN = 'I' and OPTION = 'EQ' or OPTION = 'BT'.
        LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'GUID'.
            MOVE-CORRESPONDING L_S_SELECT TO L_R_GUID.
            APPEND L_R_GUID.
          ENDLOOP.
          case i_dsource.
            when 'YCRM_TEXT'.  " for S_SREPH1
              t_tab = 'CRMD_ORDERADM_H'.
          endcase.
          select GUID
          from (t_tab)
          into table i_guid where   PROCESS_TYPE = 'ZACI'  and ( OBJECT_ID < '0000000042').
         select tdname from stxh into i_text where tdobject = 'TEXT'.
         if sy-subrc ne 0.
           message e009(r3).
    this is a typical log call. Please write every error message like this
           log_write 'E'                  "message type
                     'R3'                 "message class
                     '009'                "message number
                     i_dsource   "message variable 1
                     'No master data found'.           "message variable 2
           raise error_passed_to_mess_handler.
         endif.
    Determine number of database records to be read per FETCH statement
    from input parameter I_MAXSIZE. If there is a one to one relation
    between DataSource table lines and database entries, this is trivial.
    In other cases, it may be impossible and some estimated value has to
    be determined.
         open cursor with hold s_cursor for
         select (s_s_if-t_fields) from CRMD_ORDERADM_H
                                  where GUID in L_R_GUID .
                                   ENDIF.
    Fetch records into interface table.
      named E_T_'Name of extract structure'.
       fetch next cursor s_cursor
                  appending corresponding fields
                  of table e_t_data
                  package size s_s_if-maxsize.
        IF SY-SUBRC <> 0.
         CLOSE CURSOR S_CURSOR.
         RAISE NO_MORE_DATA.
       ENDIF.
    as we are doing this only once can use the select statement.
    ***data: crmtext like tline occurs 0 with header line.
    **data: i_crmtext type standard table of TLINE.
    **data: i_guid type standard table of xsreph.
    data: l_guid type THEAD-TDNAME.
    data: st_guid type xsreph.
    data: st_crmtext type TLINE.
    data: lan type THEAD-TDSPRAS.
    lan = 'E'.
    loop at i_guid into st_guid.
    l_guid = st_guid-guid.
    CALL FUNCTION 'READ_TEXT'
       EXPORTING
       CLIENT                        = SY-MANDT
         ID                            = 'A002'
         LANGUAGE                      = lan
         NAME                          = l_guid
         OBJECT                        = 'CRM_ORDERH'
       ARCHIVE_HANDLE                = 0
       LOCAL_CAT                     = ' '
    IMPORTING
       HEADER                        =
       TABLES
         LINES                         = i_crmtext.
    EXCEPTIONS
       ID                            = 1
       LANGUAGE                      = 2
       NAME                          = 3
       NOT_FOUND                     = 4
       OBJECT                        = 5
       REFERENCE_CHECK               = 6
       WRONG_ACCESS_TO_ARCHIVE       = 7
       OTHERS                        = 8
    e_t_data-guid = l_guid.
    loop at i_crmtext into st_crmtext.
    move lan to e_t_data-langu.
    move st_crmtext-tdline to e_t_data-description.
    append e_t_data.
    endif.
    endloop.
    clear: st_guid,l_guid.
    refresh: i_crmtext.
    endloop.
    S_COUNTER_DATAPAKID = S_COUNTER_DATAPAKID + 1.
    endif.
    ENDFUNCTION.
    please Gurus as I donot know ABAP i appreciate if anyone would write a FM based on requirement and send me that will be really great this is my request. I gurantee of award points for good answers.
    Regards
    Kishore

    Hi,
    The statement <b>RAISE NO_MORE_DATA</b> should be active (uncommented) in your code. Otherwise, the infinte loop occurs.
    See also, the Siggi's blog:
    /people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
    BTW, was it your thread here:
    Re: Urgent: problems in extracting Long Text
    Best regards,
    Eugene

  • I have no problem connecting my i-phone programs to my tv through apple tv. but one program from an application from appstore don't go through apple tv. It says an error occured while loading the content.This is just for one program. All other works good.

    My apple TV works fine with my I-Phone 4s. But one program from one of the application I downloaded from the app store dont work. When I load that a message comes "an error occured while loading this program" This is  only for one program all other most of the time works good. Any one knows why ?

    Hi there Mundaplackel!
    I have an article here for you that can help you troubleshoot the functionality of that app that you have purchased from the app store, and should be able to give you some steps that will help you resolve the issue:
    iOS: Troubleshooting applications purchased from the App Store
    http://support.apple.com/kb/TS1702
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • Apple tv error occured while loading this content

    error occured while loading this content

    Hi there Mundaplackel!
    I have an article here for you that can help you troubleshoot the functionality of that app that you have purchased from the app store, and should be able to give you some steps that will help you resolve the issue:
    iOS: Troubleshooting applications purchased from the App Store
    http://support.apple.com/kb/TS1702
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • Power Manager Gauge: Error Occurred While Loading Resource Dll

    Just installed windows 10. An dialog window pops up immediately after logon, saying: Power Manager Gauge: "Error occurred while loading resource dll". The power manager driver was up-to-date using System Update and Windows Update. The windows seems working fine after close the dialog. Event log:Faulting application name: rundll32.exe_PWMTR64V.dll, version: 10.0.10240.16384, time stamp: 0x559f39d6Faulting module name: IMM32.dll_unloaded, version: 10.0.10240.16384, time stamp: 0x559f3b64Exception code: 0xc000041dFault offset: 0x0000000000004c70Faulting process id: 0x17bcFaulting application start time: 0x01d0cc1e64ae9c62Faulting application path: C:\WINDOWS\system32\rundll32.exeFaulting module path: IMM32.dllReport Id: dc5d2634-1815-4621-9b48-fdd9d21c8ba8Faulting package full name:Faulting package-relative application ID: 

    Solved. The error comes from the scheduled task by Lenovo Settings Power. By disabling the the task in the Task Scheduler, the error went away. This does not affect the function of Lenovo Settings, just make the power information a bit slow to load.

  • An error occurred while loading the model for the item or data source 'EntityDataSource'.

    Hi Team,
    We are trying to configure the Power View in SharePoint 2013. We did the entire configuration by following below steps. When we open the excel workbook (2013) containing
    Power View sheet (using excel web services) deployed in SharePoint Document library, we get the below error.
    “An error occurred while loading the model for the item or data source
    'EntityDataSource'. Verify that the connection information is correct and that you have permissions to access the data source.”
    Steps followed for configuring Power View in SharePoint Server 2013 (Single Machine setup):
    Installed SharePoint Server 2013 Enterprise edition
    Did not configure it at this time
    Installed SQL Server 2012 with default instance installation (selected every features)
    Later installed SP1 for SQL Server 2012
    After that installed Analysis Server in SharePoint mode (SQL Server PowerPivot for SharePoint)
    Again installed another Analysis Server and selected the tabular mode of data model
    Then ran the configuration wizard of Share point 2013 for farm configuration (only for central admin creation)
    Later we ran the PowerPivot for SharePoint 2013 (spPowerpivot.msi)
    Then using the Power Pivot Configuration tool for 2013 and completed all the steps and configured the excel service and registered the above two analysis service instances. 
    Questions/Doubts are:
    Is our steps followed as mentioned above is correct for configuring Power View in SharePoint Server 2013 Enterprise edition?
    Is the SQL Server 2012 Enterprise edition with SP1 installed is sufficient to view Power View sheets in SharePoint 2013 or we need to use the SQL Server 2012 SP1
    CTP3 software for Power View feature as mentioned in the below link.
    http://technet.microsoft.com/en-us/library/jj219634.aspx
    but we don’t have an option to download CTP3 software now from Microsoft site
    Or do we need to install
    Microsoft SQL Server 2012 With Power View For Multidimensional Models
    CTP
    http://www.microsoft.com/en-sg/download/details.aspx?id=35822
    Few blogs says that SQL Server 2012 instance should have been installed with SP1 at one go (not seperately).
    http://www.microsoft.com/en-in/download/details.aspx?id=35575
    Error detail :
    <detail><ErrorCode xmlns="http://www.microsoft.com/sql/reportingservices">rsCannotRetrieveModel</ErrorCode><HttpStatus xmlns="http://www.microsoft.com/sql/reportingservices">400</HttpStatus><Message
    xmlns="http://www.microsoft.com/sql/reportingservices">An error occurred while loading the model for the item or data source 'EntityDataSource'. Verify that the connection information is correct and that you have permissions to access
    the data source.</Message><HelpLink xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsCannotRetrieveModel&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3000.0</HelpLink><ProductName
    xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName><ProductVersion xmlns="http://www.microsoft.com/sql/reportingservices">11.0.3000.0</ProductVersion><ProductLocaleId
    xmlns="http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId><OperatingSystem xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem><CountryLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId><MoreInformation
    xmlns="http://www.microsoft.com/sql/reportingservices"><Source>ReportingServicesLibrary</Source><Message msrs:ErrorCode="rsCannotRetrieveModel" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsCannotRetrieveModel&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3000.0"
    xmlns:msrs="http://www.microsoft.com/sql/reportingservices">An error occurred while loading the model for the item or data source 'EntityDataSource'. Verify that the connection information is correct and that you have permissions to access
    the data source.</Message><MoreInformation><Source>Microsoft.ReportingServices.ProcessingCore</Source><Message msrs:ErrorCode="rsErrorOpeningConnection" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsErrorOpeningConnection&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3000.0"
    xmlns:msrs="http://www.microsoft.com/sql/reportingservices">Cannot create a connection to data source 'EntityDataSource'.</Message><MoreInformation><Source>Microsoft.AnalysisServices.SPClient</Source><Message>We
    cannot locate a server to load the workbook Data Model.</Message><MoreInformation><Source></Source><Message>We cannot locate a server to load the workbook Data Model.</Message><MoreInformation><Source>Microsoft.Office.Excel.Server.WebServices</Source><Message>We
    cannot locate a server to load the workbook Data Model.</Message></MoreInformation></MoreInformation></MoreInformation></MoreInformation></MoreInformation><Warnings xmlns="http://www.microsoft.com/sql/reportingservices"
    /></detail>
    Please help me in  configuring Power View for SharePoint 2013.
    Thanks in advance.
    Pavan Kumar

    I'll bet that I know the answer to this one - and you probably won't like it ;)
    Here's the telling portion of that error:  "We cannot locate a server to load the workbook Data Model."
    This error is thrown in two scenarios; the first, when you haven't registered an analysis server.  The second appears to be the issue you're having:
    PowerPivot requires SQL Server 2012 SP1.  Microsoft issued a release of SQL Server 2012 SP1 that really wasn't SP1...
    Check the version of SQL that you are running.  It should be version 11.0.3000 or greater.  If it's not, you have the wrong "SP1" installed.  The correct one is
    here.
    Here's the bad news- you can't simply redeploy the correct one... because the installer already thinks that SP1 is installed.  You'll have to backup (or detach and copy) your databases, then re-install SQL with the correct SP1, then restore or reattach
    the databases.  Once you've done that, PowerPivot and PowerView will work properly.
    I sincerely hope this resolves your issues - we wasted TWO WEEKS of our time with this problem!

  • What does "Error 10" mean? "An error occurred while loading your project. 10"

    Does anyone know what "Error 10" means?  For the first time, I'm getting a message that says, "An error occurred while loading your project. 10".  I'm getting this message when I try to open a project that I created yesterday.
    I'm using Adobe Premiere 6 on a Windows 7 machine.  I have over 20 gigs of open space on the drive with all the project and support files.  And this machine with 2 gigs of RAM never has a problem opening other similar Premeire project files with even more still images plugged in.
    All of my Premiere project files have always opened with no problem.  A similar file that this project file was created from with all the same base elements still opens with no problem.
    This file almost finishes the "Loading Project - checking files..." process, but then I get the error message.
    I had also saved a duplicate backup file for the project in question and it will not open either, so I believe that rules out a corrupt file... it is only this one project that I created yesterday that will not open.  This project file is only about 5.7 megabytes in size.
    This file has many still images plugged in to it, but all the same images are plugged in to another base file that still opens correctly.
    I've also tried closing all other apps to save memory but I still get the error.   I've also tried opening this problem file from within the application and I still get the same error message.
    I read some troubleshooting information on the Adobe website about files that give error messages that will not open and it recommended adjusting the size of the virtual memory paging file in the system settings to twice the amount of RAM that is installed instead of being on the automatic setting, so I followed the instruction verbatim and restarted my machine and I still get the error message.
    I've also read other troubleshooting info on the Adobe site that recommends to "delete the application preferences file" and "recreate the plugin cache file", but I'm not sure if "Error 10" indicates that those things are the correct procedures to use.
    I could re-create this project file, but it has many tricky cutting and motion setting edits that will be difficult to reproduce and it took me a full day to create this project file.
    Also, yesterday before initially closing this file, I was able to successfully render a test version to an AVI file and that video file plays fine, but neither the original project file nor the duplicate will open... I'm always getting the "An error occurred while loading your project. 10"   after the file almost finishes the "Loading Project - checking files..." process... it almost finishes opening but then I get the error message.
    Thanks for any input on this problem.  You can see the error message screenshot below.
    digi

    Thanks Bill... me too.
    After writing to Dennis Radeke on an Adobe.com blog about this and getting his very limited response, I wrote to him quoting something I read on the wiki page that you sent me the link to...
    Adobe blog:
    http://http://blogs.adobe.com/genesisproject/2009/11/having_weird_behavior_with_an.html#co mment-2701
    Wiki page link that you gave me:
    http://premierepro.wikia.com/wiki/FAQ:How_do_I_recover_a_corrupt_project%3F
    Here's what my response today was...
    Thanks for your reply DR.
    My old version of Premiere 6 works perfectly on Windows 7.  I’ve created over a thousand different Premiere project files on this 5 year-old PC that was updated to Windows 7 last year.
    All of my other Premiere 6 files open and maintain their original editability and all the features in this ancient version of Premiere work very well.
    I own and use mostly Mac machines but I have one 5 year-old PC with a 160 gig hard drive with Windows 7 that I run Premiere 6 on because it’s a thousand dollar program that I had from 10 years ago that I didn’t want to repurchase. Buying a newer PC 5 years ago was far less expensive than buying a new copy of Premiere.  Some people seem to think, “Wow, just buy a new version of the software for a thousand dollars and a new computer with a 5 Terabyte hard drive.”, but that isn’t always the reality of some peoples financial situation.
    With 20 gigs of open HD space, all of my previous, even more complex Premiere 6 files still open and edit just fine.  It is only this one file that I created Thursday that won’t re-open after closing it for the first time.  Since the backup copy of that file won’t open either, and all the support files open, play and work in other previous project files, I’m thinking that there is some glitch that happened when saving this file that is corrupting it now, making it unable to be re-opened.
    Based on prior advice on multiple topics about Premiere 6 from people on the Adobe forum who use only newer versions of Premiere, most information that applies to the brand new Premiere Pro CS5 still seems to apply to the old Premiere 6.
    I found that holding down Shift-Option while opening Premiere 6 trashes the preferences file. This became my work around since I can’t locate the preferences file based on your path noted (in your blog) nor via the other prefs file path published on the Adobe website.
    But unfortunately, trashing the prefs file, resetting the plugin cache file, increasing the virtual memory paging file size, importing the problem project file in to a new project, nor anything else is working to allow this file to open.
    Now I’m looking in to XML:Wrench to see if that can find the corruption in this file, but I’ve had a malware warning from one download source and the xmlwrench.com website says their download is only a demo version, but no price is listed… this seems somewhat strange and possibly deceptive.
    But I read something on an Premiere Pro wiki page , quoted below, at this URL, that seems to be pertinent, and though my version of Premiere may be ancient, it seems that, according to this user’s concerns, Adobe is still having problems with current versions of Adobe software creating corrupt files…
    http://premierepro.wikia.com/wiki/FAQ:How_do_I_recover_a_corrupt_project%3F
    QUOTE:
    “Can someone please advise – why on EARTH we should have to download XML Wrench and manually fix a corrupt Adobe project??? This is something common to all the Adobe “Support” forums on issues like this, and the many others that plague Adobe’s product (and I’m not being a mindless troll – I’ve been forced to use it for years so I do know the usability and other issues it has): it seems that people are excited because they’ve found a “fix” (which is more like a work-around) – purely because they’re understandably ecstatic that all their hard work isn’t comPLETEly lost.
    However, Adobe should be making sure their product isn’t so buggy! This issue should be fixed (as just one example). Adobe should be finding out what causes the corruption in the first place and fixing it. And whether it’s some other codec on the system that’s caused it is no excuse – their software should have better error management built into it. I’ve seen other issues where an Adobe support representative has happily replied: “oh, that’s a known issue since version [3 versions back] – don’t worry, most users are aware of the work around for it: just select and move all of the items in your timeline each time you open the project and you’ll be fine!”
    I’m sorry to rant on – but can some other users please explain the above to me? (i.e. why aren’t more people annoyed about this and complaining to Adobe to fix these things).”
    UNQUOTE
    All of this coming from an experienced user of Adobe products complaining about needing XML:Wrench to fix corrupt Adobe files seems relevant.
    In addition, why does no one, including the Adobe knowledge base, have any info about what “An error occurred while loading your project. 10″ means?… why isn’t there a database that identifies Adobe error numbers by the simple number itself?  The only info I was able to find identifying “Error 10″ on the Adobe site was a software installation error, not a project loading error.
    Now I find myself chasing a clean download of XML:Wrench in order to hopefully fix this corrupt file.  Whether I’m using Premiere 6 on a 160 gig hard drive with 20 gigs of open space or Premiere Pro CS5 on a 5 Terabyte hard drive with 3 Terabytes of open space, the problems, according to other users, seem to be the same as ever with corrupt Adobe Premiere files, based on what I’ve been reading across the internet.

  • WPC Error- Cannot render container : An error occurred while loading the do

    Dear All
    we are on SP13 / EP 7 ..we have created sites using WPC and when we try to trasnport with GUIDSs we got to know that SP13 does not suport GUIDs ..so i have deplyoed SP14 WPC abd the interfase looks differnt and it gives erros ..again i undeployed the SP14 WPC and deployed the SP13 WPC , after that interfase looks ok but we are getting an error in when we try to edit pages through WPC..
    following messgae appera when we open up a page to edit in WPC
    Cannot render container : An error occurred while loading the document from the resource content
    we found this exception in error log in Server..
    couldn't retrieve contents with id -1 com.sapportals.wcm.util.content.ContentException: couldn't retrieve contents with id -1
    #1.5 #00145ECC9C6700780000002500000B80000463656B4E6BC6#1235187149283#com.sapportals.wcm.repository.manager.cm.persistence.commonjdbc.DBContent#sap.com/irj#com.sapportals.wcm.repository.manager.cm.persistence.commonjdbc.DBContent.getInputStream(142)#myadmin#224##myportalci.keells_JPP_15308650#myadmin#212fdd70ffc811dda6de00145ecc9c67#SAPEngine_Application_Thread[impl:3]_24##0#0#Warning##Plain###Couldn't read content with ID -1. Select again...#
    #1.5 #00145ECC9C6700780000002600000B80000463656B4E78E6#1235187149283#com.sapportals.wcm.repository.manager.cm.persistence.DBContentInputStream#sap.com/irj#com.sapportals.wcm.repository.manager.cm.persistence.DBContentInputStream#myadmin#224##myportalci.keells_JPP_15308650#myadmin#212fdd70ffc811dda6de00145ecc9c67#SAPEngine_Application_Thread[impl:3]_24##0#0#Warning##Plain###couldn't retrieve contents with id -1#
    #1.5 #00145ECC9C6700780000002700000B80000463656B4E812B#1235187149283#com.sapportals.wcm.WcmException#sap.com/irj#com.sapportals.wcm.WcmException.WcmException(62)#myadmin#224##myportalci.keells_JPP_15308650#myadmin#212fdd70ffc811dda6de00145ecc9c67#SAPEngine_Application_Thread[impl:3]_24##0#0#Error##Plain###couldn't retrieve contents with id -1 com.sapportals.wcm.util.content.ContentException: couldn't retrieve contents with id -1
         at com.sapportals.wcm.repository.manager.cm.persistence.DBContentInputStream.getInternalStream(DBContentInputStream.java:345)
         at com.sapportals.wcm.repository.manager.cm.persistence.DBContentInputStream.<init>(DBContentInputStream.java:50)
         at com.sapportals.wcm.repository.manager.cm.persistence.BasicPersistenceDB.selectDocumentContent(BasicPersistenceDB.java:1632)
         at com.sapportals.wcm.repository.manager.cm.persistence.commonjdbc.DBContent.getInputStream(DBContent.java:143)
         at com.sapportals.wcm.repository.manager.cm.persistence.commonjdbc.DBContent.getInputStream(DBContent.java:95)
         at com.sapportals.wcm.repository.ContentImpl$ContentWithPrefetchedInputStream.<init>(ContentImpl.java:402)
    Please tell us how to fix this error
    regards
    Buddhike

    Need to upgarde to SP14

  • INS-08106: Unexpected error occurred while loading the 'InventoryUI'

    Hello.
    Have done alot of installs over time, but this error has me stymied. Here are the givens:
    2-node Linux RHEL 5 OS
    Will ASM over fiber (using ASMLib)
    Attempting to install Oracle 11gR2 (11.2.0.3.0)
    SSH is working and runcluvfy gives no errors on wither nodes.
    When running through the installer, I am on the "specify Installation Location" menu.
    I input Oracle Base: /apps/oracle
    I input Software Location: /apps/grid/product/11.2.0/grid_1
    I hit NEXT and afeter a short time, I get the following error:
    INS-08106: Unexpected error occurred while loading the view 'InventoryUI' associated to state 'inventory.'
    No further details are given.
    I look in the install log for this run and see these last final lines (no errors appear in this log prior):
    INFO: Gathering system details
    INFO: Checking specified location on remote nodes... (btw - specified path DO exist w/correct perms/ownership)
    INFO: size stimation for Completeinstall is 5632.0
    INFO: Completed validating state <CRSInstallLocationUI>
    INFO: Verifying route INVENTORY_ABSENT
    INFO: Get view names [InventoryUI]
    INFO: View for [InventoryUI] is oracle.install.ivw.common.view.InventroyUI@58046530
    INFO: Initializing view [InventoryUI> at state <inventory>
    INFO: Fetching existing UNIX groups
    INFO: Terminating all background processes
    INFO: Terminated all background procecces
    SEVERE: [FATAL] [INS-08016] Unexpected error occurred while loading the view 'InventoryUI' associated to state 'inventory.'
    CAUSE: No additional information available.
    ACTION: Contact Oracle Support Services or refer to the software manual..
    Refer associated stacktrace #oracle.install.commons.util.exception.DefaultErrorAdvisor:1032
    INFO: Advice is ABORT
    INFO: Adding ExitStatus FAILURE to the exist status set
    INFO: Finding the most appropriate exist status for the current application
    INFO: Exit Status is -1
    INFO: Shutdown Oracle Grid Infrastructure
    INFO: Unloading Setup Driver
    I realize I can open an SR in MOS, but was hping that maybe someone in this forum had encountered this error previosly and might have some sugestions or a solution that worked for them. The only same error code in MOS relates to to:
    Unexptected error occurred while loading the view 'GridPlugPlayInfoUI' associated to state 'GridPlugPlayInfoUI', but this has a fix in /etc/hosts, but is NOT the same error I am getting.
    Thank you in advance for any help.
    Matt

    /etc/hosts file was ok as-is.
    Here was the underlying problem that has now been fixed:
    We had three user goups associated with user Oracle. They were oinstall, dba, and oper
    In /etc/groups, "oper" was not present. During the install, but prior to the actual pressing of the "Install" button, check(s) are made between the groups tied to the installer user and what groups are associated with the same user in /etc/groups. Once "oper" was added to the /etc/groups file, the error disappeared and the install proceeded.
    Problem solved. Thanks for any earlier inputs.
    Matt

  • INS-08106] Unexpected error occurred while loading the view 'GridPlugPlayInfoUI'

    Hi
    I got the below error message while installing the Oracle 11g R2 Database Grid software on Oracle Linux 6.4 OS using vnc viewer.
    "INS-08106] Unexpected error occurred while loading the view 'GridPlugPlayInfoUI' associated to state 'GridPlugPlayInfoUI'."
    Please let me know how to overcome this error and proceed with the installation.
    Contents of the error log file:
    java.lang.NullPointerException
      at oracle.sysman.oii.oiin.OiinNetOps.addNICInfo(OiinNetOps.java:144)
      at oracle.sysman.oii.oiin.OiinNetOps.computeNICList(OiinNetOps.java:109)
      at oracle.sysman.oii.oiin.OiinNetOps.<init>(OiinNetOps.java:76)
      at oracle.sysman.oii.oiin.OiinNetOps.getNetOps(OiinNetOps.java:90)
      at oracle.sysman.oii.oiix.OiixNetOps.getFullHostName(OiixNetOps.java:49)
      at oracle.install.library.util.MachineInfo.getFullHostName(MachineInfo.java:109)
      at oracle.install.library.db.RAC92Info.is92RACPresent(RAC92Info.java:115)
      at oracle.install.ivw.crs.view.InstallTypeGUI.onEvent(InstallTypeGUI.java:120)
      at oracle.install.commons.flow.AbstractFlowExecutor.loadView(AbstractFlowExecutor.java:508)
      at oracle.install.commons.flow.AbstractGraphicalFlowExecutor.access$001(AbstractGraphicalFlowExecutor.java:39)
      at oracle.install.commons.flow.AbstractGraphicalFlowExecutor$1.call(AbstractGraphicalFlowExecutor.java:99)
      at oracle.install.commons.flow.AbstractGraphicalFlowExecutor$1.call(AbstractGraphicalFlowExecutor.java:98)
      at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:269)
      at java.util.concurrent.FutureTask.run(FutureTask.java:123)
      at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
      at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
      at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
      at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
      at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    ---# Begin Stacktrace #---------------------------
    ID: oracle.install.commons.util.exception.DefaultErrorAdvisor:458
    oracle.install.commons.flow.FlowException: [INS-08106] Unexpected error occurred while loading the view 'GridPlugPlayInfoUI' associated to state 'GridPlugPlayInfoUI'.
      at oracle.install.commons.flow.AbstractFlowExecutor.loadView(AbstractFlowExecutor.java:510)
      at oracle.install.commons.flow.AbstractGraphicalFlowExecutor.access$001(AbstractGraphicalFlowExecutor.java:39)
      at oracle.install.commons.flow.AbstractGraphicalFlowExecutor$1.call(AbstractGraphicalFlowExecutor.java:99)
      at oracle.install.commons.flow.AbstractGraphicalFlowExecutor$1.call(AbstractGraphicalFlowExecutor.java:98)
      at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:269)
      at java.util.concurrent.FutureTask.run(FutureTask.java:123)
      at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
      at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
      at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
      at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
      at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Caused by: java.lang.NullPointerException
      at oracle.install.library.crs.CRSInfo.getDefaultIPAddressForGNSVIP(CRSInfo.java:584)
      at oracle.install.ivw.crs.view.GridPlugPlayInfoUI.onEvent(GridPlugPlayInfoUI.java:373)
      at oracle.install.commons.flow.AbstractFlowExecutor.loadView(AbstractFlowExecutor.java:508)
      ... 12 more
    ---# End Stacktrace #-----------------------------

    Hello,
    It's a Bug.
    Try selecting all languages and give a try ...
    Bug 9632373: UNEXPECTED ERROR OCCURRED WHILE LOADING THE VIEW 'GRIDPLUGPLAYINFOUI'
    <Moderator Edit - deleted MOS Doc content - pl do not post such content - it is a violation of your Support agreement>
    Thank you

Maybe you are looking for

  • What is Calulation for creating a Segment in dba_segment table

    Hi i used the command create table t11 (c char(10)) storage (initial 50K next 10K minextents 8 maxextents 10) as per the forumla it will create a Two Segment in dba_segment table but by output show three segments output is Segment_type Block_id Bytes

  • FTP using ABAP

    Hi Gurus, We are trying to read a file from a server (e.g) XYZ.123.com and other details which are provided to us are user name (e.g): Abc123 and Directory (e.g): /123/123/123/123l. My question is: Do we need a RFC connection to the server if yes the

  • General tree structure

    Is there still no general tree structure in Java? I'd like something along the likes of TreeSet or TreeMap, but without the compare part, and where each node can hold 0..n children. I know this is easy to implement, having done quite a few during my

  • How to create Activity type

    How to create Activity type below are the details x sales MnF Expenses y FMS MnF Expenses

  • CHVW_EXPLODE_ALL Batch where used

    Dear All, Now I am trying to get batch where used details by using FM 'CHVW_EXPLODE_ALL' samp0le code is givem below, while running  this i will get only one record in shadow, same time wile running the FM in SE37 with same parameters i get 68 record