Test data deletion.

Hi,
I need to delete test data (master and transaction data) from my test server.  The 'Reset company code' transaction deletes the asset accounting side of the transactions.  How do I delete the corresponding FI & CO documents?
Muru

Hi,
in FI it is report SAPF020.
Regards,
Markus

Similar Messages

  • Delete a sequence of test data from SE37

    Hi
    I am relatively new to ABAP and I was wondering whether it is possible to delete a few test data records from SE37
    in one go, namely, for example delete 10 records of test data belonging to one user.
    I thank you for your reply.
    Sincerely
    Yuval

    Hi Peery
    Instead of directly deleting the entries from table EUFUNC.
    Enter the Author name in table EUFUNC and get the data.
    Then based on Object name & Date & Time manually delete the entries from Function Modules.
    It would maintain the data consistency and would keep your system stable.

  • How to generate test data for all the tables in oracle

    I am planning to use plsql to generate the test data in all the tables in schema, schema name is given as input parameters, min records in master table, min records in child table. data should be consistent in the columns which are used for constraints i.e. using same column value..
    planning to implement something like
    execute sp_schema_data_gen (schemaname, minrecinmstrtbl, minrecsforchildtable);
    schemaname = owner,
    minrecinmstrtbl= minimum records to insert into each parent table,
    minrecsforchildtable = minimum records to enter into each child table of a each master table;
    all_tables where owner= schemaname;
    all_tab_columns and all_constrains - where owner =schemaname;
    using dbms_random pkg.
    is anyone have better idea to do this.. is this functionality already there in oracle db?

    Ah, damorgan, data, test data, metadata and table-driven processes. Love the stuff!
    There are two approaches you can take with this. I'll mention both and then ask which
    one you think you would find most useful for your requirements.
    One approach I would call the generic bottom-up approach which is the one I think you
    are referring to.
    This system is a generic test data generator. It isn't designed to generate data for any
    particular existing table or application but is the general case solution.
    Building on damorgan's advice define the basic hierarchy: table collection, tables, data; so start at the data level.
    1. Identify/document the data types that you need to support. Start small (NUMBER, VARCHAR2, DATE) and add as you go along
    2. For each data type identify the functionality and attributes that you need. For instance for VARCHAR2
    a. min length - the minimum length to generate
    b. max length - the maximum length
    c. prefix - a prefix for the generated data; e.g. for an address field you might want a 'add1' prefix
    d. suffix - a suffix for the generated data; see prefix
    e. whether to generate NULLs
    3. For NUMBER you will probably want at least precision and scale but might want minimum and maximum values or even min/max precision,
    min/max scale.
    4. store the attribute combinations in Oracle tables
    5. build functionality for each data type that can create the range and type of data that you need. These functions should take parameters that can be used to control the attributes and the amount of data generated.
    6. At the table level you will need business rules that control how the different columns of the table relate to each other. For example, for ADDRESS information your business rule might be that ADDRESS1, CITY, STATE, ZIP are required and ADDRESS2 is optional.
    7. Add table-level processes, driven by the saved metadata, that can generate data at the record level by leveraging the data type functionality you have built previously.
    8. Then add the metadata, business rules and functionality to control the TABLE-TO-TABLE relationships; that is, the data model. You need the same DETPNO values in the SCOTT.EMP table that exist in the SCOTT.DEPT table.
    The second approach I have used more often. I would it call the top-down approach and I use
    it when test data is needed for an existing system. The main use case here is to avoid
    having to copy production data to QA, TEST or DEV environments.
    QA people want to test with data that they are familiar with: names, companies, code values.
    I've found they aren't often fond of random character strings for names of things.
    The second approach I use for mature systems where there is already plenty of data to choose from.
    It involves selecting subsets of data from each of the existing tables and saving that data in a
    set of test tables. This data can then be used for regression testing and for automated unit testing of
    existing functionality and functionality that is being developed.
    QA can use data they are already familiar with and can test the application (GUI?) interface on that
    data to see if they get the expected changes.
    For each table to be tested (e.g. DEPT) I create two test system tables. A BEFORE table and an EXPECTED table.
    1. DEPT_TEST_BEFORE
         This table has all EMP table columns and a TEST_CASE column.
         It holds EMP-image rows for each test case that show the row as it should look BEFORE the
         test for that test case is performed.
         CREATE TABLE DEPT_TEST_BEFORE
         TESTCASE NUMBER,
         DEPTNO NUMBER(2),
         DNAME VARCHAR2(14 BYTE),
         LOC VARCHAR2(13 BYTE)
    2. DEPT_TEST_EXPECTED
         This table also has all EMP table columns and a TEST_CASE column.
         It holds EMP-image rows for each test case that show the row as it should look AFTER the
         test for that test case is performed.
    Each of these tables are a mirror image of the actual application table with one new column
    added that contains a value representing the TESTCASE_NUMBER.
    To create test case #3 identify or create the DEPT records you want to use for test case #3.
    Insert these records into DEPT_TEST_BEFORE:
         INSERT INTO DEPT_TEST_BEFORE
         SELECT 3, D.* FROM DEPT D where DEPNO = 20
    Insert records for test case #3 into DEPT_TEST_EXPECTED that show the rows as they should
    look after test #3 is run. For example, if test #3 creates one new record add all the
    records fro the BEFORE data set and add a new one for the new record.
    When you want to run TESTCASE_ONE the process is basically (ignore for this illustration that
    there is a foreign key betwee DEPT and EMP):
    1. delete the records from SCOTT.DEPT that correspond to test case #3 DEPT records.
              DELETE FROM DEPT
              WHERE DEPTNO IN (SELECT DEPTNO FROM DEPT_TEST_BEFORE WHERE TESTCASE = 3);
    2. insert the test data set records for SCOTT.DEPT for test case #3.
              INSERT INTO DEPT
              SELECT DEPTNO, DNAME, LOC FROM DEPT_TEST_BEFORE WHERE TESTCASE = 3;
    3 perform the test.
    4. compare the actual results with the expected results.
         This is done by a function that compares the records in DEPT with the records
         in DEPT_TEST_EXPECTED for test #3.
         I usually store these results in yet another table or just report them out.
    5. Report out the differences.
    This second approach uses data the users (QA) are already familiar with, is scaleable and
    is easy to add new data that meets business requirements.
    It is also easy to automatically generate the necessary tables and test setup/breakdown
    using a table-driven metadata approach. Adding a new test table is as easy as calling
    a stored procedure; the procedure can generate the DDL or create the actual tables needed
    for the BEFORE and AFTER snapshots.
    The main disadvantage is that existing data will almost never cover the corner cases.
    But you can add data for these. By corner cases I mean data that defines the limits
    for a data type: a VARCHAR2(30) name field should have at least one test record that
    has a name that is 30 characters long.
    Which of these approaches makes the most sense for you?

  • Reinstall Data Warehouse to remove test data

    We are wanting to go live with SCSM soon, hopefully in a couple of weeks.
    Unfortunately, we don't have the infrastructure in which I was able to setup a test and production environment. I've managed to remove the test data out of the ServiceManager database via the SMLets, but we are wanting to remove the test data out of the
    data warehouse as well. I've attempting manually deleting from the database (I know unsupported), though this did not work and just gave many database errors (as expected).
    What I'm wondering is if it's possible to uninstall/reinstall the DW. Upon reinstall, I know I would need to likely re-register it with SCSM.
    In doing this, will all of the custom classifications/statuses/templates/etc stay in place?
    Once installed, would all of the sync jobs pick up as expected and sync the current data in the Service Manager (No incidents/Changes/etc) to the DW?
    We have all databases/Service Manager/Portal running on one server. DW running on a 2nd server.
    If anyone could provide some insight around this, it would be much appreciated. Any direction towards documentation would also be great!
    Thanks

    The best scenario (and my recomendation) would be to export and take backup of all your management packs, reinstall the entire Service Manager environment and import them again. In that way you should be able to get a fresh, functional Service
    Manager and all your settings would be retained.
    However, to answer your question, you would need to:
    - Unregister with SCSM DW
    - Uninstall DW
    - Delete the three DW databases
    - Install DW
    - Register with DW
    This would not affect any settings in your SCSM environment and you would have an empty DW.
    Regards
    //Anders
    Anders Asp | Lumagate | www.lumagate.com | Sweden

  • Mapping debbuging error:DBG1006: Error while initializing test data

    Hi,
    I have created a mapping in which I am trying to delete data from a table based on exisitence of rows in another table with a filter condtion in between them.When i try to run the debbugger, it throws following error:
    ============
    Analyzing map for debug...
    Retrieving Control Center connection info...
    Connecting to Control Center schema...
    Checking character set of Control Center schema...
    Configuring sources and targets...
    Mapping Debugger Error:
    oracle.wh.service.sdk.mapping.debugger.WBMappingDebuggerException: DBG1006: Error while initializing test data for sources and targets:
    oracle.wh.repos.sdk.CMPException: Trying to access invalid Object.
    Element ID: 110138
    Status: 4
    Owning FCO: 98409
    ==================
    Any idea what could be the possible cause?
    Query which I am trying to simulate is of following type:
    Delete from TableA t1
    where exits(select 1 from TableB t2 where t1.col1 = t2.col1 and t2.col2 = 'delete')
    Thanks
    AJ.

    Oops..thats weird.
    Tell me one thing...then how gud is the code generated in terms of working...if someone has to really test the code pre-hand for expected business logicWhy i am raising this concern is becoz there are many features for which OWB provides support in indirect way(workaround) like exists/not exists.
    Do we need to deploy mapping each time and then test through a run from Control centre?
    Other thing, As far i understand, the code generated is not in such a format that one can directly copy paste it in any sql/plsql editor and test it...
    Regards
    AJ.

  • Clean up all test data

    Hi all,
    HOw ya'all? My collegues and I have been loading data to our BWQ system to test our extraction process individually. Now i want to clean up all this test data from all over the system(master data, ods,psa cubes etc) and start loading QA data systematically in order to run integrated data load test.
    Every time i try to clean up the data from one of these data containers i get msg like
    The data cannot be deleted coz it has already been loaded to other infoproviders.Do u really want to deleted the data and all the associate settings. If u do so, u need to set up those setting all over again.
    And some other msgs that i do not remember at his moment.
    What i need is structured and sequential steps to clean up the data completely in the system. Can anybody help?
    Thanks,
    Prathibha.

    Hi,
    Start deleting data from highest level.
    i.e. Infocube->Ods->masterdata objects.
    It is require to delete the data from all the associate objects . Relation can be easily find out by data flow and where used list in case of infobject.
    Hope it helps.
    Regards,
    Aditya

  • TEST DATA for *PurchaseOrderCreateRequestConfirmation_In*

    BPM Experts ,
    We are consuming the service " PurchaseOrderCreateRequestConfirmation_In" from the HU2 system in one of my BPM process . But when I am testing it in the WS Navigator I am not able to fill the right input parameters . Please provide me with the TEST DATA for this service or let me know where to locate it if available in the ES Workplace.
    I
    Service Name : PurchaseOrderCreateRequestConfirmation_In
    System : HU2
    WS Navigator on SAP Systems : http://sr.esworkplace.sap.com/webdynpro/dispatcher/sap.com/tcesiespwsnavui/WSNavigator
    Regards,
    Srikanth

    Thanks for your support Martin...
    But  in BPM process I am not able create PO .Please check the below link what could be the reason??
    2.0 #2008 10 27 17:50:16:437#+0530#Error#com.sap.glx.core.kernel.execution.LeaderWorkerPool#
    #BC-BMT-BPM-SRV#com.sap.glx.core.svc#001D92DB3D06056900000000000005E8#2008650000000853##com.sap.glx.core.kernel.execution.LeaderWorkerPool.Follower.run()#SAP_BPM_Service#0##5092B801A40411DD8A05001D92DB3D06#5092b801a40411dd8a05001d92db3d06#5092b801a40411dd8a05001d92db3d06#0#Galaxy 595 / Follower Worker#Java##
    An error occurred while executing transition: #5## #AUTOMATED_ACTIVITY_CreatePo(Token_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(Instance_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(null,null,null,false),2), Instance_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(null,null,null,false), Context_0_DO_InvestmentApprovalProcess_fc11fbbc4c0a8693cda10b7b69df1d65(Instance_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(null,null,null,false),Scope_1_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(Instance_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(null,null,null,false)),2,true))#com.sap.glx.core.kernel.api.TransitionException: An exception occurred while executing the script "_Purchase_Order_Approval_Process:AUTOMATED_ACTIVITY_CreatePo(
          com.sap.glx.adapter.BPMNAdapter:Token_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65 token,
          com.sap.glx.adapter.BPMNAdapter:Instance_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65 parent,
          com.sap.glx.adapter.internal.ContainerAdapter:Context_0_DO_InvestmentApprovalProcess_fc11fbbc4c0a8693cda10b7b69df1d65 context_0){
      exit=new com.sap.glx.adapter.BPMNAdapter:Exit();
      exit:addParameter(token);
      exit:addParameter(parent);
      exit:addParameter(context_0);
      exit:onActivation("4A141FDCD30A03D0455111DEC347001D92DB3D39", parent, token);
      delete exit;
      controller=new com.sap.glx.adapter.internal.ExceptionAdapter:ExceptionController();
      controller:setContext(token);
      delete controller;
      callscope=new com.sap.glx.adapter.internal.TypeRegistry:Scope_6_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(parent);
      call=new com.sap.glx.adapter.UnifiedConnectivityAdapter:Call_0_CreatePo_fc11fbbc4c0a8693cda10b7b69df1d65(callscope);
      request=callscope:instantiate("http://sap.com/xi/APPL/SE/Global", "\#PurchaseOrderCreateRequestMessage_sync");
      mapper=new com.sap.glx.adapter.internal.Transformer:DataMapper();
      yves_in=new com.sap.glx.adapter.internal.Transformer:Data();
      yves_out=new com.sap.glx.adapter.internal.Transformer:Data();
      data=context_0:getData();
      yves_in:setData("sap.com/glx/", "$sap.com/glx/:DO_InvestmentApprovalProcess", data, "DA49727FF1D4D9500E2210F8618BADAC");
      yves_out:setData("http://sap.com/xi/SAPGlobal20/Global", "$http://sap.com/xi/SAPGlobal20/Global:PurchaseOrderCreateRequest_sync", request, "C092C3F81CCAD6856EF323EBD1588DA3");
      mapper:map("4A141FDCD30A03D3455111DEB4DC001D92DB3D39_fc11fbbc4c0a8693cda10b7b69df1d65", yves_in, yves_out);
      request=yves_out:getData("http://sap.com/xi/SAPGlobal20/Global", "$http://sap.com/xi/SAPGlobal20/Global:PurchaseOrderCreateRequest_sync", "C092C3F81CCAD6856EF323EBD1588DA3");
      delete yves_in;
      delete yves_out;
      delete mapper;
      call:setInputData("http://sap.com/xi/SAPGlobal20/Global", "$http://sap.com/xi/SAPGlobal20/Global:PurchaseOrderCreateRequest_sync", request);
      response=callscope:instantiate("http://sap.com/xi/APPL/SE/Global", "\#PurchaseOrderCreateConfirmationMessage_sync");
      call:setOutputData("http://sap.com/xi/SAPGlobal20/Global", "$http://sap.com/xi/SAPGlobal20/Global:PurchaseOrderCreateConfirmation_sync", response);
      call:invoke();
      response=call:getOutputData("http://sap.com/xi/SAPGlobal20/Global", "$http://sap.com/xi/SAPGlobal20/Global:PurchaseOrderCreateConfirmation_sync");
      mapper=new com.sap.glx.adapter.internal.Transformer:DataMapper();
      yves_in=new com.sap.glx.adapter.internal.Transformer:Data();
      yves_out=new com.sap.glx.adapter.internal.Transformer:Data();
      yves_in:setData("http://sap.com/xi/SAPGlobal20/Global", "$http://sap.com/xi/SAPGlobal20/Global:PurchaseOrderCreateConfirmation_sync", response, "C092C3F81CCAD6856EF323EBD1588DA3");
      mapper:map("4A141FDCD30A03D5455111DE84B3001D92DB3D39_fc11fbbc4c0a8693cda10b7b69df1d65", yves_in, yves_out);
      delete yves_in;
      delete yves_out;
      delete mapper;
      delete call;
      delete callscope;
      token:state=3;
    at com.sap.glx.core.kernel.execution.transition.ScriptTransition.execute(ScriptTransition.java:69)
    at com.sap.glx.core.kernel.execution.transition.Transition.commence(Transition.java:241)
    at com.sap.glx.core.kernel.execution.LeaderWorkerPool$Follower.run(LeaderWorkerPool.java:118)
    at com.sap.glx.core.resource.impl.common.WorkWrapper.run(WorkWrapper.java:58)
    at com.sap.glx.core.resource.impl.j2ee.ServiceUserManager$ServiceUserImpersonator$1.run(ServiceUserManager.java:116)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:337)
    at com.sap.glx.core.resource.impl.j2ee.ServiceUserManager$ServiceUserImpersonator.run(ServiceUserManager.java:114)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:169)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:266)
    Caused by: com.sap.glx.core.kernel.api.TransitionException: An exception occurred while executing the script command "mapper:map("4A141FDCD30A03D3455111DEB4DC001D92DB3D39_fc11fbbc4c0a8693cda10b7b69df1d65", yves_in, yves_out)"
    at com.sap.glx.core.kernel.trigger.config.Script.execute(Script.java:675)
    at com.sap.glx.core.kernel.execution.transition.ScriptTransition.execute(ScriptTransition.java:64)
    ... 11 more
    Caused by: java.lang.IllegalArgumentException: Value '2008-10-27T17:50:16.437+05:30' of type http://sap.com/xi/APPL/SE/Global\#\#Date fails validation check: pattern=[[0-9]-[0-9]-[0-9]]
    at com.sap.sdo.impl.types.builtin.TypeLogic$FacetCheck.check(TypeLogic.java:358)
    at com.sap.sdo.impl.types.builtin.TypeLogic.checkFacets(TypeLogic.java:528)
    at com.sap.sdo.impl.types.builtin.TypeLogic.convertFromJavaClass(TypeLogic.java:296)
    at com.sap.sdo.impl.objects.strategy.AbstractDataStrategy.convert(AbstractDataStrategy.java:687)
    at com.sap.sdo.impl.objects.strategy.PropertyChangeContext.convertObject(PropertyChangeContext.java:308)
    at com.sap.sdo.impl.objects.strategy.PropertyChangeContext.checkAndNormalizeDataTypeObject(PropertyChangeContext.java:302)
    at com.sap.sdo.impl.objects.strategy.PropertyChangeContext.checkAndNormalizeValue(PropertyChangeContext.java:211)
    at com.sap.sdo.impl.objects.strategy.AbstractPropSingleValue.setValue(AbstractPropSingleValue.java:48)
    at com.sap.sdo.impl.objects.GenericDataObject.set(GenericDataObject.java:620)
    at com.sap.glx.mapping.execution.implementation.node.SdoNode$PrimitiveItemContainer.appendNode(SdoNode.java:375)
    at com.sap.glx.mapping.execution.implementation.assignment.SetAssignment.assign(SetAssignment.java:23)
    at com.sap.glx.mapping.execution.implementation.Interpreter.mapPart(Interpreter.java:145)
    at com.sap.glx.mapping.execution.implementation.Interpreter.mapPart(Interpreter.java:151)
    at com.sap.glx.mapping.execution.implementation.Interpreter.mapPart(Interpreter.java:151)
    at com.sap.glx.mapping.execution.implementation.Interpreter.mapMapping(Interpreter.java:140)
    at com.sap.glx.mapping.execution.implementation.Interpreter.map(Interpreter.java:135)
    at com.sap.glx.core.internaladapter.Transformer$ClassRegistry$MapperClassManager$MapperClassHandler$MapperInvocationHandler.invoke(Transformer.java:1797)
    at com.sap.glx.core.internaladapter.Transformer$TransformerInvocationHandler.invoke(Transformer.java:399)
    at com.sap.glx.core.dock.impl.DockObjectImpl.invokeMethod(DockObjectImpl.java:459)
    at com.sap.glx.core.kernel.trigger.config.Script$MethodInvocation.execute(Script.java:247)
    at com.sap.glx.core.kernel.trigger.config.Script.execute(Script.java:670)
    ... 12 more
    #2.0 #2008 10 27 17:50:23:953#+0530#Error#com.sap.jms.client#
    #BC-JAS-JMS#jms#001D92DB3D06056C00000000000005E8#2008650000000025##com.sap.jms.client.com.sap.jms.client.session.JMSTopicSession#Guest#0##9E68D790A42111DD8FAC001D92DB3D06#9e68d790a42111dd8fac001d92db3d06#9e68d790a42111dd8fac001d92db3d06#0#JMS Session 5 (95)#Plain##
    java.lang.NullPointerException
    at com.sap.netweaver.rtmf.serverimpl.services.UserManagerService.doLogout(UserManagerService.java:622)
    at com.sap.netweaver.rtmf.serverimpl.services.UserManagerService.activeActionMethod(UserManagerService.java:99)
    at com.sap.netweaver.rtmf.serverimpl.services.UserManagerService.onClusterMessageArrived(UserManagerService.java:79)
    at com.sap.netweaver.rtmf.messagingimpl.services.RTMFService$RTMFClusterListener.onMessage(RTMFService.java:257)
    at com.sap.jms.client.session.JMSSession.deliverMessage(JMSSession.java:805)
    at com.sap.jms.client.session.JMSSession.run(JMSSession.java:728)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:169)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:266)
    Edited by: srikanth d on May 21, 2009 3:03 PM

  • Issue with master data deletion

    Hi,
    In one of our report, there is a filter option on country.The help values on this filters shows some country codes along with country Text values.These codes were once used before the codes with text were maintained.We dont want these codes to appear in the selection options.
    Filter looks like this :
    AE
    AZ
    Austria
    Australia
    B
    Belgium
    Now, once the texts were maintained, we deleted the data from cube and reloaded it however, the filter option still shows those codes.
    I checked in the cube entries and these codes are no where used.
    These codes are however, still lying in the dimension table.
    how can we get rid of these country codes in the selection option.
    Query already have option of having only posted values in Infoprovider as selection input.
    I hav tried RSRV elementary test "Entries not used in dimension table" n this didnt work.
    Any clue ?
    Regards,
    Tapish

    Dbl click 0COUNTRY infoobject, under 'Business Explorer' tab, select Only Values in InfoProvider' for 'Query Def Filter Value selection' & 'Query Execution Filter Value selection'. See whether this works.
    ELSE
    Delecion of the master data
    Deleting Master data

  • 0material data deletion and uploading Problem

    Hi to all,
    I have already deleted the transcational data.
    and now I want to delete master data from 0material infoobject with SIDs option
    a information box will appear
    SOME MASTER DATA CANNOT BE DELETED
    and if u confrim the dialog box
    another dialog box will appear
    The system is unable to delete all of the specified master data, because some of it is still in use
    See log:Object RSDMD, sub-object MD_DEL
    and also if u delete without SIDs option
    still same the information will come.
    The system is unable to delete all of the specified master data, because some of it is still in use
    See log:Object RSDMD, sub-object MD_DEL
    can any one tell me why we cant delete complete master data.
    or is there any solution for that.
    also
    if i have loaded master data from R3 Quality to 0material infoobject and now i want to load the data from R3 production .
    so does i need to delete the previous R3 Quality data first before loading the R3 Production data in 0material.
    Does it will overright 0material  R3 quality data from R3 production data.
    and if R3 quality data is different from R3 production data , does still it will over right.
    Please cany any one suggest me what to do and why.
    I shall be thankfull to yo for this.
    Regards
    Pavneet Rana

    Hi Pavneet,
    Check the below points might help you
    As you said the system prompted u 'some master data cannot be deleted' .. continue with this message.
    Next goto tcode SLG1-- enter Object: RSDMD and Subobject: MD_DEL and User: ur userID and F8
    In the next screen Expand node and dbl click 'Problem class additional information'
    This will give u which ever objects using SIDs of this master data.
    U should delete this SID according to that list.
    Then U should delete particular data from DSO/Cubes.
    Once data deleted from cube, then
    Use Tcode RSRV -> Tests in Transaction RSRV -> All Elementary Tests -> Transaction Data -> Entries Not Used in the dimension of an InfoCube (Dbl Click)
    From the right side window, expand u201CEntries Not Used in the Dimension of an InfoCubeu201D Node &
    Enter InfoCube (like 0SD_C01), click u201CTransferu201D
    Now, click u201CExecuteu201D (Toolbar)u2026 and the results displayed in the right side window..
    Now, click u201CCorrect erroru201D

  • Test (Please Delete)

    12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 1234567980123456798012345679801234567980123456798

    I believe the problem is with your bursting query. You currently have:
    select distinct
    COLLEGE_ID KEY,
    'student_letter' TEMPLATE,
    'RTF' TEMPLATE_FORMAT,
    'en-US' LOCALE,
    'RTF' OUTPUT_FORMAT,
    'EMAIL' DEL_CHANNEL,
    '[email protected]' PARAMETER1,
    '[email protected]' PARAMETER2,
    '[email protected]' PARAMETER3,
    'Test-Please Delete' PARAMETER4,
    'Test' PARAMETER5,
    'true' PARAMETER6,
    '[email protected]' PARAMETER7
    from dual;You are selecting from dual. When selecting COLLEGE_ID from dual, you're not going to get anything, in fact you'll get an error saying that the column does not exist. You need to make sure that what you select for the KEY value matches the value set for the 'Deliver By' drop down. In order to do this, you'll have to select from your students table. So a bursting query that should work (I haven't tried it myself, so sorry for any syntax errors) would be:
    select distinct
    students_id KEY,
    'student_letter' TEMPLATE,
    'RTF' TEMPLATE_FORMAT,
    'en-US' LOCALE,
    'RTF' OUTPUT_FORMAT,
    'EMAIL' DEL_CHANNEL,
    '[email protected]' PARAMETER1,
    '[email protected]' PARAMETER2,
    '[email protected]' PARAMETER3,
    'Test-Please Delete' PARAMETER4,
    'Test' PARAMETER5,
    'true' PARAMETER6,
    '[email protected]' PARAMETER7
    from students(do not put a semi-colon at the end)
    Note that I'm using 'students_id' instead of COLLEGE_ID. This is because you have aliased students_id as COLLEGE_ID in your data set query. It will match up with your 'Deliver By' value that you have set for /ROWSET/ROW/COLLEGE_ID.
    Hope this helps, it can definitely get confusing.

  • How to load Test data from a Text file in ECATT

    Hi,
    I have created a test configuration with a test script, system data container, and test data container.
    I have done the recording of a transaction and created the script. Parameterization is done for the script and have imported those parameters from script in to the data container.
    I am trying to load a the data from a text file on the local work-station. The data is not being read.
    Please explain this in detail (step by step) as I am very new to ECATT.
    I am trying this on SAP ECC 6.0 IDES server.
    Thanks in Advance
    Vikas Patil

    Please explain this in detail (step by step) as I am very new to ECATT.
    Thanks in Advance
    Vikas Patil

  • Not able to change the data of test data containers in production system

    Dear All,
    We have created eCATT scripts in Development SolMan System and moved the transports to Production SolMan System.  Customer wants to change the data at Test data containers and run the scripts in production system but we are not able to edit the data. 
    May be the reason is SCC4 transaction code has set the below option.
    Changes and transports for client-specific Objects
    u2022 No changes allowed
    Customer doesnu2019t want to change the above option and wanted to change the test data containers to give different datau2019s and run the eCATT scripts.
    Could you please let me know the solution for this?
    Your help is really appreciated.
    Thanks,
    Mahendra

    eCatt has the feature where you don't need to transport the scripts or test configuration to our target system. We can keep all our scripts and test data in Solman and run this script any other system in your landscape using the System data container and target system.
    Maintain the production as one of the target system in System container in Solman and point that system while running the script. Change the test data in Solman to run this script.
    Let me know if you need more information
    thanks
    Venkat

  • Data Error in the Query/Report after selective data deletion for infocube

    Hi Experts,
    Please advise what i was missing and what went wrong...
    I got a Query (Forecast) on a Multicube...which is based on 2 Infocubes with Aggregates...
    As i identified some data discrepency..yesteraday i performed selective data deleation on one of the Infocube
    and executed report yesteraday and the results in the query are correct...
    When today i executed the same report i am getting different results..
    When i compared the results of the report with that of data in cube they are not matching
    The report is not displaying the data in cube..for some rows it is displaying the data in the cube but for some rows it is just displaying same as the above row
    there is no data loaded into info cube after selective deleation
    Do i need to perform request compression and fill the aggregated after selective deleation
    Please advise what went wrong

    Hi Venkat,
    No i haven't done anything on aggregates before or after selective delete
    As there is not data load after the selective delete according to SAP Manual we don't need to perform any thing on aggregates...as selective data deletion on cube will delete data from aggregates as well
    Please update how to identify error

  • Test data corrupted issue while re-opening the Test in PTF8.53

    Hi,
    While re-opening the test case in PTF8.53,there is a pop up message displaying test data is corrupted.
    Ran successfully yesterday,trying to reopen however getting this issue.
    Any solution to retreive it back?

    Actually....iam opening the form from windows xp.Means what? Are u opening in the browser or in the Forms Builder?
    ----in the browser
    when i create a new form in windows xp using developer suite (i have installed developer suite) i am able to connect the database. i checked the tnsping in server its working.....
    This means developer suite has been configured for database.---i configured the developer suite(172.16.7.123) to 9idb(172.16.7.2)
    but i am not able to open the form.What error are u getting when u open the form?
    ---when i open the form in the browser (http://appsworld.ncc.com:7778/forms/frmservlet?config=test)
    its asking me the username,password,database.
    i gave username=ncc password=nccpwd database=test
    In the db server's tnsnames.ora...i have given the db details under test.
    if i do "tnsping test" the result is ok. but when i open the form in the browser im getting the ora-12514 error after giving the above said details of username.
    But....when i give the username,password and database of infrastructure i.e.,
    username=system password=oradba database=orcl then the form is opening in the browser.

  • Populating the test data in table of IDES ECC 5.0 in Oracle

    Hi Guys,
    I have installed IDES ECC 5.0 successfully without any errors. But I don't see the data in tables like PA0001 etc. Can some body give me the steps for populating the tables with test data. I was able to sign on using DDIC in client 000.
    Thanks,

    you are using wrong client, login into client 800. check tcode SCC4 to check which client you want to log into.

Maybe you are looking for