In RSPC, I have 15 Process chain.
1) How do I know which one is running and which one is not?
2) How do we know if the Process Chain is finished running successfully, including what time it complete?
3) Also, is there a way for us to see the number of records being extracted?
Please advise, thank you.
Request clarification before answering.
1) How do I know which one is running and which one is not?
Go to RSPCM, the yello status of the process chain indicates that this is still running.
2) How do we know if the Process Chain is finished running successfully, including what time it complete?
If the status of the PC in RSPCM is green, it indicates that it is completed sucessfully. You can see the time against your PC in rspcm.
3) Also, is there a way for us to see the number of records being extracted?
Go to the data target from the process chain log to see the number of records extracted. Else, the log details of the process chain step also shows the no of extrated records
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
In RSPCM, the time is actually the start time, not stop time of the process chain.
In RSPC, I double-click on the Process Chain and go to View Log.
There, I can see what also the Start Time of the Process Chain, not the stop time.
How can we see the Stop Time of the Process Chain???
Please advise, thanks.
Hi,
The solution would some hard.but you might find some clues.
I think if we know the process chain job name, we can know the when the job is stoped.
which in turn means the process chain has stoped.
Am i right?
As all the process chain jobs start with BI_PROCESS .
GO TO SM 37
give
job name= bi_proces*
date the date on which the proces chain stared.(as u can see in RSPCM)
Execute.
you get list of jobs
select one and clik on job log
Here you should find the to which chain the job belongs to?
Note:to know the start date .
I don't have BW 3.5 version so i could not tell about it.as already ourexperts told that some tcode you can get it from that.
Regards
Naresh.
table RSPCLOGCHAIN : this will give you for a given process chain the logid's for every run of the chain
the field RSPCLOGCHAIN-ANALYZED_STATUS will give you the actual status of the process chain (for every logid, meaning for every run time)
table RSPCPROCESSLOG : for every logid found for your process chain in the above table, you 'll have the start and end timestamp of all the different steps. the latest end timestamp is the end timestamp of your chain.
if you need this info on a regular basis, you're better off writing a small abap report. this is easily done and you'll gain a lot of tlme.
M.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.