Assistance Needed on Data Load Monitoring

presently i'm working in a support proj which is data load monitoring ( mainly process chains) , As a result of which i will the responsible person to fix some of the loads when it fails eg : Duplicate records, errorneous records, attrbutute chain run etc .
As a fresher in BW i need to learn some of the things like Types of updates, process types & process chains proficiently thick & fast , i request you to please send in some PDF's or ppt regarding the same , if any books are there then please suggest one.
i Need mainly regarding
Dataflow & update Types Briefly .
process Types , chains
Delta mechanism .
Hope you will bail me out of this situation.
Thanks in Advance ,
HP

Here are all the links:
sap document on process chains:
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8da0cd90-0201-0010-2d9a-abab69f10045
help.sap.com link for creation of process chains:
http://help.sap.com/saphelp_nw04/helpdata/en/67/13843b74f7be0fe10000000a114084/frameset.htm
helpful threads on issues related to process chains:
Process Chains creation and monitoring
Process Chain
Re: OPEN HUB with Process Chain
http://help.sap.com/saphelp_nw04/helpdata/en/67/13843b74f7be0fe10000000a114084/frameset.htm
Re: OPEN HUB with Process Chain
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=3806122
Re: attribute change run
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=3790051
Re: Process Chain Scheduling
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=4426820
Re: Process Chain
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=3692343
Re: Process Chain
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=3841608
Re: Can a process can have more than one variant?
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=3855067
Re: about the open hub...!
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=3700389
Re: Process chain statistics
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=4162319
Re: Process Types in BI 7.0
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=3759916
Re: How to deactivate the local chain in Main chain
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=3591699
Re: changing a process type during running of process chain
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=3750639
Re: Node for Process chain--Urgent
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=3692720
Re: Process Chains Events
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=3707415
Re: process chain event trigger problem
https://forums.sdn.sap.com/click.jspa?searchID=6646868&messageID=4374184
Thanks.,...
Shambhu

