RH_UPDATE_INFTY

Hello,
Can someone resolve this problem, like you can see, I am using RH_UPDATE_INFTY to update an infotype and I always have the same error message : REPID_FORM_INITIAL  what that mean ? What is the solution ?
Thanks experts.
DATA: li_schedule LIKE p1035 OCCURS 0 WITH HEADER LINE,
lw_schedule LIKE LINE OF li_schedule.
li_schedule-plvar = lw_course-plvar.
li_schedule-otype = lw_course-otype.
li_schedule-objid = lw_course-objid.
li_schedule-begda = lw_course-begda.
li_schedule-endda = lw_course-endda.
li_schedule-infty = '1035'.
li_schedule-ndays = '3'.
li_schedule-nhours = '10'.
Append li_schedule.
CALL FUNCTION 'RH_UPDATE_INFTY'
EXPORTING
vtask ='S'
* ORDER_FLG = 'X'
* COMMIT_FLG = 'X'
* AUTHY = 'X'
* PPPAR_IMP =
* OLD_TABNR_NEW_LANGU = ''
* REPID = ' '
* FORM = ' '
* KEEP_LUPD =
* WORKF_ACTV = 'X'
tables
innnn = li_schedule
* ILFCODE =
* EXCEPTIONS
* ERROR_DURING_UPDATE = 1
* NO_AUTHORIZATION = 2
* REPID_FORM_INITIAL = 3
* CORR_EXIT = 4
* OTHERS = 5
IF sy-subrc 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

Hi,
   Give REPID as SY-CPROG  and
       FORM as Space
Try with these, will check out and let u know more

