Background Scheduling Problem

Hi everyone,
I am getting problem in the BEx reporting.After loading the new data in the respective data targets, it is not reflecting in the BEx Analyzer. I have created the process chain, and loading is done in the background scheduling. I can see the updated request time and date in Monitor. It is showing that data is updated successfuly in the data targets.
But when I execute the report after 2hrs, It will reflect in the query and it will show the latest updated records.
If anybody knows the reason why it takes time to reflect in query, please give me some outputs.
Thanks,
Pandey

Hi Manoranjan,
If your data target is ODS, you can find the updated records for reporting only after activation. If it is InfoCube there could be some processs defined after dataload like create index,Stats and rollup if aggregate are present. may be this could be the reason...
Hope this helps..
Best Regards,
DMK
*Assign points if it serves your purpose...

Similar Messages

  • Problem in background scheduling

    Hi All ,
    Requirement : When I run Report  ZBKSCHD It will SCHEDULE another program  for ex (ypr_range_rb2) .
    Here I am passing program name & varint which I want to schedule
    Input Field
    Program Name  : ypr_range_rb2
    Varint               :  ypr_rb2
    Getting errror
    *********ERROR ****** ********
    Short text                                            
        Exception condition "INVALID_STARTDATE" raised. 
    and  Report ZBKSCHD scheduling ypr_range_rb2 many times not single time .( in sm36 )
    ******This is my background schedule program
    REPORT ZBKSCHD NO STANDARD PAGE HEADING LINE-SIZE 170 LINE-COUNT 58 .
    DATA: ZCOUNT LIKE SY-TABIX,
    JOBNAME LIKE TBTCJOB-JOBNAME,
    PARAMS LIKE PRI_PARAMS,
    JOBCOUNT LIKE TBTCJOB-JOBCOUNT,
    AUTHCKNAM LIKE TBTCJOB-AUTHCKNAM,
    SDLSTRTTM LIKE TBTCJOB-SDLSTRTTM,
    SDLSTRTDT LIKE TBTCJOB-SDLSTRTDT,
    VARIANT LIKE RALDB-VARIANT,
    REPORT LIKE SY-REPID,
    ZTIME LIKE SY-UZEIT,
    PREDJOB_CHECKSTAT LIKE TBTCSTRT-CHECKSTAT,
    PRED_JOBCOUNT LIKE TBTCJOB-JOBCOUNT,
    PRED_JOBNAME LIKE TBTCJOB-JOBNAME,
    RELEASED LIKE BTCH0000-CHAR1.
    SELECTION-SCREEN: BEGIN OF BLOCK A1 WITH FRAME TITLE TEXT-001.
    PARAMETERS:
    NAME LIKE RS38M-PROGRAMM OBLIGATORY,
    VAR LIKE RS38M-SELSET OBLIGATORY,
    JOB LIKE TBTCJOB-JOBNAME,
    FRQ1 LIKE SY-INDEX,
    FRQ2(2) TYPE C.
    SELECTION-SCREEN END OF BLOCK A1.
    SELECTION-SCREEN: BEGIN OF BLOCK A2 WITH FRAME TITLE TEXT-002.
    PARAMETERS: ZDATE LIKE SY-DATUM DEFAULT SY-DATUM OBLIGATORY.
    SELECT-OPTIONS:
    TIME1 FOR SY-UZEIT OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK A2.
    AT SELECTION-SCREEN ON FRQ2.
    IF FRQ2 NE 'H' AND FRQ2 NE 'M' AND FRQ2 NE 'S'.
    MESSAGE E001(Z1) WITH 'Time Unit must be H or M or S'.
    ENDIF.
    AT SELECTION-SCREEN ON ZDATE.
    IF ZDATE < SY-DATUM.
    MESSAGE E001(Z1) WITH 'Date must be greater than current date'.
    ENDIF.
    AT SELECTION-SCREEN ON TIME1.
    IF ZDATE = SY-DATUM AND TIME1-LOW < SY-UZEIT.
    MESSAGE E001(Z1) WITH 'Time must be greater than current time'.
    ENDIF.
    AT SELECTION-SCREEN OUTPUT.
    IF JOB IS INITIAL.
    JOB = NAME.
    ENDIF.
    $$* Start of selection
    START-OF-SELECTION.
    IF JOB IS INITIAL.
    JOB = NAME.
    ENDIF.
    clear params.
    call function 'GET_PRINT_PARAMETERS'
    EXPORTING
    mode = 'CURRENT'
    no_dialog = 'X'
    IMPORTING
    out_parameters = params.
    params-paart = 'X_PAPER'.
    ZTIME = TIME1-LOW.
    JOBNAME = JOB.
    VARIANT = VAR.
    REPORT = NAME.
    AUTHCKNAM = SY-UNAME.
    PARAMS-PRIMM = SPACE.
    SDLSTRTDT = ZDATE.
    CLEAR: ZCOUNT.
    WHILE ZTIME LE TIME1-HIGH.
    SDLSTRTTM = ZTIME.
    CALL FUNCTION 'JOB_OPEN'
    EXPORTING
    JOBNAME = JOB
    IMPORTING
    JOBCOUNT = JOBCOUNT
    EXCEPTIONS
    OTHERS = 4.
    CALL FUNCTION 'JOB_SUBMIT'
    EXPORTING
    AUTHCKNAM = AUTHCKNAM
    JOBCOUNT = JOBCOUNT
    JOBNAME = JOB
    PRIPARAMS = PARAMS
    REPORT = REPORT
    VARIANT = VARIANT.
    CALL FUNCTION 'JOB_CLOSE'
    EXPORTING
    SDLSTRTDT = SDLSTRTDT
    SDLSTRTTM = SDLSTRTTM
    JOBCOUNT = JOBCOUNT
    JOBNAME = JOB
    IMPORTING
    JOB_WAS_RELEASED = RELEASED.
    IF RELEASED = 'X'.
    WRITE: / 'Job', JOBNAME, '(' ,JOBCOUNT, ')' ,'will run at', ZTIME,
    'on', ZDATE, 'with program',NAME, 'and variant', VAR.
    ELSE.
    WRITE: /
    'Unable to release job', JOBNAME, '(' ,JOBCOUNT, ')' ,'at', ZTIME,
    'on', ZDATE, 'with program',NAME, 'and variant', VAR.
    ENDIF.
    CASE FRQ2.
    WHEN 'H'.
    ZTIME = ZTIME + ( 60 * 60 * FRQ1 ).
    WHEN 'M'.
    ZTIME = ZTIME + ( 60 * FRQ1 ).
    WHEN 'S'.
    ZTIME = ZTIME + FRQ1.
    WHEN OTHERS.
    ENDCASE.
    ENDWHILE.
    Thanks for your time
    Rahul

    Sloved

  • Gui_download Function module is not working in Background Scheduling

    Hi Experts,
    Function modules like GUI_DOWNLOAD are not working in background scheduled jobs, It is raising an exception. Though it is working fine in foreground execution.
    Please provide me solution for this challenging task.
    you could be rated well for this question.
    Thanks,
    Rama Krishna.

    Hello,
    work with open dataset and close dataset...
    just loop over itab and transfer itab field for field into a string field separated by ;
    Here is an extract of coding:
    OPEN DATASET p_dath FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
      LOOP AT itab_pos.
        CLEAR satz.
        MOVE itab_pos-vbeln TO satz-vbeln.
        MOVE ';' TO satz-fill1.
        MOVE itab_pos-kunnr TO satz-kunnr.
        MOVE ';' TO satz-fill2.
        MOVE itab_pos-ktgrd TO satz-ktgrd.
        MOVE ';' TO satz-fill3.
        MOVE itab_pos-fkdat TO satz-fkdat.
        MOVE ';' TO satz-fill4.
        MOVE itab_pos-budat TO satz-budat.
        MOVE ';' TO satz-fill5.
        MOVE itab_pos-cpudt TO satz-cpudt.
        MOVE ';' TO satz-fill6.
        MOVE itab_pos-fkimg TO satz-fkimg.
        MOVE ';' TO satz-fill7.
        MOVE itab_pos-netwr TO satz-netwr.
        MOVE ';' TO satz-fill8.
        MOVE itab_pos-vrkme TO satz-vrkme.
        MOVE ';' TO satz-fill9.
        MOVE itab_pos-ktgrm TO satz-ktgrm.
        MOVE ';' TO satz-fill10.
        MOVE itab_pos-matnr TO satz-matnr.
        MOVE ';' TO satz-fill11.
        MOVE itab_pos-mattxt TO satz-mattxt.
        MOVE ';' TO satz-fill12.
        MOVE itab_pos-gewei TO satz-gewei.
        MOVE ';' TO satz-fill13.
        MOVE itab_pos-brgew TO satz-brgew.
        TRANSFER satz TO p_dath.
      ENDLOOP.
      CLOSE DATASET p_dath.
    It is not so comfortable as it is with GUI_DOWNLOAD but it works in background!

  • Email background schedule report to gmail or yahoo mail

    Dear Expert,
    My self Nayan Lad having 1 year exp in SAP ABAP.
    Now my request is How can I send mail the background schedule report to some person's personal mail id through SAP.
    Please guide me so I can explore my knowledge.
    Thanks & regards,
    Nayan Lad
    Moderator Message: Please search for available information.
    Edited by: kishan P on Nov 11, 2010 11:03 AM

    hai ,
    please go through this example bcs_example8.
    thankyou,
    anji.

  • MB5T background schedule ouput in alv format

    Hi all,
    Please help me to get MB5T report ouput of background schedule in ALV.
    I have put that report in bacground scheduling & the output of the same in BEST format but my client want the output in AlV format.
    Please suggest.
    Regards,
    Anant

    Output of MB5T can't be in ALV format in background. In foreground also this is done in two steps., In first system display in BEST format..this can be changed to ALV manually in second step.

  • MC75 - background schedule option not available

    Hi
    i got a requirement to schedule the tcode MC75 in background mode.  But SAP has not given the option in the menu bar -> execute in background option like the tcode MD74. 
    Even the save button is disabled in the tcode MC75 hence not possible to save like a variant.
    I found a SAP notes relevant to that. The note no is 381061. But i am not able to implement the note in my system. I tried to customize the program by copying to zprogram using the code correction given In sap notes 381061. But could not find relevant to background scheduling.
    Can any one tell me how to customize the tcode for background scheduling.
    Regards
    Rajani Yeluri

    Hi Rajani,
    Could you please let me know how did you solve this issue? I am also looking for the same.
    I appreciate your response.
    Thank you.
    Murali

  • Background Schedule - Hardcore Input data

    Hi Experts
             I am developing a BDC, now i want to schedule the program into background.
            So i want to hardcore the input data like
             Select Method (Genrate session/Call transaction)
             Processing Mode
             Update Mode
             Nodata Indicator.
    These data i need to hardcore in the program itself for further processing of background schedule.
              How to do it, pls advise me on this.
    Thanks in advance.
    Regards
    Rajaram

    Hi Rajaram,
    As of my understanding do you want to put the following on your selection screen?
    Select Method (Genrate session/Call transaction)
    Processing Mode
    Update Mode
    Nodata Indicator
    then do so.
    There is a structure for call transaction parameters, which you can use for setting of selection screen and can set the default values as wellin initialization event.
    Structure name : CTU_PARAMS
    Reward pointsif useful.
    Thanks & Regards
    Rajini Rajuladevi
    Edited by: Rajini R M on Jun 4, 2008 8:44 AM

  • Background schedule process

    Hi
    I am new to Oracle 9iAS. Can someone tell me if there is any
    better way to implement a background scheduled process ?
    Currently, I am doing it via AT command. Just wondering if
    Oracle9iAS has any scheduler that I can make use of.
    Thanks
    CT

    You can set up the different step while schedule the back ground job. Each step will have the program name, variant.
    You can do his using transaction SM36 -> JOB WIZARD.
    Thanks,
    Srinivas

  • Background Scheduling - Deadline Monitoring

    Hi Experts,
    I have created new maintenance plan , its around 250 for Mechanical and 250 for Electrical
    Maintenance plan having strategy like every two month , every three month , every six month etc..
    Scheduling period is 3 year
    Now scheduling will be done through IP10 one time , but after first call object scheduling will get hold.
    I want to make it background scheduling - Deadline Monitoring
    Now the requirement is , For Example :
    Maintenance plan X have PM plan date is 21.07.2014
    Maintenance plan Y have PM plan date is 24.07.2014
    Maintenance plan Z have PM plan date is 29.07.2014
    As per above example each equipment will have different plan date , background scheduling can be done through IP30 but by the date is concern how can make it possible ?
    Please advise each maintenance plan has to be run as per their plan date.
    Thanks,
    Abhishek

    Hi Mr.Jogeshwara,
    Nice Document , Its really useful
    But my query is each equipment have different plan date , as explained in above example
    If Maintenance plan have Cycle Unit 60 day and Plan X date is on 21.07.2014 then 21.07.2014+60day , same as if maintenance plan Y date is 25.07.2014 then 25.07.2014 +60day
    Like that
    background scheduling needs to be done as per cycle unit
    If i will do background scheduling together of both the above maintenance plan X and Y then scheduling will be run exactly after 60 day and order will be generated in advance for Maintenance plan Y.
    Hope you understand my query.
    Thanks,
    Abhishek

  • Background Scheduling Z Report

    Hi,
    I have developed one report , it can output its result in alv report and excel file, So my requirement is to schedule the report and in background only email the report to the specified email id's. How can I achieve functionality of background scheduling and automatic email.
    I know we can do background scheduling with SA38 or SM36/SM37 but upon scheduling it is not saving my excel file at desired location.
    Ankesh

    You should search forums about this....
    You will need to save to the SAP Application server (in a folder which has write permission for SAP jobs) and possibly FTP to some shared drive within the network.  Local PC, local MS network, like C:\, D:\, etc. is not visible to a background job, since there is NO GUI/PRESENTATION server involved in a background job.  Outside of MS Office, an .XLS file is an unknown file type, probably....  how do you think you're creating a .XLS file in a background SAP job?

  • Background Scheduling is not triggered

    Hai all,
    We are doing ecc6.0 upgrade from 4.6c. While creating a production order the order number should be automatically updated in a z-table(using user wf_batch).
    For this they are using a Function module which is scheduled for every 5 min. The FM is stored in a business object.
    But whenever we create a production order, the background scheduling was not triggered.
    We are not able to find the program for this scheduling.It shows no jobs were found.
    How to schedule the Function module or the business object? or is there any other way to execute the business object or find the job in SM37?
    Regards,
    Kumar C

    Hi,
    We are implementing OWS. We have successfully installed and deployed OWS but yet to open the OWS applicaation. we are defining the entire CCD parameters. Apprreciate help on the same, whether you have have any setup document. A business flow or the process flow on OWS.
    Sincerely appreciat your help. My id: [email protected]
    Regards,
    Abhijit

  • Background Scheduling of Intercompany Invoices.....

    Hi,
    I want to know how we can do the background scheduling of all the Intercompany Invoices which gets due. This should be processed at the end of the day or as and when it becomes due. I want this background scheduling on one to one basis i;e for each Invoice which is intercompany, Intercompany Invoice should be generated (NO Collective Intercompany billing).
    Please let me know how this can be achieved.....
    Thanx in advance.....

    This should be processed at the end of the day
    Explore the possibility of scheduling the job VF06
    thanks
    G. Lakshmipathi

  • Background Scheduling tutorial

    Hi All ,
    I want step by step tutorial/links/docs for  background Scheduling .
    Thanks in advace

    Hi,
    ABAP Editor transaction SE38 can be used to execute program in the background. In SE38 selection screen click on Program -> Execute -> Background and specify the name of the variant. You can schedule the program to run once at a certain time or periodically every month, week, days, hours or minutes.
    Moreover Transaction SM36 can be used to Schedule Background Job without selections parameters.
    Click on the steps, A popup window will open, Click on ABAP/4 button. The fields ABAP/4 Program name, Variant and Language will become input enable. Type the program name and save it by pressing on save Icon. Now Click on start condition, a popu up will appear asking about start date or Immediate etc.. pls provide applicable details and press on save Icon. and now finally press on Save Icon
    Steps
    SM36
    Put in Job Name
    Click on Steps
    Put in the ABAP program name
    The variant for your program if you have a selection screen and want certain values on there
    Save
    Click on Start Condition
    Put in e.g. Start Date and Start Time and Click on Period Values
    Save
    Don't forget to Save on the Initial Screen as well (Define Background Job)
    this will create you background job
    Go through the following link
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c4/3a7f87505211d189550000e829fbbd/content.htm
    Reward me if it is helpful.

  • Background scheduling of FTP Connection through R/3

    Hello Friends,
      I have done FTP connection by using Z-pgm which uses function FTP_CONNECT. This is working fine in Foreground mode. 
    But in background scheduling of the z-pgm, i am getting the <b>error as 'RFC to program SAPFTP failed'.</b>
    I checked RFC destination SAPFTP in SM59. There Activation type is 'Start on Front End Work Station'. I tested the connection also. Its alright.
    How to do FTP processing in Background?
    Cheers,
    Seema

    Hello,
    you could try to use RFC destination 'SAPFTPA' - it's ftp on the application server. Since SAPFTP is  'Start on Front End Work Station' and in background there is no front end work station, it can't work.
    Regards Wolfgang

  • Background Scheduling in R3

    Hi All,
    Can we create Process chains in R/3.If means how?
    Can we call process chains in R/3 means Background scheduling?
    Please give information regarding this?
    Thanks,
    Mahesh

    Hi,
    We cannot create Process Chains in R/3 system. Do you have any requirement like this?
    In fact, you can try RSPC in R/3, then it will show the screen just like in BW. All process types are same.
    Any job can be scheduled in background in any system.
    Regards,
    Suman

