随笔分类 - EBS - HR
摘要:Changing Primary AssignmentsOver time, a secondary assignment may need to be elevated to a primary assignment. Most companies have requirements to show the history of changes in an employee's record. This process will create two historical records: one showing a secondary assignment that lasted from
阅读全文
摘要:HR_SOFT_CODING_KEYFLEX hs 与之对应的联系键是SOFT_CODING_KEYFLEX_ID 与之关联的表是:per_all_assignments_f印证了我昨天的猜测:这个法定信息不在员工基本分配表里,则肯定有个一与之联系的外键指向保存法定信息的这个表,这个法定信息表就是:HR_SOFT_CODING_KEYFLEX。从中还得到一个启发:在员工基本分配信息表【per_all_assignments_f】中有一个字段 ‘SOFT_CODING_KEYFLEX_ID’ 与法定信息表【HR_SOFT_CODING_KEYFLEX】 的名字很相似:后面多了一个‘_ID’,前面
阅读全文
摘要:问题描述: 人员基本信息导入程序中,如果出生日期为1950年以前,系统报错: 创建员工基本信息失败,请和系统管理员联系 sqlcode is :-20001 sqlerrm is :ORA-20001: 出生日期不能为将来日期。分析: 经过跟踪发现,出生日期在导入到系统的时候被转换为20xx年了。 比如:1949-01-01转换後变为2049-01-01中间结果为:01-1月-49.date_of_birth =trim(date_of_birth ),--出生日期 是这个函数引起的错误。--TO_DATE()日期格式:xx-x月-xx 丢失了年份前两位信息,再转换成4位年的时候是按照xx50
阅读全文
摘要:API:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1--Createdon9/24/2008byANSONLOCKSLEY2DECLARE3--In/Outvariableshere4l_employee_numberVARCHAR2(30):='98855';5--Outvariableshere6o_person_idper_all_people_f.person_id%TYPE;7o_assignment_idper_all_ass
阅读全文
摘要:SELECT papf.employee_number employee_number, papf.last_name last_name, --员工姓名 papf.sex gender, --性别 papf.national_identifier national_identifier, --省份证号码 hl.meaning marital_status, --婚姻状况 papf.em...
阅读全文