Event error extract in datasource 0FI_GL_4

Hi Guru's,
        please help me a serious problem.
In r/3 when Iam double cliking on my datasource I'm not able to display the datasource or change it.
the error displayed is MSG TEXT: [event with errors extract in datasource 0FI_GL_4].
I have enhanced the datasource as per 4.6 but here the version is ecc5 r/3.
even in rsa5 I'm not able see the datasource fields or change.
Regards
KM

Hi Robert,
     Event with errors Extract in DataSource 0FI_GL_4
     Message no. R8287
     Problem class very important
     Along with 0FI_GL_4 the folowing datasources are also having the same problem.0FI_GL_6,0FI_GL_7,0FI_TX_4.
    Please help us in this issue, waiting for your favourable answer.
Thanks & Regards
KL Chand

Similar Messages

  • Enhancing the extract structure for 0FI_GL_4,  0FI_AP_4,  0FI_AR_4

    Hi all,
          Does anyone know how to enhance the extraction structures with additional fields for datasources 0FI_GL_4 (General ledger: line item), 0FI_AP_4 (vendors: line item) and 0FI_AR_4 (customers: line item). 
    Thanks,
    Sabrina.

    Hi
        Here are the two scenario's described in the note:
    1. All the fields of the customer enhancement in the customer include are contained in the read structure (see the table above).  Then no additional action is required. The fields of the customer enhancement are filled automatically by the datasource from the assigned read structure via "move-corresponding".
    Example:   The extraction structure DTFIGL_4 for datasource 0FI_GL_4 (General ledger: line item) should be enhanced by the VALUT (value date) field.
               To do this, create structure CI_BSIS in the data dictionary of the R/3 source system and include the VALUT field in it. The data dictionary in the R/3 source system shows that the VALUT field is contained in the read structure of the datasource (table BSIS). For that reason the VALUT field is automatically filled by datasource 0FI_GL_4.
    2. Fields of the customer enhancement in the customer include are not contained in the read structure (see the table above).  In this case you have to program a function module to fill the field of the customer enhancement. To do this, there is a Business Transaction Event available (open FI interface for process 00005021). Create any function module you like and use function module SAMPLE_PROCESS_00005021 as a template for the interface (input parameter, changing parameter).
               Interface of function module SAMPLE_PROCESS_00005021:
                Input-parameter I_OLTPSOURCE: datasource that is currently extracting data from the R/3 source system.
                Changing-Parameter C_STRUCTURE: Extraction structure of the data source currently extracting including fields from the assigned customer include. When you call this customer defined function module, all the fields of the extract structure are transferred filled.
               Check whether the type pool SBIWA is declared in the TOP include of the function group.
    If not, add it with the statement TYPE-POOLS: SBIWA.
               Then maintain table TPS31 with Transaction SM30. Create the following entry:
               PROCS LAND APPLK FUNCT
               00005021 <fname>
               <fname> stands for the customer defined function module.
                By doing so, the function module you defined is called for each extracted record. Note that in this case the performance of the extraction may be reduced significantly regardless of the table read and the complexity of the programmed logic.
               Example:
               You want to enhance the extraction structure DTFIAR_3 for datasource 0FI_AR_4 (customers: line item) by the ORT01 (city) field from the customer master record.
                To do this, create structure CI_BSID in data dictionary of the R/3 source system and include the ORT01 field in that. The data dictionary in the R/3 source system displays that the ORT01 field is NOT contained in the read structure of datasource 0FI_AR_4 (Table BSID).
                Therefore you have to program a function module that reads the customer master in the R/3 system (table KANN1) and fills the ORT01 field of the customer enhancement. In the changing parameter C_STRUCTURE the filled fields of the extraction structure DTFIAR_3 are available to you. With the KUNNR field of extraction structure DTFIAR_3, you can select the respective master data record from table KNA1 and determine field ORT01 of the customer enhancement.
    1. All the fields of the customer enhancement in the customer include are contained in the read structure (see the table above).
               Then no additional action is required. The fields of the customer enhancement are filled automatically by the datasource from the assigned read structure via "move-corresponding".
               Example:
               The extraction structure DTFIGL_4 for datasource 0FI_GL_4 (General ledger: line item) should be enhanced by the VALUT (value date) field.
               To do this, create structure CI_BSIS in the data dictionary of the R/3 source system and include the VALUT field in it. The data dictionary in the R/3 source system shows that the VALUT field is contained in the read structure of the datasource (table BSIS). For that reason the VALUT field is automatically filled by datasource 0FI_GL_4.
               ATTENTION:
               By using Note 430303 you can enhance DataSource 0FI_GL_4 by all fields from table BSEG (instead of BSIS); then the fields are filled automatically in the extractor.
    1. Fields of the customer enhancement in the customer include are not contained in the read structure (see the table above).
                In this case you have to program a function module to fill the field of the customer enhancement. To do this, there is a Business Transaction Event available (open FI interface for process 00005021). Create any function module you like and use function module SAMPLE_PROCESS_00005021 as a template for the interface (input parameter, changing parameter).
               Interface of function module SAMPLE_PROCESS_00005021:
                Input-parameter I_OLTPSOURCE: datasource that is currently extracting data from the R/3 source system.
                Changing-Parameter C_STRUCTURE: Extraction structure of the data source currently extracting including fields from the assigned customer include. When you call this customer defined function module, all the fields of the extract structure are transferred filled.
               Check whether the type pool SBIWA is declared in the TOP include of the function group.
    If not, add it with the statement TYPE-POOLS: SBIWA.
               Then maintain table TPS31 with Transaction SM30. Create the following entry:
               PROCS LAND APPLK FUNCT
               00005021 <fname>
               <fname> stands for the customer defined function module.
                By doing so, the function module you defined is called for each extracted record. Note that in this case the performance of the extraction may be reduced significantly regardless of the table read and the complexity of the programmed logic.
               Example:
               You want to enhance the extraction structure DTFIAR_3 for datasource 0FI_AR_4 (customers: line item) by the ORT01 (city) field from the customer master record.
                To do this, create structure CI_BSID in data dictionary of the R/3 source system and include the ORT01 field in that. The data dictionary in the R/3 source system displays that the ORT01 field is NOT contained in the read structure of datasource 0FI_AR_4 (Table BSID).
                Therefore you have to program a function module that reads the customer master in the R/3 system (table KANN1) and fills the ORT01 field of the customer enhancement. In the changing parameter C_STRUCTURE the filled fields of the extraction structure DTFIAR_3 are available to you. With the KUNNR field of extraction structure DTFIAR_3, you can select the respective master data record from table KNA1 and determine field ORT01 of the customer enhancement.
    After you create the customer include in the R/3 source system you have to post process the accompanying datasource with Transaction RSA6. Select the application component according to the above table and change the datasource that fits the customer include. The "Hide fields" flag should be removed in the field list for the fields of the customer include. Then save the field list.
    If the fields of the customer include is not displayed in Transaction RSA6, refer to note 415530.
    1.  After you create the customer include in the R/3 source system you have to post process the accompanying datasource with Transaction RSA6. Select the application component according to the above table and change the datasource that fits the customer include. The "Hide fields" flag should be removed in the field list for the fields of the customer include. Then save the field list.
    If the fields of the customer include is not displayed in Transaction RSA6, refer to note 415530.
    Please let me know.
    Thanks,
    Sabrina.

  • 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

  • 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

  • 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

  • Error in Validating datasource

    I'm installing LivCycle on SUSE 10 with Weblogic 11g and Oracle 10.
    When trying to validate, the following error occurs:
    Validating datasource...
    Datasource Fail
    Name:IDP_DS
    JNDI:IDP_DS
    Data source settings failed validation. Failed to find/lookup datasource IDP_DS. The datasource may not be configured or may have failed to come online or is not accessible outside the LiveCycle application.
    ALC-LCM-120-301: Data source settings failed validation. Failed to find/lookup datasource IDP_DS. The datasource may not be configured or may have failed to come online or is not accessible outside the LiveCycle application.
    Datasource Fail
    Name:RM_DS
    JNDI:EDC_DS
    Data source settings failed validation. Failed to find/lookup datasource EDC_DS. The datasource may not be configured or may have failed to come online or is not accessible outside the LiveCycle application.
    ALC-LCM-120-301: Data source settings failed validation. Failed to find/lookup datasource EDC_DS. The datasource may not be configured or may have failed to come online or is not accessible outside the LiveCycle application.
    Any ideas?
    Thanks!

    Are you using secured data sources?  More here:
    http://blogs.adobe.com/livecycle/2010/04/livecycle_on_weblogic_-_securi.html
    http://blogs.adobe.com/livecycle/2010/09/increasing-weblogic-as-jdbc-connection-pool-size- for-livecycle-content-services-es2.html

  • Error extracting mzm.tvbnoepi.pkg while installing Xcode from App Store on OS X Loin

    Hi Folks. First post here.
    I am trying to install Xcode from App Store on Mac OS X Loin and there is this error which I am facing.
    Error extracting mzm.tvbnoepi.pkg
    This is persistant. I have reinstalled entire OS and then I tried to install XCode Again. Then realised
    something is wrong with XCode binary provided by App Store. Any solutions for this?

    I have downloaded xcode from https://developer.apple.com/downloads/index.action and installed it. this fixed the issue.

  • Shared Services API - Error when getting datasource weblogic/pool/PooledConnectionDataSource

    Hello,
    I have a program that connects to shared services using Java APIs. The code is usually working fine on other environment.
    This one is on EPM version 11.1.2.1 and I get an error after this procedure --> system = CSSSystem.getInstance(context, "");
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.RegistryUtils buildConnFromDriverManager
    WARNING: Check whether Oracle Home and Instance environment variables are defined appropriately. RootCause : weblogic.jdbc.sqlserver
    .SQLServerDriver
    Error when getting datasource weblogic/pool/PooledConnectionDataSource
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.RegistryUtils createNewConnection
    SEVERE: Failed to create connection from data source. RootCause:weblogic/pool/PooledConnectionDataSource.
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.exceptions.RegistryException <init>
    INFO: Registry Exception Occured - Failed to create new database connection using datasource.RootCause:[weblogic/pool/PooledConnecti
    onDataSource]
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.Registry lookupComponentsWithException
    INFO: EPMREG-11045
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.exceptions.RegistryException <init>
    INFO: Registry Exception Occured - Failed to create new database connection using datasource.RootCause:[weblogic/pool/PooledConnecti
    onDataSource]
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.Registry lookupWithException
    INFO: EPMREG-11038
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.exceptions.RegistryException <init>
    INFO: Registry Exception Occured - com.hyperion.hit.registry.exceptions.RegistryException: Failed to create new database connection
    using datasource.RootCause:[weblogic/pool/PooledConnectionDataSource]
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.Registry lookup
    INFO: EPMREG-11038
    Jan 27, 2015 9:36:44 AM com.hyperion.css.registry.RegistryManager RegistryManager
    SEVERE: Failed to initialize EPM Shared Services security instance. Component SYSTEM9/FOUNDATION_SERVICES_PRODUCT/SHARED_SERVICES_PR
    ODUCT is null in EPM System Registry. Verify EPM System Registry configuration.
    java.lang.NullPointerException
            at start.initialize(start.java:84)
            at start.Sample(start.java:59)
            at cc.main(cc.java:10)
    I guess it is something with the SQLServer driver.Do you have any ideas?
    My ORACLE_HOME and ORACLE_INSTANCE are set correctly.
    Thanks in advance,
    Regards,
    Nicolas

    Hello,
    I finally got it working!
    I added the weblogic libraries located under EPM/Middleware/wlserver_10.3/server/lib, and now it works fine.
    It was a pain to find it out, because the error message did not specify that it was a missing library..
    Anyway, if it helps, here is the list of external libraries I am using:
    "wlssapi.jar"
    "wlssapi-internal.jar"
    "wlss-datatier.jar"
    "wlss-descriptor-binding.jar"
    "wlssdiameter.jar"
    "wlssechosvr.jar"
    "wlss-mbeaninfo.jar"
    "WLSSSecurityProviders.jar"
    "wlthint3client.jar"
    "wlw-langx.jar"
    "wlw-langx-ja.jar"
    "wlw-langx-ko.jar"
    "wlw-langx-zh_CN.jar"
    "wlw-langx-zh_TW.jar"
    "wlw-wsee-soapfault.jar"
    "xmlparserv2_sans_jaxp_services.jar"
    "xmlrpc-2.0.1.jar"
    "audit-client.jar"
    "castor-1.0.5.jar"
    "com.bea.core.apache.commons.pool_1.3.0.jar"
    "commons-lang-2.1.jar"
    "css.jar"
    "dms.jar"
    "interop-sdk.jar"
    "ojdl.jar"
    "quartz.jar"
    "regexp.jar"
    "registry-api.jar"
    "scheduler_ces.jar"
    "sqljdbc.jar"
    "wf_ces_utils.jar"
    "wf_eng_agent.jar"
    "wf_eng_api.jar"
    "wf_eng_server.jar"
    "wlcipher.jar"
    "wlclient.jar"
    "wlcommons-logging.jar"
    "wlconnector.jar"
    "wldb2.jar"
    "wldeploy.jar"
    "wlinformix.jar"
    "wl-j2ee-client.jar"
    "wljarbuilder.jar"
    "wljmsclient.jar"
    "wljmxclient.jar"
    "wllog4j.jar"
    "wlnmclient.jar"
    "wlpool.jar"
    "wlsafclient.jar"
    "wls-api.jar"
    "wlss.jar"
    "wlss_i18n.jar"
    Thank you all for your help.
    Regards,
    Nicolas

  • Error when activating datasource

    Hello,
    I am trying to create a new transaction data datasource assigned to a flat file source system.  When i hit the check i get no errors but when i try to activate the activation fails with errors.  The error Message No. RSO404 says "Error when activating Datasource".  We are on BW 7.0 stack 12.
    Has anyone seen this?  It is hard to troubleshoot it when i get no real errors to go on.  It is a very simple three field datasource with one characteristic, one key fig, and an additional currency characteristic.  The key fig is in external format and references 0CURRENCY.  Does anybody have any insight?
    Thanks,
    TMS

    Hi TMS,
    I am facing exactly the same problem here...
    transactional datasource for flatfile gives me errors DO313, RSO404 and then RSDS106
    We are on:
    SAP_ABA            700               0011  SAPKA70011
    SAP_BASIS     700               0011  SAPKB70011
    PI_BASIS            2005_1_700  0011  SAPKIPYJ7B
    SAP_BW            700               0012  SAPKW70012
    FINBASIS            600               0008  SAPK-60008INFINBASIS
    BI_CONT            703               0005  SAPKIBIIP5
    SEM-BW            600               0008  SAPKGS6008
    Did you manage to find a solution?

  • Error When Activating DataSource in BI

    Hi,
    I have created a Generice Data Source in source system and replicated the same in BI. I am getting error 'Error when activating Datasource '.
    Kindly give me some suggestion how to rectify it.
    Regards,
    Sangeetha.A

    Hi,
    First check whether u have activated the data source in the transaction RSA6. Also, check whether the data source which you activated is listed in transaction RSA5.
    Regards,
    Krishna.

  • Error with transporting datasource

    Hello,
    I have an issue activating a datasource. I created a generic datasource called 'ZHIP_TD_CLOSE_INV_BALANCE' within BW - i.e the source is BI and NOT R/3. I created transformation from datasource to Cube and loaded data. Everything is working fine. Now when I transport the datasource from Dev to Quality the transport failed. The error log says 'InfoSource ZHIP_TD_CLOSE_INV_BALANCE is not available in source system WP1CLNT310' & 'Error when activating DataSource ZHIP_TD_CLOSE_INV_BALANCE WP1CLNT310'. I do not have an infosource to begin with. So then when I go and try to activate the datasource in Quality, I get the same message i.e. 'InfoSource ZHIP_TD_CLOSE_INV_BALANCE is not available in source system WP1CLNT310'. How do I fix the error and get the transports through? Remember, the existing config works fine in Dev. Thanks for your help in advance.
    Thanks
    Nisha

    what objects are you trying to transport along with the data source ? If you have transfer rules along with this request then might be you would get this error. Also check if your source conversion is maintained correctly. you can check that in RSA1 > Tools > Conversion of Source system names.
    Here maintain the system conversion. Once done, recreate a transport request with only data source and transport. Once done replicate and  transport your other objects.

  • How to debug extraction  a datasource in ecc starting execution in bw ?

    HI gurus,
    how to debug extraction  a datasource in ecc starting execution in bw ?
    Thanks.

    Hi,
    In your issue i thick data source trace in BW is not possible but RFC is the main criteria here if it is correct data will comes to the bw automatically when ever info package triggers.
    If you need to check the data source data in trace mode and it is not coming properly, then we need to check from RSA3 by executing with debug mode check box option.
    Still need any clarification let me know.
    Thanks & Regards,
    Srinu.Rapolu

  • 'error extracting the product installer'

    After my download completes it says "error extracting product installer (error 101) and that i should check my disc space, how can i fix this?? I have more than 500 GB of free disc space available.

    Troubleshoot Adobe Download Assistant
    And fitting the issue: If your disk is larger than 1TB, create a partition smaller than that.
    Mylenium

  • Download CS5 suite - error extracting product installer 101

    purchased CS5.5 premium suite, goto my orders, click download, does nothing. Eventually found the adobe download assistant and installed, download ran for 4 hours and successfully completed, and then gives the error, error extracting the product installer 101, check disk space.  I have 40 times the space needed so that isnt the issue.  Retried the download, got the same result. Also see on other posts, reference to clicking Alternate Download Method which I also cannot find, maybe because my download link doesnt do anything? On windows7 IE9. 

    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  DC, XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  6| 5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5 | 1
    Contribute:  CS5 | CS4, CS3 | 3,2
    FrameMaker:  12, 11, 10, 9, 8, 7.2
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.
    if you continue to have difficulty with dl'g from adobe.com you can indirectly dl from prodesigntools.com:
    if you follow all 7 steps you can directly download a trial here:  Download Adobe CS5.5 Trials: Direct Links (no Assistant / Manager) | ProDesignTools
    and activate with your serial number.
    if you have a problem starting the download, you didn't follow all 7 steps, or your browser does not accept cookies. 
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com). 
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com or initiates the download of an incorrect (eg, current) version.

  • Installing InDesign CC 2014 on Windows 7 fails with error EX11 (error extracting to temporary folder).

    @

    Hi Jeff,
    I finally resolved the problem. I was trying to install CC 2014 on a 32 Bit system not being aware that CC 2014 is 64 bit only!
    Thanks for your help
    Jo
    Am 24.07.2014 um 19:13 schrieb Jeff A Wright <[email protected]>:
    Installing InDesign CC 2014 on Windows 7 fails with error EX11 (error extracting to temporary folder).
    created by Jeff A Wright in Creative Cloud Download & Install - View the full discussion
    Jolauterbach the error indicates that your User account is not able to properly write to the temporary directory.  Please make sure you have sufficient disk space and proper rights to modify the temporary directory.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6580278#6580278
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Creative Cloud Download & Install by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

Maybe you are looking for

  • Help needed with MMAPI and print values to screen

    Hi, Using the RingToneConverter, I want to print out the values to the screen that the ring tone has. The values I want printed are actually any values at all! I am not picky at this point! Can anyone help with this? I would like it so that while the

  • Commando 4g won't activate

    I just received a commando 4g and I tried to active it but it won't active just sits there saying activating

  • How do I fix the error,  "Safari quit unexpectedly", when trying to start Safari?

    This error "Safari quit unexpectedly" suddenly started occuring on my MacBook Air when starting Safari.  I created a new user and it occurs with it, too.  Safari starts in safe mode with both users. 

  • INVOICE_UPDATE - MIRO ( RSEG-LFEHL)

    Hi All, I am using Badi INVOICE_UPDATE to change the value of "Vendor Error-lfehl". I am not able to do it with the INVOICE_UPDATE BADi because there are no export parameters in the BADi. So please any of have worked on the same scenario plz suggest

  • .dmg files not recognised!

    I've a lot of program dmg files on a CD as a backup, and since giving my MBP a clean fresh install of Leopard, these dmg files are no longer recognised. Meaning that when I click on them OSX doesn't know what to do with them! It doesn't recognise any