I'm using Oracle 10g Express or Oracle XE and lotus notes 8.5.3. In the Staff Leave Database i have few field need to update on last run of the leave database to oracle database.
example fields are :
StaffID,
StaffName,
LeaveTitle,
LvStartDate,
LvEndDate
to update to oracle database
EmplyID,
EmplyName,
Lv_Title,
Lv_Start_Date,
Lv_End_Date
Matching field from Leave DB to Oracle HR DB :
StaffID=EmplyID
StaffName=EmplyName
LeaveTitle=Lv_Title
LvStartDate=Lv_Start_Date
LvEndDate=Lv_Start_Date
Question 1 : Anyway to identify whether staff information is been modify or create new document (Lotus database)?
Question 2 : What Lotus script / method to update on Oracle database.
Normally we update information is use "Replaceitemvalue"
**notesDocument.ReplaceItemValue( itemName$, value )**
It is using the same way to updating it?