Technical Content Process Chain Schedules

Hello,
We are on BW 7, and I was curious how often companies are running their technical content process chains?
Is weekly typical, or should they be running more often?
Thanks,
Nick

Thanks Dennis!
Is there an order in which the TCT chains should be executed in nightly?
Our queries are executed during the day business hours 7 am - 6 pm
Our Data loads are primarily overnight.
The chains we have for TCT are:
0TCT_MD_C_FULL_P01 - Content Master Data
0TCT_C2_DELTA_P01 - Data Load Statistics - Delta
0TCT_C0_DELTA_P01 - Query Runtime Statistics - Delta
0TCT_MD_S_FULL_P01 - System Master Data
Thanks,
Nick

Similar Messages

  • Scheduling Technical Content Process Chains

    Hello experts,
    I'm trying to schedule the Technical Content Process Chain as per SAP Note 934848 - step 4.
    This step says:
    4. Schedule Process Chains.
    Please schedule the technical content process chains (0TCT*) in transaction RSPC. "INIT" process chains need to be scheduled once and "DELTA" process chains should be scheduled periodically.
    But when I open RSPC I can't find anything with (0TCT*).
    Can anyone help me?
    Best Regards,
    Rui Romba

    Hi Vikram,
    We have everything installed.
    Recently we had an auditory from SAP AG and they detected that we needded only to schedule the Technical Content Process Chain.
    Regards,
    Rui

  • Tech. Content Process Chain (0TCT...)

    Hi,
        I installed the technical content for BW7.0 and they are visible in BW but when I installed the technical business content process chains, they are not visible in RSPC. I did search for them but could not find any where. What can be the reason?
    Please advice.
    Regards,
    Anil

    Further to above post, While activating the technical content, system could not collect some of the infopackages as they were not in the business content. Is there any relation between process chain non visibility?

  • Stopping Process Chain schedule for just one day...

    Hi,
    Our source systems and BI are getting a patch upgrade during this weekend and I need to stop all the Process Chains schedule for Friday night/ Saturday morning. Is there a simple way I can stop all the Process Chains from executing just for tomorrow instead of manually removing each PC from schedule and again putting them back on schedule on Saturday?
    Thanks,
    Sri.

    Hi
    You can reschedule them instead of de-schedule and schedule back.
    1)open your process chain in rspc1
    2) goto planning mode
    3) right click on start --> display schedule job
    4) select the job --> in menu bar --> click on first one from left --> change
    here change the dates as per your requirement and save the job.
    If you have any event based chains which are going to start after time based chains gets complete, no need to de-schedule as we are not going get trigger from time based chains.
    I don't think so we have any program to de-schedule all the chains at a time.
    Regards,
    Venkatesh

  • Admin cockpit - Business Content Process chain Activation failure

    Hi,
    we are working in Admin cockpit in sand box server.
    we are activating the Business Content Process chain by taking all variants (begin with 0TCT) but we are getting the error message that Process AND has no predecessor.
    Could you kindly suggest any thing to move further.
    Thanks & Regards,
    Shaliny. M
    Edited by: shaliny mega on Mar 19, 2008 7:04 AM

    Hi shaliny,
    As mentioned in this post
    https://www.sdn.sap.com/irj/sdn/forums.
    Have u collected the Source system for which ur collecting the PC when u r activating Business conent?
    Collect the source system when u  r activating the PC. Give a try.
    if it is useful assign points.
    Regards,
    Senthil

  • Install BI Content Process Chain 0TCT_MD_C_FULL_P01

    Hello,
    I am installing BI content Process chain (0TCT_MD_C_FULL_P01) for BI statistics.
    I did the install but when I try to activate it says " Process has no predecessor" . Has anyone installed this chain and how did you do it. Can you please expalin me steps that u went through.
    Best regard
    Arjun

    Try this.
    http://help.sap.com/saphelp_nw70/helpdata/EN/3c/52304260c44446b401a0fd5b90f4a2/frameset.htm

  • How to see the installed BI content process chain?

    Hi Expert,
    I've installed a BI content process chain, called 0TCT_MD_C_FULL_P01, but I can not see it in tcode RSPC, also can not use it. Can you tell how to make it available in RSPC?
    Thanks a lot.
    Happy.Bear

    Hi,Check in RSPC under "Not Assigned"
    And also chcek in Tables related to PCs,
    RSEVENTCHAIN Event Chain Processing Event Table
    RSEVENTHEAD Header for the event chain
    RSEVENTHEADT Header for the event chain
    RSPCCHAIN Process chain details
    RSPCCHAINATTR Attributes for a Process Chain
    RSPCCHAINEVENTS Multiple Events with Process Chains
    RSPCCHAINT Texts for Chain
    RSPCCOMMANDLOG System Command Execution Logs (Process Chains)
    RSPCLOGCHAIN Cross-Table Log ID / Chain ID
    RSPCLOGS Application Logs for the Process Chains
    RSPCPROCESSLOG Logs for the Chain Runs
    RSPCRUNVARIABLES Variables for Process Chains for Runtime
    RSPC_MONITOR Monitor individual process chains
    Thanks
    Reddy

  • Process Chain Schedule date

    Hi
    I have created a process chain and i have set it to run every day night.
    The selection in the infopackage must be the present date like today 2007.09.16 and tomorrow it should be 2007.09.17.
    Is there any way where it can change the date automatically instead of me changing the date in info package daily and activating the process chain daily.
    Thanks
    sandeep

    Hi
    check these links...might be helpful for you.
    Re: scheduling process chain 3 specific times a day
    Re: How to schedule process chain to run only during specific time.
    Process chain schedule daily twice
    regards
    biplab
    <i>***Reward with points if it helps u!!</i>

  • Process Chains Scheduling

    Hi All,
    We have a requirement where we want to have data load on the last day of the month for each month.
    Can anyone please explain how to accomplish this step by step through process chains scheduling??
    Thanks in advance.
    Points will be rewarded generously.

    Hi Jayesh,
    Here are the steps you can use.
    1. Create an event in your BW system (SM62).
    2. In your R/3 system, write a RFC enabled FM. Inside this FM, call 'BP_EVENT_RAISE'.
    3. Create a program in SE38 and call the RFC FM using the destination as your BW system. In this program, you can use 'LAST_DAY_OF_MONTHS' FM to get the last day of month by passing SY-DATUM. I am writing some pseud code for you here.
    RFC FM:
    Import Parameters: EVENTID like TBTCO-EVENTID (check 'Pass Value').
    CALL FUNCTION 'BP_EVENT_RAISE'
      EXPORTING
        eventid                      = EVENTID.
    SE38 Program:
    data: date type dats.
    CALL FUNCTION 'LAST_DAY_OF_MONTHS'
      EXPORTING
        day_in                  = sy-datum
    IMPORTING
       LAST_DAY_OF_MONTH       = date.
    If sy-datum = date.
      CALL FUNCTION 'ZBP_EVENT_RAISE'
          DESTINATION '<your BW system>'
        EXPORTING
          eventid       = EVENTID .
    This should do the needful.
    Hope this helps.
    Thanks and Regards
    Subray Hegde

  • Need FM or Tables to see Process Chain scheduled(future) date and time

    Hello Gurus!
             Can anybody tell me where/How i can get the Process Chain scheduled(future) date and time..?
       I mean, I want to see at what date and time is the PC scheduled for tomarrow/next month etc... Like TBTCO-SDLSTRTDT / TBTCO-SDLSTRTTM along with its Process chain name or PC's Start varient?
    I will give the points for all the answers
              Bye.. Happy New Year

    Hi Anil,
    You can check in SM37 by giving the job name.then you can see when that particular chain is scheduled.
    Goto SM37,
    Give Job name = *
           User name = *
    and select job status - ready,scheduled. then F8 (Execute).
    Then you can see which job is schduled at what time and date.
    Regards,
    Lakshman.G

  • Process chain scheduling error( Job BI_PROCESS_DROPINDEX could not schedule

    Hi,
    I am scheduling the process chain but it was throwing an error.
    Job BI_PROCESS_DROPINDEX could not be scheduled. Termination with returncode 8
    Message no. RSPC065
    Diagnosis
    Program RSPROCESS is to be scheduled as job BI_PROCESS_DROPINDEX under user ALEREMOTE.
    System Response
    Scheduling terminated with return code 8. The meanings of the return codes are as follows:
    SY-SUBRC = 4:
    Scheduling terminated by user
    SY-SUBRC = 8:
    Error when scheduling job (JOB_SUBMIT)
    SY-SUBRC = 12:
    Error in internal number assignment
    Procedure
    Check the system log for more detailed information.
    Execute Function
    for this i have already checked
    in RSPC menu tab
    Process Chain >> Attributes >> Execution User
    Choose "BW Background User" which should be ALEREMOTE.
    above settings i have done.
    even though when i am scheduling the process chain  i am getting the same error
    thanks
    suman

    Suman,
    You are not able to schedule it b'coz it is getting scheduled from user RFCUSER whereas the background user should be ALEREMOTE.
    There is an option somewhere in the Menu bar in RSPC to change the Execution user. Please change that to ALEREMOTE,
    Please check whether your BW user has enough authorization to run this job. The above post tell you how to do it.

  • Process chain scheduling

    Hi All,
    I have a Process chain. Ot was not running from 2 days then i saw in RSPC it was green in color. Then i scheduled it and it turns green.
    Steps are: start->load data 1, load data2 , loaddata3->and->so on
    Today i saw it ran till load data 2 then at load data 3 it failed
    when i saw display variant of load data 1 in that schedule tab last changed by is aleremote but in load data 3 last changed by is username.
    request came for ods in data load1 and 2 but not for load 3 and further loads. thats why i ran it manually today.
    Can u tell me what is the problem ?

    Hi Shweta,
    Confirm and try this:
    when an error in loading process, first delete that particular request from data target manually. correct the error in data package in psa. then load it manually.
    after load is succesfull then trigger next process.
    Or can u please tell me that log error.. let me try to resolve
    Hope it might help you.
    Regards
    Ashwin
    Edited by: ashwin kumar on Mar 17, 2008 12:20 PM

  • Process chain - schedule for certain days

    Hello all,
    How can I schedule a process chain that :
    -should run 3 times per day
    -between the 8th and the 12 workingday of a month
    Any sugesstions?
    Thank you.

    Maybe I cna help others with my solution.
    So...
    I made the chain to run 3 times per day as Debjani advidced me in this thread.
    I put 3 jobs, at the hours I wanted, the period daily, without weekends and holidays.
    I made a reports that tests the 18-th working day (for example) and some others:
    REPORT  Z_DAYS.
    TABLES : TFACS.
    DATA: GI_CURSOR TYPE CURSOR,
          GI_TABIX  TYPE SY-TABIX,
          GT_TFACS  TYPE TABLE OF TFACS.
    DATA: TEXT(50) TYPE C,
          LEN TYPE I,
          IND TYPE I,
          POS TYPE I,
          CNT_ONE TYPE I,
          CNT_ZERO TYPE I,
          DAY_VAR TYPE I,
          IND_VAR(3) TYPE C.
    DATA: EVENTID LIKE TBTCJOB-EVENTID.
    DATA: EVENTPARM LIKE TBTCJOB-EVENTPARM.
    FIELD-SYMBOLS:  <GT_TFACS> TYPE TFACS.
    DAY_VAR = SY-DATUM+6(2).
    OPEN CURSOR GI_CURSOR FOR
    *select data for factory calender Germany (01) and year 2009
    SELECT * FROM TFACS
      WHERE IDENT EQ '01' AND JAHR EQ SY-DATUM+0(4).
    IF SY-SUBRC NE 0.
      EXIT.
    ENDIF.
    MOVE 100 TO GI_TABIX.
    DO.
      FETCH NEXT CURSOR GI_CURSOR
       INTO TABLE GT_TFACS
       PACKAGE SIZE GI_TABIX.
      IF SY-SUBRC NE 0.
        EXIT.
      ENDIF.
    *loop on internal table
      LOOP AT GT_TFACS ASSIGNING <GT_TFACS>.
        TEXT = <GT_TFACS>-MON01.
        LEN = STRLEN( TEXT ).
        WRITE : 'len' , LEN.
        DO LEN TIMES.
          IND = SY-INDEX.
          POS = SY-TABIX.
          IND = IND - 1.
          IND_VAR = IND + 1.
          WRITE: / 'ind', IND_VAR.
          WRITE : 'pos'.
          WRITE POS.
          IF TEXT+IND(POS) = '1'.
    *number of working days increases with 1
            CNT_ONE  = CNT_ONE + 1.
            IF CNT_ONE EQ 8 AND ( DAY_VAR = IND_VAR ).
              WRITE : / '8th working day'.
              EXIT.
            ELSEIF CNT_ONE EQ 9 AND ( DAY_VAR = IND_VAR ).
              WRITE : / '9th working day'.
              EXIT.
            ELSEIF CNT_ONE EQ 10 AND ( DAY_VAR = IND_VAR ).
              WRITE : / '10th working day'.
              EXIT.
            ELSEIF CNT_ONE EQ 11 AND ( DAY_VAR = IND_VAR ).
              WRITE : / '11th working day'.
              EXIT.
            ELSEIF CNT_ONE EQ 17 AND ( DAY_VAR = IND_VAR ).
              WRITE : / '17th working day' COLOR 5.
              EVENTID = 'ZE_PROD'.
              EVENTPARM = 'ZEP_PROD'.
              CALL FUNCTION 'RSSM_EVENT_RAISE'
                EXPORTING
                  I_EVENTID              = EVENTID
                  I_EVENTPARM            = EVENTPARM
                EXCEPTIONS
                  BAD_EVENTID            = 1
                  EVENTID_DOES_NOT_EXIST = 2
                  EVENTID_MISSING        = 3
                  RAISE_FAILED           = 4
                  OTHERS                 = 5.
             IF NOT SY-SUBRC IS INITIAL.
               WRITE:/ 'EVENT DID NOT START'.
             ENDIF.
              EXIT.
            ELSEIF CNT_ONE EQ 18 AND ( DAY_VAR = IND_VAR ).
              WRITE : / '18th working day' COLOR 5.
              EVENTID = 'ZE_PROD'.
              EVENTPARM = 'ZEP_PROD'.
              CALL FUNCTION 'RSSM_EVENT_RAISE'
                EXPORTING
                  I_EVENTID              = EVENTID
                  I_EVENTPARM            = EVENTPARM
                EXCEPTIONS
                  BAD_EVENTID            = 1
                  EVENTID_DOES_NOT_EXIST = 2
                  EVENTID_MISSING        = 3
                  RAISE_FAILED           = 4
                  OTHERS                 = 5.
             IF NOT SY-SUBRC IS INITIAL.
               WRITE:/ 'EVENT DID NOT START'.
             ENDIF.
              EXIT.
            ENDIF.
          ELSEIF TEXT+IND(POS) = '0'.
    *number of holidays days increases with 1
            CNT_ZERO = CNT_ZERO + 1.
          ENDIF.
        ENDDO.
        WRITE : /.
        WRITE: 'January :' COLOR 1, <GT_TFACS>-MON01.
      ENDLOOP.
      REFRESH GT_TFACS.
    ENDDO.
    WRITE / .
    WRITE ' The number of working days is :'.
    WRITE CNT_ONE COLOR 5.
    WRITE / .
    WRITE ' The number of holiday days is :'.
    WRITE CNT_ZERO COLOR 7.
    WRITE : /  DAY_VAR.
    CLOSE CURSOR GI_CURSOR.
    When I am in the 18-th day, I raise an event. I test the year,the calender of the system and the month (January).
    This report is called in the chain, as ABAP process.
    Then, in my chain , I put a local chain , that starts after it receives the event 'ZE_PROD' and the parameter for it 'ZE_PROD'.
    This event with parameter has to be created in SM62.
    I hope this helps and thank you all for the advices.
    PS: - the factory calender method seems not to be to good, because need special rights to create it and I don' t think it's possible to customize it (because the holiday calender has to be changed and I did not see how).
    Edited by: EMI on Jan 27, 2009 4:21 PM

  • Reg Process chain scheduling.

    Hi.
    Here is a situation: I have a process chain named  Process chain1 . Which will  run on weekly basis.  Now i wanted to run this procss chain in every month 5 th working day. I will create new chain as process chain2 and i will add my Process chain1 as local process chain.
    My question is :
    Is it possible to use Process chain1 for individual run on weekly basis and as a local process in Process chain2 for the 5 th working day run?
    But for any start variant there are only 2 options
    1) Direct scheduling
    2) start using meta chain
    What I shd to in this situation
    Thanks,
    Harish

    Hi Harish,
    Yes it is possible without creating a new process chain.
    Schedule it to rum every week. If it is already have done get the exact job name which is scheduled (you can can get this by right click on start variant and display scheduled jobs).
    Copy this job and schedule it as you wanted to run monthly on 5th.
    Hope this helps,
    Anil Kamsala

  • BI Content  Process Chain

    Hi Experts,
    I installed NW 7.0 sr3 ABAP system, and then installed BI_CONT release 703 as add-on.
    But our BI consultant not able to find all the objects when he is trying to activate process chain from the bi content.
    Can anyone please tell me which version i have to install to get all the necessary objects.
    Thanks in advance
    Uday
    Edited by: basisuday on Aug 20, 2010 9:47 AM

    Hello experts
    I am not able to find support package name.
    When i click on package level button from SAPM tcode
    BI_CONT     703     0000     -     Business Intelligence Content.
    Is my BI_CONT add-on installed successfully?
    And also i am not able to see BI_CONT in imported packages list.