Maybe you are looking for

  • How to get the values of managed metadata columnn through object model

    Hi, I need to read the values from a managed metadata column, which is set to display entire path. Eg. My value looks like Critical:Important:Interesting:Routine:Not Evaluated without hardcoding these values, can i find which level of child has been

  • Error while releasing credit block for the order

    Hi all, I am getting follwing error while releasing credit block for the order in VKM1 Incorrect index structure for table IVBEP1 Text Incorrect index structure for table IVBEP1 Diagnosis Internal error. Procedure Repeat the transaction. If the error

  • File Receiver Adapter FCC parameters

    Hi I have a File to File format via PI I have the following structure from the sender File adapter passing to receiver file adapter. The inbound structure as follow <CONTRACT> <HEADER>     <X1>     <X2> <LINE>    <Y1>    <Y2>    <Y3> I have configure

  • How to search for a Class by incomplete name?

    Hello. Does anyone know if it is possible to get an instance of the Class object for a class that I don't have a fully qualified name for? For example, I want to get the object I would normally get by calling my.project.package.web.jsf.MyConstants.cl

  • NEED ADVISE

    I want to purchase APPLE TV. Is connecting it to the 30" display station a good idea or are there better displays available? I have to buy either a HD display or TV but I am not sure which is best. I also have a Fujitsu Siemens Lifebook Windows XP Pr