cancel
Showing results for 
Search instead for 
Did you mean: 

Infotype Operation

Former Member
0 Kudos

Hi,

Can someone explain me following Infotype operation's, with an example please and also, how we should decide which operation for an Infotype will suit the best to the client.

Create INS

Copy COP

Change MOD

Delimit LIS9

Create operation for actions INSS

Please do not copy paste R/3 defined definitions here,I have already gone through it and I'm looking for further explanation.

Thanks,

Tk

Accepted Solutions (0)

Answers (5)

Answers (5)

sikindar_a
Active Contributor
0 Kudos

SM30 V_T588D

sorry ur asking for PDFS right

Edited by: Sikindar on Aug 1, 2008 5:47 PM

Former Member
0 Kudos

Yes

Former Member
Former Member
0 Kudos

hi Tina

these operations are used when you maintain Personnel Actions

when infogroup is determined - these operations define how infotype (in these infogroup) will be done

for expl

when you hire a person the infogroup hiring looks like -

0002 - INS

0001 - INS

0007 - INS

ins - insert

cop - copy

mod - modify

del - delete

edq - block/deploy

lis9 - limit

dis - view

inss - insert for action

for more detail look HR307

and for maintaining - img -> HR > PersMng > PersAdm > Customizing Procedures > Actions > Define infogroups

best regards,

maria

Former Member
0 Kudos

Maria,

What is HR307??

Former Member
0 Kudos

Its Standard PDF document in from SAP

Its part of siemens material

Regards

Pavan

Former Member
0 Kudos

Can someone please forward it to me or guide me where I can find it ?

Thanks

Former Member
0 Kudos

Hi Tina,

Create INS

Copy COP

Change MOD

Delimit LIS9

INS = CREATE , we use this operation when we are hiring a New employee as he is new to the Organization.

COP = COPY , we this Operation when we need to copy His Master dats, it could be i terms of Change of Position, Promotion, where his data ialready exits in the Server.

MOD = MODIFICATION, when their is any change of Master data of an employee then we use This Operation.

LIS9 = DELIMIT , We use LIS9 when we want the data to be Delimited, when an Employee leaves the Organization or when he is ABSCRONDING.

Regards,

Vinod.

sikindar_a
Active Contributor
0 Kudos

INS- Create

Creates a new record in the

When u process the infotypes for an employee for the first time than u need to use this operations for

EX-hiring action is done for the first time when an employee gets into the organisation as u are createing the records for the PERNR

COP- Copy

Copy the existing record from the system

i think u are aware of useing this operation when an employee has and additional action after got hirired than we use this operation

EX-Chnage of pay

LIS9

Delimit the Existing record in the system

This is used when u no longer wants to process the infotypes for that PERNR

(but dont delimit all the infotypes)

EX-leaveing and termination

Former Member
0 Kudos

Hi Tina,

This FM is generally used to perform data base record change for an Infotype

INS- Create

Creates a new record in the system

COP- Copy

Copy the existing record from the system

MOD- Modification

Change the existing record in the system

LIS9

Delimit the Existing record in the system

And so Onn..

Look into the code below for your reference

CALL FUNCTION 'HR_INFOTYPE_OPERATION'

EXPORTING

infty = c_i0014 "'0014'

number = wa_zltcbill-pernr

validityend = ld_validityend

validitybegin = wa_zltcbill-zdate

record = wa_0014

operation = ld_operation

tclas = p_tclas

dialog_mode = p_mode

IMPORTING

return = p_wa_return.

Regards

Pavan