Regarding Job selection process/sm37

what is difference bettwen Released and Ready state?

Hi babu
             released jobs are those jobs related to Infopackages which r running now.
when comes to the ready state those jobs related to Infopackages which r ready to run next in the coming scheduled time

Similar Messages

  • Vendor selection process

    Hi,
    Can anyone tell me about vendor selection process & Vendor performance system.
    Regards,
    Dinesh

    Hi,
    Selection process can be done based on Quality, Rate, History etc,.
    Vendor performance :nothing but vendor evalution.
    Pls refer following links, You can get more details.
    http://www.sap-img.com/materials/what-is-request-for-
    quotation.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/MMISVE/MMISVE.pdf
    http://www.sap-img.com/mm009.htm
    Regards

  • Report selection process error.

    Dear Experts,
    i have doveluped one report using alv, report is
    Based on SOdetails we want to extaract the prodeuction order and plan order details, the program is sucessfully exicuted and display the output only SO details i cant get the PO , Plan Order and remining details ple check the selection process and solve this problem.
    and one more problem is in plan order no block display the required delivery date.
    plea rectifi this problem, the entire program is mentioned bellow.
    Regards,
    sri.
    *& Report  ZSORDER_PRO_STATUS
    REPORT  ZSORDER_PRO_STATUS.
    Tables Declaration
    tables : afpo,    "Order item
             aufk,    "Order master data
             afko,    "Order header data PP orders
             plaf,    "Planned order
            plpod,   "I/O table for task list operations and network activities
             s022,     "SFIS: Order Operation Data for Work Center
             vbap,    "Sales Document: Item Data
             vbak,    "Sales Document: Header Data
             kna1.    "General Data in Customer Master
    type-pools: slis, vsep.
    Data Declaration
    data :begin of i_vbak occurs 0,
            vbeln like vbak-vbeln, "Sales Document
            kunnr like vbak-kunnr, "Sold-to party
            erdat like vbak-erdat, "Date on Which Record Was Created
            audat like vbak-audat, "Document Date (Date Received/Sent)
            aedat like vbak-aedat, "Changed On
            vdatu like vbak-vdatu, "required delivery date
           augru like vbak-augru, "Order reason (reason for the business transaction)
           posnr like vbap-posnr,    "Sales Document Item
          vdatu
           matnr like vbap-matnr,    "Material Number
           arktx like vbap-arktx,    "Short text for sales order item
           kwneng like vbap-kwmeng, "Cumulative Order Quantity in Sales Units
           end of i_vbak.
    types: begin of t_s022,
          aufnr type s022-aufnr,
          arbpl type s022-arbpl,
          end of t_s022.
    types: begin of t_afpo,
           kdauf type afpo-kdauf,
           posnr type afpo-posnr,
           plnum type afpo-plnum, "Planned order number
           aufnr type afpo-aufnr, "Order Number
          kdauf type afpo-kdauf, "Sales order number
           psmng type afpo-psmng, "Order item quantity
           wemng type afpo-wemng, "Quantity of goods received for the order item
           kdpos type afpo-kdpos,
           matnr type afpo-matnr,
           end of t_afpo.
    types: begin of t_aufk,
           aufnr type aufk-aufnr,  "Order Number
           astnr type aufk-astnr, "Order status
           erdat type aufk-erdat, "Created on
          aurgu type aufk-aurgu,
           end of t_aufk.
    types: begin of t_plaf,
           aufnr type plaf-aufnr,
           plnum type plaf-plnum,
           psttr type plaf-psttr,  "Order start date in planned order
           gsmng type plaf-gsmng,  "Total planned order quantity
           end of t_plaf.
    data: begin of i_plpod occurs 0,
          matnr like afpo-matnr,
          arbpl like plpod-arbpl,
          istru like plpod-istru,
          end of i_plpod.
    data : begin of i_sclass occurs 0.
            include structure sclass.
    data : end of i_sclass.
    data : wa_objek type ausp-objek.
    data : begin of i_clobjdat occurs 0.
            include structure clobjdat.
    data : end of i_clobjdat.
    data: begin of i_augru occurs 0,
          vbeln like vbak-vbeln,
          augru like vbak-augru,
          kunnr like vbak-kunnr,
          audat like vbak-audat,
          end of i_augru.
    types: begin of t_kunnr,
          kunnr type kna1-kunnr,
          name1 type kna1-name1,
          end of t_kunnr.
    types: begin of t_final,
            vbeln type vbak-vbeln,    "Sales Document
            audat type vbak-audat,    "Document Date (Date Received/Sent)
            aedat type vbak-aedat,    "Changed On
            erdat type vbak-erdat,    "Date on Which Record Was Created
            kunnr type vbak-kunnr,    "customer
            vdatu type vbak-vdatu,    "required delivery date
            posnr type vbap-posnr,    "Sales Document Item
            plnum type afpo-plnum,    "plane order no
            psttr type plaf-psttr,    "Order start date in planned order
            gsmng type plaf-gsmng,    "Total planned order quantity
            aufnr type afko-aufnr,     "Order Number
            erdat1 type aufk-erdat,    "Created on
            matnr type vbap-matnr,     "Material Number
            arktx type vbap-arktx,     "Short text for sales order item
            kwmeng type vbap-kwmeng,   "Cumulative Order Quantity in Sales Units
            psmng type afpo-psmng,     "Order item quantity
            wemng type afpo-wemng,     "Quantity of goods received for the order item
            astnr type aufk-astnr,     "Order status
            ausp1  type clobjdat-ausp1,       "Paper & Paperboard DIM1
            ausp2  type clobjdat-ausp1,       "Paper & Paperboard DIM2
            matnr1 type afpo-matnr,
            ups1   type clobjdat-ausp1,   "ups
            augru type vbak-augru,       "new job/ Reprint
            arbpl type s022-arbpl,      " Michine details
            mgr1 type clobjdat-ausp1,   " mktg_acct_mgr1
           end of t_final.
      data: i_vbak type standard table of vbak,
            i_vbap type standard table of vbap,
      data:  i_s022 type standard table of t_s022.
       data: i_afpo type standard table of t_afpo,
             i_aufk type standard table of t_aufk,
             i_plaf type standard table of t_plaf,
             i_final type standard table of t_final,
             i_kunnr type standard table of t_kunnr.
    data: wa_vbak type vbak,
          wa_vbap type vbap,
    data: wa_s022 type t_s022.
      data: wa_afpo type t_afpo,
           wa_aufk type t_aufk,
           wa_plaf type t_plaf,
           wa_final type t_final,
           wa_kunnr type t_kunnr.
    * For ALV
    data: wrk_fieldcat  type slis_t_fieldcat_alv,
          wrk_repid     like sy-repid,
          wrk_layout    type slis_layout_alv.
    parameters and select-options
    selection-screen begin of block b1 with frame title text-001.
    select-options: s_vbeln for vbak-vbeln, "sales order
                    s_kunnr for vbak-kunnr, "Sold-to party
                    s_audat for vbak-audat. "Date on Which Record Was Created
    selection-screen end of block b1.
    start-of-selection.
    select
    vbak~vbeln
    vbak~kunnr
    vbak~erdat
    vbak~audat
    vbak~aedat
    vbak~vdatu
    vbap~posnr
    vbap~matnr
    vbap~arktx
    vbap~kwmeng
      into table i_vbak from vbak inner join vbap on vbakvbeln = vbapvbeln
      where vbakvbeln in s_vbeln and vbakaudat in s_audat and vbak~kunnr in s_kunnr.
    if i_vbak is not initial.
    *select rmanr
          posnr_rma
          aufnr
          from afko into table i_afko
          for all entries in i_vbak
          where rmanr = i_vbak-vbeln
          and  posnr_rma = i_vbak-posnr.
    select kdauf
           posnr
           aufnr
           plnum
           kdauf
           psmng
           wemng
           matnr
           kdpos
           from afpo into table i_afpo
           for all entries in i_vbak
           where kdauf = i_vbak-vbeln
           and kdpos = i_vbak-posnr.
    if sy-subrc = 0.
    select plnum
           psttr
           gsmng
           from plaf into table i_plaf
           for all entries in i_afpo
           where plnum = i_afpo-plnum.
    if i_afpo is not initial.
    select aufnr
            astnr
            erdat
            from aufk into table i_aufk
            for all entries in i_afpo
            where aufnr = i_afpo-aufnr.
    endif.
    endif.
    endif.
    select vbeln augru
           from vbak into table i_augru
           where vbeln in s_vbeln and kunnr in s_kunnr and audat in s_audat
           and augru = 'z01' or augru = 'z02'.
    select aufnr arbpl from s022 into table i_s022 where aufnr = afpo-aufnr and arbpl like 'ptg%'.
    *loop at i_vbak.&&&&
    loop at i_vbak.
    move-corresponding i_vbak to wa_final.
    select single kunnr from vbak into wa_kunnr where vbeln = i_vbak-vbeln.
          if sy-subrc eq 0.
            select single name1 from kna1 into wa_final-kunnr where kunnr = i_vbak-kunnr.
          endif.
    *read table i_afko into wa_afko with key rmanr = i_vbak-vbeln.
    *read table i_afko into wa_afko with key posnr_rma = i_vbak-posnr.
    *if sy-subrc = 0.
    *move-corresponding wa_afko to wa_final.
    *endif.
    read table i_afpo into wa_afpo with key kdauf = i_vbak-vbeln.
    read table i_afpo into wa_afpo with key kdpos = i_vbak-posnr.
    if sy-subrc = 0.
    move-corresponding wa_afpo to wa_final.
    move wa_afpo-matnr to wa_final-matnr1.
    endif.
    read table i_plaf into wa_plaf with key plnum = wa_afpo-plnum.
    if sy-subrc = 0.
    move-corresponding wa_plaf to wa_final.
    endif.
    read table i_aufk into wa_aufk with key aufnr = wa_afpo-aufnr.
    if sy-subrc = 0.
    move wa_aufk-astnr to wa_final-astnr.
    move wa_aufk-erdat to wa_final-erdat1.
    endif.
    read table i_s022 into wa_s022 with key aufnr = wa_afpo-aufnr.
    *read table i_s022 into wa_s022 with key arbpl like 'ptg%'.
    if sy-subrc = 0.
    move wa_s022-arbpl to wa_final-arbpl.
    endif.
    read table i_augru with key vbeln = i_vbak-vbeln.
    if sy-subrc = 0.
    move i_augru-augru to wa_final-augru.
    endif.
    refresh : i_clobjdat.
    clear   : i_clobjdat,
              wa_objek.
          wa_objek = wa_afpo-matnr.
          call function 'CLAF_CLASSIFICATION_OF_OBJECTS'
            exporting
             class                      = ' '
             classtext                  = 'X'
             classtype                  = '001'
             clint                      = 0
             features                   = 'X'
             language                   = sy-langu
             object                     = wa_objek
             objecttable                = ' '
             key_date                   = sy-datum
             initial_charact            = 'X'
           NO_VALUE_DESCRIPT          =
             change_service_clf         = 'X'
             inherited_char             = ' '
             change_number              = ' '
            tables
              t_class                   = i_sclass
              t_objectdata              = i_clobjdat
            I_SEL_CHARACTERISTIC       =
            T_NO_AUTH_CHARACT          =
           exceptions
             no_classification          = 1
             no_classtypes              = 2
             invalid_class_type         = 3
             others                     = 4.
    read table i_clobjdat with key atnam = 'PAPER_BOARD_DIM1'.
          if sy-subrc eq 0.
            if i_clobjdat-ausp1 ne '?'.
              wa_final-ausp1 = i_clobjdat-ausp1.
            endif.
          endif.
    read table i_clobjdat with key atnam = 'PAPER_BOARD_DIM2'.
          if sy-subrc eq 0.
            if i_clobjdat-ausp1 ne '?'.
              wa_final-ausp2 = i_clobjdat-ausp1.
            endif.
          endif.
    read table i_clobjdat with key atnam = 'UPS1'.
          if sy-subrc eq 0.
            if i_clobjdat-ausp1 ne '?'.
              wa_final-ups1 = i_clobjdat-ausp1.
            endif.
          endif.
    read table i_clobjdat with key atnam = 'MKTG_ACCT_MGR1'.
          if sy-subrc eq 0.
            if i_clobjdat-ausp1 ne '?'.
              wa_final-mgr1 = i_clobjdat-ausp1.
            endif.
          endif.
      if wa_final is not initial.
      append wa_final to i_final.
      endif.
    endif.
    endloop.
    *endif.
    *form display_alv .
    data: wrk_fld type slis_fieldcat_alv.
    refresh wrk_fieldcat.
    clear wrk_fieldcat.
    perform display_alv.
    *&      Form  display_alv
          text
    -->  p1        text
    <--  p2        text
    form display_alv .
      data: wrk_fld type slis_fieldcat_alv.
    refresh wrk_fieldcat.
    clear wrk_fieldcat.
      perform pc_fld using:
            'AUDAT'       text-003     'I_FINAL'     ,
            'VBELN'       text-004     'I_FINAL'     ,
            'AEDAT'       text-005     'I_FINAL'     ,
            'ERDAT'       text-006     'I_FINAL'     ,
            'KUNNR'       text-007     'I_FINAL'     ,
            'POSNR'       text-008     'I_FINAL'     ,
            'VDATU'       text-009     'I_FINAL'     ,
            'PLANUM'       text-010     'I_FINAL'     ,
            'PSTTR'       text-011     'I_FINAL'     ,
            'GSMNG'       text-012     'I_FINAL'     ,
            'AUFNR'      text-013     'I_FINAL'     ,
            'ERDAT1'     text-014     'I_FINAL'     ,
            'MATNR'       text-015     'I_FINAL'     ,
            'ARKTX'       text-016     'I_FINAL'     ,
            'KWMNG'       text-017     'I_FINAL'     ,
            'PSMNG'       text-018     'I_FINAL'     ,
            'WEMNG'       text-019     'I_FINAL'     ,
            'ASTNR'       text-020     'I_FINAL'     ,
            'AUSP1'      text-021     'I_FINAL'     ,
            'AUSP2'      text-022     'I_FINAL'     ,
            'UPS1'      text-023     'I_FINAL'     ,
            'AUGRU'       text-024     'I_FINAL'     ,
            'ARBPL'       text-025     'I_FINAL'     ,
            'MRG1'       text-026     'I_FINAL'     .
    Layout Information.
    wrk_layout-zebra = 'X'.
      wrk_layout-colwidth_optimize = 'X'.
      wrk_layout-expand_fieldname = 'X'.
      wrk_repid = 'ZPPR_DESPACHE'.
    Call ALV.
      call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program = wrk_repid
          is_layout          = wrk_layout
          it_fieldcat        = wrk_fieldcat
         i_save             = 'A'
        tables
          t_outtab           = i_final[]
        exceptions
          program_error      = 1
          others             = 2.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " display_alv
    *&      Form  pc_fld
          text
         -->P_1      text
         -->P_1      text
         -->P_0891   text
         -->P_TEXT_C01  text
         -->P_03     text
         -->P_0894   text
         -->P_IT_LEVEL  text
    form pc_fld  using    f d t .
      data: wrk_fld type slis_fieldcat_alv.
      wrk_fld-no_zero = 'X'.
      if f eq 'SRNO'.
        wrk_fld-key = 'X'.
      endif.
      wrk_fld-quantity = 'SHT'.
      move f to wrk_fld-fieldname.
      move d to : wrk_fld-seltext_l.
      move t to wrk_fld-tabname.
      append wrk_fld to wrk_fieldcat.
    endform.

    Already a known issue, here's the [KB 1584095 - A boolean NOT is added at the beginning of a record selection formula when the report is loaded by the Crystal Reports .NET SDK |http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533383334333033393335%7D.do]

  • Job Cancelled in SM37

    Hi all,
    Job is cancelled in sm37 daily from 7th december onwards.
    We have 4 process chains in our project and all the chains are ok when i am checking in RSPC,and the data is being loaded into the respective cubes and ods.
    The error message is like
    Job started
    Step 001 started (program RSPROCESS, variant &0000000001639, user ID ALEREMOTE
    Job or process BI_PROCESS_LOADING, waiting for event   is unknown
    Job cancelled after system exception ERROR_MESSAGE.
    I have removed one processchain from scheduling 10 days before.
    Is this is the reasong for the job failures?
    Please help me
    Sridath

    Hi......
    Look Job : BI_PROCESS_LOADING.........is actually the background job.............in a process chain.......when the trigger come to a load process...........first this job will run........and after completion of this job...........the actual IP will start...............we don't schedule this job.......but u r saying ur loads are fine.........if this job fails......then the IP will not start......so how ur IP s are running........As already suggested............u deschedule the chain........then again schedule it back.......
    Now to check job that exactly fails at 12:00 a.m.....................
    Go to SM37 ............give this job name...............date......and in the time field give the time.........
    Regards,
    Debjnai......

  • Force FM execution on batch job work process

    Hi!
    Is it possible to asynchronously start FM execution on batch job work process?
    Additions:
    CALL FUNCTION func STARTING NEW TASK taskname.
    CALL FUNCTION func IN BACKGROUND TASK.
    starts FM execution just on another dialog process.
    Context of requirement:
    There is a program that may be logically splitted into two parts:
    - dialog part where data is collected from user input
    - BAPI call with a tons of parameters(structures, internal tables) formed on user input
    So the problem - system dump by timeout during BAPI execution.
    The only solution is to execute BAPI functionality on work process without timeout limitations - batch job work process.
    There may be two approaches:
    - pass parameters to report and schedule its execution in background job. But here arise question how to pass these dynamic parameters? SAP memory doesn't available for background job work process and "SUBMIT WITH FREE SELECTIONS texpr" seems to be intended for LDB or anyway not for such purposes.
    - force FM execution on background job work process - so how if it possible?
    Appreciate your suggestions.
    Regards,
    Maxim.

    Hi Maxim,
    Look at this example program where the user can run it online to enter the input values in the selection screen and then the program just goes into background mode, basically achieved by submitting the same program again skipping the selection screen. This is one more option for you.
    REPORT ztest.
    PARAMETERS: p_vbeln LIKE vbak-vbeln,
                p_bkrun NO-DISPLAY.
    DATA: ls_vbak LIKE vbak.
    DATA: v_answer,
          v_jobcount LIKE tbtcjob-jobcount.
      IF p_bkrun IS INITIAL.
    *-- not background processing
        CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
             EXPORTING
                  textline1      = 'This may time out.'
                  textline2      = 'Do you want to run in background?'
                  titel          = 'Warning!!!'
                  cancel_display = space
             IMPORTING
                  answer         = v_answer.
        IF v_answer = 'J'.
    *-- run in the background
          CALL FUNCTION 'JOB_OPEN'
               EXPORTING
                    jobname          = 'ZTEST'
               IMPORTING
                    jobcount         = v_jobcount
               EXCEPTIONS
                    cant_create_job  = 1
                    invalid_job_data = 2
                    jobname_missing  = 3
                    OTHERS           = 4.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE 'E' NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            EXIT.
          ENDIF.
    *-- submit the program in the background
          SUBMIT ztest
            WITH p_bkrun = 'X'
            WITH p_vbeln = p_vbeln
            USER sy-uname
            VIA JOB 'ZTEST' NUMBER v_jobcount AND RETURN.
    *-- close the job
          CALL FUNCTION 'JOB_CLOSE'
               EXPORTING
                    jobcount             = v_jobcount
                    jobname              = 'ZTEST'
                    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
                    OTHERS               = 8.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE 'W' NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
          EXIT.
        ELSE.
          CLEAR v_answer.
        ENDIF.
      ENDIF.
      CHECK v_answer IS INITIAL.
      SELECT SINGLE * FROM vbak
                      INTO ls_vbak
                     WHERE vbeln = p_vbeln.
      IF sy-subrc <> 0.
        WRITE:/ 'Invalid Order Id.'.
      ENDIF.
    END-OF-SELECTION.
      CHECK v_answer IS INITIAL.
      IF p_bkrun IS INITIAL.
        WRITE:/ 'Here is the result running the program in foreground.'.
      ELSE.
        WRITE:/ 'Here is the result running the program in background.'.
      ENDIF.
      WRITE:/ ls_vbak-vbeln,
              ls_vbak-vkorg.
    Let me know if you have any questions.
    Srinivas

  • How to handle selection process in EHP4 erecruitment

    Hi,
    I am new to this forum. Can someone throw some light on the following processess in Erecruitment EHP 4
    1. Candidate selection process by recruiter
    Need the overall process flow and how to create activity, assign and complete a full process.
    Thanks

    Balaji,
    The selection process begins by creating a new requisition then creating a  job posting and publishing it - this is a standard funcitonality , any checks involved in the selection can be customised using the BADI.
    Activity as a std functionality has status - in process, completed , Rejected and to be hired.
    When a candidate applies against the open job posting in ESS , you will be able to see the candidate details under the dashborad as a recruiter.
    Click the requisition under the dash borad and it will open a new window populating all the candidated applied to that requisition.
    Activites can be created with simple task, with a status change or email (Check customizing for more details on it)
    Activities can be like-
    employee completed first interview
    Employee completed medicals. these 2 can be an example of a simple activity
    Futher documents required - This can be an example of an email activity ( Letters can be customised attached to this activity)
    employee rejected, employee selected - This can be an example of status change activity .
    The last of all would be " Data transfer" this is done when you want the employee details to the transferrd for hiring, you can find this in tcode PA48.
    Hope this helps.
    Regards,
    Regi

  • Complete job work process

    hi,
    What is the complete process for job work process,when we are receiving the material for job work processs.
    Regards
    prabudh

    Background jobs run in a special type of work process—the background work process—that is different from dialog work processes in two ways:
           1.      A dialog work process has a run-time limit that prevents users from interactively running especially long reports. that limit is always in effect for dialog work processes. No such limit applies to background work processes.
           2.      Background work processes allocate memory differently than dialog work processes so that background work processes can become as large as they need to in allocated memory to allow for processing large volumes of data.
    <b>Use</b>
    Using background work processes also lets you optimize both background or dialog processing. In “night” mode, more servers can offer more work processes to accommodate background processing jobs that are scheduled to run when there are lower numbers of interactive users. In “day” mode, you could limit background processing to fewer servers and/or fewer background work processes.
    When a time-driven scheduler is activated, it starts the jobs for which it has free work processes. If there is another background processing server, then the scheduler on that server starts the remaining jobs for which it has capacity, and so on.
    <b>PROCESS</b>
    Assigning the program to the variant in T/C SE38
          Enter the Program,
          Enter Variant Radio Button ON,
         Name the Variant
    Assigning the varient job to its importancy & Frequency in T/C SE36
       Enter Variant Job Name -- Save,
       Class--- Save ,
       Period Values---Save
    Executing the Varient Jobs in T/C SM37
       Enter The Jobname --- Execute
    Hope This Works For you..Reward if its helpful
    Regards,
    Rajasekaran.

  • Message with IDOC number, created by LSMW, missing in job log in SM37

    Hi gurus,
    We have a temporary interface which uses LSMW to create IDOCs and update in SAP. It's used for materials, BOMs and document info records. In LSMW we have defined standard message types MATMAS_BAPI, BOMMAT and DOCUMENT_LOAD for the IDOCs. All these have the same problem.
    A background job runs and starts LSMW. In the job log in SM37 I want to see which IDOCs were created. For some reason this is different in my development system and my test system, and as far as I know all settings should be the same. In the test system LSMW creates more message lines in the job log, than it does in the dev system. Message number E0-097 is "IDOC XXXX added", and this is missing in the dev system.
    This is what it looks like in the dev system:
    Data transfer started for object 'MATMAS' (project 'X', subobject 'Y')             /SAPDMC/LSMW   501    I
    Import program executed successfully                                                             /SAPDMC/LSMW   509    I
    File 'XXX.lsmw.read' exists                                                                               /SAPDMC/LSMW   502    I
    Conversion program executed successfully                                                    /SAPDMC/LSMW   513    I
    Data transfer terminated for object 'MATMAS' (project 'X', subproject 'Y')       /SAPDMC/LSMW  516    I
    And this is what it looks like in the test system. More information, which is exactly what I want in dev system too:
    Data transfer started for object 'MATMAS' (project 'X', subobject 'Y')             /SAPDMC/LSMW   501    I
    Import program executed successfully                                                             /SAPDMC/LSMW  509    I
    File 'XXX.lsmw.read' exists                                                                               /SAPDMC/LSMW  502    I
    Conversion program executed successfully                                                    /SAPDMC/LSMW  513    I
    File 'XXX.lsmw.conv' exists                                                                              /SAPDMC/LSMW   502   I
    IDoc '0000000002489289' added                                                                      E0                         097   S
    File 'XXX.lsmw.conv' transferred for IDoc generation                                      /SAPDMC/LSMW   812   I
    Data transfer terminated for object 'MATMAS' (project 'X', subproject 'Y')      /SAPDMC/LSMW   516   I
    In both cases the IDOC is created and update works fine.
    My only issue is that I can't see the IDOC number in the dev system. I know I can get the IDOC number in WE02, but in this case we have program logic which reads the job log to be able to check IDOC status before sending OK message back to the other side of the interface.
    I hope any of you can have an idea how I can update somewhere to get message E0-097 with IDOC number into the log.
    Regards,
    Lisbeth

    Hi Arun,
    If you want to show your messages in the job log you have to use the MESSAGE statement. In case you use WRITE statements an output list be created which can be found in the spool (there is an icon to go to the spool directly).
    Regards,
    John.

  • Triggering Process chain based on execution of R3 job and Process Chain

    Hi All,
    I need your help in arriving at a solution for a reqirement.
    Scenario is., I need to trigger a process chain B based on successful execution of Process chain A and an R3 job. If both conditions(Completion of R3 job and Process Chain A) are met then only it has to trigger process Chain B.
    I know that we can use events to trigger a process chain using R3 job.But my case is differenet I need to consider the success message from both process chain and R3 job.Is there any way to solve it ?
    Please provide me with your valuable inputs.
    Thanks,
    Bindu

    Hi Hima,
    You can use the  'AND' variant for both, If both are success then trigger the process chain.
    Regards,
    Ravi Kanth
    Edited by: Ravi kanth on Apr 30, 2009 3:36 PM

  • Error 472 in job queue process + ORA-472: PMON  process terminated with err

    Hi,
    I've an Oracle Database 11g Release 11.1.0.6.0 - 64bit Production With the Real Application Clusters option.
    Yesterday instance on node1 crashed.
    This is the extract of alert log:
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_pmon_9297.trc (incident=195198):
    ORA-00600: internal error code, arguments: [17183], [0x14E251C38], [], [], [], [], [], []
    Incident details in: /u01/app/oracle/diag/rdbms/evodb/EVODB1/incident/incdir_195198/EVODB1_pmon_9297_i195198.trc
    Sat Jan 22 16:24:47 2011
    Trace dumping is performing id=[cdmp_20110122162447]
    Sat Jan 22 16:24:50 2011
    Sweep Incident[195198]: completed
    Sat Jan 22 16:25:00 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_pmon_9297.trc (incident=195199):
    ORA-00600: internal error code, arguments: [17183], [0x14E251C38], [], [], [], [], [], []
    Incident details in: /u01/app/oracle/diag/rdbms/evodb/EVODB1/incident/incdir_195199/EVODB1_pmon_9297_i195199.trc
    Sat Jan 22 16:25:10 2011
    Trace dumping is performing id=[cdmp_20110122162510]
    Sat Jan 22 16:25:12 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_pmon_9297.trc (incident=195200):
    ORA-00600: internal error code, arguments: [17183], [0x14E251C38], [], [], [], [], [], []
    Incident details in: /u01/app/oracle/diag/rdbms/evodb/EVODB1/incident/incdir_195200/EVODB1_pmon_9297_i195200.trc
    Sat Jan 22 16:25:23 2011
    DBRM (ospid: 9310): terminating the instance due to error 472
    Sat Jan 22 16:25:23 2011
    System state dump is made for local instance
    System State dumped to trace file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_diag_16320.trc
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3724_47445977853072)
    Sat Jan 22 16:25:23 2011
    SUCCESS: diskgroup ARCHIVELOG was dismounted
    Sat Jan 22 16:14:22 2011
    DDE: Problem Key 'ORA 600 [17183]' was completely flood controlled (0x6)
    Further messages for this problem key will be suppressed for up to 10 minutes
    Sat Jan 22 16:15:56 2011
    Thread 1 advanced to log sequence 171322
    Current log# 18 seq# 171322 mem# 0: +ONLINELOG/evodb/onlinelog/group_18.264.729348055
    Sat Jan 22 16:15:56 2011
    SUCCESS: diskgroup ARCHIVELOG was mounted
    Sat Jan 22 16:16:15 2011
    SUCCESS: diskgroup ARCHIVELOG was dismounted
    Sat Jan 22 16:20:52 2011
    Thread 1 advanced to log sequence 171323
    Current log# 12 seq# 171323 mem# 0: +ONLINELOG/evodb/onlinelog/group_12.267.729333861
    Sat Jan 22 16:20:53 2011
    SUCCESS: diskgroup ARCHIVELOG was mounted
    Sat Jan 22 16:21:14 2011
    SUCCESS: diskgroup ARCHIVELOG was dismounted
    Sat Jan 22 16:24:23 2011
    DDE: Problem Key 'ORA 600 [17183]' was completely flood controlled (0x2)
    Further messages for this problem key will be suppressed for up to 10 minutes
    Sat Jan 22 16:24:38 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_pmon_9297.trc (incident=195198):
    ORA-00600: internal error code, arguments: [17183], [0x14E251C38], [], [], [], [], [], []
    Incident details in: /u01/app/oracle/diag/rdbms/evodb/EVODB1/incident/incdir_195198/EVODB1_pmon_9297_i195198.trc
    Sat Jan 22 16:24:47 2011
    Trace dumping is performing id=[cdmp_20110122162447]
    Sat Jan 22 16:24:50 2011
    Sweep Incident[195198]: completed
    Sat Jan 22 16:25:00 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_pmon_9297.trc (incident=195199):
    ORA-00600: internal error code, arguments: [17183], [0x14E251C38], [], [], [], [], [], []
    Incident details in: /u01/app/oracle/diag/rdbms/evodb/EVODB1/incident/incdir_195199/EVODB1_pmon_9297_i195199.trc
    Sat Jan 22 16:25:10 2011
    Trace dumping is performing id=[cdmp_20110122162510]
    Sat Jan 22 16:25:12 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_pmon_9297.trc (incident=195200):
    ORA-00600: internal error code, arguments: [17183], [0x14E251C38], [], [], [], [], [], []
    Incident details in: /u01/app/oracle/diag/rdbms/evodb/EVODB1/incident/incdir_195200/EVODB1_pmon_9297_i195200.trc
    Sat Jan 22 16:25:23 2011
    DBRM (ospid: 9310): terminating the instance due to error 472
    Sat Jan 22 16:25:23 2011
    System state dump is made for local instance
    System State dumped to trace file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_diag_16320.trc
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3724_47445977853072)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3650_47673206152336)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (19709_47962498952336)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3715_47239602621584)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3718_47120460606608)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3646_47899813694608)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3671_47700480982160)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3637_47223057443984)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3695_47109627223184)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3679_47262512999568)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3733_46976527121552)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3667_47474016554128)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3669_47585103858832)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3658_47992462539920)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3654_47736794324112)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3686_47295241862288)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3706_47055349939344)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3630_47331091332240)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3713_47194150415504)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3726_47289949199504)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3677_47842172337296)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (19131_47557370236048)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (27091_47096969530512)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3688_47422639070352)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3652_47944422886544)
    Sat Jan 22 16:25:23 2011
    ORA-1092 : opiodr aborting process unknown ospid (3648_47426149817488)
    Sat Jan 22 16:25:24 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_j005_9360.trc:
    ORA-00472: PMON  process terminated with error
    ORA-1092 : opidrv aborting process J005 ospid (9360_47420959304848)
    Sat Jan 22 16:25:24 2011
    ORA-1092 : opiodr aborting process unknown ospid (18393_47566684101776)
    Sat Jan 22 16:25:24 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_j003_7054.trc:
    ORA-00472: PMON process terminated with error
    ORA-1092 : opidrv aborting process J003 ospid (7054_47244451724432)
    Sat Jan 22 16:25:24 2011
    ORA-1092 : opiodr aborting process unknown ospid (19719_47840732109968)
    Sat Jan 22 16:25:24 2011
    ORA-1092 : opiodr aborting process unknown ospid (22184_47575322619024)
    Sat Jan 22 16:25:24 2011
    ORA-1092 : opiodr aborting process unknown ospid (19721_47679094451344)
    Sat Jan 22 16:25:24 2011
    ORA-1092 : opiodr aborting process unknown ospid (30170_47106572815504)
    Sat Jan 22 16:25:24 2011
    ORA-472 : opidrv aborting process S000 ospid (9367_46990649617552)
    Sat Jan 22 16:25:24 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_j002_7052.trc:
    ORA-00472: PMON process terminated with error
    ORA-1092 : opidrv aborting process J002 ospid (7052_47411695402128)
    Sat Jan 22 16:25:24 2011
    ORA-1092 : opiodr aborting process unknown ospid (18493_47469336738960)
    Sat Jan 22 16:25:24 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_j006_10011.trc:
    ORA-00472: PMON process terminated with error
    ORA-1092 : opidrv aborting process J006 ospid (10011_47836408102032)
    Sat Jan 22 16:25:24 2011
    ORA-1092 : opiodr aborting process unknown ospid (19714_47958179912848)
    Sat Jan 22 16:25:24 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_j007_10289.trc:
    ORA-00472: PMON process terminated with error
    ORA-1092 : opidrv aborting process J007 ospid (10289_47356480347280)
    Sat Jan 22 16:25:24 2011
    ORA-1092 : opiodr aborting process unknown ospid (9076_47765392362640)
    Sat Jan 22 16:25:24 2011
    ORA-1092 : opitsk aborting process
    Sat Jan 22 16:25:25 2011
    ORA-1092 : opiodr aborting process unknown ospid (22167_47949919177872)
    Sat Jan 22 16:25:25 2011
    ORA-1092 : opiodr aborting process unknown ospid (24320_47408077532304)
    Sat Jan 22 16:25:25 2011
    ORA-1092 : opiodr aborting process unknown ospid (22130_47998542101648)
    Sat Jan 22 16:25:25 2011
    ORA-472 : opidrv aborting process N000 ospid (14774_47466200525968)
    Sat Jan 22 16:25:25 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_q000_14701.trc:
    ORA-00472: PMON process terminated with error
    ORA-1092 : opidrv aborting process Q000 ospid (14701_47693688122512)
    Sat Jan 22 16:25:25 2011
    ORA-1092 : opiodr aborting process unknown ospid (18386_47900707175568)
    Sat Jan 22 16:25:25 2011
    ORA-1092 : opiodr aborting process unknown ospid (27553_46921398619280)
    Sat Jan 22 16:25:26 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_j001_7050.trc:
    ORA-00472: PMON process terminated with error
    ORA-1092 : opidrv aborting process J001 ospid (7050_47290016251024)
    Sat Jan 22 16:25:26 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_o001_5297.trc:
    ORA-00472: PMON process terminated with error
    ORA-1092 : opidrv aborting process O001 ospid (5297_47702958673040)
    Sat Jan 22 16:25:26 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_o000_5277.trc:
    ORA-00472: PMON process terminated with error
    ORA-1092 : opidrv aborting process O000 ospid (5277_47599668255888)
    Sat Jan 22 16:25:26 2011
    ORA-1092 : opiodr aborting process unknown ospid (19745_47560156560528)
    Sat Jan 22 16:25:26 2011
    ORA-1092 : opiodr aborting process unknown ospid (27044_47388543339664)
    Sat Jan 22 16:25:26 2011
    Errors in file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_j004_7061.trc:
    ORA-00472: PMON process terminated with error
    ORA-1092 : opidrv aborting process J004 ospid (7061_47341656689808)
    Sat Jan 22 16:25:27 2011
    ORA-1092 : opiodr aborting process unknown ospid (14431_47662297960112)
    Sat Jan 22 16:25:27 2011
    ORA-1092 : opiodr aborting process unknown ospid (14433_47826608635568)
    Sat Jan 22 16:25:31 2011
    ORA-1092 : opitsk aborting process
    Sat Jan 22 16:25:32 2011
    License high water mark = 269
    Instance terminated by DBRM, pid = 9310
    USER (ospid: 10539): terminating the instance
    Instance terminated by USER, pid = 10539
    Sat Jan 22 16:25:49 2011
    Starting ORACLE instance (normal)
    This is the trace /u01/app/oracle/diag/rdbms/evodb/EVODB1/incident/incdir_195200/EVODB1_pmon_9297_i195200.trc
    (the one regarding the error DBRM (ospid: 9310): terminating the instance due to error 472)
    Oracle Database 11g Release 11.1.0.6.0 - 64bit Production
    With the Real Application Clusters option
    ORACLE_HOME = /u01/app/oracle/product/11.1.0/db1
    System name:    Linux
    Node name:      dcsrv-evodb01
    Release:        2.6.18-164.10.1.el5
    Version:        #1 SMP Wed Dec 30 18:35:28 EST 2009
    Machine:        x86_64
    Instance name: EVODB1
    Redo thread mounted by this instance: 1
    Oracle process number: 2
    Unix process pid: 9297, image: oracle@dcsrv-evodb01 (PMON)
    *** 2011-01-22 16:25:12.984
    *** SESSION ID:(884.1) 2011-01-22 16:25:12.984
    *** CLIENT ID:() 2011-01-22 16:25:12.984
    *** SERVICE NAME:(SYS$BACKGROUND) 2011-01-22 16:25:12.984
    *** MODULE NAME:() 2011-01-22 16:25:12.984
    *** ACTION NAME:() 2011-01-22 16:25:12.984
    Dump continued from file: /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_pmon_9297.trc
    ORA-00600: internal error code, arguments: [17183], [0x14E251C38], [], [], [], [], [], []
    +========= Dump for incident 195200 (ORA 600 [17183]) ========+
    ----- Beginning of Customized Incident Dump(s) -----
    And this is the trace /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_j005_9360.trc
    (the one regarding the error ORA-00472: PMON process terminated with error)
    Trace file /u01/app/oracle/diag/rdbms/evodb/EVODB1/trace/EVODB1_j005_9360.trc
    Oracle Database 11g Release 11.1.0.6.0 - 64bit Production
    With the Real Application Clusters option
    ORACLE_HOME = /u01/app/oracle/product/11.1.0/db1
    System name:    Linux
    Node name:      dcsrv-evodb01
    Release:        2.6.18-164.10.1.el5
    Version:        #1 SMP Wed Dec 30 18:35:28 EST 2009
    Machine:        x86_64
    Instance name: EVODB1
    Redo thread mounted by this instance: 1
    Oracle process number: 95
    Unix process pid: 9360, image: oracle@dcsrv-evodb01 (J005)
    *** 2011-01-22 16:25:24.057
    *** SESSION ID:(649.45863) 2011-01-22 16:25:24.057
    *** CLIENT ID:() 2011-01-22 16:25:24.057
    *** SERVICE NAME:(SYS$USERS) 2011-01-22 16:25:24.057
    *** MODULE NAME:() 2011-01-22 16:25:24.057
    *** ACTION NAME:() 2011-01-22 16:25:24.057
    error 472 in job queue process
    ORA-00472: PMON  process terminated with error
    My questions are:
    - how can I discover the nature of the ORA-00600: internal error code, arguments: [17183], [0x14E251C38], [], [], [], [], [], []?
    - what does error 472 in job queue proces mean?
    - is it normal the the error 472 in job queue proces crash the instance?
    Thanks in advanca for any kind of help!
    Samuel

    >
    how can I discover the nature of the ORA-00600: internal error code, arguments: [17183], [0x14E251C38], [], [], [], [], [], []?
    >
    ORA-00600 should be reported to oracle. Only they know the meaning.
    Regards,
    - wiZ

  • Require Job name in SM37 while executing call transaction in background

    Hi all,
    I am executing a report program, which contains Call transaction.
    I have recorded properly. The recording contains background job screen also ( means a separate popup came and i gave the job name and i gave immediately )
    When i execute in this program in foreground its creating job,its showing the job in sm37.
    But when i execute this program in background, it does not showing the job name in sm37.
    Anyone kindly help this out?
    Anandhab

    Hi,
    The job will be created by the step level user.
    Try searching again with jobname and * for username.
    Regards,
    Jovito

  • Job to process messages in Ready Status in SMQ2 ECC

    Hello friends,
    I am sending out messages from SAP ECC to PI  using proxy . The messages are getting stuck in SMQ2 in READY status. I have to each time manually go and activate the queue to send the message out of SAP ECC.
    Is there any job to process them automatically that needs to be set up in SAP ECC ?
    Thank you,
    Teresa

    Hi,
    Investigate why messages were strucked in Queues, there could be some reason, i suggest you too deregister and register queues once again.
    if possible assign sepprate queue for proxy interface.
    Regards,
    Raj

  • How to edit the job name in SM37

    Hi All,
    I have job in SM37 with the mane ZBI_PROCESSING and the Job in Release status. Now I want to change the Job Name to Z_PROCESSING_SS. Please let me know how to edit the Job Name.
    Regards,
    Ravi

    Hi Ravi,
    In SM37 when you have the list of all jobs, right-clic on the job you want to rename, copy, enter the new name.
    Then you can delete the first job. The copied one will then be executed.
    Regards,
    Fred

  • Does back ground jobs work process go to private mode or not

    Hi Experts,
    Can any one tell me
    Does back ground jobs work process go to private mode or not
    Thanks and Regards
    Dan !!

    Hi Dan,
    I do not think background work processes would go into PRIV mode.
    the orginal information was remove by Admin because provided by Cut and Paste from SAP Online Help.
    you will find it <a href="http://help.sap.com/saphelp_47x200/helpdata/en/7a/caa6f3bfdb11d188b30000e83539c3/frameset.htm">here</a>
    The distribution, participation in distributing or otherwise sending of this material is against the law. The material you are requesting is copyrighted material and available ONLY to customers of SAP. If you need such documents from the SAP Service Marketplace then you must have "S" user ID and login yourself to retrieve this material. If you do not have a "S" user ID then you should contact your own internal company groups responsible and request one or request them to retrieve the document for you.
    By participating and sending such documents you are at risk for legal action and a removal of your account here on SDN and BPX.
    DO NOT send material via email such as this! Further actions will result in officials within your company and your SAP Sales Account being notified and could result in legal action against you as an individual.

  • I Cannot See Job Queue Processes (Jnnn) in v$session

    Hello,
    My Oracle environment is 9.2.0.8 on IBM AIX platform.
    I found that I cannot see any job queue process (Jnnn) in v$session.
    However, the program of the relative process in v$session is null value.
    Does anybody know what is going wrong?
    Thank you.

    not sure...
    I have used 10g RAC.... I find programs .....: os_user@hostname (J00x)
    select inst_id,action ,username ,program from gv$session where program like upper('%j00%')

Maybe you are looking for