Maybe you are looking for

  • Itunes cannot read id3 tags

    Ok, so my itunes library file got corrupt and i lost over 5000 songs. So, i transferred all of them from my ipod to my computer and i got all of them. But 1% of the tags didnt get decoded. So i did the convert id tag thing but it didnt work. Is there

  • Added dynamic text; How do I stop variable name from showing?

    I am creating a simple game for kids.  On the first page, I added an "input text" field for their first name.  I called the variable firstname. When they move to the next page, I used a "dyanamic text" field so I can call them by name on this page. 

  • Pacifictime format PST required in the output of report

    I want to display the pacific time format i.e. PST in the output of Report. Can you please let me know.....if any function module or else.... I am using the followin lines of code but it was not showing correct time...please correct me if I am wrong.

  • Connecting computer to TV

    Hi  I have a 32L4200U I am trying to hook my laptop (lenovo thinkpad) to the TV, I am not very good with computers , I am using a 15 pin cord to hook up to my computer and another cord that goes into the sound port. when I hook up I get sound from th

  • SQLJ classes (Will not insert result into table)

    /*@lineinfo:filename=SqljCircle*//*@lineinfo:user-code*//*@lineinfo:1^1*/import java.sql.SQLException ; import oracle.sqlj.runtime.Oracle; // iterator for the select /*@lineinfo:generated-code*//*@lineinfo:5^1*/ // SQLJ iterator declaration: class my