Similar Messages

  • Common issues in data load monitoring...

    Hi all,
    Can u please tell me what are the common issues that occur during data load monitoring and how to rectify them??

    This is a bit dependent on your system and landscape. but to mention some of issues:
    - Deadlock in cube because the inxedes were not dropped before loading data into cube
    - Unallowed signs in master data prevent system from creating SID
    - Duplicate values in master data load (can be avoided by setting a flag in DTP)
    - Loading delta package without having intitialized before
    - Source package delivers key figure without units (this happens when laoding into a cube or an DSO with SID generation)
    - Missing replication of data source after transporting data source in source system
    Regards
    Aban

  • Data Load Monitoring.

    Dear Experts,
    I would like to know on what circumstances we should use following Data load monitoring tools:
    1.     RSMO
    2.     SSA/BWT
    3.     ST13
    4.     RZ20
    It would be more helpfull if you can describe pros and cons of each tool.
    Regards
    Vivek Tripathi

    Hi Vivek,
    RSMO is used to monitor the dataloads coming into the BI system. Here you can find the details for each and Every load happened.
    SSA/BWT is a Program which provide you the details about Process Chain Analysis, Detailed Request Analysis ,Aggregate Toolset etc.
    Refer this Wiki for more details.
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/bi/bw%252btools
    ST13- This provides a set of tools which talk mostly about Performance of the BI system.
    Refer this Blog
    Overview important BI performance transactions
    Regarding RZ20 - It is called as CCMS Monitor Sets
    Here in CCMS you have different monitoring tools for different components.
    If  BI is concerned you can monitor the details about BI Accelerator Monitor,BI Key Performance Indicators ,BI Monitor etc.
    Regards
    Karthik

  • BW Data Load Monitoring

    Hi,
    Could anybody say me how to monitoring a load from R3(4.6C) to BW(3.5)?
    I need to know the size in MB transfered in a load. In transaction RSMON i can see the records transfered but i don´t know how to calculate the mb. I need to know the size of the records to calculate this. Or there is a transaction where can i find the information?
    Thanks.

    Hi,
    The perfect way to calculate the size of your daily data load in MB is to.
    Goto Transaction DB02
    Press the Space Statistics which you can find at the end of the screen..
    A small pop window will open - in that select table statistics
    Now a new screen will open, give the name of your table(PSA, DSO, Cube ) and make sure you give the technical name that starts with /BIC/ and you can see
    the size and other details for a day, week and month.
    Regards,
    Kadriks

  • Need faster data loading (using sql-loader)

    i am trying to load approx. 230 million records (around 60-bytes per record) from a flat file into a single table. i have tried sql-loader (conventional load) and i'm seeing performance degrade as the file is being processed. i am avoiding direct path sql-loading because i need to maintain uniqueness using my primary key index during the load. so the degradation of the load performance doesn't shock me. the source data file contains duplicate records and may contain records that are duplicates of those that are already in the table (i am appending during sql-loader).
    my other option is to unload the entire table to a flat file, concatenate the new file onto it, run it through a unique sort, and then direct-path load it.
    has anyone had a similar experience? any cool solutions available that are quick?
    thanks,
    jeff

    It would be faster to suck into a Oracle table, call it a temporary table and then make a final move into the final table.
    This way you could direct load into an oracle table then you could
    INSERT /*+ APPEND */ INTO Final_Table
        SELECT DISTINCT *
        FROM   Temp_Table
        ORDER BY ID;This would do a 'direct load' type move from your temp teable to the final table, which automatically merging the duplicate records;
    So
    1) Direct Load from SQL*Loader into temp table.
    2) Place index (non-unique) on temp table column ID.
    3) Direct load INSERT into the final table.
    Step 2 may make this process faster or slower, only testing will tell.
    Good Luck,
    Eric Kamradt

  • Needs Partial data load in PSA

    Hi All
    While loading Employee data from Data Source (File Source System) to PSA, i got error in 1 record, so PSA was not loaded at all. What i want is: it should load all other valid records ignoring the bad record.
    Pls. help me in solving this small issue.
    Thanks in Advance
    Harpal
    Edited by: Harpal Singh on Nov 12, 2009 11:41 PM

    Hi ,my friend,
    If you are not able to see the selection in the datapackage for the particular field the you need to select the field (i mean check the in R/3) save the data source and replicate the data source in Bw system .
    Now go to the infopackage ---> data selection ---> there give your filter value for the field.
    (also you can write abap routine in the infopackage level  next to from value and to value , select 6 type variable change  the system will prompt you to write a routine at the infopackage level) this is Optional.
    Apart from this you can filter in the data selection ( from and tooo oprions in the infopackage)
    selsec it and load the data
    Santosh
    Edited by: Santhosh Nagaraj on Nov 13, 2009 10:24 PM

  • Regading Process chains data load monitoring

    Hi All,
    In my current project, I need to monitor process chains. I am kind of new to this environment as I had not done this before. My tasks are as follows.
    1. Process chains are scheduled for a periodic job for every on hour starting at 6 a.m and ending at 12 a.m. After that I need to stop the chain and reschedule it for next day at 6 a.m. How do I do that?
    2. Also if a delta process chain fails in one of the processes, I need to stop the chain before the next delta run starts filling the cube. How do I do that?
    Also how to see why the process failed?
    Please do respond.
    Thanks in advance.

    You can stop your process chain in SM37 tcode. Just select the schedules processes, and here you can see your process chain, just select it, and cancel it for next release.
    You can restart it, just by clicking on Execute button. Before executing PC, just cross check by right clicking process chain, and go to change selection option of maiantain variant of start variant. And see if process chain schedule option is starting at 6A.M. or not, and also check it is selected as period job of ` hour or not.
    You can see log of process chain by right clicking it, and checking the message. It depends on what option for next process is you selected, like if your next variant connected to failed variant is selected as only if success, then you don;t need to stop ot. It will automatically not go to next process. or right click and you can select stop.
    By right clicking on failed process you can see the logs in details.

  • Data Load to BI (7.0 SP 9) from R3(ECC 6.0 SP-Basis 9)

    Dear All,
    We have new instance of Devlopment BW System with version 7.0 and R/3 upgraded to ECC6.0. We connected the source system. When we extract the data through DTP the data load is sucessful with 0 Records.
    This is case with all the extractors.
    The data base is on Oracle 10.2
    Observations for this:
    0) Source system connection check OK.
    1) When I test in RSA3 for the same extract I could fetch some data there.
    2) I could transfer the global setting
    3) I could not see any of the iDoc generated in BW and received in R/3
    4) No back ground job is generated in R/3 in SM37
    5) I could extract the data from other Source System(SEM) instance based on 3.5 technology.
    As a progress on this issue I could load the load sucessfully by 3.X methodolgy (Using update rules) but not by BI7.0 Methodology(Using Transformation).
    As a standards by the client we have to use 7.0 Methodology so still need to find a solution for the same.
    No clue on how to solve and what is going on wrong. Help me in solve this issue.
    Thanks in Advance,
    PV
    Message was edited by:
            USERPV

    I am not sure if you have followed all the necessary steps to do a data load to the infocube. I also wish I had more information about your system and the error message you are getting. A data load can fail due to a variety of reasons -- depending on the BW version, system settings and the procedure you followed. Please use the data load monitor transaction rsmo, identify the error message and take the necessary action.
    if it may be useful reward point are appreciated

  • Need help in loading master data.

    Hi everyone,
              I am just a beginner in BI 7.0 . I know Bw 3.5 . I need help in loading master data(flat file) in a step by step manner.
    Before posting this forum i searched and checked out other related forums too, as i am a beginner i am unable to follow them. Lots of the forums gave the help.sap.com link which i used and got a little help but not fully, so please don't send that link.  I need a step by step guideline from somebody, which says everything from the beginning till monitoring say like
    e.g.. 1) create a InfoObject by right clicking on InfoObject catalog.
    something like that.
    please help me get a clear and detail step by step procedure to load a master data (Flat File should be good) which may help me get a start will other things without much help.
    Please help me learn.
    Thanks.
    Ranjani.

    HI,
         Thanks for your reply. This is what i did.
    1) Created a Info Area.
    2) Created Info object catalog & activated
    3) created info object with nothing except some 4 attributes.
    4) Created Application compound in Infosource tab.
    5) Right clicked on Application compound and chose create Infosource in which chose a option with 3.x and chose the flexible update and gave the info object name.
    6) In info provider tab , in the Info Area right clicked and chose the Insert char as data target option.
    Now, i am stuck. I have no idea what to do next.
    I know i have to create a transformation - There are two tabs in Transformation box, what should i do there.
    Please help me from point 6 to cont., to load the data.
    Thanks.

  • Assistance needed with new monitor and printing from LR3

    I just purchased a new IPS monitor.  I have calibrated it using the HP Display assistant that came with it.  It is an HP ZR 22w.  I saved my calibration as a preset  - however - this is not appearing as a profile when I try to select it in the print module.  the checkbox for "include display profiles" is ticked.  If I allow the printer to manage - the pictures are much warmer than on the IPS display.  My printer is a canon mg6120 and I am running windows 7.  I would appreciate any assistance that anyone can provide.  Thank you

    I think the "HP Display assistant" is a software tool, is that right? 
    Ideally with Lightroom, you should use a hardware calibration/profiling tool (Spyder, Eye One, Color Munki etc).  In particular, you need a monitor profile that contains colour space information.  I had a look through the HP Display Assistant user manual, and it appears the software does calibration but it probably doesn't put colour space info in the profile.  It'll be better than nothing, but a hardware tool is better. 
    However:
    I saved my calibration as a preset  - however - this is not appearing as a profile when I try to select it in the print module.  the checkbox for "include display profiles" is ticked.  If I allow the printer to manage - the pictures are much warmer than on the IPS display.  My printer is a canon mg6120 and I am running windows 7
    This is not what you want to do!  The profile that the HP Display Assistant creates is for the monitor, and only for the monitor.  It gets the right white point and tone curve for the monitor.  What you need in the profile drop-down in LR print module is a printer profile, not a monitor profile (except on very special circumstances). 
    I'm not familiar with the MG6120, but when I googled "profiles for canon mg6120" I got a lot of hits, so I assume profiles are available.  It's quite likely that some came with the printer driver, and were installed with the printer software.  When you select "profile" in LR print module (you may well have to go to "Other..." to see them all) then there should be profiles for the printer - possible lots of them - one or more for each paper type.  If they're not there, see the Canon documentation (or google it) to find out how to load them.   
    If you can't find any profiles for the printer, then try using sRGB (or probably it's "sRGB IEC...").  Without colour management, your printer will probably expect sRGB images, so this should be roughly right, but a specific profile for the printer is better.  This is one of those very special circumstances when something other than a printer profile (and sRGB isn't a printer profile) may be better than nothing.

  • New to SCOM need assistance setting up an Alert / Monitor

    I've recently deployed SCOM 2012R2 to accompany our SCCM deployment and to replace other monitoring software. I'm having difficulty figuring out how to create a monitor that will alert us when a logical drive falls below a specified value of free megabytes.
    I'm having difficulty in finding documentation that will help me do the following:
    We have a 2 node cluster with a 5GB drive (X:) we use as a mounting drive to mount larger disks within as spanned volumes.  We need to have a monitor in place so that we know when these drives are reaching the end of their capacity and we need to bring
    a new one online.  The volumes being mounted here are approximately 2.4TB each.  The monitors we want in place are for if the disk has less than 20GB, 15GB, 10GB, 5GB, 1GB, & 512MB ... so I am looking at 6 alerts total for one disk.
    Once a disk fills up it we stop all write actions to it and start using the new one, so I also need to stop/prevent any space monitoring on disks not currently being written to.
    Any assistance greatly appreciated!
    # When I wrote this script only God and I knew what I was doing. # Now, only God Knows!

    Hi There,
    You can create a basic Simple threshold unit monitor. Target the monitor to "Windows server operating system" with the below configuration as per your screenshot.
    The below setup will do good for Space below 20GB.
    This setup will work if your instance remains same "X:\IMGWH29-33" same all the time in all the machines in which you want this alert.
    So what i have mentioned is for the below X:\ Drive throw a alert if the disk space goes below 20 GB.
    And as the Permfon is collecting data in MB and not in GB hence i have mentioned threshold as 20000 so if the space goes less than 20000 MB (20 gb) throw me an alert.
    Threshold settings Under threshold is critical i.e If it is below 20 Gb throw me an alert, If it is above 20 Gb dont throw me an alert.
    Hope this helps. Also confirm if the instance name  "X:\IMGWH29-33" remains same all the time or not.
    Gautam.75801

  • Data Load Statistics - Monitoring

    Hello All
    I have a quick questions on how to check the no of records LOADED into INFPKG (PSA) --> DTP (DSO) --> DTP (CUBE).
    1) Meaning, I can individually but is there any automated program / transaction / table that can tell me no of records LOADED into PSA --> DSO --> CUBE for any paricular process chain?
    2) If I mistakenly deleted a request from Cube/DSO/PSA, how would I retrieve it ?
    Thanks in advance

    Hi,
    1) Meaning, I can individually but is there any automated program / transaction / table that can tell me no of records LOADED into PSA --> DSO --> CUBE for any paricular process chain?
    --> Table: RSMONICTAB -- Monitor, Data Targets(Infocube/ODS) Table, request related info
    2) If I mistakenly deleted a request from Cube/DSO/PSA, how would I retrieve it ?
    --> If data loading : PSA > DSO> Cube then..
    If data lost in cube, can be loaded from DSO,
    If data lost in DSO, and available at PSA can be loaded/reconstruct from PSA
    If data not available in PSA cant possible. Need to reload from source.
    Hope it Helps
    Srini

  • HT1386 I have an older iPhone (3gs) and need to upgrade to a newer phone (4S).  I need to get my NOTES, CALENDAR, CONTACTS, PICTURES, etc backed up on iTunes so I can get that data loaded onto the new phone.  But not sure how to do that.

    I have an older iPhone (3gs) and need to upgrade to a newer phone (4S).  I need to get my NOTES, CALENDAR, CONTACTS, PICTURES, etc backed up on iTunes so I can get that data loaded onto the new phone.  But not sure how to do that.  When I open iTunes it has a button that say "Back Up iPhone", but I'm not sure what that does.  When I go into the sync options it say I have another user account and asks me if I want to merge of replace. I'm assuming it's trying to tell me I have an older iTunes Library, but don't know that.  Geez, maybe people over 60 shouldn't have iPhones, iTunes just bafles me.

    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • Need help on: Automation of Daily Data Load

    Hi all,
    We need to start our Daily Data load from DAC by Manually. So right now my client has asked us to do Automation of Daily Data Load.
    Starting the Daily Data Load Manually(DAC) Process: First we have to check whether the ASCP Plans updated or not
    Right now we are checking whether the plans got updated or not, so for this we are using following query
    SELECT LTrim(RTrim (compile_designator)),data_completion_date,TO_CHAR(data_completion_date ,'DD-MON-YYYY HH24:MI:SS') FROM apps.msc_plans
    WHERE LTrim(RTrim (compile_designator))
    in( 'Plan01,'Plan02','Plan03','Paln04') ORDER BY 2 desc
    from this query we will able to see whether all the plans got updated or not. From all the Four Plans, two plans will get updated as of Sysdate(mm/dd/yyy) ,Timestamp(hh:mm:ss)(for example i.e. Plan01 08/25/2011 11:20:08 PM, Plan02 08/25/2011 11:45:06 PM) and rest two plans get updated on Sysdate+1(mm/dd/yyy), Timestamp(hh:mm:ss)(for example i.e. Plan03 08/26/2011 12:20:05 AM, Plan04 08/26/2011 12:45:08 AM)
    So after checking the plans , we start the Daily Load in DAC manually.
    May I know how should I convert my above sql query which I am using for checking the plans updated or not in informatica, so as to automate the Daily Load in informatica level..
    Need help.

    You cannot replicate what is done with DAC at Informatica level. DAC is a separate Oracle product that orchestrates and manages the ETL load (including Index management, etc). The reason Oracle developed DAC is because it allows you to manage a large scale DW load for a large ERP system. As suggested, you can invoke the DAC execution plan via a command but you cannot replicate everything the DAC does at Informatica level. If this helps, please mark as helpful.

  • My BB9810 refuse to load OS7.1 software on my phone after the download has completed. My phone has freezed/stucked since morning. Pls urgent help/assistant needed as I can not access/use my phone for over 24hrs now.

    My BB9810 refuse to load OS7.1 software on my phone after the download has completed. My phone has freezed/stucked since morning. Pls  urgent help/assistant needed as I can not access/use my phone for over 24hrs now.

    Hi there,
    Use the method described in the link below to get back up and running:
    http://supportforums.blackberry.com/t5/Device-software-for-BlackBerry/How-To-Reload-Your-Operating-S...
    I hope this info helps!
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

Maybe you are looking for