Automatic running of session in SM35 as soon as it gets created......

Hi,
I have a program which shoots BDC at the end.
We don't want to goto SM35 and manually run it. How can we make the session automatically as soon as it gets created in SM35 ?
Regards,
Rajesh.

Hi,
You can do something like this.
SUBMIT rsbdcsub WITH mappe EQ 'ZBDC'
                WITH von EQ sy-datum
                WITH bis EQ sy-datum
                WITH fehler EQ space
                EXPORTING LIST TO MEMORY
                AND RETURN.
Regards,
Ferry Lianto

Similar Messages

  • Automatically Run The Session in SM35

    How can I run the session automatically in background after creating it in SM35. I want to eliminate my users from going to SM35 and execute the session after uploading the data.

    0. I think the other program(RSBTCSUB)is even better and you can create job for that too.
    1. you can select from apqi with something like:
        SELECT * FROM *APQI UP TO 1 ROWS
                       WHERE MANDANT = SY-MANDT
                         AND GROUPID = ???
                         and credate = sy-datum
                         AND QSTATE = 'R'.
    2. you can create a job and submit a job, eg:
          FORM schedule_next_bdc
          Schedules a job to release a specific BDC session.            *
    FORM SCHEDULE_NEXT_BDC.
    DATA: L_JOB_NAME LIKE G_JOB_NAME,
          l_job_num LIKE  TBTCJOB-JOBCOUNT.
      MOVE APQI-GROUPID TO L_JOB_NAME.
      CALL FUNCTION 'JOB_OPEN'
           EXPORTING
                JOBNAME          = L_JOB_NAME
           IMPORTING
                JOBCOUNT         = l_JOB_NUM
           EXCEPTIONS
                CANT_CREATE_JOB  = 1
                INVALID_JOB_DATA = 2
                JOBNAME_MISSING  = 3
                OTHERS           = 4.
      IF SY-SUBRC NE 0.
         PERFORM JOB_DELETE USING L_JOB_NAME l_JOB_NUM.
         MESSAGE E999 WITH 'Job open failed - return code is: ' SY-SUBRC.
      ELSE.
         MESSAGE S999 WITH 'Job Name/Number for BDC session:'
                                                           L_JOB_NAME
                                                           l_JOB_NUM.
         MESSAGE S999 WITH '...Queue ID:' APQI-QID.
      ENDIF.
      SUBMIT  RSBDCBTC AND RETURN
             WITH QUEUE-ID = APQI-QID
             USER SY-UNAME
             VIA JOB L_JOB_NAME NUMBER l_JOB_NUM.
      IF SY-SUBRC NE 0.
         PERFORM JOB_DELETE USING L_JOB_NAME l_JOB_NUM.
         MESSAGE E999 WITH '...Abap submission to job failed. Abap='
                           SY-REPID 'RC=' SY-SUBRC.
      ENDIF.
      CALL FUNCTION 'JOB_CLOSE'
           EXPORTING
                JOBCOUNT             = l_JOB_NUM
                JOBNAME              = L_JOB_NAME
                STRTIMMED            = 'X'
           IMPORTING
                JOB_WAS_RELEASED     = G_JOB_RELEASED
           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 NE 0.
         PERFORM JOB_DELETE USING L_JOB_NAME l_JOB_NUM.
         MESSAGE E999 WITH '...Job closure failure. Return code='
                                                    SY-SUBRC.
      ELSE.
         MESSAGE S999 WITH '...Job scheduled OK. Name/Number:'
                                                    L_JOB_NAME
                                                    l_JOB_NUM.
      ENDIF.
    ENDFORM.

  • ERROR WHILE RUNNING THE SESSION IN SM35

    Hi all
            when ever m running this session in SM35 , M getting error as :
    "LEAVE TO TRANSACTION" MARA-BISMT is not allow
    in batch input                               
    REPORT  YASEC_BDC_NIK_SESSION
            no standard page heading
            message-id zmm
            line-count 65
            line-size 150.
    tables : mara.
    *Top includr program
    INCLUDE YNEW_MAIN_TOP.
    *include yasec_bdc_nik_session_top.
    ***********selection screen *******************
    selection-screen begin of block b1 with frame title text-001.
    selection-screen skip.
    PARAMETERS: p_ifile(128)   TYPE c .
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS: rad1  TYPE c RADIOBUTTON GROUP 1 USER-COMMAND gr1,
                rad2  TYPE c RADIOBUTTON GROUP 1 .
    SELECTION-SCREEN SKIP.
    PARAMETERS: p_sess TYPE c.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK b1.
    Subroutine call***************************
    INCLUDE YNEW_MAIN_F01.
    *include yasec_bdc_nik_session_f01.
    *********At selection event triggered *************
    at selection-screen on value-request for p_ifile.
    To get F4 help for the input file path
      PERFORM f_f4_input_file.
    AT SELECTION-SCREEN ON p_ifile.
    To validate and upload the input file
      PERFORM f_load_file.
    AT SELECTION-SCREEN ON p_sess.
    To validate the Number of Sessions field
      IF rad2 IS NOT INITIAL AND sy-ucomm EQ c_onli.
        PERFORM f_check_sessions.
      ENDIF.
    ***********Start of selection *******************
    start-of-selection.
    *To process BDC
      PERFORM f_process_bdc.
           TOP OF PAGE
    TOP-OF-PAGE.
    Writes the report heading and for displaying line number.
      PERFORM f_report_header.
    TYPES : BEGIN OF t_final,
            matnr(50) TYPE c,
            bismt(18) type c,
            end of t_final.
    TYPES: BEGIN OF t_fdata,
            data(256) TYPE c,
           END OF t_fdata.
    TYPES: BEGIN OF t_error,
            message(100) TYPE c,
            END OF t_error.
    *Internal table declarations
    *Internal table to load the data from the file that is changed throgh BDC
    DATA : i_final TYPE STANDARD TABLE OF t_final,
           wa_final TYPE t_final.
    *Internal table to store the error messages
    DATA : i_error TYPE STANDARD TABLE OF t_error,
           wa_error TYPE t_error.
    *Internal table to load the raw data
    DATA : i_fdata TYPE STANDARD TABLE OF t_fdata,
           wa_fdata TYPE t_fdata.
    *Internal table to store records of BDC
    DATA : i_bdcdata TYPE STANDARD TABLE OF bdcdata INITIAL SIZE 0,
           wa_bdcdata TYPE bdcdata.
    Internal table to store BDC messages
    DATA: i_bdcmsgcoll TYPE STANDARD TABLE OF bdcmsgcoll INITIAL SIZE 0,
          wa_bdcmsgcoll TYPE bdcmsgcoll.
    VARIABLE DECLARATIONS
    DATA:  v_ifile      TYPE string,
           v_input      TYPE i,
           c_delimiter  TYPE c VALUE 'X',
           v_mode       TYPE c VALUE 'A',
           v_sessions   TYPE i.
    CONSTANTS
    CONSTANTS : c_flagx    TYPE   c VALUE 'X',
                c_slash    TYPE   c VALUE '/',
                c_onli(4)  TYPE   c VALUE 'ONLI',
                c_vl02(4)  TYPE   c VALUE 'VL02',
                c_s        TYPE   c VALUE 'A'.
    FORM f_f4_input_file .
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          program_name  = syst-cprog
          dynpro_number = syst-dynnr
        IMPORTING
          file_name     = p_ifile.
    ENDFORM.                    " f_f4_input_file
    *&      Form  f_load_file
    FORM f_load_file .
      v_ifile = p_ifile.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                =  v_ifile
          filetype                =  'ASC'
         has_field_separator    =  'X'
        TABLES
          data_tab                = i_fdata
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          OTHERS                  = 17.
      IF sy-subrc <> 0.
    *Text-103-Input file does not exist.
        MESSAGE e000 WITH text-103 .
      ELSEIF NOT i_fdata IS INITIAL.
        DELETE i_fdata WHERE data = space.
        DESCRIBE TABLE i_fdata LINES v_input.
      ENDIF.
      IF v_input EQ 0.
    Text-104 - Input file is empty.
        MESSAGE e000 WITH text-104 .
      ENDIF.
    ENDFORM.                    " f_load_file
    *&      Form  f_check_sessions
    FORM f_check_sessions .
      IF p_sess IS INITIAL.
        MESSAGE e000 WITH text-106.
      ELSE.
        v_sessions = v_input DIV p_sess.
      ENDIF.
    ENDFORM.                    " f_check_sessions
    *&      Form  f_process_bdc
          text
    FORM   f_process_bdc.
      LOOP AT i_fdata INTO wa_fdata.
        SPLIT wa_fdata AT cl_abap_char_utilities=>horizontal_tab
        INTO  wa_final-matnr
              wa_final-bismt.
        APPEND wa_final TO i_final.
        CLEAR wa_fdata.
      ENDLOOP.
      IF rad1 = c_flagx.
        PERFORM f_passbdc_vl02.
      ELSEIF rad2 = c_flagx.
        PERFORM f_sessions_vl02.
      ENDIF.
    ENDFORM.                    "f_process_bdc
    To populate the Screen information
       p_program   Program Name
       p_dynpro    Screen Number
    FORM bdc_dynpro USING  p_program TYPE any
                             p_dynpro TYPE any.
      CLEAR wa_bdcdata.
    Populate the BDC structure with the Screen Information.
    Move the Program name PROGRAM
      wa_bdcdata-program  = p_program.
    Move the Screen Number DYNPRO
      wa_bdcdata-dynpro   = p_dynpro.
    Indicate the beginning of a new screen
      wa_bdcdata-dynbegin = c_flagx.
      APPEND wa_bdcdata TO i_bdcdata.
    ENDFORM.                    "f_bdc_dynpro
    *&      Form  f_passbdc_vl02
          text
    FORM f_passbdc_vl02.
      DATA: l_lines_im TYPE i.
      SORT i_final BY matnr ASCENDING.
      CLEAR wa_final.
      LOOP AT i_final INTO wa_final.
        CLEAR: i_bdcmsgcoll[],
               wa_bdcmsgcoll,
               wa_bdcdata.
          CLEAR: i_bdcdata[].
    perform bdc_dynpro      using 'SAPLMGMM' '0060'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RMMG1-MATNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RMMG1-MATNR'
                                  wa_final-matnr.
    perform bdc_dynpro      using 'SAPLMGMM' '0070'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MSICHTAUSW-DYTXT(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    perform bdc_field       using 'MSICHTAUSW-KZSEL(01)'
                                  'X'.
    perform bdc_dynpro      using 'SAPLMGMM' '4004'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MARA-BISMT'.
    perform bdc_field       using 'MARA-BISMT'
                                  wa_final-bismt.
    perform bdc_dynpro      using 'SAPLSPO1' '0300'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=YES'.
    perform bdc_transaction using 'MM02'.
    perform bdc_dynpro      using 'SAPLMGMM' '0060'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RMMG1-MATNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_dynpro      using 'SAPLMGMM' '0070'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MSICHTAUSW-DYTXT(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    perform bdc_dynpro      using 'SAPLMGMM' '4004'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RMMG1-MATNR'.
    perform bdc_dynpro      using 'SAPLSPO1' '0300'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=YES'.
    perform bdc_transaction using 'MM03'.
          CALL TRANSACTION 'MM02' USING i_bdcdata
                                 MODE   v_mode
                                 UPDATE c_s
                                 MESSAGES INTO i_bdcmsgcoll.
    If error occurred in call transaction 'VA02' then stores all
    information of failed records into internal table i_error_im.
          IF sy-subrc NE 0.
            DESCRIBE TABLE i_bdcmsgcoll LINES l_lines_im.
            CLEAR wa_bdcmsgcoll.
            READ TABLE i_bdcmsgcoll INTO wa_bdcmsgcoll INDEX l_lines_im.
    To capture success and error messages in BDC.
            CALL FUNCTION 'FORMAT_MESSAGE'                      "#EC *
              EXPORTING
                id        = wa_bdcmsgcoll-msgid
                lang      = wa_bdcmsgcoll-msgspra
                no        = wa_bdcmsgcoll-msgnr
                v1        = wa_bdcmsgcoll-msgv1
                v2        = wa_bdcmsgcoll-msgv2
                v3        = wa_bdcmsgcoll-msgv3
                v4        = wa_bdcmsgcoll-msgv4
              IMPORTING
                msg       = wa_error-message
              EXCEPTIONS
                not_found = 1
                OTHERS    = 2.
            IF sy-subrc <> 0.
            ENDIF.
          ELSE.
            WRITE:  text-111 COLOR 7.
          ENDIF.
        CLEAR: wa_final.
        REFRESH i_bdcdata.
      ENDLOOP.
    ENDFORM.                     "f_passbdc_va02
    *&      Form  bdc_field
          text
         -->P_FNAM     text
         -->P_FVAL     text
    FORM bdc_field USING p_fnam TYPE any
                           p_fval TYPE any.
      CLEAR wa_bdcdata.
    Populate the Field Name
      wa_bdcdata-fnam = p_fnam.
    Populate the field value
      wa_bdcdata-fval = p_fval.
      APPEND wa_bdcdata TO i_bdcdata.
    ENDFORM.                    "f_bdc_field
    *&      Form  f_sessions_vl02
          text
    FORM f_sessions_vl02 .
      DATA: l_sindex TYPE sy-tabix VALUE 1,
            l_eindex TYPE sy-tabix,
            l_flag TYPE c VALUE space.
      l_eindex = v_input.
      SORT i_final BY matnr ASCENDING.
      DO p_sess TIMES.
        CALL FUNCTION 'BDC_OPEN_GROUP'
          EXPORTING
            client              = sy-mandt
            group               = 'Y_VL02_NIK'
            user                = sy-uname
           keep                = c_flagx
          EXCEPTIONS
            client_invalid      = 1
            destination_invalid = 2
            group_invalid       = 3
            group_is_locked     = 4
            holddate_invalid    = 5
            internal_error      = 6
            queue_error         = 7
            running             = 8
            system_lock_error   = 9
            user_invalid        = 10
            OTHERS              = 11.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        CLEAR wa_final.
        CLEAR: i_bdcdata[].
        LOOP AT i_final INTO wa_final FROM l_sindex TO l_eindex .
            IF l_flag = v_sessions.
              CLEAR l_flag.
              EXIT.
            ENDIF.
            l_flag = l_flag + 1.
            CLEAR: i_bdcdata[].
    perform bdc_dynpro      using 'SAPLMGMM' '0060'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RMMG1-MATNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RMMG1-MATNR'
                                  wa_final-matnr.
    perform bdc_dynpro      using 'SAPLMGMM' '0070'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MSICHTAUSW-DYTXT(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    perform bdc_field       using 'MSICHTAUSW-KZSEL(01)'
                                  'X'.
    perform bdc_dynpro      using 'SAPLMGMM' '4004'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MARA-BISMT'.
    perform bdc_field       using 'MARA-BISMT'
                                  wa_final-bismt.
    perform bdc_dynpro      using 'SAPLSPO1' '0300'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=YES'.
    perform bdc_transaction using 'MM02'.
    perform bdc_dynpro      using 'SAPLMGMM' '0060'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RMMG1-MATNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_dynpro      using 'SAPLMGMM' '0070'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MSICHTAUSW-DYTXT(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    perform bdc_dynpro      using 'SAPLMGMM' '4004'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RMMG1-MATNR'.
    perform bdc_dynpro      using 'SAPLSPO1' '0300'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=YES'.
    perform bdc_transaction using 'MM03'.
          l_sindex = l_sindex + 1.
        ENDLOOP.
        CALL FUNCTION 'BDC_CLOSE_GROUP'
          EXCEPTIONS
            not_open    = 1
            queue_error = 2
            OTHERS      = 3.
        IF sy-subrc <> 0.
         MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDDO.
    ENDFORM.                    " f_sessions_vl02
    *&      Form  f_report_header
    FORM f_report_header .
      FORMAT COLOR COL_HEADING INTENSIFIED ON.
      ULINE.
    text-201 - Company: Carrier
    text-102-  Batch Data Communication.
    text-202 - System: SAP
      WRITE: /1   sy-vline,
              3   text-201,
              50  text-102,
              100 text-202,
              AT  sy-linsz sy-vline.
    text-203 - Program:
    text-204 - Date/Time:
      WRITE: /1   sy-vline,
              3   text-203, sy-repid ,
              100 text-204,sy-datum ,c_slash, sy-uzeit,
              AT  sy-linsz sy-vline.
    text-205 - User ID:
    text-206 - Page:
      WRITE: /1   sy-vline,
              3   text-205, sy-uname,
              100 text-206, sy-pagno,
              AT  sy-linsz sy-vline.
      FORMAT COLOR OFF.
      ULINE.
    ENDFORM.                    " f_report_header
    FORM bdc_transaction USING tcode.
      CALL FUNCTION 'BDC_INSERT'
        EXPORTING
          tcode            = tcode
        TABLES
          dynprotab        = i_bdcdata
        EXCEPTIONS
          internal_error   = 1
          not_open         = 2
          queue_error      = 3
          tcode_invalid    = 4
          printing_invalid = 5
          posting_invalid  = 6
          OTHERS           = 7.
      IF sy-subrc <> 0.
             MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        WRITE: / text-109 ,wa_final-matnr,
                 text-110 .
      ENDIF.
    ENDFORM.                    "bdc_transaction

    please check this
    check all perform bdcfield correct or not....
    perform bdc_dynpro using 'SAPLMGMM' '0060'.
    perform bdc_field using 'BDC_CURSOR'
    'RMMG1-MATNR'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_field using 'RMMG1-MATNR'
    wa_final-matnr.
    perform bdc_dynpro using 'SAPLMGMM' '0070'.
    perform bdc_field using 'BDC_CURSOR'
    'MSICHTAUSW-DYTXT(01)'.
    perform bdc_field using 'BDC_OKCODE'
    '=ENTR'.
    perform bdc_field using 'MSICHTAUSW-KZSEL(01)'
    'X'.
    perform bdc_dynpro using 'SAPLMGMM' '4004'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_field using 'BDC_CURSOR'
    'MARA-BISMT'.
    perform bdc_field using 'MARA-BISMT'
    wa_final-bismt.
    perform bdc_dynpro using 'SAPLSPO1' '0300'.
    perform bdc_field using 'BDC_OKCODE'
    '=YES'.
    perform bdc_transaction using 'MM02'.
    perform bdc_dynpro using 'SAPLMGMM' '0060'.
    perform bdc_field using 'BDC_CURSOR'
    'RMMG1-MATNR'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_dynpro using 'SAPLMGMM' '0070'.
    perform bdc_field using 'BDC_CURSOR'
    'MSICHTAUSW-DYTXT(01)'.
    perform bdc_field using 'BDC_OKCODE'
    '=ENTR'.
    perform bdc_dynpro using 'SAPLMGMM' '4004'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_field using 'BDC_CURSOR'
    'RMMG1-MATNR'.
    perform bdc_dynpro using 'SAPLSPO1' '0300'.
    perform bdc_field using 'BDC_OKCODE'
    '=YES'.
    perform bdc_transaction using 'MM03'.

  • Storing of log file in A/P Server while running BDC session in SM35

    Hi All,
    I have issue when running BDC session in SM35.
    The actual issue is
    I need to store of log file generated while running BDC session in <b>SM35</b> in <b>Application/Presentation</b> Server path.
    When ever we run single session the Log file regarding that session we need to store in Application/Presentation Server.
    Can anybody have solution for this issue.
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    Hi
    See the std report RSBDC_ANALYSE, here you can know how to find out the log of B.I..
    You can create a program like that to load the log into file instead of showing it.
    Max

  • Delay to display and run input session in SM35

    Hi all,
    while uploading BDC for Bank statement or for anything, it is taking so much time to display the log in input session SM35,
    also in executing the session in background.
    Same thing happens while running payment proposal if F110.
    after entering parameters to generate the proposal it is taking more than 4 to 6 hrs and after that to run the payment proposal again 5-6 hrs.
    This never used to happen before, i cant understand what is the problem.
    Please help me in this,
    Regards,,,,

    I have taken the parameter as a column in select statement and used that column in template to display the parameter values. But it throwing error. i need to display all the parameter values in the output.

  • Automatic AD account creation when user gets created in OIM

    Dear All,
    Currently in my OIM version 9.1.0.2, AD account creation is request based. Manager has to raise a request to create an AD account for the user.
    Now we want to leave this process for AD account creation. Requirement is to create the AD account without any approval process.
    Or I can say create an AD account for the user as soon as user gets created in OIM.
    Please suggest.
    Manohar

    Hi GP,
    I am able to follow the steps mentioned for creating membership rule and access policy.
    Account get created whenever used is added to new group 'createadaccountautomatically'.
    However a small trouble here.
    Initially resource status goes to ready. I need to select Misallocation attribute in the request form manually. This might be happening because in present request based approval Manager provides the is_location.
    How should I overcome this limitation? I mean what change to make so that is_location gets changed automatically.
    Please suggest on this.
    Manohar

  • Automatic run for PRAA change

    Hi,
    I want to change the employee vendor name automatically through PRAA.
    I have scheduled a background job for PRAA and it is just creating a session in SM35.
    Could you please let me know whether I need to create a seperate job (which is given in PRAA, name of job) for running this session, or do I need to do manually?
    I am able to see the name of job which is executed in SM37, but the session is not run, vendor name is not changed.
    Regards
    SM
    Edited by: shanumonu on Jan 18, 2012 10:57 AM

    Hello Sally,
    I am following the same process as you have mentioned.
    When i explicitly update a vendor through PRAA it is updated successfully. Changes are reflected in XK02 / XK03. But when done via a batch job changes are not reflected.
    Do you have any idea as to what can be the possible cause for not updating the vendors despite everything executing successfully? Please your inputs on this.
    Thanks in advance.
    Regards
    Deepali Bhandari

  • Cannot delete old sessions from SM35 - Batch Input...

    Cannot delete old sessions from SM35 - Batch Input...                
    We have an issue, we are trying to delete old batch input sessions via SM35 and no
    matter how hard we try we cannot get rid of them. They are still in status "In Process" but they are status incorrect.
    Those sessions have long finished and some are more than 5 years old.
    We have tried running rsdbcreo and RSBDC_REORG but it only returns with
    Temse Error, running SP12 does not list any inconsistencies. Basically we want all jobs in SM35 that ran this year only available in the SM35 queue, we have sessions that have run from year 2004 to 2008 we wish to
    delete.
    Anybody experience anything similar or have any advice, sorry this is an environment that i have inherited and wish to cleanup.
    We have checked the following notes 706478,76422,706478,76422 and many more.
    Thanks
    Suleman

    When you try to delete, you will be asked whether you want to delete logs too.
    Here try with 'No'.
    hope this helps

  • After AFAB, there is no RABUCH session in SM35

    Dear Gurus,
    I am working with IDES R/3 4.71.
    after executing periodical run with AFAB, according to online document for IDES, there should be RABUCH session in SM35. but I found no session there.
    I checked Sm37, there is a job for RAPOST2000, and it finished without error.
    so I cannot complete posting to GL.
    any hint?
    B.R.
    George
    Edited by: George Pan on Jan 5, 2009 11:46 PM

    Hi George,
    From 4.7 onwards, the depreciation program is RAPOST2000. In RAPOST2000, there is no longer batch input. It post directly to GL. This is why you do not see batch input in SM35.
    For the difference between RABUCH00 and RAPOST2000, please refer to SAP Note 683313.
    Thanks
    SHS

  • Batch session in sm35

    Hi gurus ,
    I am not getting any batch session when I am running ff67. In sm35 i am not getting related batch session.
    Please Guide.
    Thanks

    Hi,
    Go to below mentioned path and enter the symbols created for bank reco
    SAP Customizing Implementation Guide> Financial Accounting (New)> Bank Accounting> Business Transactions> Payment Transactions>Manual Bank Statement> Electronic Bank Statement> Make Global Settings for Electronic Bank Statement> Create keys for posting rule
    Best of luck

  • How do you run the session programatically with out going to tr.codes?

    when we go with BDC sessions what code should we write, to run session programatically,
    i.e manually?

    If I got you right, you do not want to go to SM35 and run the session. Instead you want to run from program. If this is the case then we have understand the way Sessions work.
    Session method is intented to have a two step execution, where the creation of session is the first phase and execution of session is the second phase. This is mainly to have a centralized control over the Postings made in the SAP system.
    Hence, if session method is used, then it is always 2 step. We cannot programatically run the session. Instead u can use CALL TRANSACTION
    Naveen

  • Batch input session in SM35

    Hello,
    We are Unable to find the batch input session in the SM35 which is
    executed successfully.
    User executed T.code S_ALR_87012357 Which automatically triger for
    Batch input session in SM35, User successfully executed the Batch input
    session in SM35. But later we could not see the Batch input session
    under processed tab.
    Hence kindly suggest us how to keep the successfully processed batch
    input session under Processed tab.
    Regards,
    Hemanth.

    Hi,
        In BDC_OPEN_GROUP function module pass the value of KEEP parameter as 'X'.
         So you can view the session after successful execution.

  • How can I automatically run animations when the slide is invoked?

    Hi All
    My question is (hopefully) simple,  I have a number of Microsoft Powerpoint presentations that I want to import into Adobe Captivate 6. I want the  slides to automatically run their animations when the slide is invoked either by clicking on the Table of Contents  or by clicking on the Playback Control Panel. In other words, I want the slides to play their animations as soon as they are opened up rather than the viewer having to click on each side to make the animation work. Many thanks in advance for your time and efforts.
    Moon_dogworth

    Hi there,
    Welcome to Adobe Forums
    I apologize but I did not quite understand what exactly you are trying to achieve. If you want certain transition on the slide when the TOC is clicked or the slide is entered then you can choose the transition under the Properties panel on the right side.
    See picture:
    Hope this helps!
    Thanks!

  • The delivery schedule lines don't get created automatically on MRP run.

    Hi All,
    The delivery schedule lines don't get created automatically on MRP run for subcontracting material.  I have maintained source list as follow eg.
    Valid from | Valid to | Vendor | Porg | PPI | Agreement | Item | Fix | MRP | MRP area
    02.11.2009 | 31.12.2999| XYZ | XY01|     |AA0000XYZE |10 | X |2 | ABC
    Could you please help me about this issue
    Thanks in advance.

    Hi Amit,
    Please ensure the value of Special procurement key in the MRP2 view for the material. It should be maintained as 30 - subcontracting.
    Thanks and Regards,

  • How can I disable the Photos app from automatically running when I plug in my iPhone?

    How can I disable the Photos app from automatically running when I plug in my iPhone?
    I have no intention of ever using Photos, in fact, having to abandon Aperture takes me one step close to moving back to Windows, but I digress.
    I just want to NOT have to kill the Photos app every time I plug in my phone.
    Thanks.

    I am still seeing the option Image Capture, like shown in the screenshot that Rysz posted.   But it is another example of the hide-and-seek Apple likes to play with us.
    The option has to be set for each device individually. With the device connected to USB, you have to click the tiny disclosure triangle in the lower left corner of the sidebar to reveal the option.
    I was perfectly happy with the program I paid for (Aperture), and now to maintain the functionality I have to pay for another application (LightRoom) to get the functionality that I paid for in Aperture.
    Aperture 3.6 is working well with Yosemite. I will use it, as long as I have a Mac, that will run Yosemite or a compatible system.
    Have you looked at Capture One?  It looks much more similar to Aperture than Lightroom.

Maybe you are looking for

  • Passing Parameters to Discoverer report from ORacle Forms

    Hi All, Can I pass a value to a parameter defined in the discoverer page from a D2k form? I want to call a discovere page from fmb while passing a parameter. This is extremely urgent for me. Pl help . Thank you and Regards, Vaibhav M. Shah.

  • How to search text in pdf

    Dear All,              i just want to search particular text in pdf and get the page no where text situated. Please do the needfull. Regards, Parthasarathy.S

  • Do I need specific disks for specific drive?

    Hello everyone, While trying to reinstall a system software, do I need to use the specific disks which came with the computer? I've been online trying to help a friend in Africa with her MacBook. She's lost her hard drive once and was able to reinsta

  • I'm unable to remove my keyboard from my laptop. Please help.

    I'm trying to clean my laptop fan due to overheating. So I tried to disassemble my laptop but i'm stuck at the stage where the keyboard should be removed. My laptop model is HP Pavilion dv6-6144ca and I've looked up its manual on removing the keyboar

  • Need to buy CS5 Design Standard, New Laptop-Help Please

    My wife is a student taking a graphics class a and she must buy CS5 Design Standard (Photoshop, InDesign, Illustrator and Acrobat).  Her computer just broke down and we need to replace it right away but we are on a tight budget.  Can we get by with a