Back ground execution of t.code with variant !!

Hi Team,
          I need excute the Z transaction code ( which is assigned to to stnadard program).
  How can i execute this transaction in back ground with the given specified variant.  (program should be executed for every 5 mts).
Regards
Badari Talanki

Hi Badari,
when you set the Background Job via <b>SM36</b>, you can mention the Variant. and set the time , so that the report will run for every 5 minutes with the mentioned variant. Check it.
Regards
Vijay

Similar Messages

  • How to suppress the back-ground execution of a query in design mode

    hi guys,
    there is a bahaviour of the system, that I'd like to change. So, when we
    1. start EXCEL
    2. go to the designer mode to create a report
    3. first drop an InfoProvider (e query) into a cell,
    4. second - pull e.g a filter element into another cell, still being in the design mode.
    Just in this moment, the query itself has been already started in the back groud, aiming to fill the cache, I guess.
    Does anyone know how to suppress the back-ground execution? I'd like to control, when to start the reports execution.
    Thanks in advance.
    Neven

    Hello,
    There is no way to do that if you are creating thru BEx Analyzer.
    Instead use the BEx Analyzer, try to create using directly BEx Query Designer.
    In that way, the query will not be executed, until you want to...
    Thank you
    Edward John

  • Avoid page break in back ground execution of report

    Hi Friends,
    Normally when we execute any report in back ground it will have page break. eg: FL3N
    But we dont see this in foreground execution of a report.
    may i know how to avoid this page break when we execute in background.
    Thanks in advance
    NNS

    Hi Badari,
    when you set the Background Job via <b>SM36</b>, you can mention the Variant. and set the time , so that the report will run for every 5 minutes with the mentioned variant. Check it.
    Regards
    Vijay

  • ERROR IN BDC SESSION BACK GROUND ( USING PP03 T.CODE)

    Hi Experts,
    When i am executing the session ( pp03 T.Code) ,it is working fine in fore ground as well as in display errors mode. But it is not working in back ground mode.
    it is raising the exception ( cntl-system-error).
    I used flat file which is in the presentation server . I accessed it by gui_upload Function Module.
    <b> I am also getting the error using data sets . After upload the presentation server data into one internal table .I sent it to application server using open data set ( transfer ) , after that i read the application server data using open dataset ( read )
    into another internal table ( i declared with same structure of flat file ) .</b>
    But this time also it is giving same error ( runtime exception).
    Please tell me how can i handle using datasets .  Its Very urgentttttttt
    Please any body help meee ( If any one worked on this (pp03 T.code) ) .
    Send the code  or Inform the full detailsss as soon as possibleeee
    regards ,
    dattu malge.

    Hi,
    Go to the transaction SM35 and select your session and then click the Process Button.
    Here you select the Processing Mode as "Background".
    It is not possible to execute the same session by more than one user at a same time.
    RSBDCSUB is used to automate the processing of Batch input session.
    Cheers,
    Hakim

  • PSJ LDB in back ground execution

    Hi experts,
    i am using zprogram which uses a submit and return statement and calls PSJ LDB in the called program.
    The zprogram works fine in foreground but i when i schedule it in background i am getting the below error..
    "Fill in all required entry fields" and job got cancled.
    My question is can we use the PSJ LDB in background execution?
    Regards
    ram

    Hi Badari,
    when you set the Background Job via <b>SM36</b>, you can mention the Variant. and set the time , so that the report will run for every 5 minutes with the mentioned variant. Check it.
    Regards
    Vijay

  • Back Ground Execution

    Hi,
           I have created a report program.when i execute in Background it is failing since i have raised error message in case of no o/p.My requirement is to show error message when i execute in forground and it shld also complete it's background execution.
    regards,
    raghav

    In foreground your report still executed after the error message..?
    I am not sure.., if it is error message then it stops executing the program. the same applies to Background also. if you want to continue in background execution then you may have to use sy-batch
    if sy-batch = 'X'.
    message information
    else.
    message error.
    endif.

  • With the newest update; when cliking on a picture to view in a larger size, the back ground of the pictures are in black; not white like the previous version

    how can I get the back ground to be white again; with out "downgrading"

    It is a new feature in Firefox 11+ versions to display a single image centered with an almost black background.
    It is added by this stylesheet:
    * resource://gre/res/TopLevelImageDocument.css
    You can look at this extension to set your preferred background color and remove the centering.
    * Old Default Image Style: https://addons.mozilla.org/firefox/addon/old-default-image-style/
    See also these forum threads for other solutions (e.g. userContent.css):
    *[[/questions/923127]]
    *[[/questions/923431]]

  • Regarding back ground job sheduling

    hi,
    could u plz clear my issu
             i am running a report which i want to shedule in back ground by writing the code within in that program.
    very urgent

    There are two ways for you to handle,
    one manually setting up the job through SM36 which is better and convinient,
    secondly through program using FM's JOB_OPEN, SUBMIT, JOB_CLOSE.
    Find below steps in doing both:
    Procedure 1:
    1. Goto Trans -> SM36
    2. Define a job with the program and variant if any
    3. Click on start condition in application tool bar
    4. In the pop-up window, click on Date/Time
    5. Below you can see a check box "Periodic Job"
    6. Next click on Period Values
    7. Select "Other Period"
    8. Now give '15' for Minutes
    9. Save the job
    In SM37 u can check the status of the jobs that u have assigned to background...
    Here u mention the job name or the report name to check the status of the job...
    After mentioning the job name or program name u just execute it.. ( without any name also u can execute then it gives u all the jobs set by your user name..
    the status colud be released,active,finished etc..
    Procedure 2 via Program:
    Below is a sample code for the same. Note the ZTEMP2 is the program i am scheduling with 15mins frequency.
    DATA: P_JOBCNT LIKE TBTCJOB-JOBCOUNT,
          L_RELEASE(1) TYPE c.
       CALL FUNCTION 'JOB_OPEN'
         EXPORTING
           JOBNAME                = 'ZTEMP2'
        IMPORTING
          JOBCOUNT               = P_JOBCNT
        EXCEPTIONS
          CANT_CREATE_JOB        = 1
          INVALID_JOB_DATA       = 2
          JOBNAME_MISSING        = 3
          OTHERS                 = 4.
       IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
       SUBMIT ZTEMP2 VIA JOB 'ZTEMP2' NUMBER P_JOBCNT
              TO SAP-SPOOL WITHOUT SPOOL DYNPRO
              WITH DESTINATION = 'HPMISPRT'
              WITH IMMEDIATELY = SPACE
              WITH KEEP_IN_SPOOL = 'X' AND RETURN.
       CALL FUNCTION 'JOB_CLOSE'
         EXPORTING
           JOBCOUNT                          = P_JOBCNT
           JOBNAME                           = 'ZTEMP2'
           STRTIMMED                         = 'X'
           PRDMINS                          = 15
        IMPORTING
          JOB_WAS_RELEASED                  = L_RELEASE
        EXCEPTIONS
          CANT_START_IMMEDIATE              = 1
          INVALID_STARTDATE                 = 2
          JOBNAME_MISSING                   = 3
          JOB_CLOSE_FAILED                  = 4
          JOB_NOSTEPS                       = 5
          JOB_NOTEX                         = 6
          LOCK_FAILED                       = 7
          INVALID_TARGET                    = 8
          OTHERS                            = 9.
       IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
    *Submit report as job(i.e. in background) 
    data: jobname like tbtcjob-jobname value
                                 ' TRANSFER TRANSLATION'.
    data: jobcount like tbtcjob-jobcount,
          host like msxxlist-host.
    data: begin of starttime.
            include structure tbtcstrt.
    data: end of starttime.
    data: starttimeimmediate like btch0000-char1.
    Job open
      call function 'JOB_OPEN'
           exporting
                delanfrep        = ' '
                jobgroup         = ' '
                jobname          = jobname
                sdlstrtdt        = sy-datum
                sdlstrttm        = sy-uzeit
           importing
                jobcount         = jobcount
           exceptions
                cant_create_job  = 01
                invalid_job_data = 02
                jobname_missing  = 03.
      if sy-subrc ne 0.
                                           "error processing
      endif.
    Insert process into job
    SUBMIT zreport and return
                    with p_param1 = 'value'
                    with p_param2 = 'value'
                    user sy-uname
                    via job jobname
                    number jobcount.
      if sy-subrc > 0.
                                           "error processing
      endif.
    Close job
      starttime-sdlstrtdt = sy-datum + 1.
      starttime-sdlstrttm = '220000'.
      call function 'JOB_CLOSE'
           exporting
                event_id             = starttime-eventid
                event_param          = starttime-eventparm
                event_periodic       = starttime-periodic
                jobcount             = jobcount
                jobname              = jobname
                laststrtdt           = starttime-laststrtdt
                laststrttm           = starttime-laststrttm
                prddays              = 1
                prdhours             = 0
                prdmins              = 0
                prdmonths            = 0
                prdweeks             = 0
                sdlstrtdt            = starttime-sdlstrtdt
                sdlstrttm            = starttime-sdlstrttm
                strtimmed            = starttimeimmediate
                targetsystem         = host
           exceptions
                cant_start_immediate = 01
                invalid_startdate    = 02
                jobname_missing      = 03
                job_close_failed     = 04
                job_nosteps          = 05
                job_notex            = 06
                lock_failed          = 07
                others               = 99.
      if sy-subrc eq 0.
                                           "error processing
      endif.
    Thanks

  • RMCB0300 is not working in back ground job

    Hi
      I call t-code MC.9 program (RMCB0300) in back ground by using sample code given below.
      SUBMIT RMCB0300 WITH SL_WERKS-LOW = u2018ABCDu2019
                      WITH SL_LGORT = 'W001'
                      EXPORTING LIST TO MEMORY AND RETURN.
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          LISTOBJECT = LISTOBJECT
        EXCEPTIONS
          NOT_FOUND  = 4
          OTHERS     = 8.
      IF SY-SUBRC <> 0.
      ENDIF.
    The 'LIST_FROM_MEMORYu2019 is getting correct output in four ground but
      not in back ground job.
    Kindly help.

    When you use 'LIST_FROM_MEMORY' it basically imports the memory id '%_LIST'.
    When running MC.9 in foreground the memory id '%_LIST' is saved (you can check in debugging) but in background the memory id is not saved
    This is why you are not getting the data correctly in background.
    BR,
    Suhas

  • Submiting report in back ground with values

    Hello all abapers,
      I m working on one application where one module pool program will take input from user for user id and password. After verification, one back ground report will be scheduled by this program to change user pw and add some role in user's profile.
    when i schedule the prg in background i need to pass some values like user id and password entered on module pool screen...
    how do i pass it to background job when scheduling and how bg job prg will read these values..
    please advise me as its needed asap...
    thanks in advance,
    jigs.
    any helpful suggestions will be rewarded.

    Hi,
    Put the following code in user command:
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
        jobname                = 'ZSUBMIT'
    IMPORTING
       jobcount               = jbcnt
    EXCEPTIONS
       cant_create_job        = 1
       invalid_job_data       = 2
       jobname_missing        = 3
       OTHERS                 = 4
    IF sy-subrc <> 0.
    ENDIF.
    SUBMIT <program to be submitted> WITH P_user_id = user id  VIA JOB 'ZSUBMIT' NUMBER jbcnt AND RETURN.
    CALL FUNCTION 'JOB_CLOSE'
      EXPORTING
        jobcount                          = jbcnt
        jobname                           = 'ZSUBMIT'
        strtimmed                         = 'X'
    EXCEPTIONS
       CANT_START_IMMEDIATE              = 1
       INVALID_STARTDATE                 = 2
       JOBNAME_MISSING                   = 3
       JOB_CLOSE_FAILED                  = 4
       JOB_NOSTEPS                       = 5
       JOB_NOTEX                         = 6
       LOCK_FAILED                       = 7
       INVALID_TARGET                    = 8
       OTHERS                            = 9
    IF sy-subrc <> 0.
    ENDIF.
    A job called 'ZSUBMIT' will be released in background.
    Please try and award points if useful.
    Thanks and regards,
    S. Chandra Mouli.

  • Execution of BRBACKUP finished with return code 5

    I am trying take  off line DB backup ( Oracle 11G ) with BRBACKUP, at the end after all the data files are backed up,  it ends up with the  error message as below :
    BR0280I BRBACKUP time stamp: 2011-10-29 13.18.05
    BR0063I 44 of 44 files processed - 149792.322 MB of 149792.322 MB done
    BR0204I Percentage done: 100.00%, estimated end time: 13:18
    BR0001I **************************************************
    BR0280I BRBACKUP time stamp: 2011-10-29 13.18.07
    BR0304I Starting and opening database instance HRD ...
    BR0278E Command output of '/oracle/HRD/112_64/bin/sqlplus /nolog < /oracle/HRD/sapbackup/.behcjbzj.spi':
    SQL*Plus: Release 11.2.0.2.0 Production on Sat Oct 29 13:18:07 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    SQL> Connected to an idle instance.
    SQL>
    SQL> ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
    ORACLE instance started.
    Database mounted.
    Database opened.
    SQL> Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    BR0280I BRBACKUP time stamp: 2011-10-29 13.18.28
    BR0279E Return code from '/oracle/HRD/112_64/bin/sqlplus /nolog < /oracle/HRD/sapbackup/.behcjbzj.spi': 0
    BR0302E SQLPLUS call for database instance HRD failed
    BR0306E Start and open of database instance HRD failed
    BR0056I End of database backup: behcjbzj.afd 2011-10-29 13.18.28
    BR0280I BRBACKUP time stamp: 2011-10-29 13.18.29
    BR0054I BRBACKUP terminated with errors
    BR0292I Execution of BRBACKUP finished with return code 5
    BR0668I Warnings or errors occurred - you can continue to ignore them or go back to repeat the last action
    BR0280I BRTOOLS time stamp: 2011-10-29 13.18.29
    BR0670I Enter 'c[ont]' to continue, 'b[ack]' to go back, 's[top]' to abort:

    Thanks for your reply,
    In my system  it is set to
    SQL> show parameter REMOTE_OS_AUTHENT;
    NAME                                 TYPE        VALUE
    remote_os_authent                    boolean     TRUE
    that's why we are getting ORA-32004 which is as expected.  I have briefly checked both the notes you have provided, donot see any problem yet.
    datafiles are backed up 100% at the last after opening the database , SQLPLUS call to DB failed,
    My question is if datafiles and control files are backed up successfully even with the error , can i use those to restore the DB ?
    I thnik problem is coming while SQL is trying connect DB
    BR0279E Return code from '/oracle/HRD/112_64/bin/sqlplus /nolog < /oracle/HRD/sapbackup/.behcjbzj.spi': 0
    BR0302E SQLPLUS call for database instance HRD failed
    BR0306E Start and open of database instance HRD failed
    BR0056I End of database backup: behcjbzj.afd 2011-10-29 13.18.28
    BR0280I BRBACKUP time stamp: 2011-10-29 13.18.29
    BR0054I BRBACKUP terminated with errors

  • BR0292I Execution of BRBACKUP finished with return code 1

    i am taking a offline backup, after finished the backup, error comes ,
    *BR0202I Saving E:\oracle\HOD\origlogA\cntrl\cntrlHOD.dbf
    BR0203I to G:\backupoff\beccpxlq\cntrlHOD.dbf ...
    #FILE..... E:\oracle\HOD\origlogA\cntrl\cntrlHOD.dbf
    #SAVED.... G:\backupoff\beccpxlq\cntrlHOD.dbf  #1/38  1.0000:1  6938624
    BR0280I BRBACKUP time stamp: 2009-12-12 18.35.01
    BR0063I 38 of 38 files processed - 95592.877 MB of 95592.877 MB done
    BR0204I Percentage done: 100.00%, estimated end time: 18:35
    BR0001I **************************************************
    BR0280I BRBACKUP time stamp: 2009-12-12 18.35.05
    BR0304I Starting and opening database instance HOD ...
    BR0280I BRBACKUP time stamp: 2009-12-12 18.35.20
    BR0305I Start and open of database instance HOD successful
    BR0202I Saving space_log
    BR0203I to G:\backupoff\HOD ...
    BR0202I Saving E:\oracle\HOD\sapbackup\beccpxlq.afd
    BR0203I to G:\backupoff\HOD ...
    BR0202I Saving E:\oracle\HOD\sapbackup\backHOD.log
    BR0203I to G:\backupoff\HOD ...
    BR0056I End of database backup: beccpxlq.afd 2009-12-12 18.35.22
    BR0280I BRBACKUP time stamp: 2009-12-12 18.35.23
    BR0053I BRBACKUP completed successfully with warnings
    BR0292I Execution of BRBACKUP finished with return code 1
    BR0668I Warnings or errors occurred - you can continue to ignore them or go back to repeat the last action
    BR0280I BRTOOLS time stamp: 2009-12-12 18.35.23
    BR0670I Enter 'c[ont]' to continue, 'b[ack]' to go back, 's[top]' to abort:*

    BR0051I BRBACKUP 6.40 (34)
    BR0055I Start of database backup: beccpxlq.afd 2009-12-12 17.31.38
    BR0477I Oracle pfile D:\ORACLE\HOD\920\database\initHOD.ora created from spfile D:\ORACLE\HOD\920\database\spfileHOD.ora
    BR0083W Compression rates out of date - run BRBACKUP with option '-k only'
    BR0101I Parameters
    Name                           Value
    oracle_sid                     HOD
    oracle_home                    D:\ORACLE\HOD\920
    oracle_profile                 D:\ORACLE\HOD\920\database\initHOD.ora
    sapdata_home                   E:\oracle\HOD
    sap_profile                    D:\ORACLE\HOD\920\database\initHOD.sap
    backup_mode                    ALL
    backup_type                    offline
    backup_dev_type                disk
    backup_root_dir                G:\backupoff
    compress                       hardware
    disk_copy_cmd                  copy
    cpio_disk_flags                -pdcu
    exec_parallel                  0
    system_info                    HODADM HOLDEV Windows 5.2 Build 3790 Service Pack 1 Intel
    oracle_info                    HOD 9.2.0.6.0 8192 9964 117031233
    sap_info                       640 SAPHOD HOD L1140159252 R3_ORA 0020197850
    make_info                      NTintel OCI_920_SHARE Sep  6 2005
    command_line                   E:\usr\sap\HOD\SYS\exe\run\brbackup.exe -p initHOD.sap -d disk -t offline -m all -k hardware -e 0 -l E -U
    BR0116I ARCHIVE LOG LIST before backup for database instance HOD
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            D:\oracle\HOD\oraarch\HODarch
    Archive format                 ARC%S.%T
    Oldest online log sequence     9961
    Next log sequence to archive   9964
    Current log sequence           9964       SCN: 117031233
    Database block size            8192       Thread: 1
    BR0118I Tablespaces and data files
    Tablespace     TS-Status  F-Status  File                                                       Size   Id.     Device  Link    Type       MaxSize     IncrSize
    PSAPHOD        ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA3\HOD_1\HOD.DATA1               2600476672    3           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD        ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA3\HOD_2\HOD.DATA2               2684362752    4           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD        ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA3\HOD_3\HOD.DATA3               2579505152    5           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD        ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA3\HOD_4\HOD.DATA4               2537562112    6           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD        ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA4\HOD_6\HOD.DATA6               2495619072    8           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD        ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA4\HOD_8\HOD.DATA8               2411732992   10           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD        ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA4\HOD_10\HOD.DATA10             2453676032   12           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD        ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA4\HOD_9\HOD.DATA9               3514834944   11           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD        ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA4\HOD_7\HOD.DATA7               2474647552    9           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD        ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA4\HOD_12\HOD.DATA12             2453676032   32           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD        ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA4\HOD_11\HOD.DATA11             2369789952   31           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD        ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA3\HOD_5\HOD.DATA5               2537562112    7           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA1\HOD640_1\HOD640.DATA1         2097160192   13           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA1\HOD640_2\HOD640.DATA2         2097160192   14           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA1\HOD640_4\HOD640.DATA4         2097160192   16           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA2\HOD640_6\HOD640.DATA6         2097160192   18           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA2\HOD640_8\HOD640.DATA8         2097160192   20           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA2\HOD640_10\HOD640.DATA10       2097160192   22           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA4\HOD640_12\HOD640.DATA12       2097160192   24           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA4\HOD640_15\HOD640.DATA15       4194312192   30           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA4\HOD640_14\HOD640.DATA14       4194312192   29           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA4\HOD640_13\HOD640.DATA13       2097160192   25           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA3\HOD640_11\HOD640.DATA11       2097160192   23           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA2\HOD640_9\HOD640.DATA9         2097160192   21           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA2\HOD640_7\HOD640.DATA7         2097160192   19           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA1\HOD640_5\HOD640.DATA5         2097160192   17           4  NOLINK  FILE   10485760000     20971520
    PSAPHOD640     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA1\HOD640_3\HOD640.DATA3         2097160192   15           4  NOLINK  FILE   10485760000     20971520
    PSAPHODUSR     ONLINE*    ONLINE+   E:\ORACLE\HOD\SAPDATA4\HODUSR_1\HODUSR.DATA1           20979712   26           4  NOLINK  FILE   10485760000     20971520
    PSAPTEMP       ONLINE#    ONLINE+   E:\ORACLE\HOD\SAPDATA1\TEMP_1\TEMP.DATA1              702554112   -1           4  NOLINK  FILE   10485760000     20971520
    PSAPUNDO       ONLINE-    ONLINE+   E:\ORACLE\HOD\SAPDATA1\UNDO_1\UNDO.DATA1            10485768192    2           4  NOLINK  FILE   10485760000     20971520
    PSAPUNDO       ONLINE-    ONLINE    E:\ORACLE\HOD\SAPDATA1\UNDO_3\UNDO.DATA3            10485768192   28           4  NOLINK  FILE             0            0
    PSAPUNDO       ONLINE-    ONLINE    E:\ORACLE\HOD\SAPDATA1\UNDO_2\UNDO.DATA2            10485768192   27           4  NOLINK  FILE             0            0
    SYSTEM         ONLINE*    SYSTEM+   E:\ORACLE\HOD\SAPDATA1\SYSTEM_1\SYSTEM.DATA1         1073750016    1           4  NOLINK  FILE   10485760000     20971520
    BR0119I Redo log files
    File                                                Size  Group     Device  Status    Link    Type
    E:\ORACLE\HOD\ORIGLOGA\LOG_G11M1.DBF            52429312    1            4  INUSE     NOLINK  FILE
    E:\ORACLE\HOD\MIRRLOGA\LOG_G11M2.DBF            52429312    1            4  INUSE     NOLINK  FILE
    E:\ORACLE\HOD\ORIGLOGB\LOG_G12M1.DBF            52429312    2            4  INUSE     NOLINK  FILE
    E:\ORACLE\HOD\MIRRLOGB\LOG_G12M2.DBF            52429312    2            4  INUSE     NOLINK  FILE
    E:\ORACLE\HOD\ORIGLOGA\LOG_G13M1.DBF            52429312    3            4  STALE     NOLINK  FILE
    E:\ORACLE\HOD\MIRRLOGA\LOG_G13M2.DBF            52429312    3            4  STALE     NOLINK  FILE
    E:\ORACLE\HOD\ORIGLOGB\LOG_G14M1.DBF            52429312    4            4  INUSE     NOLINK  FILE
    E:\ORACLE\HOD\MIRRLOGB\LOG_G14M2.DBF            52429312    4            4  INUSE     NOLINK  FILE
    BR0120I Control files
    File                                                Size   Id.      Device  Link    Type
    E:\oracle\HOD\origlogA\cntrl\cntrlHOD.dbf        6938624    0            4  NOLINK  FILE
    E:\oracle\HOD\sapdata1\system_1\cntrl\cntrlHOD.dbf    6938624    0            4  NOLINK  FILE
    E:\oracle\HOD\saparch\cntrl\cntrlHOD.dbf         6938624    0            4  NOLINK  FILE
    BR0280I BRBACKUP time stamp: 2009-12-12 17.31.40
    BR0057I Backup of database: HOD
    BR0058I BRBACKUP action ID: beccpxlq
    BR0059I BRBACKUP function ID: afd
    BR0110I Backup mode: ALL
    BR0077I Database files for backup:
    E:\ORACLE\HOD\ORIGLOGA\LOG_G11M1.DBF
    E:\ORACLE\HOD\ORIGLOGB\LOG_G12M1.DBF
    E:\ORACLE\HOD\ORIGLOGA\LOG_G13M1.DBF
    E:\ORACLE\HOD\ORIGLOGB\LOG_G14M1.DBF
    E:\oracle\HOD\origlogA\cntrl\cntrlHOD.dbf
    BR0061I 38 files found for backup, total size 95592.877 MB
    BR0143I Backup type: offline
    BR0113I Files will be compressed by hardware
    BR0130I Backup device type: disk
    BR0106I Files will be saved on disk in directory: G:\backupoff\beccpxlq
    BR0064I Database instance HOD will be shut down now
    BR0280I BRBACKUP time stamp: 2009-12-12 17.31.40
    BR0256I Enter 'c[ont]' to continue, 's[top]' to cancel BRBACKUP:
    BR0280I BRBACKUP time stamp: 2009-12-12 17.32.18
    BR0257I Your reply: 'c'
    BR0259I Program execution will be continued...
    BR0370I Directory G:\backupoff\beccpxlq created
    BR0370I Directory G:\backupoff\HOD created
    BR0202I Saving init_ora
    BR0203I to G:\backupoff\HOD ...
    BR0202I Saving D:\ORACLE\HOD\920\database\initHOD.sap
    BR0203I to G:\backupoff\HOD ...
    BR0280I BRBACKUP time stamp: 2009-12-12 17.32.19
    BR0198I Profiles saved successfully
    BR0280I BRBACKUP time stamp: 2009-12-12 17.32.19
    BR0307I Shutting down database instance HOD ...
    BR0280I BRBACKUP time stamp: 2009-12-12 17.32.25
    BR0308I Shutdown of database instance HOD successful
    BR0202I Saving E:\ORACLE\HOD\SAPDATA3\HOD_1\HOD.DATA1
    BR0203I to G:\backupoff\beccpxlq\HOD.DATA1 ...
    #FILE..... E:\ORACLE\HOD\SAPDATA3\HOD_1\HOD.DATA1
    #SAVED.... G:\backupoff\beccpxlq\HOD.DATA1  #1/1  1.0000:1  2600476672
    BR0280I BRBACKUP time stamp: 2009-12-12 17.34.01
    BR0063I 1 of 38 files processed - 2480.008 MB of 95592.877 MB done
    BR0204I Percentage done: 2.59%, estimated end time: 18:38
    BR0001I *_________________________________________________
    BR0202I Saving E:\ORACLE\HOD\SAPDATA1\SYSTEM_1\SYSTEM.DATA1
    BR0203I to G:\backupoff\beccpxlq\SYSTEM.DATA1 ...
    #FILE..... E:\ORACLE\HOD\SAPDATA1\SYSTEM_1\SYSTEM.DATA1
    #SAVED.... G:\backupoff\beccpxlq\SYSTEM.DATA1  #1/33  1.0000:1  1073750016
    BR0280I BRBACKUP time stamp: 2009-12-12 18.34.34
    BR0063I 33 of 38 files processed - 95386.258 MB of 95592.877 MB done
    BR0204I Percentage done: 99.78%, estimated end time: 18:34
    BR0001I **************************************************
    BR0202I Saving E:\ORACLE\HOD\ORIGLOGA\LOG_G11M1.DBF
    BR0203I to G:\backupoff\beccpxlq\LOG_G11M1.DBF ...
    #FILE..... E:\ORACLE\HOD\ORIGLOGA\LOG_G11M1.DBF
    #SAVED.... G:\backupoff\beccpxlq\LOG_G11M1.DBF  #1/34  1.0000:1  52429312
    BR0280I BRBACKUP time stamp: 2009-12-12 18.34.54
    BR0063I 34 of 38 files processed - 95436.258 MB of 95592.877 MB done
    BR0204I Percentage done: 99.84%, estimated end time: 18:35
    BR0001I **************************************************
    BR0202I Saving E:\ORACLE\HOD\ORIGLOGB\LOG_G12M1.DBF
    BR0203I to G:\backupoff\beccpxlq\LOG_G12M1.DBF ...
    #FILE..... E:\ORACLE\HOD\ORIGLOGB\LOG_G12M1.DBF
    #SAVED.... G:\backupoff\beccpxlq\LOG_G12M1.DBF  #1/35  1.0000:1  52429312
    BR0280I BRBACKUP time stamp: 2009-12-12 18.34.55
    BR0063I 35 of 38 files processed - 95486.259 MB of 95592.877 MB done
    BR0204I Percentage done: 99.89%, estimated end time: 18:34
    BR0001I **************************************************
    BR0202I Saving E:\ORACLE\HOD\ORIGLOGA\LOG_G13M1.DBF
    BR0203I to G:\backupoff\beccpxlq\LOG_G13M1.DBF ...
    #FILE..... E:\ORACLE\HOD\ORIGLOGA\LOG_G13M1.DBF
    #SAVED.... G:\backupoff\beccpxlq\LOG_G13M1.DBF  #1/36  1.0000:1  52429312
    BR0280I BRBACKUP time stamp: 2009-12-12 18.34.59
    BR0063I 36 of 38 files processed - 95536.259 MB of 95592.877 MB done
    BR0204I Percentage done: 99.94%, estimated end time: 18:35
    BR0001I **************************************************
    BR0202I Saving E:\ORACLE\HOD\ORIGLOGB\LOG_G14M1.DBF
    BR0203I to G:\backupoff\beccpxlq\LOG_G14M1.DBF ...
    #FILE..... E:\ORACLE\HOD\ORIGLOGB\LOG_G14M1.DBF
    #SAVED.... G:\backupoff\beccpxlq\LOG_G14M1.DBF  #1/37  1.0000:1  52429312
    BR0280I BRBACKUP time stamp: 2009-12-12 18.35.01
    BR0063I 37 of 38 files processed - 95586.260 MB of 95592.877 MB done
    BR0204I Percentage done: 99.99%, estimated end time: 18:35
    BR0001I **************************************************
    BR0202I Saving E:\oracle\HOD\origlogA\cntrl\cntrlHOD.dbf
    BR0203I to G:\backupoff\beccpxlq\cntrlHOD.dbf ...
    #FILE..... E:\oracle\HOD\origlogA\cntrl\cntrlHOD.dbf
    #SAVED.... G:\backupoff\beccpxlq\cntrlHOD.dbf  #1/38  1.0000:1  6938624
    BR0280I BRBACKUP time stamp: 2009-12-12 18.35.01
    BR0063I 38 of 38 files processed - 95592.877 MB of 95592.877 MB done
    BR0204I Percentage done: 100.00%, estimated end time: 18:35
    BR0001I **************************************************
    BR0280I BRBACKUP time stamp: 2009-12-12 18.35.05
    BR0304I Starting and opening database instance HOD ...
    BR0280I BRBACKUP time stamp: 2009-12-12 18.35.20
    BR0305I Start and open of database instance HOD successful
    BR0117I ARCHIVE LOG LIST after backup for database instance HOD
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            D:\oracle\HOD\oraarch\HODarch
    Archive format                 ARC%S.%T
    Oldest online log sequence     9961
    Next log sequence to archive   9964
    Current log sequence           9964       SCN: 117031233
    Database block size            8192       Thread: 1
    BR0202I Saving space_log
    BR0203I to G:\backupoff\HOD ...
    BR0202I Saving E:\oracle\HOD\sapbackup\beccpxlq.afd
    BR0203I to G:\backupoff\HOD ...

  • How To Handle With Back Ground JOB From WEBUI When Click On "Appove"

    Hi
    How To Scheduled A Job Through ABAP Report In back end  Of CRM when i click on "Approve" Button in WEBUI  From result list.
    As per My requirement I have a Search View and Result View
    In Search View I have  Below Fields
    ITC Vendor ID    
    Claim Status
    User status (date status changed)
    Model
    Serial Number
    Date completed of Service Completion
    Based on Search Criteria I will get Result In Result View.(Suppose 10 Records I got In Result View)
    In the Result View I need to Add one Button As "Approve"
    When i Click On Approve button One Pop up Message Need to Open And In that popup window I need to Display Below Text
    "Approve  Claim Job Has Started In Background  
    Note: Only Claims Which are in Submitted  Status  Will be  Approved. you May Close This Window"
    In SAP CRM System  Back Ground Job Need To Start When Click On "Approve" Button In WEBUI .
    In the Back Ground ABAP Report which will validate based on Result List Records"
    In the Result List we may have all types of Claims which are status in "Submitted" "Pending" "Rejected" "Approve".
    I need to collect all records from Result list and validate Those Records who's Status in "Submitted
    1)Sort all the claims based on ITC Vendor ID.
    2)Grouped all the submitted claims against each ITC Vendor ID from the search result
    3)Change the status of the selected submitted claims to Approved.
    4)Displays information messages as mentioned whenever a claim is approved, the same message will be captured in the job log.
    ‘Claims <ClaimID 1>,…<ClaimID N> now approved for ITC Vendor ID’.
    5)Sending Email to each IRC.
    6)Capture all the approved claims in the below format (Format Attached "Screen Shot Attachment")
    7)Store the file in the Application Server AL11 in .csv format
    Please Find Attachement For Reference.
    1)ITC Claim Screen Shot
    2)Screen Shot For Attachment
    Thanks
    Raj

    Hi,
    You can add the following code in on approve method to show popup to the user,
    IF req_edit IS NOT BOUND. " gloabl attribute in impl class of the view
        REFRESH lt_buttons.
        lss_button-id  = 'btnyes'.
        lss_button-text = 'YES'.
        lss_button-on_click = 'YES'.
        APPEND lss_button TO lt_buttons.
        CLEAR lss_button.
        lss_button-id  = 'btnno'.
        lss_button-text = 'NO'.
        lss_button-on_click = 'NO'.
        APPEND lss_button TO lt_buttons.
        CLEAR lss_button.
        CALL METHOD comp_controller->window_manager->create_popup_2_confirm
          EXPORTING
            iv_title          = 'ATTENTION'
            iv_text           = 'Are you sure you want to edit this document?'
            iv_btncombination = '99'
            iv_custombuttons  = lt_buttons
          RECEIVING
            rv_result         = req_edit.
        req_edit->set_on_close_event( iv_event_name = 'EDIT' iv_view = me ). "#EC NOTEXT
        req_edit->open( ).
        RETURN.
      ELSE.
        lr_node ?= req_edit->get_context_node( 'OUTPUTNODE' ).
        lv_outbound = lr_node->get_event_name( ).
    *  CLEAR ptc_pricing_status.
    *    lv_outbound = req_edit->get_fired_outbound_plug( ).
        IF lv_outbound = 'YES'.
    you can use the submit report code here and you can al the validations here
        ELSE. " No
    if user clicks no nothing to do..
        ENDIF.
        CLEAR req_edit.
      ENDIF.
    Best Regards,
    Dharmakasi.

  • Problem with Back ground MRP Run (MDBT) or MD01

    Hello SAP Experts,
    Issue :- Material is not considering during Automatic back ground MRP run ( MDBT or MD01)
    But when we run MRP in forground (MD02) system is considering the material.
    we have checked both the selection parameter are same for MD01 and MD02 .
    can you help us on this issue ?
    Regards
    Mahesh

    Hi,
    Problem is due to entry in Planing File is missing for that Material.
    Go to MD21 and check whether Planing File entry is maintain for that Materiel.
    If not then maintain it by T.code MD20 (Manual) or you can do it by using back Ground JOB - OMDU.
    Regards,
    Dhaval

  • Program with Back Ground User.

    Hi ,
    In my development we are sending data from MDM to R3 through XI.
    Here iam having the following issue:
    When sending IDOC's from XI to R3, some of the IDOC's are struck in Queue  with status 64 and, those not going to be processed at all. This is because of the unavailability of the work processes at that time. All this is done through the back ground user XIS_REMOTE.
    Iam trying to process the unprocessed IDOC's through a standard program, all the IDOC's are processed, but the data created under the Fore Ground user (i.e. my id).
    <b>I want to know is there any possibility to run or write the program using back ground user XIS_REMOTE</b> <b>so that all the unprocessed IDOC's will process and get the back ground user XIS_REMOTE.</b>
    Any inputs appriciated.
    Best Regards
    Shyam Reddy.

    ST05 you can trace SQL-statements and get expainings how these statements are being worked upon by the database. this is more a tool for investigating the performance of abaps on your 'special' database.
    since you posted your request in the security forum i will assume that you want to do an authority trace. use tx. ST01 instead of ST05. Set the filter options to the program and/or user you want to trace and flag the areas you want traced like 'authority check' 'database access' 'kernel commands' ...
    activate the trace using the matchlight-icon. run the background job to be traced. stop the trace after a sufficient time (or until the job hits the error you want to investigate). then press 'evaluation' and check the boxes for the lines to be displayed again ...
    if both my answers don't fit to your problem come back here and state a bit more precisely what your problem is, maybe we find another approach to it.

Maybe you are looking for

  • Split valuation

    Dear All, Will split valuation of the material also address the below points. I have 2 valuation types with me as "X" & "Y" with the same material code. 1. I need the split valuation type either "X" or "Y"  to be printed on my Purchase order. 2. Repo

  • IPad 2 stopped receiving iMessages sent to my phone number

    I have an iPad 2 and an iPhone 4S. When I got the iPad, I was able to sync it with my iPhone just fine. It was sending and receiving iMessages that were directed to my iPhone phone number, and the messages on the two devices were syncing perfectly, a

  • Renew my online number subscription

    I bought my online number two years ago, instead of making the payment for my online number I made it to a different kind of subscription;I also purchase 10.00 credit that I do not need. Can you please help me to fix this errors? looking forward to h

  • Changes in depreciation rate

    dear all, once the depreciation rate is changed & we need to execute the depreciation run & also TC-AFAR to recalculate the depreciation..correct me if i am wrong.After this changes in the dep. amount we need to report in our financial statement also

  • Disabling logging to weblogic.log during startup of WLS

    Hello, Does anybody know how to disable logging to the weblogic.log file during startup of WLS (v5.1.0). Specifically I would like to hide parameters such as username and password that show up as clear text for example when a database pool is created