Complicated loading issue

Hi all,
One issue I have to solve. The loading process is as follow:
One cube (A) which loads data from R3 with delta mechnism, then A will post data into cube (B) and two ODSs with delta using one InfoPackage, after this this two ODSs will post data into a cube (C) with delta. All above loadings are in one process chain and daily run. The last step is that cube C will post data into cube D once a month with full load.
Now somehow some data is wrong in Cube A, these data has to be deleted and load again from R3. So my question is to correctly complete this whole loading process what the step by step is  I need to do ?
Thanks in advance.

Hi,
In continue with Loyee message.
Case1: If the worng data is updated to all the targets?? If Yes, then do the selective deletion, and run the repair full with the same selectiosn. Now from the cube A to other targets run the delta pakacge...it will take it up..
Case 2: If the wrong data is updated to Only target A?, if yes, then do the selective deletion Only in Cube A and run the repair full with same selections, run the delta to other targets..
Hope this will helps you
Regards
Mandadi

Similar Messages

  • SAP Mobile Sales 2.0 delta load issue for Sales Orders

    Hello,
    we have used Mobile Sales 2.0 with a Windows app for a while now. Our current issue is that sales reps won't see any historical sales order data on their devices.
    Background
    Due customer requirements, we need to make small changes to customer master data attributes and reload all customers from ERP to CRM. Then we ran delta loads (MAS_PARTNER followed by all other objects) to DOE, in which virtually all 5000+ customer accounts were compared. The delta load ran for about 3 days (some performance bottleneck we haven't located yet).
    During the delta load, data on devices was inconsistent. Accounts were missing and all transaction data disappeared. After the delta loads, all accounts and contacts are OK, save for a few. Data from activities (appointments, tasks) have reappeared, as they should. Only sales orders won't reappear. The sales orders exist in the backend and belong to active accounts and sales reps.
    Settings and troubleshooting so far
    We don't have any limitations for sales orders in CRM Sales Mobile configuration.
    We've run delta loads for all objects in transaction SDOE_LOAD.
    MAS_CUSTOMIZATION etc seem fine.
    We've re-run initial load for sales orders from CRM.
    In the test system, we've even reinitialized the whole CDS database on DOE and on the devices, then re-ran the loads.
    Checked steps suggested in discussion
    SAP CRM 2.0 initial load issue
    Historical sales orders (those created before the master data reload) exist in the backend, but don't show up on the device.
    If I change one of those historical sales orders in the backend, it gets sent to the device.
    If I create a new sales order in the backend or on the device, it is saved and replicated just fine.
    To sum it up, it seems DOE is unable to identify the sales orders relevant for replication.

    First Doubt i got clarify by my self as we can go with Unwired Runtime option .
    But i still have doubt in :
    2. How can i Modifying the Main Menu for iOS.
    i am able to customize the same for windows using files SybaseCRM.Configuration.xml file.
    Same how can i do for iphone/ipad.

  • Report loading Issue

    Hello all,
    I am using Oracle 6i  for  report and oracle10g for the database.I have created a matrix report in oracle Report but which report taking so much time  to show the output it almost taking more than 10 minutes,at the same time that query executed within 1 minute in toad which used in matrix report.
    kindly guide me how to solve the loading issue.

    I did not used any formula column in my report,all the values are taking from query.
    But I used different types of format trigger in my report for the coloring purpose.Does it make any problem?

  • Data Load Issue "Request is in obsolete version of DataSource"

    Hello,
    I am getting a very strange data load issue in production, I am able to load the data upto PSA, but when I am running the DTP to load the data into 0EMPLOYEE ( Master data Object) getting bellow msg
    Request REQU_1IGEUD6M8EZH8V65JTENZGQHD not extracted; request is in obsolete version of DataSource
    The request REQU_1IGEUD6M8EZH8V65JTENZGQHD was loaded into the PSA table when the DataSource had a different structure to the current one. Incompatible changes have been made to the DataSource since then and the request cannot be extracted with the DTP anymore.
    I have taken the follwoing action
    1. Replicated the data source
    2. Deleted all request from PSA
    2. Activated the data source using (RSDS_DATASOURCE_ACTIVATE_ALL)
    3. Re transported the datasource , transformation, DTP
    Still getting the same issue
    If you have any idea please reply asap.
    Samit

    Hi
    Generate your datasource in R/3 then replicate and activate the transfer rules.
    Regards,
    Chandu.

  • Index.php loading issue

    I finished and uploaded a new site in .php.
    I  have a graphics loading issue only with IE.
    The js  accordion with images will not reload after returning to the home page.
    Anyone out thier that can shed some light on this?
    http://carpetcleaningsantabarbarapro.com/index.php
    Thank you in advance
    Crissymarie

    Ken might be on to something.  The current release of jQuery is 1.7.2 which is compatible with jQuery Cycle.
    For the latest core library, you can link to jQuery's CDN like so:
              <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
    You have some improperly nested <h3> tags around your lists on lines 170 and 191.  To keep your code error free, simply delete the heading tags.
    Finally, as a courtesy to your site visitors, consider adding a cookie so people don't have to watch the Flash Spokesperson every time they go to your home page.   The link below shows how:
    http://alt-web.com/DEMOS/cookie-test-show-hide-flash-intro.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • TileList data load issue

    I am having an issue where the data that drives a tilelist
    works correctly when the tile list is not loaded on the first page
    of the application. When it is put on a second page in a viewstack
    then the tilelist displays correctly when you navigate to it. When
    the tilelist is placed in the first page of the application I get
    the correct number of items to display in the tilelist but the
    information the item renderer is supposed to display, ie a picture,
    caption and title, does not. The strange thing is that a Tree
    populates correctly given the same situation. Here is the sequence
    of events:
    // get tree is that data for the tree and get groups is the
    data for the tilelist
    creationComplete="get_tree.send();get_groups.send();"
    <mx:HTTPService showBusyCursor="true" id="get_groups"
    url="[some xml doc]" resultFormat="e4x"/>
    <mx:XMLListCollection id="myXMlist"
    source="{get_groups.lastResult.groups}"/>
    <mx:HTTPService showBusyCursor="true" id="get_tree"
    url="[some xml doc]" resultFormat="e4x" />
    <mx:XMLListCollection id="myTreeXMlist"
    source="{get_tree.lastResult.groups}"/>
    And then the data provider of the tilelist and tree are set
    accordingly. I tried putting moving the data calls from the
    creation complete to the initialize event thinking that it would
    hit earlier in the process and be done by the time the final
    completion came about but that didn't help either. I guess I'm just
    at a loss as to why the tree works fine no matter where I put it
    but the TileList does not. It's almost like the tree and the
    tilelist will sit and wait for the data but the item renderer in
    the tilelist will not wait. Which would explain why clicking on the
    tile list still produces the correct sequence of events but the
    visual component of the tilelist is just not working right. Anyone
    have any ideas?

    Ok, so if ASO value is wrong, then its a data load issue and no point messing around with the BSO app. You are loading two transactions to the exact same intersection. Make sure your data load is set to aggregate values and not overwrite.

  • BI Load issue in the transformation/DTP after SP 17

    Hello,
    After SP 17 applied in our BI system, we are having load issue in one particular transformation/DTP.
    See below the errors:
    u2022 Messages for 101 data records saved; request is red acc. to
    configuration
    u2022 Thee is no active nametab in the system, although an active ABAP/4
    Dictionary object was expected. Reactivate the ABAP/4 Dictionary object.
    Also I have activated the DSO, transformation and DTP. Also I went to SE14 and try to adjust my DSO, SE11 and activate the table but still having the issue.
    Can someone advise me on how to resolve this issue?
    Thanks a lot.
    Cesar

    Hi,
    Do the following: In BI, run transaction SE38 >> RSDG_CUBE_ACTIVATE to recreate the Metadata information
    for the Info-provider.
    Then execute another program via SE38: RSDD_RSTMPLWIDTP_GEN_ALL
    See Note 1161940 and 1152453 for more details.
    Regards,

  • BW sales load issue

    I have a problem with this.  The jobs in the screen snapshot below are running too long - 2LIS_11_VAITM, 2LIS_11_V_ITM, and 2LIS_13_VDITM.  They use to run for just a couple of minutes.  The job configuration is; when the first job finishes a delay of 10 minutes will be incurred then the second job will run, then another 10 minute delay before the third job runs.  After these 3 jobs are complete an activation job needs to run.  This activation job began to fail because the first 3 jobs were not finished.  For now, the activation job has been moved but we need to understand why these are running longer and fix it.  We may be experiencing a problem with database performance in PDF but I would not think it would take that much longer. 
    This is the BW sales load issue
    The info-package group is schedule @ 00:05 am and it contains 3 info-packages: VAITM, V_ITM and VDITM with 10 minutes execution gap.
    The first VAITM started 00:05:46 and ended it up in BW at 00:09:02.
    Then we have 10 minutes delayed between jobs.
    V_ITM started 00:20:12 and for some reason it finished at 01:00:51. We can see communication between PDF and BWP took much longer than normal.
    Then we have 10 minutes delayed between jobs
    At 01:00:25 the activation job started and failed. It requires the info-packages to be in GREEN status but V_ITM finished @ 01:00:51.
    It probably failed because V_ITM still had YELLOW status at the moment.
    VDITM started 01:12:02 and finally finished it load at 02:09:16. A big communication delayed between system.
    See below an example of the load on the 01/14/2007. It looks normal communication between systems
    Could you please give solution for this.
    Thanks
    Vasu.

    Hi,
    For every job you define and at the same time, you can also define the priority
    levels to each job, since, during your job execution might be your job queue is
    full with some other background processings, so try setting up the priority levels
    of the job.
    cheers,
    Pattan.

  • Does resteasy API have class loader issues when using via OSGi

    Does resteasy API have class loader issues when using via OSGi

    Hi Scott,
    THis isnt an answer to ur Question, but could u tell me which jar files are needed for the packages:
    com.sap.portal.pcm.system.ISystems
    com.sap.portal.pcm.system.ISystem
    and under which path I coul dfind them.
    Thnx
    Regards
    Meesum.

  • Demantra Data Load Issue

    I am new to Demantra. Have installed a stand alone Demantra system in our server. In order to load data, I created a new model, defined item and location levels, then clicked on 'Build Model'. The data is loaded into 3 custom tables created by me. After creating the model, I cannot login to 'Collaborator Workbench', it gives message 'There are system errors. Please contact your System Administrator'. Can anyone please tell me what I am doing wrong and how to resolve the issue.
    Thanks

    Ok, so if ASO value is wrong, then its a data load issue and no point messing around with the BSO app. You are loading two transactions to the exact same intersection. Make sure your data load is set to aggregate values and not overwrite.

  • Integrated WL/Jdeveloper class loading issue

    Hello,
    I am trying to run a deployed project , getting into this class loading issue. Any idea?
    javax.security.auth.login.LoginException: java.lang.LinkageError: loader constraint violation: when resolving interface method "com.scat.util.identity.UserFactory.lookup(Ljava/lang/String;)Lcom/scat/domain/identity/User;" the class loader (instance of weblogic/utils/classloaders/ChangeAwareClassLoader) of the current class, com/scat/auth/authentication/login/UserLoginModule, and the class loader (instance of sun/misc/Launcher$AppClassLoader) for resolved class, com/scatl/util/identity/UserFactory, have different Class objects for the type com/scat/domain/identity/User used in the signature
    Thanks
    Ram

    How many times are you loading the com/scat/domain/identity/User type?
    Is this in the system classloader and the application? and are you using class loading filtering in the application, for example,
    in weblogic.xml - prefer-web-inf-classes?

  • HR PA-EC Enterprise Compensation Management Load Issue

    All,
    I have activated standard business content and have connected ECC 5.0 source to BW 3.5.  I tried executing a load for Compensation Process ODS and the load says there is no data available in source system.
    I checked the source and infotype tables 0759 & 0758 both contain data.  I also did an extract check in source and it returns values, however when executing the load in BW it returns no values. 
    Any advice?
    Thanks,
    DC

    Hi DC,
       I know it has been more than an year that you faced this issue and closed this thread. But I thought I could get some input from you. I am having a similar situation, but in my case I am unable to see any records being pulled in the Extract Checker in ECC.
    The scenario I am having is same as yours. I have installed the Adjustments datasource 0HR_PA_CM_1 (and other datasources for Awards and Analysis) from Content and ran the extract checker. There were 0 records being pulled. Then I found out that the relevant info types for compensation are 758 and 759, and not 380(the delivered DS pulls data from info type 380).
    I see that in your case you are able to get the records in the extract checker. Can you please help me in getting the data being pulled from infotypes 758 and 759 ?
    Thank you. Any help will be greatly appreciated.

  • AR Open Conversion Load Issues

    Hi Friends,
    We are working on the AR Open Conversion load using LSMW and we are getting the error "Field BSEG-XREF1. does not exist in the screen SAPMF05A 0331" during batch input session (SM35).  Does anybody help me telling why we are getting this error?  Is there any configuration issues that is causing this error?
    Thanks.

    Also, does your document type AR allows zero amounts in the Amount field. I understand that, based upon document type and amount entered, the Reference1,2 & 3 fields are displayed.
    Thanks,
    Santosh

  • Exception currencies TCURX table, R3 - BW loading issue

    Hello Friends,
    I am facing issue in report values for amount in local currency key field. Its value not matching with R3 values. Decimal places are shifted in report.
    We are on BI7 (RSDS data source).
    There is data coming from R3 into one DSO from different different data sources (Sales, Billing, Purchasing etc) and then getting loaded to cube for reporting.
    Few data sources are standard like LIS and few are Z data sources.
    This issue must be related to exception currencies maintained in TCURX table. Becauase we are getting issues only for those currencies.
    For Ex: See R3 and report value is different.
    R3 value:71.230,00 KWD
    Cube value:71.230,00 KWD
    Report value: 7.123,000 KWD
    BW report is showing discrepancy for KWD, CLP (TCURX) currencies for Actual amount in LC key figure.
    Can you please explain how to handle fix here?
    I have heard that the ECC to BW the respective customization needs to be considered into account in the source system itself.
    So can we ask our R3 team to fix this issue for exceptional currencies on R3 side. And any particular information that we will have to share with R3 team to get this corrected?
    Please share your inputs on this.
    Thank You.

    Hi P.K,
    We too have faced same issue in last project, we followed some procedure as I attached below.
    Please go through the attached document and understand.
    Issue description: SAP stores all Amount values of different currencies with a fixed interpretation of having two decimal places. There are few exceptions to this rule for the currencies which has no meaning for the decimal places like 'Chilean Peso', Japanese Yen, South Korean Won, Paraguayan Guarani and many other currencies which we talk in the below sections. For few Currencies the fractions are needs to be stored more than 2 decimals due to the currency values and this document describes the procedures that needs to be followed to have the right reporting.
    Analysis provided:  Kenya Sales KPI’s values display by multiple of 100.
    This document describes the procedure to handle the currencies which has the decimal places other than 2 in the table TCURX.
    About TCURX table:
    Currencies which do not have two decimal places must be defined in table TCURX (decimal places for currency codes). The table determines the number of decimal places in the output according to the currency key. If the contents of currency exist in table TCURX as currency key CURRKEY, the system sets the number of decimal places according to the entry for the field CURRDEC in TCURX. You can maintain this table via the R/3 Implementation Guide (Global Settings -> Currencies, Transaction OY04).
    If a currency is not defined in Table TCURX (decimal places for currency codes), this currency is regarded as currency with two decimal places.
    Impact of TCURX in BW on data:
    Currently in my present system the following currencies were listed in the TCURX Table:
    Details of the Currencies
    In the above table some of the Currencies are obsolete.   
    Data load from Source to BW:
    In the Source I have the data like below:
    For one of the company the total net Sales is present as 675772,43 CLP (Chilean Peso) in the source system for the period Jan’12.
    When the data is loaded into BW:
    The data in the Source and in the Cube is matching each other.
    Data reported in the query looks like below:
    The data in the query gets multiplied by 100 which results in 67577243.00 CLP this is due to the fact that when we execute the query, the query looks at the possible entry of the the currency in the table TCURX. If the entry is available as 0, then it will multiply by 100 as normally as per SAP, all Currencies are stored with two decimal places.
    Corrective measures / steps which user should take before raising an issue:
    This behavior is due to the fact that the Query always looks at the TCURX table while execution and if there is an entry in TCURX then it will be considered as below:
    [Amount Value] * [10 ** (2- (CURRDEC entry in TCURX table))]
    In present case as the entry is marked as 0 in TCURX table the result will be like below:
                           = Amount*10**(2-0) = Amount*10**2 = Amount * 100
    This will be corrected as below:
    All amount related entries at the data source level should be marked to ‘External Format’.
    Earlier the same was like below with the internal format.
    In 3.x we have the option to choose the same at the infopackage level with 'Currency Conversion for External Systems':
    The above change in the data source will provide the below results:
    During data loads:  When we load the data into BW having amount fields in it, it checks the TCURX table for the currency entry. If the currency entry is present in TCURX table, it divides the amount value by 10** (2- (CURRDEC entry in TCURX table)).
    Query Output: The exactly reverse happens while displaying such values in the report output. The amount value will be multiplied by 10** (2- (CURRDEC entry in TCURX table)) while displaying in the report output.
    One of below example shows the results as below from the flat file when the format is changed to External.
    From Flat file: Sample content from Flat file
      In the Cube: Output from the Cube for the same entry
    Values are divided by 100 as for Currency IDR the entry is marked as ‘ZERO’ in TCURX table for number    of Decimal places.
    In the Query: Out of the Query looks like below:
    Values the source value matches with the target value where the values of the cube get multiplied by 100.
    Points to be noted: This procedure is only with the amounts having CURR data type.
    If the amounts are used as FLTP type then this issue can also be avoided.
    All the currencies having entry other than 2 in the field CURRDEC of table TCURX will be affected by this phenomenon.
    The division will be carried out at the time of loading while multiplication will be carried out at the time of report output display.
    Mainly this needs to be considered when dealing with the Flat file data loads which holds the currencies and for the ECC to BW the respective customization needs to be considered into account in the source system side.
    Regards,
    Vijay

  • Sharepoint web part Page Load issue

    Hi ,
     We are developing Sharepoint 2013 Integration application, We are fetching the data from third party application and dumping data into sharepoint List for offline analysis.
    Synchronization steps
    1) fetch data from third party application
    2) delete the old data
    3) Insert the new data in List
    4) Show the data in custom web part 
    synchronization is taking lot of time, is there any profiling  tools , we can measure the performance of method , network traffic which is causing the issue.
    We need to load the page less than second
    Regards
    Pat

    Hi,
    Per my understanding, you might want to improve the performance of your web part page.
    A suggestion is that you can create a custom Timer job in the server side which handles the data fetching and updating in a list in the backend periodically, the burden
    on the custom web part would get decreased.
    About create and deploy Custom Timer Job Definition in SharePoint Programmatically:
    http://www.codeproject.com/Tips/634208/Create-and-Deploy-Custom-Timer-Job-Definition-in-S
    Thanks 
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • Very Disappointing With BT Lack Of Support !!!

    Hello Everyone I would like to know how long a reported line fault takes BT to send out an engineer? As at the present time i have no dialling tone on my phone line to which i have now been unable to use my phone for over 14 days. As my phone connect

  • InDesign for a research project

    Hi, I am two years into a research project (the history of the locktenders and their families on the Fox River in Wisconsin).  I have scanned photos, Excel spreadsheets, Word documents, scanned items, video and audio recordings.  Someone suggested In

  • Adobe Acrobat 6.0 Professional in my widow 7

    What I must do to install Adobe Acrobat 6.0 Professional in my window 7

  • Color correcting - broadcast warning.

    what does the yellow exclamation mark on broadcast safe mean. Have been reading Ken stons CC tutorials and have been working to make my whites hit the 100 mark in my waveform. If it goes over 100 the warning lines turn red - obviously illegal - but a

  • Open pdf's, documents in new browser window SharePoint 2010

    Hi all, when a user clicks on pdf's, documents, html pages etc in a document library I need them to open in a new browser window. I've found lots of articles on how to do it in 2007 but none work in 2010. I know its not an out of the box function but