Similar Messages

  • Function Module RH_UPDATE_INFTY throwing odd error

    I am trying to update a relationship using this FM, however I keep getting the error "No input help is available" which I assume is a false-negative.
    I have traced the code through and the error is being thrown here:
        PERFORM RE777Z_RA(MSTT777Z) USING                      "VWMZB3A
                PPLOG-OTYPE PPLOG-INFTY PPLOG-SUBTY PPLOG-VDATA(2)
                PPPAR-TIMCO PPPAR-ADDCO PPPAR-SCLAS SUBRC.
        IF SUBRC GT 0.
          UI_SUBRC = 16.
          EXIT.
        ENDIF.
    UI_SUBRC is getting set to 16, and it is failing. I have been trying for hours to get this and other related FMs to work correctly without luck. I managed to get RH_INSERT_INFTY to work, however it is not really acting as I want it to; hence this FM. The insert FM splits the records if you make an update to enda/begda which is undesirable. This thread details the problem and ther was no posted solution overwriting records in hrp1000
    Here is what I have:
      DATA ls_p1001 TYPE p1001.
      DATA lt_p1001 TYPE STANDARD TABLE OF p1001.
      DATA ls_padd2 TYPE padd2.
      MOVE-CORRESPONDING is_dlgt_rprt TO ls_p1001.
      APPEND ls_p1001 TO lt_p1001.
      CALL FUNCTION 'RH_UPDATE_INFTY'
        EXPORTING
          vtask               = 'S'
    *     order_flg           = 'X'
    *     commit_flg          = 'X'
    *     authy               = 'X'
    *     pppar_imp           = ''
    *     old_tabnr_new_langu = 'X'
    *     repid               = sy-cprog
    *     form                = ''
    *     keep_lupd           = ''
    *     workf_actv          = 'X'
        TABLES
          innnn               = lt_p1001
    *     ILFCODE             = ILFCODE
        EXCEPTIONS
          error_during_update = 1
          no_authorization    = 2
          repid_form_initial  = 3
          corr_exit           = 4
          OTHERS              = 5.

    Hi,
    Please find documentation below:
    FU RH_UPDATE_INFTY
    Text
    Change Infotype Records
    Functionality
    With this function module you can change multiple infotype records for OM objects from Personnel Planning database tables (HRPnnnn). The infotype tables of the table parameter INNNN must all have the structure Pnnnn (logical structure for the infotype nnnn). The records you want to change must exist in the Personnel Planning database tables. If not, this triggers the exception ERROR_DURING_UPDATE.
    The values of the parameter VTASK (update type) mean the following:
    - 'D' -> update in dialog
    - 'S' -> synchronous update via the update task
    - 'V' -> asynchronous update via the update task
    - 'B' -> internal update in buffer only, no DB update
    In HR applications the parameter should be set to 'D' for update in dialog. If there are multiple operations that logically belong together to be updated internally in the buffer first and then saved together to the database, you should set the parameter in each case to 'B' for internal update in buffer only, no DB update. The DB update is then executed by calling the function module 'RH_UPDATE_DATABASE'.
    Parameters
    VTASK
    ORDER_FLG
    COMMIT_FLG
    AUTHY
    PPPAR_IMP
    OLD_TABNR_NEW_LANGU
    REPID
    FORM
    KEEP_LUPD
    WORKF_ACTV
    INNNN
    ILFCODE
    Exceptions
    ERROR_DURING_UPDATE
    NO_AUTHORIZATION
    REPID_FORM_INITIAL
    CORR_EXIT
    Thanks,
    Sriram Ponna.

  • HR ABAP - update infotype 1001

    Hi,
    I am trying to update position of external person using function RH_UPDATE_INFTY_1001_EXT but it doesn't update neither it does give any error.
    Below is my code:
    hold_HSU_1001 like p1001.
    loop at hold_HSU_1001.
        case hold_HSU_1001-sclas.
          when 'U'.
            hold_HSU_1001-sobid = ZHAPEXTP-OT_LOCATN.
          when 'S'.
            hold_HSU_1001-sobid = ZHAPEXTP-OT_POSITN.
        endcase.
        modify hold_HSU_1001 transporting sobid.
      endloop.
      call function 'RH_UPDATE_INFTY'
           exporting  vtask = 'S'
           tables     innnn = hold_HSU_1001
           exceptions ERROR_DURING_UPDATE = 1
                      NO_AUTHORIZATION    = 2
                      REPID_FORM_INITIAL  = 3
                      CORR_EXIT           = 4.
    key parameters of hold_HSU_1001 is
    hold_HSU_1001-otype = 'H' (external person)
    hold_HSU_1001-OBJID = '50000123'
    hold_HSU_1001-plvar = 'ab'
    hold_HSU_1001-rsign = 'B'
    hold_HSU_1001-relat = '008'
    hold_HSU_1001-istat = '1' (active)
    hold_HSU_1001-slcas = 'S' (positon)
    hold_HSU_1001-sobid = '5000465' (which is to be updated).
    Not sure why sobid doesn't get updated. if anyone can help it would be great.
    thank you
    Suganya

    Hi,
    I tried to pass that missing parameters also...Still it doesn't update.
    i also tried RH_UPDATE_INFTY and RH_RELATION_MAINTAIN.
    Thank you
    Suganya

  • Function Module to Update PPOCE data

    Hey all,
    Is there any MF or BAPI who can help me to update the data of an U.O in PPOCE.
    When i change the value of the name of an organisation and his date , and i keep in sql trace , i just found an update in T527X but any call of MF....
    Thanks in advance.

    Hi Filali,
    If u need to update object abbreviation or name of the object (HRP1000) you can use FM 'RH_OBJECT_NAME_MODIFY_OR_LANGU'
    For updating the date may be you can try FM "RH_UPDATE_INFTY".
    You need to test the second FM that it suits ur req. or not
    hope this will help
    Regards,
    Gus

  • OM technnical quieries

    HI,
    Can any body have technical document for OM........
    as an abap-hr programming like FM,macros,
    etc............
    send it to me.......

    Hi Vinay,
    The below info would be helpful to u. You can refer HR350 as well chapter 8.
    SAP Functions Module to find the manager of org unit position personnel no or user.
    RH_GET_LEADING_POSITION and RH_GET_PERSONS_FROM_POSITION
    HRCM_ORGUNIT_MANAGER_GET
    RHPH_STRUCTURE_READ, RH_STRUC_GET find all the employee under an org. unit
    Read OM infotype
    RH_READ_INFTY
    RH_READ_OBJECT
    Maintain OM Infotype:
    RH_PM_ENQUEUE
    RH_PM_DEQUEUE
    RH_PNNNN_MAINTAIN/RH_UPDATE_INFTY
    Maintain/Delimit Relationship for OM infotypes
    RH_CUT_INFTY
    Delimit OM Objects:
    RH_CUT_OBJECT
    Update database for OM objects operation in background
    RH_UPDATE_DATABASE
    Determine whether a position is vacant:
    RH_GET_VACANCY
    Br/Manas

  • Update Infotype 1001

    hi all,
    I have to update  the SLAS of the object ID. I am using Fm " RH_UPDATE_INFty".  but it is not updating the SCLAS
    Code is given below
    REPORT  ZTEST_RH_UPDATE_INFTY.
    DATA:
        lt_relation TYPE TABLE OF p1001,
        ls_relation TYPE          p1001.
      ls_relation-mandt = sy-mandt.
      ls_relation-plvar = '01'.
      ls_relation-otype = 'E'.
      ls_relation-objid = '30000031'.
      ls_relation-infty = '1001'.
      ls_relation-istat = '1'.
      ls_relation-rsign = 'A'.
      ls_relation-relat = '025'.
      ls_relation-begda = '20090709'.
      ls_relation-endda = '20090711'.
      ls_relation-sclas = 'P'.
      ls_relation-sobid =  '00123749'.
      APPEND ls_relation TO lt_relation.
    CALL FUNCTION 'RH_UPDATE_INFTY'
        EXPORTING
          vtask                     = 'S'
        ORDER_FLG                 = 'X'
        COMMIT_FLG                = 'X'
        AUTHY                     = 'X'
        PPPAR_IMP                 =
        OLD_TABNR_NEW_LANGU       = ' '
        REPID                     = ' '
        FORM                      = ' '
        KEEP_LUPD                 =
        WORKF_ACTV                = 'X'
        tables
          innnn                     = lt_relation
        ILFCODE                   =
       EXCEPTIONS
         ERROR_DURING_UPDATE       = 1
         NO_AUTHORIZATION          = 2
         REPID_FORM_INITIAL        = 3
         CORR_EXIT                 = 4
         OTHERS                    = 5
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    please help .
    thanks
    Sachin

    hi Dilek,
    thanks for ur reply.
    I have added both FM but its not updating yet.
    below is my code.
    REPORT  ZTEST_RH_UPDATE_INFTY.
    DATA:
        lt_relation TYPE TABLE OF p1001,
        ls_relation TYPE          p1001.
      ls_relation-mandt = sy-mandt.
      ls_relation-plvar = '01'.
      ls_relation-otype = 'E'.
      ls_relation-objid = '30000031'.
      ls_relation-infty = '1001'.
      ls_relation-istat = '1'.
      ls_relation-rsign = 'A'.
      ls_relation-relat = '025'.
      ls_relation-begda = '20090709'.
      ls_relation-endda = '20090711'.
      ls_relation-sclas = 'P'.
      ls_relation-sobid =  '00123749'.
      APPEND ls_relation TO lt_relation.
    CALL FUNCTION 'RH_PM_ENQUEUE'
      EXPORTING
        act_plvar              = '01'
        act_otype              =  'E'
        act_objid              =  '30000031'
      ERROR_TYPE             = 'I'
    EXCEPTIONS
      ERROR_IN_ENQUEUE       = 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.
      CALL FUNCTION 'RH_UPDATE_INFTY'
        EXPORTING
          vtask                     = 'S'
        ORDER_FLG                 = 'X'
        COMMIT_FLG                = 'X'
        AUTHY                     = 'X'
        PPPAR_IMP                 =
        OLD_TABNR_NEW_LANGU       = ' '
        REPID                     = ' '
        FORM                      = ' '
        KEEP_LUPD                 =
        WORKF_ACTV                = 'X'
        tables
          innnn                     = lt_relation
        ILFCODE                   =
       EXCEPTIONS
         ERROR_DURING_UPDATE       = 1
         NO_AUTHORIZATION          = 2
         REPID_FORM_INITIAL        = 3
         CORR_EXIT                 = 4
         OTHERS                    = 5
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'RH_PM_DEQUEUE'
        EXPORTING
          act_plvar       = '01'
          act_otype       = 'E'
          act_objid       = '30000031'.
    why this code is not updating SCLAS.
    please help
    thanks
    Sachin

  • Updating HRP table through abap codes - is it correct

    Hi all,
    In my hrp1001 table,I want that All Qualifications (Q) and Tasks (T) assigned to all the functional roles (ZF) existing in the system should be transferred to the positions(S) tagged to those respective functional roles.
    For that I am supposed to write a code which copies the entries from Qualifications (Q) and Tasks (T) and tag the same to the positions (S).
    Below is the sample code which is adding just one record to HRP1001 through abap statment. What I am curious to know is wheather it is logically correct to update HRP  table through abap statments or no. If not, Please let me know what should we do as a solution - should we update all records through LSMW of PP01 or any thing else we can do???
    REPORT  ZHRPAR0005 .
    TABLES: HRP1000, HRP1001.
    DATA IT_1001 LIKE HRP1001 OCCURS 5 WITH HEADER LINE..
    SELECT SINGLE * FROM HRP1001 INTO IT_1001 WHERE OTYPE = 'CP' AND PLVAR = '01' AND SCLAS NE 'S'.
    IT_1001-OTYPE = 'S'.
    APPEND IT_1001.
    INSERT INTO HRP1001 VALUES IT_1001.
    Thanks
    Ribhu

    Hi Ribhu..
    there are various FMs available for this purpose..
    use those... becasue if u directly insert, update or modify record in HRP1000 or HRP1001...
    then some related table might not be updated..
    So use FMs..
    RH_COPY_INFTY
    RH_CUT_INFTY
    RH_DELETE_INFTY
    RH_INSERT_INFTY
    RH_INVERT_RELA_INFTY
    RH_UPDATE_INFTY
    <b>For IT 1001 </b>
    RH_CUT_INFTY_1001_EXT
    RH_CUT_INFTY_1001_EXT_GENERIC
    RH_DELETE_INFTY_1001_EXT
    RH_DEL_INFTY_1001_EXT_GENERIC
    RH_INSERT_INFTY_1001_EXT
    RH_UPDATE_INFTY_1001_EXT
    RH_BASE_READ_INFTY_1001
    RH_READ_INFTY_1001
    RH_READ_INFTY_1001_EXT
    RH_READ_INFTY_1001_EXT_ONLY
    Reward if useful
    Regards
    Prax

  • Updating HRP tables through abap code- is it correct?

    Hi all,
    In my hrp1001 table,I want that All Qualifications (Q) and Tasks (T) assigned to all the functional roles (ZF) existing in the system should be transferred to the positions(S) tagged to those respective functional roles.
    For that I am supposed to write a code which copies the entries from Qualifications (Q) and Tasks (T) and tag the same to the positions (S).
    Below is the sample code which is adding just one record to HRP1001 through abap statment. What I am curious to know is wheather it is logically correct to update HRP table through abap statments or no. If not, Please let me know what should we do as a solution - should we update all records through LSMW of PP01 or any thing else we can do???
    REPORT ZHRPAR0005 .
    TABLES: HRP1000, HRP1001.
    DATA IT_1001 LIKE HRP1001 OCCURS 5 WITH HEADER LINE..
    SELECT SINGLE * FROM HRP1001 INTO IT_1001 WHERE OTYPE = 'CP' AND PLVAR = '01' AND SCLAS NE 'S'.
    IT_1001-OTYPE = 'S'.
    APPEND IT_1001.
    INSERT INTO HRP1001 VALUES IT_1001.
    Thanks
    Ribhu

    Hi Ribhu..
    there are various FMs available for this purpose..
    use those... becasue if u directly insert, update or modify record in HRP1000 or HRP1001...
    then some related table might not be updated..
    So use FMs..
    RH_COPY_INFTY
    RH_CUT_INFTY
    RH_DELETE_INFTY
    RH_INSERT_INFTY
    RH_INVERT_RELA_INFTY
    RH_UPDATE_INFTY
    For IT 1001
    RH_CUT_INFTY_1001_EXT
    RH_CUT_INFTY_1001_EXT_GENERIC
    RH_DELETE_INFTY_1001_EXT
    RH_DEL_INFTY_1001_EXT_GENERIC
    RH_INSERT_INFTY_1001_EXT
    RH_UPDATE_INFTY_1001_EXT
    RH_BASE_READ_INFTY_1001
    RH_READ_INFTY_1001
    RH_READ_INFTY_1001_EXT
    RH_READ_INFTY_1001_EXT_ONLY
    Reward if useful
    Regards
    Prax

  • Uploading data to OM infotypes

    Hi,
    Can anyone pls let me know what is the best method to upload data into infotyp hrp1051 its an OM infotype.
    AS per my search i understood PA infotype can be uploaded with HR_MAINTAIN_MASTERDATA.
    Here my doubt is Can OM infotypes also be updated using this FM or we need to go for BDC,LSMW.
    Thanks.

    HI Salini
    There are various FMs available for this purpose..
    If u directly insert, update or modify record in OM Infotpye Tables then some related table might not be updated..
    So use FMs..
    RH_COPY_INFTY
    RH_CUT_INFTY
    RH_DELETE_INFTY
    RH_INSERT_INFTY
    RH_INVERT_RELA_INFTY
    RH_UPDATE_INFTY
    For IT 1001
    RH_CUT_INFTY_1001_EXT
    RH_CUT_INFTY_1001_EXT_GENERIC
    RH_DELETE_INFTY_1001_EXT
    RH_DEL_INFTY_1001_EXT_GENERIC
    RH_INSERT_INFTY_1001_EXT
    RH_UPDATE_INFTY_1001_EXT
    RH_BASE_READ_INFTY_1001
    RH_READ_INFTY_1001
    RH_READ_INFTY_1001_EXT
    RH_READ_INFTY_1001_EXT_ONLY
    Hope this helps.
    Harsh

  • Help ! OM Infotype Update Error

    We were trying to update the OM infotype using the RH_UPDATE_INFTY function module. But we are getting an exceptional error - 'ERROR DURING UPDATE'. Please help us on this.
    The process which we used is.. Select the existing infotype record (IT 1029) and make modifications in some of the fields and pass the updated record to the FM.

    Hi Radha,
    Instead of  going for RH_UPDATE_INFTY, you can go for the function module HR_INFOTYPE_OPERATION.
    Before using this function module you need to LOCK using ENQUEUE_EPPRELE, so that no other person cannot make any changes to that infotype.
    After the changes, you must UNLOCK the infotype using DEQUEUE_EPPRELE.
    Sample:
    CALL FUNCTION 'ENQUEUE_EPPRELE'
    EXPORTING
    pernr = wa_hrrecord-pernr
    EXCEPTIONS
    foreign_lock = 1
    system_failure = 2
    OTHERS = 3.
    IF sy-subrc EQ 0.
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
    EXPORTING
    INFTY = '0015'
    NUMBER = P0015-PERNR
    SUBTYPE = P0015-SUBTY
    OBJECTID = P0015-OBJPS
    LOCKINDICATOR = P0015-SPRPS
    VALIDITYEND = P0015-ENDDA
    VALIDITYBEGIN = P0015-BEGDA
    RECORDNUMBER = P0015-SEQNR
    RECORD = P0015
    OPERATION = 'INS'
    TCLAS = 'A'
    DIALOG_MODE = '0'
    IMPORTING
    RETURN = RETURN
    KEY = KEY.
    CALL FUNCTION 'DEQUEUE_EPPRELE'
    EXPORTING
    pernr = wa_hrrecord-pernr.
    ENDIF.
    ENDLOOP.
    Regards,
    Chandra Sekhar

  • Organisation Assignment Questions

    Hi ALL,
    Currently, I am developing an application which allows BP to assign themselves assigned to the position with relationship “Owner” under an organization unit.just like how you work in transaction: PPOSA_CRM
    When create this relationship, I have found two function modules which are from different function groups
    RHOM_MAINTAIN_RELATION_BUFF
    This function module is for Organization Management.
    2.     RH_Relation_maintain
    This is like for Personal Development.
    Here come my questions:
    ·     When I used “RHOM_MAINTAIN_RELATION_BUFF” to create the relationship, the relationship can be created in the buffer, however, when I call function Module “RHOM_WRITE_BUFFER_TO_DB” to update database afterwards, the database update doesn’t work.
    Anybody have any idea about it?
    ·     Since I failed to update database, I tried to create relationship between Position and BP by FM “RH_Relation_maintain”, However, I have got an exception that saying “B270”(relationship type-Owner) is not allowed between Position(object type-s ) and Business Partner (object type BP), check table T777E.
    I checked the table, this relationship doesn’t exit in T777E between “S” and “BP”, however, when I checked table T77AW, there “b270” exist for BP and position.
    Can I use this Function module “RH_Relation_maintain” to create relationship between BP and position? How to use this relationshi type in this FM?
    Many Many Thanks,
    Heather

    Hi Heather,
    i'm using following function modules to maintain infotype 1000. They should also
    work for it 1001:
      CALL FUNCTION 'RH_CUT_OBJECT'
        EXPORTING
    *   LOAD                     = 'X'
          gdate                    = l_newendda
          histo                    = ' '
          gstat                    = '1'
    *   INVERT                   = 'X'
          vtask                    = 'B'
    *   ORDER_FLG                = 'X'
        commit_flg               = ' '
        authy                    = ' '
    *   PPPAR_IMP                =
    *   CUT_DEPENDENTS           = 'X'
    *   KEEP_LUPD                =
    *   WORKF_ACTV               = 'X'
        TABLES
          i1000                    = ltbl_p1000_abg
    *   ILFCODE                  =
       EXCEPTIONS
         error_during_cut         = 1
         no_authorization         = 2
         gdate_before_begda       = 3
         corr_exit                = 4
         OTHERS                   = 5
          CALL FUNCTION 'RH_INSERT_INFTY'
            EXPORTING
    *   FCODE                     = 'INSE'
              vtask                     = 'B'
    *   ORDER_FLG                 = 'X'
          commit_flg                = ' '
          authy                     = ' '
    *   PPPAR_IMP                 =
    *   OLD_TABNR                 = ' '
    *   REPID                     = ' '
    *   FORM                      = ' '
    *   KEEP_LUPD                 =
    *   WORKF_ACTV                = 'X'
            TABLES
              innnn                     = ltbl_p1000_upd
    *   ILFCODE                   =
       EXCEPTIONS
         no_authorization          = 1
         error_during_insert       = 2
         repid_form_initial        = 3
         corr_exit                 = 4
         begda_greater_endda       = 5
         OTHERS                    = 6
          CALL FUNCTION 'RH_UPDATE_INFTY'
            EXPORTING
              vtask                     = 'B'
    *         ORDER_FLG                 = 'X'
             commit_flg                = ' '
             authy                     = ' '
    *         PPPAR_IMP                 =
    *         OLD_TABNR_NEW_LANGU       = ' '
    *         REPID                     = ' '
    *         FORM                      = ' '
    *         KEEP_LUPD                 =
    *         WORKF_ACTV                = 'X'
            TABLES
              innnn                     = ltbl_p1000_upd
    *         ILFCODE                   =
           EXCEPTIONS
             error_during_update       = 1
             no_authorization          = 2
             repid_form_initial        = 3
             corr_exit                 = 4
             OTHERS                    = 5
        CALL FUNCTION 'RH_UPDATE_DATABASE'
          EXPORTING
            vtask              = 'D'
    *     BUFFER_UPD         = ' '
    *     ORDER_FLG          = 'X'
    *     COMMIT_FLG         = 'X'
    *     CLEAR_BUFFER       = 'X'
    *     KEEP_LUPD          =
    *     WORKF_ACTV         = 'X'
         EXCEPTIONS
           corr_exit          = 1
           OTHERS             = 2
    Regards
    Bernd

  • BAPI to access/modify infotype data?

    Hi gurus,
    Is there any existed remote enabled function modules or web services could be used to access and modify infotypes? I want to do that in webdynpro java but nowhere to find them.
    thanks in advance.
    Xiaoming

    Hi,
    Yes.You need to  create a wrapper RFC around this FMs
    You can look at this FMs
    For 1000.
    RH_INSERT_INFTY
    RH_COPY_INFTY
    RH_UPDATE_INFTY
    For 1001.
    RH_INSERT_INFTY_1001_EXT
    RH_UPDATE_INFTY_1001_EXT
    RH_BASE_READ_INFTY_1001
    RH_READ_INFTY_1001
    RH_READ_INFTY_1001_EXT
    Manoj.

  • Data interfacing from 3rd party system to SAP

    Dear all,
    We are going to upload employee masters, including actions, org assignment, personal information and other infotypes from a third-party system to SAP HCM.  May I know what should be the best approach, e.g. BDC, BAPIs, for these kinds of data interfacing?  I am thinking to use....
    BDC for hiring/transfer/termination actions (besides BDC, any other approaches?)
    RH_INSERT_INFTY or RH_UPDATE_INFTY for personal information / other infotypes updates
    However, I have no idea on how to automate updates of OM.  Please kindly share your thought, thank you!
    Best regards,
    Anne

    As I known , there is a interface tool named as IDOC.For more information , please ask your abap team.

  • Fm to create, modify delimit the records in master data for org mag

    hi,
        There is a fm hr_infotype_operation to create, modify, delimit the records for one infotype of pernrs.
    Like this I want fm through which i can create, modify the records to master data of organisational management (OM). Whatever the infotype i will enter in that fm and data it will create a new record in OM master data. 
              If anybody know this, please tell me.
    thanks & regards,
        Sekhar.

    Hi,
    Try RH_UPDATE_INFTY.
    RH_INSERT_INFTY.
    RH_DELETE_INFTY.
    Regards,
    Dilek

  • Update table HRP1001

    Hello,
    My requirement is to update the table HRP1001. I need to in some cases Terminate a relationship i.e. Change the Endda to current date and in some cases create a new relationship between an Employee , position and the Org unit i.e insert a few new records in table HRP1001.
    I have tried 'RH_UPDATE_INFTY' but no success. I gave here only two parameters i.e. VTASK  = 'D'/'S'/'V' & INNNN (Tables).
    Can any one please tell me why this happens . it returns sy-subrc code as 0 and then I am using the FM RH_UPDATE_DATABASE to commit the changes but yet no result.
    I tried HR_INFOTYPE_OPERATION also but I guess this is not meant for the 1001 table as this belongs to relationship table.
    I tried the BAPI  'BAPI_HRMASTER_SAVE_REPL_MULT' but still no result.
    Can any one please guide me as to which Fm Should i use to terminate a relationship i.e. to change the ENDDA from 31/12/9999 to current date and also insert new records to cretae new relationships starting from sy-datum + 1 to 31/12/9999.
    Your help on this would be highly desirable..
    Regards,
    Deepak.

    Please have a look in below thread, think you have already but worth to have a look:
    [BAPI to maintain Infotype;

Maybe you are looking for

  • Reg: Excluded Section in Pivot view

    Hi,, can any one telme.. how exactly the 'Excluded Section' in the pivot view, will effect the entire report. In one of my report when i place one column in excluded section, one set of data is coming, when i remove that column in the Excluded sectio

  • GL Account missing in AR Credit Memo

    Good Morning All, I'm getting an error while passing A/R Credit Memo called 'G/L Account is missing(1)'.  Please help me to troubleshoot this error and please let me know the account details are needed to be determined to pass a A/R Credit Memo. Than

  • Touch screen not registering my touch!

    Once my iPod boots up it doesn't sense my touch. Nothing happens when i got to slide the button to unlock. The menu and power buttons work and i can restart it but that doesn't help at all. After looking around the net a while and restarting it multi

  • Moving Center of a Radial Gradient

    Hi all, I'm not sure if this is possible but I thought I'd ask.  I'm using gradient overlay on an object.  I have it set for a radial gradient.  However it places the center of the gradient in the middle of the object.  Is there a way to adjust this

  • Loading stalls on message o.sa.aol when trying to connect to links from homepage

    I am using FF5 and aol is my homepage. when trying to connect to a link from homepage the connection stalls and on bottom left of screen it says transferring data from o.sa.aol what is this and what is causing it. Never had a problem before downloadi