Merge pull request #388 release-crm-enhance into master
This commit is contained in:
commit
e5034ef248
3
.gitignore
vendored
3
.gitignore
vendored
@ -15,3 +15,6 @@ stepfunctions/*/build
|
|||||||
# python test
|
# python test
|
||||||
.coverage
|
.coverage
|
||||||
.report/
|
.report/
|
||||||
|
|
||||||
|
# log
|
||||||
|
.log
|
||||||
20
ecs/crm-datafetch/.gitignore
vendored
Normal file
20
ecs/crm-datafetch/.gitignore
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# Node.jsで実装されたLambdaの管理対象外ファイル群
|
||||||
|
package-lock.json
|
||||||
|
node_modules/
|
||||||
|
# ローカル確認用環境変数ファイル
|
||||||
|
.env
|
||||||
|
# Pythonの仮想環境ファイル
|
||||||
|
.venv
|
||||||
|
# pythonのキャッシュファイル
|
||||||
|
__pycache__/
|
||||||
|
|
||||||
|
# StepFunctionsステートメント定義変換後のフォルダ
|
||||||
|
stepfunctions/*/build
|
||||||
|
**/.vscode/settings.json
|
||||||
|
|
||||||
|
# python test
|
||||||
|
.coverage
|
||||||
|
.report/
|
||||||
|
|
||||||
|
# log
|
||||||
|
.log
|
||||||
@ -6,6 +6,7 @@ from datetime import datetime, timezone
|
|||||||
|
|
||||||
import boto3
|
import boto3
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from src.controller import controller
|
from src.controller import controller
|
||||||
from src.parser.json_parser import JsonParser
|
from src.parser.json_parser import JsonParser
|
||||||
from src.system_var.constants import YYYYMMDDTHHMMSSTZ
|
from src.system_var.constants import YYYYMMDDTHHMMSSTZ
|
||||||
@ -114,6 +115,10 @@ def test_walk_through(s3_test, s3_client, monkeypatch, caplog):
|
|||||||
logger.info(f'##########################')
|
logger.info(f'##########################')
|
||||||
# Assertion
|
# Assertion
|
||||||
log_messages = caplog.messages
|
log_messages = caplog.messages
|
||||||
|
# ログの目視確認を容易にするため、ローカルファイルに書き出す。
|
||||||
|
with open('crm_datafetch_test_walk_through_diff.log', 'w', encoding='utf8') as f:
|
||||||
|
f.write('\n'.join(log_messages))
|
||||||
|
|
||||||
# ループ前のログ確認
|
# ループ前のログ確認
|
||||||
assert 'I-CTRL-01 CRMデータ取得処理を開始します' in log_messages
|
assert 'I-CTRL-01 CRMデータ取得処理を開始します' in log_messages
|
||||||
assert 'I-CTRL-02 データ取得準備処理呼び出し' in log_messages
|
assert 'I-CTRL-02 データ取得準備処理呼び出し' in log_messages
|
||||||
@ -170,6 +175,10 @@ def test_walk_through(s3_test, s3_client, monkeypatch, caplog):
|
|||||||
logger.info(f'##########################')
|
logger.info(f'##########################')
|
||||||
# ログ再取得
|
# ログ再取得
|
||||||
log_messages_all = caplog.messages
|
log_messages_all = caplog.messages
|
||||||
|
# ログの目視確認を容易にするため、ローカルファイルに書き出す。
|
||||||
|
with open('crm_datafetch_test_walk_through_all.log', 'w', encoding='utf8') as f:
|
||||||
|
f.write('\n'.join(log_messages_all))
|
||||||
|
|
||||||
object_info_list_all = object_info_files[1]
|
object_info_list_all = object_info_files[1]
|
||||||
# 開始ログなどはテスト済みなのでチェックを省く
|
# 開始ログなどはテスト済みなのでチェックを省く
|
||||||
for object_info in object_info_list_all['objects']:
|
for object_info in object_info_list_all['objects']:
|
||||||
|
|||||||
@ -86,7 +86,14 @@ def _insert_mst_inst_from_fcl_mst_v(db: Database):
|
|||||||
END AS address,
|
END AS address,
|
||||||
fmv1.postal_cd,
|
fmv1.postal_cd,
|
||||||
fmv1.tel_num,
|
fmv1.tel_num,
|
||||||
LEFT(fmv1.closed_dt, 10),
|
CASE
|
||||||
|
WHEN
|
||||||
|
fmv1.fcl_type BETWEEN '20' AND '29' THEN LEFT(fmv1.closed_dt, 10)
|
||||||
|
WHEN
|
||||||
|
fmv1.fcl_type IN ('A1', 'A0') AND fmv1.end_date != '9999-12-31' THEN DATE_FORMAT(fmv1.end_date, "%Y-%m-%d")
|
||||||
|
ELSE
|
||||||
|
null
|
||||||
|
END AS delete_date,
|
||||||
fmv1.v_inst_cd,
|
fmv1.v_inst_cd,
|
||||||
fmv1.ins_dt,
|
fmv1.ins_dt,
|
||||||
fmv1.upd_dt
|
fmv1.upd_dt
|
||||||
|
|||||||
@ -45,7 +45,7 @@ SET @upsert_statement_base =
|
|||||||
Mobile_ID_vod__c, Contact_vod__c, Call_Date_vod__c, User_vod__c, Category_vod__c, Vehicle_vod__c,
|
Mobile_ID_vod__c, Contact_vod__c, Call_Date_vod__c, User_vod__c, Category_vod__c, Vehicle_vod__c,
|
||||||
Is_Parent_Call_vod__c, Override_Lock_vod__c, CLM_ID_vod__c, Slide_Version_vod__c, Duration_vod__c,
|
Is_Parent_Call_vod__c, Override_Lock_vod__c, CLM_ID_vod__c, Slide_Version_vod__c, Duration_vod__c,
|
||||||
Presentation_ID_vod__c, Start_Time_vod__c, Attendee_Type_vod__c, Entity_Reference_Id_vod__c, Segment_vod__c,
|
Presentation_ID_vod__c, Start_Time_vod__c, Attendee_Type_vod__c, Entity_Reference_Id_vod__c, Segment_vod__c,
|
||||||
Display_Order_vod__c, Clm_Presentation_Name_vod__c, Clm_Presentation_Version_vod__c, Clm_Presentation_vod__c,
|
Display_Order_vod__c, Clm_Presentation_Name_vod__c, Clm_Presentation_Version_vod__c, Clm_Presentation_vod__c, Share_Channel_vod__c,
|
||||||
medaca_parent_record_type_id, file_name, file_row_cnt, delete_flg, ins_user, ins_date, upd_user, upd_date)
|
medaca_parent_record_type_id, file_name, file_row_cnt, delete_flg, ins_user, ins_date, upd_user, upd_date)
|
||||||
SELECT
|
SELECT
|
||||||
Id, IsDeleted, Name, CreatedDate, CreatedById, LastModifiedDate, LastModifiedById, SystemModstamp,
|
Id, IsDeleted, Name, CreatedDate, CreatedById, LastModifiedDate, LastModifiedById, SystemModstamp,
|
||||||
@ -53,7 +53,7 @@ SET @upsert_statement_base =
|
|||||||
Mobile_ID_vod__c, Contact_vod__c, Call_Date_vod__c, User_vod__c, Category_vod__c, Vehicle_vod__c,
|
Mobile_ID_vod__c, Contact_vod__c, Call_Date_vod__c, User_vod__c, Category_vod__c, Vehicle_vod__c,
|
||||||
Is_Parent_Call_vod__c, Override_Lock_vod__c, CLM_ID_vod__c, Slide_Version_vod__c, Duration_vod__c,
|
Is_Parent_Call_vod__c, Override_Lock_vod__c, CLM_ID_vod__c, Slide_Version_vod__c, Duration_vod__c,
|
||||||
Presentation_ID_vod__c, Start_Time_vod__c, Attendee_Type_vod__c, Entity_Reference_Id_vod__c, Segment_vod__c,
|
Presentation_ID_vod__c, Start_Time_vod__c, Attendee_Type_vod__c, Entity_Reference_Id_vod__c, Segment_vod__c,
|
||||||
Display_Order_vod__c, Clm_Presentation_Name_vod__c, Clm_Presentation_Version_vod__c, Clm_Presentation_vod__c,
|
Display_Order_vod__c, Clm_Presentation_Name_vod__c, Clm_Presentation_Version_vod__c, Clm_Presentation_vod__c, Share_Channel_vod__c,
|
||||||
medaca_parent_record_type_id, file_name, file_row_cnt, delete_flg, ins_user, ins_date, upd_user, upd_date
|
medaca_parent_record_type_id, file_name, file_row_cnt, delete_flg, ins_user, ins_date, upd_user, upd_date
|
||||||
FROM
|
FROM
|
||||||
internal02.crm_Call2_Key_Message_vod__c AS internaltb
|
internal02.crm_Call2_Key_Message_vod__c AS internaltb
|
||||||
@ -76,7 +76,7 @@ SET @upsert_statement_base =
|
|||||||
Entity_Reference_Id_vod__c = internaltb.Entity_Reference_Id_vod__c, Segment_vod__c = internaltb.Segment_vod__c,
|
Entity_Reference_Id_vod__c = internaltb.Entity_Reference_Id_vod__c, Segment_vod__c = internaltb.Segment_vod__c,
|
||||||
Display_Order_vod__c = internaltb.Display_Order_vod__c, Clm_Presentation_Name_vod__c = internaltb.Clm_Presentation_Name_vod__c,
|
Display_Order_vod__c = internaltb.Display_Order_vod__c, Clm_Presentation_Name_vod__c = internaltb.Clm_Presentation_Name_vod__c,
|
||||||
Clm_Presentation_Version_vod__c = internaltb.Clm_Presentation_Version_vod__c,
|
Clm_Presentation_Version_vod__c = internaltb.Clm_Presentation_Version_vod__c,
|
||||||
Clm_Presentation_vod__c = internaltb.Clm_Presentation_vod__c,
|
Clm_Presentation_vod__c = internaltb.Clm_Presentation_vod__c, Share_Channel_vod__c = internaltb.Share_Channel_vod__c,
|
||||||
medaca_parent_record_type_id = internaltb.medaca_parent_record_type_id, file_name = internaltb.file_name,
|
medaca_parent_record_type_id = internaltb.medaca_parent_record_type_id, file_name = internaltb.file_name,
|
||||||
file_row_cnt = internaltb.file_row_cnt, upd_user = CURRENT_USER(), upd_date = CURRENT_TIMESTAMP();';
|
file_row_cnt = internaltb.file_row_cnt, upd_user = CURRENT_USER(), upd_date = CURRENT_TIMESTAMP();';
|
||||||
|
|
||||||
|
|||||||
@ -73,7 +73,7 @@ SET @upsert_statement_base =
|
|||||||
Location_Services_Status_vod__c, MSJ_Double_Visit_Other__c, MSJ_Comment__c, MSJ_For_Reporting__c,
|
Location_Services_Status_vod__c, MSJ_Double_Visit_Other__c, MSJ_Comment__c, MSJ_For_Reporting__c,
|
||||||
MSJ_Number_of_Attendees__c, MSJ_Main_Dept__c, Planned_Type_vjh__c, Cobrowse_URL_Participant_vod__c,
|
MSJ_Number_of_Attendees__c, MSJ_Main_Dept__c, Planned_Type_vjh__c, Cobrowse_URL_Participant_vod__c,
|
||||||
MSJ_Activity_Method_Text__c, MSJ_Activity_Method__c, MSJ_Classification__c, MSJ_Double_Visit_MSL__c,
|
MSJ_Activity_Method_Text__c, MSJ_Activity_Method__c, MSJ_Classification__c, MSJ_Double_Visit_MSL__c,
|
||||||
MSJ_MSL_Comment_for_MR__c, MSJ_APD__c, Medical_Inquiry_vod__c, MSJ_Call_Type_MSJ__c, MSJ_Prescription_Request__c,
|
MSJ_MSL_Comment_for_MR__c, MSJ_APD__c, Medical_Inquiry_vod__c, Suggestion_vod__c, MSJ_Call_Type_MSJ__c, MSJ_Prescription_Request__c,
|
||||||
MSJ_Patient_Follow__c, Child_Account_Id_vod__c, Child_Account_vod__c, Location_Id_vod__c, Location_Name_vod__c,
|
MSJ_Patient_Follow__c, Child_Account_Id_vod__c, Child_Account_vod__c, Location_Id_vod__c, Location_Name_vod__c,
|
||||||
MSJ_Comments_about_technology__c, Remote_Meeting_vod__c, Veeva_Remote_Meeting_Id_vod__c, MSJ_Activity_Type_Report__c,
|
MSJ_Comments_about_technology__c, Remote_Meeting_vod__c, Veeva_Remote_Meeting_Id_vod__c, MSJ_Activity_Type_Report__c,
|
||||||
MSJ_Activity_Type__c, MSJ_Activity__c, MSJ_Comments__c, MSJ_Therapy__c, MSJ_Time_Hrs__c, EMDS_CO_Reference__c,
|
MSJ_Activity_Type__c, MSJ_Activity__c, MSJ_Comments__c, MSJ_Therapy__c, MSJ_Time_Hrs__c, EMDS_CO_Reference__c,
|
||||||
@ -83,7 +83,8 @@ SET @upsert_statement_base =
|
|||||||
MSJ_SIPAGL_1A__c, MSJ_SIPAGL_1B__c, MSJ_SIPAGL_2__c, MSJ_SIPAGL_3__c, MSJ_SIPAGL_4A__c, MSJ_SIPAGL_5A__c,
|
MSJ_SIPAGL_1A__c, MSJ_SIPAGL_1B__c, MSJ_SIPAGL_2__c, MSJ_SIPAGL_3__c, MSJ_SIPAGL_4A__c, MSJ_SIPAGL_5A__c,
|
||||||
MSJ_SIPAGL_comment__c, MSJ_SIPAGL_4B__c, MSJ_SIPAGL_5B__c, Location_Text_vod__c, Call_Channel_vod__c,
|
MSJ_SIPAGL_comment__c, MSJ_SIPAGL_4B__c, MSJ_SIPAGL_5B__c, Location_Text_vod__c, Call_Channel_vod__c,
|
||||||
MSJ_Scientific_Interaction__c, MSJ_Activity_Email_Reply__c, MSJ_Interaction_Duration__c, MSJ_SIPAGL_1A_date__c,
|
MSJ_Scientific_Interaction__c, MSJ_Activity_Email_Reply__c, MSJ_Interaction_Duration__c, MSJ_SIPAGL_1A_date__c,
|
||||||
MSJ_CoPromotion__c, Call_Channel_Formula_vod__c, file_name, file_row_cnt, delete_flg, ins_user, ins_date, upd_user, upd_date)
|
MSJ_CoPromotion__c, Call_Channel_Formula_vod__c, Meeting_Request_vod__c, Phone_vod__c, Detail_Section_Attribute_vod__c, Remote_Meeting_Type_vod__c,
|
||||||
|
file_name, file_row_cnt, delete_flg, ins_user, ins_date, upd_user, upd_date)
|
||||||
SELECT
|
SELECT
|
||||||
Id, OwnerId, IsDeleted, Name, RecordTypeId, CreatedDate, CreatedById, LastModifiedDate, LastModifiedById,
|
Id, OwnerId, IsDeleted, Name, RecordTypeId, CreatedDate, CreatedById, LastModifiedDate, LastModifiedById,
|
||||||
SystemModstamp, LastActivityDate, MayEdit, IsLocked, LastViewedDate, LastReferencedDate, Call_Comments_vod__c,
|
SystemModstamp, LastActivityDate, MayEdit, IsLocked, LastViewedDate, LastReferencedDate, Call_Comments_vod__c,
|
||||||
@ -118,7 +119,7 @@ SET @upsert_statement_base =
|
|||||||
Location_Services_Status_vod__c, MSJ_Double_Visit_Other__c, MSJ_Comment__c, MSJ_For_Reporting__c,
|
Location_Services_Status_vod__c, MSJ_Double_Visit_Other__c, MSJ_Comment__c, MSJ_For_Reporting__c,
|
||||||
MSJ_Number_of_Attendees__c, MSJ_Main_Dept__c, Planned_Type_vjh__c, Cobrowse_URL_Participant_vod__c,
|
MSJ_Number_of_Attendees__c, MSJ_Main_Dept__c, Planned_Type_vjh__c, Cobrowse_URL_Participant_vod__c,
|
||||||
MSJ_Activity_Method_Text__c, MSJ_Activity_Method__c, MSJ_Classification__c, MSJ_Double_Visit_MSL__c,
|
MSJ_Activity_Method_Text__c, MSJ_Activity_Method__c, MSJ_Classification__c, MSJ_Double_Visit_MSL__c,
|
||||||
MSJ_MSL_Comment_for_MR__c, MSJ_APD__c, Medical_Inquiry_vod__c, MSJ_Call_Type_MSJ__c, MSJ_Prescription_Request__c,
|
MSJ_MSL_Comment_for_MR__c, MSJ_APD__c, Medical_Inquiry_vod__c, Suggestion_vod__c, MSJ_Call_Type_MSJ__c, MSJ_Prescription_Request__c,
|
||||||
MSJ_Patient_Follow__c, Child_Account_Id_vod__c, Child_Account_vod__c, Location_Id_vod__c, Location_Name_vod__c,
|
MSJ_Patient_Follow__c, Child_Account_Id_vod__c, Child_Account_vod__c, Location_Id_vod__c, Location_Name_vod__c,
|
||||||
MSJ_Comments_about_technology__c, Remote_Meeting_vod__c, Veeva_Remote_Meeting_Id_vod__c, MSJ_Activity_Type_Report__c,
|
MSJ_Comments_about_technology__c, Remote_Meeting_vod__c, Veeva_Remote_Meeting_Id_vod__c, MSJ_Activity_Type_Report__c,
|
||||||
MSJ_Activity_Type__c, MSJ_Activity__c, MSJ_Comments__c, MSJ_Therapy__c, MSJ_Time_Hrs__c, EMDS_CO_Reference__c,
|
MSJ_Activity_Type__c, MSJ_Activity__c, MSJ_Comments__c, MSJ_Therapy__c, MSJ_Time_Hrs__c, EMDS_CO_Reference__c,
|
||||||
@ -128,7 +129,8 @@ SET @upsert_statement_base =
|
|||||||
MSJ_SIPAGL_1A__c, MSJ_SIPAGL_1B__c, MSJ_SIPAGL_2__c, MSJ_SIPAGL_3__c, MSJ_SIPAGL_4A__c, MSJ_SIPAGL_5A__c,
|
MSJ_SIPAGL_1A__c, MSJ_SIPAGL_1B__c, MSJ_SIPAGL_2__c, MSJ_SIPAGL_3__c, MSJ_SIPAGL_4A__c, MSJ_SIPAGL_5A__c,
|
||||||
MSJ_SIPAGL_comment__c, MSJ_SIPAGL_4B__c, MSJ_SIPAGL_5B__c, Location_Text_vod__c, Call_Channel_vod__c,
|
MSJ_SIPAGL_comment__c, MSJ_SIPAGL_4B__c, MSJ_SIPAGL_5B__c, Location_Text_vod__c, Call_Channel_vod__c,
|
||||||
MSJ_Scientific_Interaction__c, MSJ_Activity_Email_Reply__c, MSJ_Interaction_Duration__c, MSJ_SIPAGL_1A_date__c,
|
MSJ_Scientific_Interaction__c, MSJ_Activity_Email_Reply__c, MSJ_Interaction_Duration__c, MSJ_SIPAGL_1A_date__c,
|
||||||
MSJ_CoPromotion__c, Call_Channel_Formula_vod__c, file_name, file_row_cnt, delete_flg, ins_user, ins_date, upd_user, upd_date
|
MSJ_CoPromotion__c, Call_Channel_Formula_vod__c, Meeting_Request_vod__c, Phone_vod__c, Detail_Section_Attribute_vod__c, Remote_Meeting_Type_vod__c,
|
||||||
|
file_name, file_row_cnt, delete_flg, ins_user, ins_date, upd_user, upd_date
|
||||||
FROM
|
FROM
|
||||||
internal02.crm_Call2_vod__c AS internaltb
|
internal02.crm_Call2_vod__c AS internaltb
|
||||||
WHERE
|
WHERE
|
||||||
@ -216,7 +218,7 @@ SET @upsert_statement_base =
|
|||||||
Cobrowse_URL_Participant_vod__c = internaltb.Cobrowse_URL_Participant_vod__c, MSJ_Activity_Method_Text__c = internaltb.MSJ_Activity_Method_Text__c,
|
Cobrowse_URL_Participant_vod__c = internaltb.Cobrowse_URL_Participant_vod__c, MSJ_Activity_Method_Text__c = internaltb.MSJ_Activity_Method_Text__c,
|
||||||
MSJ_Activity_Method__c = internaltb.MSJ_Activity_Method__c, MSJ_Classification__c = internaltb.MSJ_Classification__c,
|
MSJ_Activity_Method__c = internaltb.MSJ_Activity_Method__c, MSJ_Classification__c = internaltb.MSJ_Classification__c,
|
||||||
MSJ_Double_Visit_MSL__c = internaltb.MSJ_Double_Visit_MSL__c, MSJ_MSL_Comment_for_MR__c = internaltb.MSJ_MSL_Comment_for_MR__c,
|
MSJ_Double_Visit_MSL__c = internaltb.MSJ_Double_Visit_MSL__c, MSJ_MSL_Comment_for_MR__c = internaltb.MSJ_MSL_Comment_for_MR__c,
|
||||||
MSJ_APD__c = internaltb.MSJ_APD__c, Medical_Inquiry_vod__c = internaltb.Medical_Inquiry_vod__c,
|
MSJ_APD__c = internaltb.MSJ_APD__c, Medical_Inquiry_vod__c = internaltb.Medical_Inquiry_vod__c, Suggestion_vod__c = internaltb.Suggestion_vod__c,
|
||||||
MSJ_Call_Type_MSJ__c = internaltb.MSJ_Call_Type_MSJ__c, MSJ_Prescription_Request__c = internaltb.MSJ_Prescription_Request__c,
|
MSJ_Call_Type_MSJ__c = internaltb.MSJ_Call_Type_MSJ__c, MSJ_Prescription_Request__c = internaltb.MSJ_Prescription_Request__c,
|
||||||
MSJ_Patient_Follow__c = internaltb.MSJ_Patient_Follow__c, Child_Account_Id_vod__c = internaltb.Child_Account_Id_vod__c,
|
MSJ_Patient_Follow__c = internaltb.MSJ_Patient_Follow__c, Child_Account_Id_vod__c = internaltb.Child_Account_Id_vod__c,
|
||||||
Child_Account_vod__c = internaltb.Child_Account_vod__c, Location_Id_vod__c = internaltb.Location_Id_vod__c,
|
Child_Account_vod__c = internaltb.Child_Account_vod__c, Location_Id_vod__c = internaltb.Location_Id_vod__c,
|
||||||
@ -241,8 +243,10 @@ SET @upsert_statement_base =
|
|||||||
MSJ_Activity_Email_Reply__c = internaltb.MSJ_Activity_Email_Reply__c,
|
MSJ_Activity_Email_Reply__c = internaltb.MSJ_Activity_Email_Reply__c,
|
||||||
MSJ_Interaction_Duration__c = internaltb.MSJ_Interaction_Duration__c,
|
MSJ_Interaction_Duration__c = internaltb.MSJ_Interaction_Duration__c,
|
||||||
MSJ_SIPAGL_1A_date__c = internaltb.MSJ_SIPAGL_1A_date__c, MSJ_CoPromotion__c = internaltb.MSJ_CoPromotion__c,
|
MSJ_SIPAGL_1A_date__c = internaltb.MSJ_SIPAGL_1A_date__c, MSJ_CoPromotion__c = internaltb.MSJ_CoPromotion__c,
|
||||||
Call_Channel_Formula_vod__c = internaltb.Call_Channel_Formula_vod__c, file_name = internaltb.file_name,
|
Call_Channel_Formula_vod__c = internaltb.Call_Channel_Formula_vod__c,
|
||||||
file_row_cnt = internaltb.file_row_cnt,
|
Meeting_Request_vod__c = internaltb.Meeting_Request_vod__c, Phone_vod__c = internaltb.Phone_vod__c,
|
||||||
|
Detail_Section_Attribute_vod__c = internaltb.Detail_Section_Attribute_vod__c, Remote_Meeting_Type_vod__c = internaltb.Remote_Meeting_Type_vod__c,
|
||||||
|
file_name = internaltb.file_name, file_row_cnt = internaltb.file_row_cnt,
|
||||||
upd_user = CURRENT_USER(), upd_date = CURRENT_TIMESTAMP();';
|
upd_user = CURRENT_USER(), upd_date = CURRENT_TIMESTAMP();';
|
||||||
|
|
||||||
OPEN table_cursor;
|
OPEN table_cursor;
|
||||||
|
|||||||
4
s3/config/crm/last_fetch_datetime/Directory_vod__c.json
Normal file
4
s3/config/crm/last_fetch_datetime/Directory_vod__c.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"last_fetch_datetime_from": "1900-01-01T00:00:00.000Z",
|
||||||
|
"last_fetch_datetime_to": ""
|
||||||
|
}
|
||||||
4
s3/config/crm/last_fetch_datetime/ProcessDefinition.json
Normal file
4
s3/config/crm/last_fetch_datetime/ProcessDefinition.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"last_fetch_datetime_from": "1900-01-01T00:00:00.000Z",
|
||||||
|
"last_fetch_datetime_to": ""
|
||||||
|
}
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"last_fetch_datetime_from": "1900-01-01T00:00:00.000Z",
|
||||||
|
"last_fetch_datetime_to": ""
|
||||||
|
}
|
||||||
4
s3/config/crm/last_fetch_datetime/ProcessInstance.json
Normal file
4
s3/config/crm/last_fetch_datetime/ProcessInstance.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"last_fetch_datetime_from": "1900-01-01T00:00:00.000Z",
|
||||||
|
"last_fetch_datetime_to": ""
|
||||||
|
}
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"last_fetch_datetime_from": "1900-01-01T00:00:00.000Z",
|
||||||
|
"last_fetch_datetime_to": ""
|
||||||
|
}
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"last_fetch_datetime_from": "1900-01-01T00:00:00.000Z",
|
||||||
|
"last_fetch_datetime_to": ""
|
||||||
|
}
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"last_fetch_datetime_from": "1900-01-01T00:00:00.000Z",
|
||||||
|
"last_fetch_datetime_to": ""
|
||||||
|
}
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"last_fetch_datetime_from": "1900-01-01T00:00:00.000Z",
|
||||||
|
"last_fetch_datetime_to": ""
|
||||||
|
}
|
||||||
4
s3/config/crm/last_fetch_datetime/ProcessNode.json
Normal file
4
s3/config/crm/last_fetch_datetime/ProcessNode.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"last_fetch_datetime_from": "1900-01-01T00:00:00.000Z",
|
||||||
|
"last_fetch_datetime_to": ""
|
||||||
|
}
|
||||||
4
s3/config/crm/last_fetch_datetime/ProcessNode_ALL.json
Normal file
4
s3/config/crm/last_fetch_datetime/ProcessNode_ALL.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"last_fetch_datetime_from": "1900-01-01T00:00:00.000Z",
|
||||||
|
"last_fetch_datetime_to": ""
|
||||||
|
}
|
||||||
@ -104,6 +104,65 @@
|
|||||||
"datetime_column": "LastModifiedDate",
|
"datetime_column": "LastModifiedDate",
|
||||||
"last_fetch_datetime_file_name": "AccountShare_ALL.json",
|
"last_fetch_datetime_file_name": "AccountShare_ALL.json",
|
||||||
"upload_file_name": "CRM_AccountShare_ALL_{execute_datetime}"
|
"upload_file_name": "CRM_AccountShare_ALL_{execute_datetime}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"object_name": "ProcessDefinition",
|
||||||
|
"columns": [
|
||||||
|
"Id",
|
||||||
|
"Name",
|
||||||
|
"DeveloperName",
|
||||||
|
"Type",
|
||||||
|
"Description",
|
||||||
|
"TableEnumOrId",
|
||||||
|
"LockType",
|
||||||
|
"State",
|
||||||
|
"CreatedDate",
|
||||||
|
"CreatedById",
|
||||||
|
"LastModifiedDate",
|
||||||
|
"LastModifiedById",
|
||||||
|
"SystemModstamp"
|
||||||
|
],
|
||||||
|
"is_skip": false,
|
||||||
|
"is_update_last_fetch_datetime": false,
|
||||||
|
"last_fetch_datetime_file_name": "ProcessDefinition_ALL.json",
|
||||||
|
"upload_file_name": "CRM_ProcessDefinition_ALL_{execute_datetime}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"object_name": "ProcessInstanceStep",
|
||||||
|
"columns": [
|
||||||
|
"Id",
|
||||||
|
"ProcessInstanceId",
|
||||||
|
"StepStatus",
|
||||||
|
"OriginalActorId",
|
||||||
|
"ActorId",
|
||||||
|
"Comments",
|
||||||
|
"StepNodeId",
|
||||||
|
"ElapsedTimeInDays",
|
||||||
|
"ElapsedTimeInHours",
|
||||||
|
"ElapsedTimeInMinutes",
|
||||||
|
"CreatedDate",
|
||||||
|
"CreatedById",
|
||||||
|
"SystemModstamp"
|
||||||
|
],
|
||||||
|
"is_skip": false,
|
||||||
|
"is_update_last_fetch_datetime": false,
|
||||||
|
"last_fetch_datetime_file_name": "ProcessInstanceStep_ALL.json",
|
||||||
|
"upload_file_name": "CRM_ProcessInstanceStep_ALL_{execute_datetime}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"object_name": "ProcessNode",
|
||||||
|
"columns": [
|
||||||
|
"Id",
|
||||||
|
"Name",
|
||||||
|
"DeveloperName",
|
||||||
|
"ProcessDefinitionId",
|
||||||
|
"Description",
|
||||||
|
"SystemModstamp"
|
||||||
|
],
|
||||||
|
"is_skip": false,
|
||||||
|
"is_update_last_fetch_datetime": false,
|
||||||
|
"last_fetch_datetime_file_name": "ProcessNode_ALL.json",
|
||||||
|
"upload_file_name": "CRM_ProcessNode_ALL_{execute_datetime}"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -38,6 +38,7 @@
|
|||||||
"Clm_Presentation_Name_vod__c",
|
"Clm_Presentation_Name_vod__c",
|
||||||
"Clm_Presentation_Version_vod__c",
|
"Clm_Presentation_Version_vod__c",
|
||||||
"Clm_Presentation_vod__c",
|
"Clm_Presentation_vod__c",
|
||||||
|
"Share_Channel_vod__c",
|
||||||
"Call2_vod__r.RecordTypeId"
|
"Call2_vod__r.RecordTypeId"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
@ -228,6 +229,7 @@
|
|||||||
"MSJ_MSL_Comment_for_MR__c",
|
"MSJ_MSL_Comment_for_MR__c",
|
||||||
"MSJ_APD__c",
|
"MSJ_APD__c",
|
||||||
"Medical_Inquiry_vod__c",
|
"Medical_Inquiry_vod__c",
|
||||||
|
"Suggestion_vod__c",
|
||||||
"MSJ_Call_Type_MSJ__c",
|
"MSJ_Call_Type_MSJ__c",
|
||||||
"MSJ_Prescription_Request__c",
|
"MSJ_Prescription_Request__c",
|
||||||
"MSJ_Patient_Follow__c",
|
"MSJ_Patient_Follow__c",
|
||||||
@ -275,7 +277,11 @@
|
|||||||
"MSJ_Interaction_Duration__c",
|
"MSJ_Interaction_Duration__c",
|
||||||
"MSJ_SIPAGL_1A_date__c",
|
"MSJ_SIPAGL_1A_date__c",
|
||||||
"MSJ_CoPromotion__c",
|
"MSJ_CoPromotion__c",
|
||||||
"Call_Channel_Formula_vod__c"
|
"Call_Channel_Formula_vod__c",
|
||||||
|
"Meeting_Request_vod__c",
|
||||||
|
"Phone_vod__c",
|
||||||
|
"Detail_Section_Attribute_vod__c",
|
||||||
|
"Remote_Meeting_Type_vod__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -403,11 +409,11 @@
|
|||||||
"Description_vod__c",
|
"Description_vod__c",
|
||||||
"Keywords_vod__c",
|
"Keywords_vod__c",
|
||||||
"Content_Channel_vod__c",
|
"Content_Channel_vod__c",
|
||||||
"original_material_approved_in_veritas__c",
|
"business_function__c",
|
||||||
"keywords__c",
|
|
||||||
"trade_team__c",
|
|
||||||
"ewizard_link__c",
|
"ewizard_link__c",
|
||||||
"business_function__c"
|
"keywords__c",
|
||||||
|
"original_material_approved_in_veritas__c",
|
||||||
|
"trade_team__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -493,18 +499,18 @@
|
|||||||
"MSJ_Hospital_ID__c",
|
"MSJ_Hospital_ID__c",
|
||||||
"MSJ_Hospital_Name__c",
|
"MSJ_Hospital_Name__c",
|
||||||
"MSJ_Hospital__c",
|
"MSJ_Hospital__c",
|
||||||
"MSJ_Type_of_Insight__c",
|
|
||||||
"MSJ_Therapeutic_Area__c",
|
|
||||||
"MSJ_Starred_Insight__c",
|
|
||||||
"MSJ_Disclaimer__c",
|
|
||||||
"MSJ_Not_pharmacovigilance_related__c",
|
|
||||||
"MSJ_Approval_Status__c",
|
"MSJ_Approval_Status__c",
|
||||||
"MSJ_Insight_Owner_Sharing__c",
|
|
||||||
"MSJ_Description_J__c",
|
"MSJ_Description_J__c",
|
||||||
"MSJ_Summary_J__c",
|
"MSJ_Disclaimer__c",
|
||||||
|
"MSJ_HighlightPanel_Display_J__c",
|
||||||
|
"MSJ_Insight_Owner_Sharing__c",
|
||||||
"MSJ_Level_1J__c",
|
"MSJ_Level_1J__c",
|
||||||
"MSJ_Level_2J__c",
|
"MSJ_Not_pharmacovigilance_related__c",
|
||||||
"MSJ_HighlightPanel_Display_J__c"
|
"MSJ_Starred_Insight__c",
|
||||||
|
"MSJ_Summary_J__c",
|
||||||
|
"MSJ_Therapeutic_Area__c",
|
||||||
|
"MSJ_Type_of_Insight__c",
|
||||||
|
"MSJ_Level_2J__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -546,7 +552,13 @@
|
|||||||
"MSJ_Next_Week_Action_Who_MCC__c",
|
"MSJ_Next_Week_Action_Who_MCC__c",
|
||||||
"MSJ_Next_Week_Action_What_MCC__c",
|
"MSJ_Next_Week_Action_What_MCC__c",
|
||||||
"MSJ_Next_Week_Action_When_MCC__c",
|
"MSJ_Next_Week_Action_When_MCC__c",
|
||||||
"MSJ_Target_Patient_Count_MCC__c"
|
"MSJ_Target_Patient_Count_MCC__c",
|
||||||
|
"MSJ_Activity_Results_Summary_LC__c",
|
||||||
|
"MSJ_Next_Week_Action_Where_LC__c",
|
||||||
|
"MSJ_Next_Week_Action_Who_LC__c",
|
||||||
|
"MSJ_Next_Week_Action_What_LC__c",
|
||||||
|
"MSJ_Next_Week_Action_When_LC__c",
|
||||||
|
"MSJ_Target_Patient_Count_LC__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -611,7 +623,11 @@
|
|||||||
"Position_vod__c",
|
"Position_vod__c",
|
||||||
"Talk_Title_vod__c",
|
"Talk_Title_vod__c",
|
||||||
"MSJ_Attendee_Reaction__c",
|
"MSJ_Attendee_Reaction__c",
|
||||||
"MSJ_Registration__c"
|
"MSJ_Registration__c",
|
||||||
|
"MSJ_DirectMail_Status__c",
|
||||||
|
"EM_Event_Team_Member_vod__c",
|
||||||
|
"Group_Name_vod__c",
|
||||||
|
"Role_vod__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -933,12 +949,12 @@
|
|||||||
"MSJ_SK_10__c",
|
"MSJ_SK_10__c",
|
||||||
"MSJ_Specific_Action__c",
|
"MSJ_Specific_Action__c",
|
||||||
"MSJ_Training_Point__c",
|
"MSJ_Training_Point__c",
|
||||||
"MSJ_Efforts_of_Year__c",
|
|
||||||
"MSJ_Efforts_of_Month__c",
|
|
||||||
"MSJ_Skill_Task__c",
|
|
||||||
"MSJ_Action_of_This_Month__c",
|
|
||||||
"MSJ_Achievement_of_This_Month__c",
|
"MSJ_Achievement_of_This_Month__c",
|
||||||
"MSJ_Comment_from_AM__c"
|
"MSJ_Action_of_This_Month__c",
|
||||||
|
"MSJ_Comment_from_AM__c",
|
||||||
|
"MSJ_Efforts_of_Month__c",
|
||||||
|
"MSJ_Efforts_of_Year__c",
|
||||||
|
"MSJ_Skill_Task__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -1178,6 +1194,7 @@
|
|||||||
"PermissionsEditPublicFilters",
|
"PermissionsEditPublicFilters",
|
||||||
"PermissionsEditPublicTemplates",
|
"PermissionsEditPublicTemplates",
|
||||||
"PermissionsModifyAllData",
|
"PermissionsModifyAllData",
|
||||||
|
"PermissionsEditBillingInfo",
|
||||||
"PermissionsManageCases",
|
"PermissionsManageCases",
|
||||||
"PermissionsManageSolutions",
|
"PermissionsManageSolutions",
|
||||||
"PermissionsCustomizeApplication",
|
"PermissionsCustomizeApplication",
|
||||||
@ -1223,6 +1240,7 @@
|
|||||||
"PermissionsViewContent",
|
"PermissionsViewContent",
|
||||||
"PermissionsManageEmailClientConfig",
|
"PermissionsManageEmailClientConfig",
|
||||||
"PermissionsEnableNotifications",
|
"PermissionsEnableNotifications",
|
||||||
|
"PermissionsIsSsoEnabled",
|
||||||
"PermissionsManageDataIntegrations",
|
"PermissionsManageDataIntegrations",
|
||||||
"PermissionsDistributeFromPersWksp",
|
"PermissionsDistributeFromPersWksp",
|
||||||
"PermissionsViewDataCategories",
|
"PermissionsViewDataCategories",
|
||||||
@ -1305,6 +1323,7 @@
|
|||||||
"PermissionsManageSandboxes",
|
"PermissionsManageSandboxes",
|
||||||
"PermissionsAutomaticActivityCapture",
|
"PermissionsAutomaticActivityCapture",
|
||||||
"PermissionsImportCustomObjects",
|
"PermissionsImportCustomObjects",
|
||||||
|
"PermissionsSalesforceIQInbox",
|
||||||
"PermissionsDelegatedTwoFactor",
|
"PermissionsDelegatedTwoFactor",
|
||||||
"PermissionsSelectFilesFromSalesforce",
|
"PermissionsSelectFilesFromSalesforce",
|
||||||
"PermissionsModerateNetworkUsers",
|
"PermissionsModerateNetworkUsers",
|
||||||
@ -1346,9 +1365,12 @@
|
|||||||
"PermissionsApexRestServices",
|
"PermissionsApexRestServices",
|
||||||
"PermissionsEnableCommunityAppLauncher",
|
"PermissionsEnableCommunityAppLauncher",
|
||||||
"PermissionsGiveRecognitionBadge",
|
"PermissionsGiveRecognitionBadge",
|
||||||
|
"PermissionsAllowObjectDetection",
|
||||||
|
"PermissionsSalesforceIQInternal",
|
||||||
"PermissionsUseMySearch",
|
"PermissionsUseMySearch",
|
||||||
"PermissionsLtngPromoReserved01UserPerm",
|
"PermissionsLtngPromoReserved01UserPerm",
|
||||||
"PermissionsManageSubscriptions",
|
"PermissionsManageSubscriptions",
|
||||||
|
"PermissionsAllowObjectDetectionTraining",
|
||||||
"PermissionsManageSurveys",
|
"PermissionsManageSurveys",
|
||||||
"PermissionsUseAssistantDialog",
|
"PermissionsUseAssistantDialog",
|
||||||
"PermissionsUseQuerySuggestions",
|
"PermissionsUseQuerySuggestions",
|
||||||
@ -1378,6 +1400,7 @@
|
|||||||
"PermissionsSkipIdentityConfirmation",
|
"PermissionsSkipIdentityConfirmation",
|
||||||
"PermissionsSendCustomNotifications",
|
"PermissionsSendCustomNotifications",
|
||||||
"PermissionsPackaging2Delete",
|
"PermissionsPackaging2Delete",
|
||||||
|
"PermissionsViewRestrictionAndScopingRules",
|
||||||
"PermissionsFSCComprehensiveUserAccess",
|
"PermissionsFSCComprehensiveUserAccess",
|
||||||
"PermissionsManageTrustMeasures",
|
"PermissionsManageTrustMeasures",
|
||||||
"PermissionsViewTrustMeasures",
|
"PermissionsViewTrustMeasures",
|
||||||
@ -1389,8 +1412,18 @@
|
|||||||
"PermissionsManageExternalConnections",
|
"PermissionsManageExternalConnections",
|
||||||
"PermissionsAIViewInsightObjects",
|
"PermissionsAIViewInsightObjects",
|
||||||
"PermissionsAICreateInsightObjects",
|
"PermissionsAICreateInsightObjects",
|
||||||
|
"PermissionsViewMLModels",
|
||||||
"PermissionsNativeWebviewScrolling",
|
"PermissionsNativeWebviewScrolling",
|
||||||
"PermissionsViewDeveloperName",
|
"PermissionsViewDeveloperName",
|
||||||
|
"PermissionsBypassMFAForUiLogins",
|
||||||
|
"PermissionsClientSecretRotation",
|
||||||
|
"PermissionsUpdateReportTypeReferences",
|
||||||
|
"PermissionsAccessToServiceProcess",
|
||||||
|
"PermissionsManageOrchInstsAndWorkItems",
|
||||||
|
"PermissionsCMSECEAuthoringAccess",
|
||||||
|
"PermissionsEnableIPFSUpload",
|
||||||
|
"PermissionsEnableBCTransactionPolling",
|
||||||
|
"PermissionsFSCArcGraphCommunityUser",
|
||||||
"Type",
|
"Type",
|
||||||
"UserLicenseId",
|
"UserLicenseId",
|
||||||
"UserType",
|
"UserType",
|
||||||
@ -1399,6 +1432,7 @@
|
|||||||
"LastModifiedDate",
|
"LastModifiedDate",
|
||||||
"LastModifiedById",
|
"LastModifiedById",
|
||||||
"SystemModstamp",
|
"SystemModstamp",
|
||||||
|
"IsSsoEnabled",
|
||||||
"Description",
|
"Description",
|
||||||
"LastViewedDate",
|
"LastViewedDate",
|
||||||
"LastReferencedDate"
|
"LastReferencedDate"
|
||||||
@ -1474,7 +1508,15 @@
|
|||||||
"MSJ_Sent_Date__c",
|
"MSJ_Sent_Date__c",
|
||||||
"MSJ_Email_Subject__c",
|
"MSJ_Email_Subject__c",
|
||||||
"MSJ_Opens__c",
|
"MSJ_Opens__c",
|
||||||
"MSJ_Email_Status__c"
|
"MSJ_Email_Status__c",
|
||||||
|
"MSJ_Activity_Name__c",
|
||||||
|
"MSJ_Asset__c",
|
||||||
|
"MSJ_CIAM_Account__c",
|
||||||
|
"MSJ_Channel__c",
|
||||||
|
"MSJ_Content__c",
|
||||||
|
"MSJ_Registration_Time__c",
|
||||||
|
"MSJ_Related_External_Account_Data__c",
|
||||||
|
"MSJ_Tag_Id__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -1603,7 +1645,9 @@
|
|||||||
"MSJ_MSL_Support__c",
|
"MSJ_MSL_Support__c",
|
||||||
"MSJ_Material_Requirement__c",
|
"MSJ_Material_Requirement__c",
|
||||||
"MSJ_Hospital_Name_Disp__c",
|
"MSJ_Hospital_Name_Disp__c",
|
||||||
"MSJ_Hospital__c"
|
"MSJ_Hospital__c",
|
||||||
|
"MSJ_Chatbot_Check__c",
|
||||||
|
"MSJ_File_Attached__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -1748,8 +1792,7 @@
|
|||||||
"UserPreferencesShowStateToGuestUsers",
|
"UserPreferencesShowStateToGuestUsers",
|
||||||
"UserPreferencesShowPostalCodeToGuestUsers",
|
"UserPreferencesShowPostalCodeToGuestUsers",
|
||||||
"UserPreferencesShowCountryToGuestUsers",
|
"UserPreferencesShowCountryToGuestUsers",
|
||||||
"UserPreferencesHideInvoicesRedirectConfirmation",
|
"UserPreferencesShowForecastingChangeSignals",
|
||||||
"UserPreferencesHideStatementsRedirectConfirmation",
|
|
||||||
"UserPreferencesPathAssistantCollapsed",
|
"UserPreferencesPathAssistantCollapsed",
|
||||||
"UserPreferencesCacheDiagnostics",
|
"UserPreferencesCacheDiagnostics",
|
||||||
"UserPreferencesShowEmailToGuestUsers",
|
"UserPreferencesShowEmailToGuestUsers",
|
||||||
@ -1780,6 +1823,9 @@
|
|||||||
"UserPreferencesSRHOverrideActivities",
|
"UserPreferencesSRHOverrideActivities",
|
||||||
"UserPreferencesNewLightningReportRunPageEnabled",
|
"UserPreferencesNewLightningReportRunPageEnabled",
|
||||||
"UserPreferencesReverseOpenActivitiesView",
|
"UserPreferencesReverseOpenActivitiesView",
|
||||||
|
"UserPreferencesHasSentWarningEmail",
|
||||||
|
"UserPreferencesHasSentWarningEmail238",
|
||||||
|
"UserPreferencesHasSentWarningEmail240",
|
||||||
"UserPreferencesHideBrowseProductRedirectConfirmation",
|
"UserPreferencesHideBrowseProductRedirectConfirmation",
|
||||||
"UserPreferencesHideOnlineSalesAppWelcomeMat",
|
"UserPreferencesHideOnlineSalesAppWelcomeMat",
|
||||||
"ContactId",
|
"ContactId",
|
||||||
@ -1853,7 +1899,23 @@
|
|||||||
"Last_CRMDesktop_Mac_Version_vod__c",
|
"Last_CRMDesktop_Mac_Version_vod__c",
|
||||||
"Last_CRMDesktop_Windows_Sync_vod__c",
|
"Last_CRMDesktop_Windows_Sync_vod__c",
|
||||||
"Last_CRMDesktop_Windows_Version_vod__c",
|
"Last_CRMDesktop_Windows_Version_vod__c",
|
||||||
"MSJ_Test_User__c"
|
"MSJ_Test_User__c",
|
||||||
|
"Last_Android_Connect_Version_vod__c",
|
||||||
|
"Last_Android_Connect_vod__c",
|
||||||
|
"Last_Android_OS_Version_vod__c",
|
||||||
|
"Last_Android_Sync_vod__c",
|
||||||
|
"Last_CRMDesktop_Mac_Conn_Ver_vod__c",
|
||||||
|
"Last_CRMDesktop_Mac_Connect_vod__c",
|
||||||
|
"Last_CRMDesktop_Windows_Conn_Ver_vod__c",
|
||||||
|
"Last_CRMDesktop_Windows_Connect_vod__c",
|
||||||
|
"MS_Graph_API_Authorized_vod__c",
|
||||||
|
"MS_Outlook_Last_Pull_Activity_vod__c",
|
||||||
|
"MS_Outlook_Last_Push_Activity_vod__c",
|
||||||
|
"Enable_MS_Outlook_Calendar_vod__c",
|
||||||
|
"Last_iPad_Updates_Applied_vod__c",
|
||||||
|
"Last_iPhone_Updates_Applied_vod__c",
|
||||||
|
"UserPreferencesHideInvoicesRedirectConfirmation",
|
||||||
|
"UserPreferencesHideStatementsRedirectConfirmation"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -2191,6 +2253,24 @@
|
|||||||
"MSJ_Marketing_Cloud4__c",
|
"MSJ_Marketing_Cloud4__c",
|
||||||
"MSJ_Medical_Department__c",
|
"MSJ_Medical_Department__c",
|
||||||
"MSJ_Marketing_Cloud0__c",
|
"MSJ_Marketing_Cloud0__c",
|
||||||
|
"MSJ_CIAM_Number__c",
|
||||||
|
"MSJ_sID__c",
|
||||||
|
"MSJ_Application_Materials_Deadline__c",
|
||||||
|
"MSJ_DI_Person__c",
|
||||||
|
"MSJ_Pharmaceutical_Department_Memo__c",
|
||||||
|
"MSJ_Pharmaceutical_Examination_Date__c",
|
||||||
|
"MSJ_Pharmaceutical_Examination_Member__c",
|
||||||
|
"MSJ_Pharmaceutical_Examination_Rule_Memo__c",
|
||||||
|
"MSJ_Pharmaceutical_Examination_Rule__c",
|
||||||
|
"MSJ_Pharmacy_Director__c",
|
||||||
|
"MSJ_Visit_Regulation__c",
|
||||||
|
"MSJ_18_Digit_Salesforce_Id__c",
|
||||||
|
"MSJ_Clinical_Trial_Count__c",
|
||||||
|
"MSJ_Congresses_Count__c",
|
||||||
|
"MSJ_Deletion_H1__c",
|
||||||
|
"MSJ_External_Link_To_Full_H1_Profile__c",
|
||||||
|
"MSJ_Industry_Payments_Amount__c",
|
||||||
|
"MSJ_Publication_Count__c",
|
||||||
"Mobile_ID_vod__pc",
|
"Mobile_ID_vod__pc",
|
||||||
"H1Insights__H1_NPI_Value_for_Testing__pc",
|
"H1Insights__H1_NPI_Value_for_Testing__pc",
|
||||||
"H1Insights__H1_Person_ID__pc",
|
"H1Insights__H1_Person_ID__pc",
|
||||||
@ -2328,7 +2408,8 @@
|
|||||||
"zvod_Consent_Line_vod__c",
|
"zvod_Consent_Line_vod__c",
|
||||||
"zvod_Signature_Capture_vod__c",
|
"zvod_Signature_Capture_vod__c",
|
||||||
"Double_Opt_In_vod__c",
|
"Double_Opt_In_vod__c",
|
||||||
"zvod_Consent_Activity_Tracking_vod__c"
|
"zvod_Consent_Activity_Tracking_vod__c",
|
||||||
|
"MSJ_Channel_Type__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -2443,7 +2524,12 @@
|
|||||||
"MSJ_MSL_Support__c",
|
"MSJ_MSL_Support__c",
|
||||||
"MSJ_Handover_Comment__c",
|
"MSJ_Handover_Comment__c",
|
||||||
"MSJ_Handover_Email__c",
|
"MSJ_Handover_Email__c",
|
||||||
"MSJ_Material_Requirement__c"
|
"MSJ_Material_Requirement__c",
|
||||||
|
"MSJ_Material_Used__c",
|
||||||
|
"MSJ_File_Attached__c",
|
||||||
|
"MSJ_Off_Label__c",
|
||||||
|
"MSJ_Include_Quality_Complaint__c",
|
||||||
|
"MSJ_PSC__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -2503,7 +2589,8 @@
|
|||||||
"Bcc_vod__c",
|
"Bcc_vod__c",
|
||||||
"Audience_vod__c",
|
"Audience_vod__c",
|
||||||
"WeChat_Template_ID_vod__c",
|
"WeChat_Template_ID_vod__c",
|
||||||
"Check_Consent_vod__c"
|
"Check_Consent_vod__c",
|
||||||
|
"Publish_Method_vod__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -2567,7 +2654,9 @@
|
|||||||
"MSJ_Target_Call_Num__c",
|
"MSJ_Target_Call_Num__c",
|
||||||
"MSJ_Tech_segment__c",
|
"MSJ_Tech_segment__c",
|
||||||
"MSJ_Title__c",
|
"MSJ_Title__c",
|
||||||
"MSJ_XLK_Segment__c"
|
"MSJ_XLK_Segment__c",
|
||||||
|
"MSJ_Main_Treatment_Plan__c",
|
||||||
|
"MSJ_Optimal_Visiting_Hours__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -2735,7 +2824,8 @@
|
|||||||
"MSJ_Global_Brand__c",
|
"MSJ_Global_Brand__c",
|
||||||
"MSJ_Global_Business_Unit__c",
|
"MSJ_Global_Business_Unit__c",
|
||||||
"MSJ_Molecules__c",
|
"MSJ_Molecules__c",
|
||||||
"MSJ_SBU__c"
|
"MSJ_SBU__c",
|
||||||
|
"MSJ_Local_Business_Unit__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -3038,7 +3128,8 @@
|
|||||||
"Activity_Tracking_Mode_vod__c",
|
"Activity_Tracking_Mode_vod__c",
|
||||||
"Email_Source_vod__c",
|
"Email_Source_vod__c",
|
||||||
"Subject_vod__c",
|
"Subject_vod__c",
|
||||||
"User_Input_Text_vod__c"
|
"User_Input_Text_vod__c",
|
||||||
|
"Email_Group_Id_vod__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
@ -3091,8 +3182,8 @@
|
|||||||
"Title_vod__c",
|
"Title_vod__c",
|
||||||
"Suggestion_Survey_vod__c",
|
"Suggestion_Survey_vod__c",
|
||||||
"Category_vod__c",
|
"Category_vod__c",
|
||||||
"MSJ_Reason_unformatted__c",
|
|
||||||
"MSJ_Data_Id__c",
|
"MSJ_Data_Id__c",
|
||||||
|
"MSJ_Reason_unformatted__c",
|
||||||
"MSJ_reason_id__c"
|
"MSJ_reason_id__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
@ -3209,11 +3300,11 @@
|
|||||||
"Mobile_ID_vod__c",
|
"Mobile_ID_vod__c",
|
||||||
"Color_vod__c",
|
"Color_vod__c",
|
||||||
"Event_Canceled_vod__c",
|
"Event_Canceled_vod__c",
|
||||||
"Followup_Activity_Type_vod__c",
|
|
||||||
"MSJ_Data_ID__c",
|
"MSJ_Data_ID__c",
|
||||||
"MSJ_Reason_ID__c",
|
"MSJ_Reason_ID__c",
|
||||||
"MSJ_Task_External_Id__c",
|
"MSJ_Task_External_Id__c",
|
||||||
"MSJ_Task_Source__c",
|
"MSJ_Task_Source__c",
|
||||||
|
"Followup_Activity_Type_vod__c",
|
||||||
"MSJ_Visit_Type__c"
|
"MSJ_Visit_Type__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
@ -3266,11 +3357,11 @@
|
|||||||
"Mobile_ID_vod__c",
|
"Mobile_ID_vod__c",
|
||||||
"Color_vod__c",
|
"Color_vod__c",
|
||||||
"Event_Canceled_vod__c",
|
"Event_Canceled_vod__c",
|
||||||
"Followup_Activity_Type_vod__c",
|
|
||||||
"MSJ_Data_ID__c",
|
"MSJ_Data_ID__c",
|
||||||
"MSJ_Reason_ID__c",
|
"MSJ_Reason_ID__c",
|
||||||
"MSJ_Task_External_Id__c",
|
"MSJ_Task_External_Id__c",
|
||||||
"MSJ_Task_Source__c",
|
"MSJ_Task_Source__c",
|
||||||
|
"Followup_Activity_Type_vod__c",
|
||||||
"MSJ_Visit_Type__c"
|
"MSJ_Visit_Type__c"
|
||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
@ -3370,6 +3461,148 @@
|
|||||||
],
|
],
|
||||||
"is_skip": false,
|
"is_skip": false,
|
||||||
"is_update_last_fetch_datetime": true
|
"is_update_last_fetch_datetime": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"object_name": "ProcessDefinition",
|
||||||
|
"columns": [
|
||||||
|
"Id",
|
||||||
|
"Name",
|
||||||
|
"DeveloperName",
|
||||||
|
"Type",
|
||||||
|
"Description",
|
||||||
|
"TableEnumOrId",
|
||||||
|
"LockType",
|
||||||
|
"State",
|
||||||
|
"CreatedDate",
|
||||||
|
"CreatedById",
|
||||||
|
"LastModifiedDate",
|
||||||
|
"LastModifiedById",
|
||||||
|
"SystemModstamp"
|
||||||
|
],
|
||||||
|
"is_skip": false,
|
||||||
|
"is_update_last_fetch_datetime": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"object_name": "ProcessInstance",
|
||||||
|
"columns": [
|
||||||
|
"Id",
|
||||||
|
"ProcessDefinitionId",
|
||||||
|
"TargetObjectId",
|
||||||
|
"Status",
|
||||||
|
"CompletedDate",
|
||||||
|
"LastActorId",
|
||||||
|
"ElapsedTimeInDays",
|
||||||
|
"ElapsedTimeInHours",
|
||||||
|
"ElapsedTimeInMinutes",
|
||||||
|
"SubmittedById",
|
||||||
|
"IsDeleted",
|
||||||
|
"CreatedDate",
|
||||||
|
"CreatedById",
|
||||||
|
"LastModifiedDate",
|
||||||
|
"LastModifiedById",
|
||||||
|
"SystemModstamp"
|
||||||
|
],
|
||||||
|
"is_skip": false,
|
||||||
|
"is_update_last_fetch_datetime": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"object_name": "ProcessInstanceStep",
|
||||||
|
"columns": [
|
||||||
|
"Id",
|
||||||
|
"ProcessInstanceId",
|
||||||
|
"StepStatus",
|
||||||
|
"OriginalActorId",
|
||||||
|
"ActorId",
|
||||||
|
"Comments",
|
||||||
|
"StepNodeId",
|
||||||
|
"ElapsedTimeInDays",
|
||||||
|
"ElapsedTimeInHours",
|
||||||
|
"ElapsedTimeInMinutes",
|
||||||
|
"CreatedDate",
|
||||||
|
"CreatedById",
|
||||||
|
"SystemModstamp"
|
||||||
|
],
|
||||||
|
"is_skip": false,
|
||||||
|
"is_update_last_fetch_datetime": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"object_name": "ProcessInstanceNode",
|
||||||
|
"columns": [
|
||||||
|
"Id",
|
||||||
|
"IsDeleted",
|
||||||
|
"CreatedDate",
|
||||||
|
"CreatedById",
|
||||||
|
"LastModifiedDate",
|
||||||
|
"LastModifiedById",
|
||||||
|
"SystemModstamp",
|
||||||
|
"ProcessInstanceId",
|
||||||
|
"ProcessNodeId",
|
||||||
|
"NodeStatus",
|
||||||
|
"CompletedDate",
|
||||||
|
"LastActorId",
|
||||||
|
"ProcessNodeName",
|
||||||
|
"ElapsedTimeInDays",
|
||||||
|
"ElapsedTimeInHours",
|
||||||
|
"ElapsedTimeInMinutes"
|
||||||
|
],
|
||||||
|
"is_skip": false,
|
||||||
|
"is_update_last_fetch_datetime": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"object_name": "ProcessNode",
|
||||||
|
"columns": [
|
||||||
|
"Id",
|
||||||
|
"Name",
|
||||||
|
"DeveloperName",
|
||||||
|
"ProcessDefinitionId",
|
||||||
|
"Description",
|
||||||
|
"SystemModstamp"
|
||||||
|
],
|
||||||
|
"is_skip": false,
|
||||||
|
"is_update_last_fetch_datetime": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"object_name": "ProcessInstanceWorkitem",
|
||||||
|
"columns": [
|
||||||
|
"Id",
|
||||||
|
"ProcessInstanceId",
|
||||||
|
"OriginalActorId",
|
||||||
|
"ActorId",
|
||||||
|
"ElapsedTimeInDays",
|
||||||
|
"ElapsedTimeInHours",
|
||||||
|
"ElapsedTimeInMinutes",
|
||||||
|
"IsDeleted",
|
||||||
|
"CreatedDate",
|
||||||
|
"CreatedById",
|
||||||
|
"SystemModstamp"
|
||||||
|
],
|
||||||
|
"is_skip": false,
|
||||||
|
"is_update_last_fetch_datetime": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"object_name": "Directory_vod__c",
|
||||||
|
"columns": [
|
||||||
|
"Id",
|
||||||
|
"OwnerId",
|
||||||
|
"IsDeleted",
|
||||||
|
"Name",
|
||||||
|
"RecordTypeId",
|
||||||
|
"CreatedDate",
|
||||||
|
"CreatedById",
|
||||||
|
"LastModifiedDate",
|
||||||
|
"LastModifiedById",
|
||||||
|
"SystemModstamp",
|
||||||
|
"MayEdit",
|
||||||
|
"IsLocked",
|
||||||
|
"LastViewedDate",
|
||||||
|
"LastReferencedDate",
|
||||||
|
"Display_Order_vod__c",
|
||||||
|
"External_ID_vod__c",
|
||||||
|
"Level_vod__c",
|
||||||
|
"Parent_Directory_vod__c"
|
||||||
|
],
|
||||||
|
"is_skip": false,
|
||||||
|
"is_update_last_fetch_datetime": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -4,9 +4,9 @@ utf-8
|
|||||||
"
|
"
|
||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
53
|
54
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Detail_Group_vod__c,Document_Description_vod__c,Document_Host_URL_vod__c,Document_ID_vod__c,Document_Last_Mod_DateTime_vod__c,Email_Allows_Documents_vod__c,Email_Domain_vod__c,Email_Fragment_HTML_vod__c,Email_From_Address_vod__c,Email_From_Name_vod__c,Email_HTML_1_vod__c,Email_HTML_2_vod__c,Email_ReplyTo_Address_vod__c,Email_ReplyTo_Name_vod__c,Email_Subject_vod__c,Email_Template_Fragment_Document_ID_vod__c,Email_Template_Fragment_HTML_vod__c,ISI_Document_ID_vod__c,Language_vod__c,Other_Document_ID_List_vod__c,PI_Document_ID_vod__c,Piece_Document_ID_vod__c,Product_vod__c,Status_vod__c,Territory_vod__c,Vault_Instance_ID_vod__c,Allow_Any_Product_Fragment_vod__c,Allowed_Document_IDs_vod__c,Engage_Document_Id_vod__c,Vault_Document_ID_vod__c,Key_Message_vod__c,Events_Management_Subtype_vod__c,Survey_vod__c,Content_Type_vod__c,Bcc_vod__c,Audience_vod__c,WeChat_Template_ID_vod__c,Check_Consent_vod__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Detail_Group_vod__c,Document_Description_vod__c,Document_Host_URL_vod__c,Document_ID_vod__c,Document_Last_Mod_DateTime_vod__c,Email_Allows_Documents_vod__c,Email_Domain_vod__c,Email_Fragment_HTML_vod__c,Email_From_Address_vod__c,Email_From_Name_vod__c,Email_HTML_1_vod__c,Email_HTML_2_vod__c,Email_ReplyTo_Address_vod__c,Email_ReplyTo_Name_vod__c,Email_Subject_vod__c,Email_Template_Fragment_Document_ID_vod__c,Email_Template_Fragment_HTML_vod__c,ISI_Document_ID_vod__c,Language_vod__c,Other_Document_ID_List_vod__c,PI_Document_ID_vod__c,Piece_Document_ID_vod__c,Product_vod__c,Status_vod__c,Territory_vod__c,Vault_Instance_ID_vod__c,Allow_Any_Product_Fragment_vod__c,Allowed_Document_IDs_vod__c,Engage_Document_Id_vod__c,Vault_Document_ID_vod__c,Key_Message_vod__c,Events_Management_Subtype_vod__c,Survey_vod__c,Content_Type_vod__c,Bcc_vod__c,Audience_vod__c,WeChat_Template_ID_vod__c,Check_Consent_vod__c,Publish_Method_vod__c
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Detail_Group_vod__c,Document_Description_vod__c,Document_Host_URL_vod__c,Document_ID_vod__c,Document_Last_Mod_DateTime_vod__c,Email_Allows_Documents_vod__c,Email_Domain_vod__c,Email_Fragment_HTML_vod__c,Email_From_Address_vod__c,Email_From_Name_vod__c,Email_HTML_1_vod__c,Email_HTML_2_vod__c,Email_ReplyTo_Address_vod__c,Email_ReplyTo_Name_vod__c,Email_Subject_vod__c,Email_Template_Fragment_Document_ID_vod__c,Email_Template_Fragment_HTML_vod__c,ISI_Document_ID_vod__c,Language_vod__c,Other_Document_ID_List_vod__c,PI_Document_ID_vod__c,Piece_Document_ID_vod__c,Product_vod__c,Status_vod__c,Territory_vod__c,Vault_Instance_ID_vod__c,Allow_Any_Product_Fragment_vod__c,Allowed_Document_IDs_vod__c,Engage_Document_Id_vod__c,Vault_Document_ID_vod__c,Key_Message_vod__c,Events_Management_Subtype_vod__c,Survey_vod__c,Content_Type_vod__c,Bcc_vod__c,Audience_vod__c,WeChat_Template_ID_vod__c,Check_Consent_vod__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Detail_Group_vod__c,Document_Description_vod__c,Document_Host_URL_vod__c,Document_ID_vod__c,Document_Last_Mod_DateTime_vod__c,Email_Allows_Documents_vod__c,Email_Domain_vod__c,Email_Fragment_HTML_vod__c,Email_From_Address_vod__c,Email_From_Name_vod__c,Email_HTML_1_vod__c,Email_HTML_2_vod__c,Email_ReplyTo_Address_vod__c,Email_ReplyTo_Name_vod__c,Email_Subject_vod__c,Email_Template_Fragment_Document_ID_vod__c,Email_Template_Fragment_HTML_vod__c,ISI_Document_ID_vod__c,Language_vod__c,Other_Document_ID_List_vod__c,PI_Document_ID_vod__c,Piece_Document_ID_vod__c,Product_vod__c,Status_vod__c,Territory_vod__c,Vault_Instance_ID_vod__c,Allow_Any_Product_Fragment_vod__c,Allowed_Document_IDs_vod__c,Engage_Document_Id_vod__c,Vault_Document_ID_vod__c,Key_Message_vod__c,Events_Management_Subtype_vod__c,Survey_vod__c,Content_Type_vod__c,Bcc_vod__c,Audience_vod__c,WeChat_Template_ID_vod__c,Check_Consent_vod__c,Publish_Method_vod__c
|
||||||
src02.crm_Approved_Document_vod__c
|
src02.crm_Approved_Document_vod__c
|
||||||
org02.crm_Approved_Document_vod__c
|
org02.crm_Approved_Document_vod__c
|
||||||
|
|
||||||
|
|||||||
@ -4,9 +4,9 @@ utf-8
|
|||||||
"
|
"
|
||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
36
|
37
|
||||||
Id,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,Account_vod__c,Call2_vod__c,Reaction_vod__c,Product_vod__c,Key_Message_vod__c,Mobile_ID_vod__c,Contact_vod__c,Call_Date_vod__c,User_vod__c,Category_vod__c,Vehicle_vod__c,Is_Parent_Call_vod__c,Override_Lock_vod__c,CLM_ID_vod__c,Slide_Version_vod__c,Duration_vod__c,Presentation_ID_vod__c,Start_Time_vod__c,Attendee_Type_vod__c,Entity_Reference_Id_vod__c,Segment_vod__c,Display_Order_vod__c,Clm_Presentation_Name_vod__c,Clm_Presentation_Version_vod__c,Clm_Presentation_vod__c,Call2_vod__r.RecordTypeId
|
Id,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,Account_vod__c,Call2_vod__c,Reaction_vod__c,Product_vod__c,Key_Message_vod__c,Mobile_ID_vod__c,Contact_vod__c,Call_Date_vod__c,User_vod__c,Category_vod__c,Vehicle_vod__c,Is_Parent_Call_vod__c,Override_Lock_vod__c,CLM_ID_vod__c,Slide_Version_vod__c,Duration_vod__c,Presentation_ID_vod__c,Start_Time_vod__c,Attendee_Type_vod__c,Entity_Reference_Id_vod__c,Segment_vod__c,Display_Order_vod__c,Clm_Presentation_Name_vod__c,Clm_Presentation_Version_vod__c,Clm_Presentation_vod__c,Share_Channel_vod__c,Call2_vod__r.RecordTypeId
|
||||||
Id,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,Account_vod__c,Call2_vod__c,Reaction_vod__c,Product_vod__c,Key_Message_vod__c,Mobile_ID_vod__c,Contact_vod__c,Call_Date_vod__c,User_vod__c,Category_vod__c,Vehicle_vod__c,Is_Parent_Call_vod__c,Override_Lock_vod__c,CLM_ID_vod__c,Slide_Version_vod__c,Duration_vod__c,Presentation_ID_vod__c,Start_Time_vod__c,Attendee_Type_vod__c,Entity_Reference_Id_vod__c,Segment_vod__c,Display_Order_vod__c,Clm_Presentation_Name_vod__c,Clm_Presentation_Version_vod__c,Clm_Presentation_vod__c,medaca_parent_record_type_id
|
Id,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,Account_vod__c,Call2_vod__c,Reaction_vod__c,Product_vod__c,Key_Message_vod__c,Mobile_ID_vod__c,Contact_vod__c,Call_Date_vod__c,User_vod__c,Category_vod__c,Vehicle_vod__c,Is_Parent_Call_vod__c,Override_Lock_vod__c,CLM_ID_vod__c,Slide_Version_vod__c,Duration_vod__c,Presentation_ID_vod__c,Start_Time_vod__c,Attendee_Type_vod__c,Entity_Reference_Id_vod__c,Segment_vod__c,Display_Order_vod__c,Clm_Presentation_Name_vod__c,Clm_Presentation_Version_vod__c,Clm_Presentation_vod__c,Share_Channel_vod__c,medaca_parent_record_type_id
|
||||||
internal02.crm_Call2_Key_Message_vod__c
|
internal02.crm_Call2_Key_Message_vod__c
|
||||||
org02.crm_Call2_Key_Message_vod__c
|
org02.crm_Call2_Key_Message_vod__c
|
||||||
CRM_Call2_Key_Message_vod__c_ex.sql
|
CRM_Call2_Key_Message_vod__c_ex.sql
|
||||||
|
|||||||
@ -4,9 +4,9 @@ utf-8
|
|||||||
"
|
"
|
||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
205
|
210
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Call_Comments_vod__c,Sample_Card_vod__c,Add_Detail_vod__c,Property_vod__c,Account_vod__c,zvod_Product_Discussion_vod__c,Status_vod__c,Parent_Address_vod__c,Account_Plan_vod__c,zvod_SaveNew_vod__c,Next_Call_Notes_vod__c,Pre_Call_Notes_vod__c,Mobile_ID_vod__c,zvod_Account_Credentials_vod_c_vod__c,zvod_Account_Preferred_Name_vod_c_vod__c,zvod_Account_Sample_Status_vod_c_vod__c,zvod_Attendees_vod__c,zvod_Key_Messages_vod__c,zvod_Detailing_vod__c,zvod_Expenses_vod__c,zvod_Followup_vod__c,zvod_Samples_vod__c,zvod_Save_vod__c,zvod_Submit_vod__c,zvod_Delete_vod__c,Activity_Type__c,Significant_Event__c,Location_vod__c,Subject_vod__c,Unlock_vod__c,Call_Datetime_vod__c,Disbursed_To_vod__c,Disclaimer_vod__c,Request_Receipt_vod__c,Signature_Date_vod__c,Signature_vod__c,Territory_vod__c,Submitted_By_Mobile_vod__c,Call_Type_vod__c,Add_Key_Message_vod__c,Address_vod__c,Attendees_vod__c,Attendee_Type_vod__c,Call_Date_vod__c,Detailed_Products_vod__c,No_Disbursement_vod__c,Parent_Call_vod__c,User_vod__c,Contact_vod__c,zvod_Entity_vod__c,Medical_Event_vod__c,Mobile_Created_Datetime_vod__c,Mobile_Last_Modified_Datetime_vod__c,License_vod__c,Is_Parent_Call_vod__c,Entity_Display_Name_vod__c,Override_Lock_vod__c,Last_Device_vod__c,Ship_Address_Line_1_vod__c,Ship_Address_Line_2_vod__c,Ship_City_vod__c,Ship_Country_vod__c,Ship_License_Expiration_Date_vod__c,Ship_License_Status_vod__c,Ship_License_vod__c,Ship_State_vod__c,Ship_To_Address_vod__c,Ship_Zip_vod__c,Ship_To_Address_Text_vod__c,CLM_vod__c,zvod_CLMDetails_vod__c,Is_Sampled_Call_vod__c,zvod_Surveys_vod__c,Presentations_vod__c,Entity_Reference_Id_vod__c,Error_Reference_Call_vod__c,Duration_vod__c,Color_vod__c,Allowed_Products_vod__c,zvod_Attachments_vod__c,Sample_Card_Reason_vod__c,ASSMCA_vod__c,Address_Line_1_vod__c,Address_Line_2_vod__c,City_vod__c,DEA_Address_Line_1_vod__c,DEA_Address_Line_2_vod__c,DEA_Address_vod__c,DEA_City_vod__c,DEA_Expiration_Date_vod__c,DEA_State_vod__c,DEA_Zip_4_vod__c,DEA_Zip_vod__c,DEA_vod__c,Ship_Zip_4_vod__c,State_vod__c,Zip_4_vod__c,Zip_vod__c,Sample_Send_Card_vod__c,zvod_Address_vod_c_DEA_Status_vod_c_vod__c,Signature_Page_Image_vod__c,Credentials_vod__c,Salutation_vod__c,zvod_Account_Call_Reminder_vod_c_vod__c,MSJ_Meeting_Duration__c,MSJ_Double_Visit_AM__c,zvod_Business_Account_vod__c,Product_Priority_1_vod__c,Product_Priority_2_vod__c,Product_Priority_3_vod__c,Product_Priority_4_vod__c,Product_Priority_5_vod__c,zvod_More_Actions_vod__c,zvod_Call_Conflict_Status_vod__c,Signature_Timestamp_vod__c,Expense_Amount_vod__c,Total_Expense_Attendees_Count_vod__c,Attendee_list_vod__c,Expense_Post_Status_vod__c,Attendee_Post_Status_vod__c,Expense_System_External_ID_vod__c,Incurred_Expense_vod__c,Assigner_vod__c,Assignment_Datetime_vod__c,zvod_Call_Objective_vod__c,Signature_Location_Longitude_vod__c,Signature_Location_Latitude_vod__c,Location_Services_Status_vod__c,MSJ_Double_Visit_Other__c,MSJ_Comment__c,MSJ_For_Reporting__c,MSJ_Number_of_Attendees__c,MSJ_Main_Dept__c,Planned_Type_vjh__c,Cobrowse_URL_Participant_vod__c,MSJ_Activity_Method_Text__c,MSJ_Activity_Method__c,MSJ_Classification__c,MSJ_Double_Visit_MSL__c,MSJ_MSL_Comment_for_MR__c,MSJ_APD__c,Medical_Inquiry_vod__c,MSJ_Call_Type_MSJ__c,MSJ_Prescription_Request__c,MSJ_Patient_Follow__c,Child_Account_Id_vod__c,Child_Account_vod__c,Location_Id_vod__c,Location_Name_vod__c,MSJ_Comments_about_technology__c,Remote_Meeting_vod__c,Veeva_Remote_Meeting_Id_vod__c,MSJ_Activity_Type_Report__c,MSJ_Activity_Type__c,MSJ_Activity__c,MSJ_Comments__c,MSJ_Therapy__c,MSJ_Time_Hrs__c,EMDS_CO_Reference__c,EMDS_Call_Sub_Type__c,EMDS_Call_Type__c,EMDS_Call_Unsuccessful__c,EMDS_Congress_Type__c,EMDS_Date_of_Service__c,EMDS_Fertility_DisInterest__c,EMDS_Fertility_Interest__c,EMDS_Installed_Equipment__c,EMDS_Pipeline_Stage_Value__c,EMDS_Pipeline_Stage__c,EMDS_Pipeline__c,EMDS_Reason_for_Call__c,EMDS_Training_Completed__c,MSJ_BrainStorming__c,MSJ_SIPAGL_1A__c,MSJ_SIPAGL_1B__c,MSJ_SIPAGL_2__c,MSJ_SIPAGL_3__c,MSJ_SIPAGL_4A__c,MSJ_SIPAGL_5A__c,MSJ_SIPAGL_comment__c,MSJ_SIPAGL_4B__c,MSJ_SIPAGL_5B__c,Location_Text_vod__c,Call_Channel_vod__c,MSJ_Scientific_Interaction__c,MSJ_Activity_Email_Reply__c,MSJ_Interaction_Duration__c,MSJ_SIPAGL_1A_date__c,MSJ_CoPromotion__c,Call_Channel_Formula_vod__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Call_Comments_vod__c,Sample_Card_vod__c,Add_Detail_vod__c,Property_vod__c,Account_vod__c,zvod_Product_Discussion_vod__c,Status_vod__c,Parent_Address_vod__c,Account_Plan_vod__c,zvod_SaveNew_vod__c,Next_Call_Notes_vod__c,Pre_Call_Notes_vod__c,Mobile_ID_vod__c,zvod_Account_Credentials_vod_c_vod__c,zvod_Account_Preferred_Name_vod_c_vod__c,zvod_Account_Sample_Status_vod_c_vod__c,zvod_Attendees_vod__c,zvod_Key_Messages_vod__c,zvod_Detailing_vod__c,zvod_Expenses_vod__c,zvod_Followup_vod__c,zvod_Samples_vod__c,zvod_Save_vod__c,zvod_Submit_vod__c,zvod_Delete_vod__c,Activity_Type__c,Significant_Event__c,Location_vod__c,Subject_vod__c,Unlock_vod__c,Call_Datetime_vod__c,Disbursed_To_vod__c,Disclaimer_vod__c,Request_Receipt_vod__c,Signature_Date_vod__c,Signature_vod__c,Territory_vod__c,Submitted_By_Mobile_vod__c,Call_Type_vod__c,Add_Key_Message_vod__c,Address_vod__c,Attendees_vod__c,Attendee_Type_vod__c,Call_Date_vod__c,Detailed_Products_vod__c,No_Disbursement_vod__c,Parent_Call_vod__c,User_vod__c,Contact_vod__c,zvod_Entity_vod__c,Medical_Event_vod__c,Mobile_Created_Datetime_vod__c,Mobile_Last_Modified_Datetime_vod__c,License_vod__c,Is_Parent_Call_vod__c,Entity_Display_Name_vod__c,Override_Lock_vod__c,Last_Device_vod__c,Ship_Address_Line_1_vod__c,Ship_Address_Line_2_vod__c,Ship_City_vod__c,Ship_Country_vod__c,Ship_License_Expiration_Date_vod__c,Ship_License_Status_vod__c,Ship_License_vod__c,Ship_State_vod__c,Ship_To_Address_vod__c,Ship_Zip_vod__c,Ship_To_Address_Text_vod__c,CLM_vod__c,zvod_CLMDetails_vod__c,Is_Sampled_Call_vod__c,zvod_Surveys_vod__c,Presentations_vod__c,Entity_Reference_Id_vod__c,Error_Reference_Call_vod__c,Duration_vod__c,Color_vod__c,Allowed_Products_vod__c,zvod_Attachments_vod__c,Sample_Card_Reason_vod__c,ASSMCA_vod__c,Address_Line_1_vod__c,Address_Line_2_vod__c,City_vod__c,DEA_Address_Line_1_vod__c,DEA_Address_Line_2_vod__c,DEA_Address_vod__c,DEA_City_vod__c,DEA_Expiration_Date_vod__c,DEA_State_vod__c,DEA_Zip_4_vod__c,DEA_Zip_vod__c,DEA_vod__c,Ship_Zip_4_vod__c,State_vod__c,Zip_4_vod__c,Zip_vod__c,Sample_Send_Card_vod__c,zvod_Address_vod_c_DEA_Status_vod_c_vod__c,Signature_Page_Image_vod__c,Credentials_vod__c,Salutation_vod__c,zvod_Account_Call_Reminder_vod_c_vod__c,MSJ_Meeting_Duration__c,MSJ_Double_Visit_AM__c,zvod_Business_Account_vod__c,Product_Priority_1_vod__c,Product_Priority_2_vod__c,Product_Priority_3_vod__c,Product_Priority_4_vod__c,Product_Priority_5_vod__c,zvod_More_Actions_vod__c,zvod_Call_Conflict_Status_vod__c,Signature_Timestamp_vod__c,Expense_Amount_vod__c,Total_Expense_Attendees_Count_vod__c,Attendee_list_vod__c,Expense_Post_Status_vod__c,Attendee_Post_Status_vod__c,Expense_System_External_ID_vod__c,Incurred_Expense_vod__c,Assigner_vod__c,Assignment_Datetime_vod__c,zvod_Call_Objective_vod__c,Signature_Location_Longitude_vod__c,Signature_Location_Latitude_vod__c,Location_Services_Status_vod__c,MSJ_Double_Visit_Other__c,MSJ_Comment__c,MSJ_For_Reporting__c,MSJ_Number_of_Attendees__c,MSJ_Main_Dept__c,Planned_Type_vjh__c,Cobrowse_URL_Participant_vod__c,MSJ_Activity_Method_Text__c,MSJ_Activity_Method__c,MSJ_Classification__c,MSJ_Double_Visit_MSL__c,MSJ_MSL_Comment_for_MR__c,MSJ_APD__c,Medical_Inquiry_vod__c,Suggestion_vod__c,MSJ_Call_Type_MSJ__c,MSJ_Prescription_Request__c,MSJ_Patient_Follow__c,Child_Account_Id_vod__c,Child_Account_vod__c,Location_Id_vod__c,Location_Name_vod__c,MSJ_Comments_about_technology__c,Remote_Meeting_vod__c,Veeva_Remote_Meeting_Id_vod__c,MSJ_Activity_Type_Report__c,MSJ_Activity_Type__c,MSJ_Activity__c,MSJ_Comments__c,MSJ_Therapy__c,MSJ_Time_Hrs__c,EMDS_CO_Reference__c,EMDS_Call_Sub_Type__c,EMDS_Call_Type__c,EMDS_Call_Unsuccessful__c,EMDS_Congress_Type__c,EMDS_Date_of_Service__c,EMDS_Fertility_DisInterest__c,EMDS_Fertility_Interest__c,EMDS_Installed_Equipment__c,EMDS_Pipeline_Stage_Value__c,EMDS_Pipeline_Stage__c,EMDS_Pipeline__c,EMDS_Reason_for_Call__c,EMDS_Training_Completed__c,MSJ_BrainStorming__c,MSJ_SIPAGL_1A__c,MSJ_SIPAGL_1B__c,MSJ_SIPAGL_2__c,MSJ_SIPAGL_3__c,MSJ_SIPAGL_4A__c,MSJ_SIPAGL_5A__c,MSJ_SIPAGL_comment__c,MSJ_SIPAGL_4B__c,MSJ_SIPAGL_5B__c,Location_Text_vod__c,Call_Channel_vod__c,MSJ_Scientific_Interaction__c,MSJ_Activity_Email_Reply__c,MSJ_Interaction_Duration__c,MSJ_SIPAGL_1A_date__c,MSJ_CoPromotion__c,Call_Channel_Formula_vod__c,Meeting_Request_vod__c,Phone_vod__c,Detail_Section_Attribute_vod__c,Remote_Meeting_Type_vod__c
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Call_Comments_vod__c,Sample_Card_vod__c,Add_Detail_vod__c,Property_vod__c,Account_vod__c,zvod_Product_Discussion_vod__c,Status_vod__c,Parent_Address_vod__c,Account_Plan_vod__c,zvod_SaveNew_vod__c,Next_Call_Notes_vod__c,Pre_Call_Notes_vod__c,Mobile_ID_vod__c,zvod_Account_Credentials_vod_c_vod__c,zvod_Account_Preferred_Name_vod_c_vod__c,zvod_Account_Sample_Status_vod_c_vod__c,zvod_Attendees_vod__c,zvod_Key_Messages_vod__c,zvod_Detailing_vod__c,zvod_Expenses_vod__c,zvod_Followup_vod__c,zvod_Samples_vod__c,zvod_Save_vod__c,zvod_Submit_vod__c,zvod_Delete_vod__c,Activity_Type__c,Significant_Event__c,Location_vod__c,Subject_vod__c,Unlock_vod__c,Call_Datetime_vod__c,Disbursed_To_vod__c,Disclaimer_vod__c,Request_Receipt_vod__c,Signature_Date_vod__c,Signature_vod__c,Territory_vod__c,Submitted_By_Mobile_vod__c,Call_Type_vod__c,Add_Key_Message_vod__c,Address_vod__c,Attendees_vod__c,Attendee_Type_vod__c,Call_Date_vod__c,Detailed_Products_vod__c,No_Disbursement_vod__c,Parent_Call_vod__c,User_vod__c,Contact_vod__c,zvod_Entity_vod__c,Medical_Event_vod__c,Mobile_Created_Datetime_vod__c,Mobile_Last_Modified_Datetime_vod__c,License_vod__c,Is_Parent_Call_vod__c,Entity_Display_Name_vod__c,Override_Lock_vod__c,Last_Device_vod__c,Ship_Address_Line_1_vod__c,Ship_Address_Line_2_vod__c,Ship_City_vod__c,Ship_Country_vod__c,Ship_License_Expiration_Date_vod__c,Ship_License_Status_vod__c,Ship_License_vod__c,Ship_State_vod__c,Ship_To_Address_vod__c,Ship_Zip_vod__c,Ship_To_Address_Text_vod__c,CLM_vod__c,zvod_CLMDetails_vod__c,Is_Sampled_Call_vod__c,zvod_Surveys_vod__c,Presentations_vod__c,Entity_Reference_Id_vod__c,Error_Reference_Call_vod__c,Duration_vod__c,Color_vod__c,Allowed_Products_vod__c,zvod_Attachments_vod__c,Sample_Card_Reason_vod__c,ASSMCA_vod__c,Address_Line_1_vod__c,Address_Line_2_vod__c,City_vod__c,DEA_Address_Line_1_vod__c,DEA_Address_Line_2_vod__c,DEA_Address_vod__c,DEA_City_vod__c,DEA_Expiration_Date_vod__c,DEA_State_vod__c,DEA_Zip_4_vod__c,DEA_Zip_vod__c,DEA_vod__c,Ship_Zip_4_vod__c,State_vod__c,Zip_4_vod__c,Zip_vod__c,Sample_Send_Card_vod__c,zvod_Address_vod_c_DEA_Status_vod_c_vod__c,Signature_Page_Image_vod__c,Credentials_vod__c,Salutation_vod__c,zvod_Account_Call_Reminder_vod_c_vod__c,MSJ_Meeting_Duration__c,MSJ_Double_Visit_AM__c,zvod_Business_Account_vod__c,Product_Priority_1_vod__c,Product_Priority_2_vod__c,Product_Priority_3_vod__c,Product_Priority_4_vod__c,Product_Priority_5_vod__c,zvod_More_Actions_vod__c,zvod_Call_Conflict_Status_vod__c,Signature_Timestamp_vod__c,Expense_Amount_vod__c,Total_Expense_Attendees_Count_vod__c,Attendee_list_vod__c,Expense_Post_Status_vod__c,Attendee_Post_Status_vod__c,Expense_System_External_ID_vod__c,Incurred_Expense_vod__c,Assigner_vod__c,Assignment_Datetime_vod__c,zvod_Call_Objective_vod__c,Signature_Location_Longitude_vod__c,Signature_Location_Latitude_vod__c,Location_Services_Status_vod__c,MSJ_Double_Visit_Other__c,MSJ_Comment__c,MSJ_For_Reporting__c,MSJ_Number_of_Attendees__c,MSJ_Main_Dept__c,Planned_Type_vjh__c,Cobrowse_URL_Participant_vod__c,MSJ_Activity_Method_Text__c,MSJ_Activity_Method__c,MSJ_Classification__c,MSJ_Double_Visit_MSL__c,MSJ_MSL_Comment_for_MR__c,MSJ_APD__c,Medical_Inquiry_vod__c,MSJ_Call_Type_MSJ__c,MSJ_Prescription_Request__c,MSJ_Patient_Follow__c,Child_Account_Id_vod__c,Child_Account_vod__c,Location_Id_vod__c,Location_Name_vod__c,MSJ_Comments_about_technology__c,Remote_Meeting_vod__c,Veeva_Remote_Meeting_Id_vod__c,MSJ_Activity_Type_Report__c,MSJ_Activity_Type__c,MSJ_Activity__c,MSJ_Comments__c,MSJ_Therapy__c,MSJ_Time_Hrs__c,EMDS_CO_Reference__c,EMDS_Call_Sub_Type__c,EMDS_Call_Type__c,EMDS_Call_Unsuccessful__c,EMDS_Congress_Type__c,EMDS_Date_of_Service__c,EMDS_Fertility_DisInterest__c,EMDS_Fertility_Interest__c,EMDS_Installed_Equipment__c,EMDS_Pipeline_Stage_Value__c,EMDS_Pipeline_Stage__c,EMDS_Pipeline__c,EMDS_Reason_for_Call__c,EMDS_Training_Completed__c,MSJ_BrainStorming__c,MSJ_SIPAGL_1A__c,MSJ_SIPAGL_1B__c,MSJ_SIPAGL_2__c,MSJ_SIPAGL_3__c,MSJ_SIPAGL_4A__c,MSJ_SIPAGL_5A__c,MSJ_SIPAGL_comment__c,MSJ_SIPAGL_4B__c,MSJ_SIPAGL_5B__c,Location_Text_vod__c,Call_Channel_vod__c,MSJ_Scientific_Interaction__c,MSJ_Activity_Email_Reply__c,MSJ_Interaction_Duration__c,MSJ_SIPAGL_1A_date__c,MSJ_CoPromotion__c,Call_Channel_Formula_vod__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Call_Comments_vod__c,Sample_Card_vod__c,Add_Detail_vod__c,Property_vod__c,Account_vod__c,zvod_Product_Discussion_vod__c,Status_vod__c,Parent_Address_vod__c,Account_Plan_vod__c,zvod_SaveNew_vod__c,Next_Call_Notes_vod__c,Pre_Call_Notes_vod__c,Mobile_ID_vod__c,zvod_Account_Credentials_vod_c_vod__c,zvod_Account_Preferred_Name_vod_c_vod__c,zvod_Account_Sample_Status_vod_c_vod__c,zvod_Attendees_vod__c,zvod_Key_Messages_vod__c,zvod_Detailing_vod__c,zvod_Expenses_vod__c,zvod_Followup_vod__c,zvod_Samples_vod__c,zvod_Save_vod__c,zvod_Submit_vod__c,zvod_Delete_vod__c,Activity_Type__c,Significant_Event__c,Location_vod__c,Subject_vod__c,Unlock_vod__c,Call_Datetime_vod__c,Disbursed_To_vod__c,Disclaimer_vod__c,Request_Receipt_vod__c,Signature_Date_vod__c,Signature_vod__c,Territory_vod__c,Submitted_By_Mobile_vod__c,Call_Type_vod__c,Add_Key_Message_vod__c,Address_vod__c,Attendees_vod__c,Attendee_Type_vod__c,Call_Date_vod__c,Detailed_Products_vod__c,No_Disbursement_vod__c,Parent_Call_vod__c,User_vod__c,Contact_vod__c,zvod_Entity_vod__c,Medical_Event_vod__c,Mobile_Created_Datetime_vod__c,Mobile_Last_Modified_Datetime_vod__c,License_vod__c,Is_Parent_Call_vod__c,Entity_Display_Name_vod__c,Override_Lock_vod__c,Last_Device_vod__c,Ship_Address_Line_1_vod__c,Ship_Address_Line_2_vod__c,Ship_City_vod__c,Ship_Country_vod__c,Ship_License_Expiration_Date_vod__c,Ship_License_Status_vod__c,Ship_License_vod__c,Ship_State_vod__c,Ship_To_Address_vod__c,Ship_Zip_vod__c,Ship_To_Address_Text_vod__c,CLM_vod__c,zvod_CLMDetails_vod__c,Is_Sampled_Call_vod__c,zvod_Surveys_vod__c,Presentations_vod__c,Entity_Reference_Id_vod__c,Error_Reference_Call_vod__c,Duration_vod__c,Color_vod__c,Allowed_Products_vod__c,zvod_Attachments_vod__c,Sample_Card_Reason_vod__c,ASSMCA_vod__c,Address_Line_1_vod__c,Address_Line_2_vod__c,City_vod__c,DEA_Address_Line_1_vod__c,DEA_Address_Line_2_vod__c,DEA_Address_vod__c,DEA_City_vod__c,DEA_Expiration_Date_vod__c,DEA_State_vod__c,DEA_Zip_4_vod__c,DEA_Zip_vod__c,DEA_vod__c,Ship_Zip_4_vod__c,State_vod__c,Zip_4_vod__c,Zip_vod__c,Sample_Send_Card_vod__c,zvod_Address_vod_c_DEA_Status_vod_c_vod__c,Signature_Page_Image_vod__c,Credentials_vod__c,Salutation_vod__c,zvod_Account_Call_Reminder_vod_c_vod__c,MSJ_Meeting_Duration__c,MSJ_Double_Visit_AM__c,zvod_Business_Account_vod__c,Product_Priority_1_vod__c,Product_Priority_2_vod__c,Product_Priority_3_vod__c,Product_Priority_4_vod__c,Product_Priority_5_vod__c,zvod_More_Actions_vod__c,zvod_Call_Conflict_Status_vod__c,Signature_Timestamp_vod__c,Expense_Amount_vod__c,Total_Expense_Attendees_Count_vod__c,Attendee_list_vod__c,Expense_Post_Status_vod__c,Attendee_Post_Status_vod__c,Expense_System_External_ID_vod__c,Incurred_Expense_vod__c,Assigner_vod__c,Assignment_Datetime_vod__c,zvod_Call_Objective_vod__c,Signature_Location_Longitude_vod__c,Signature_Location_Latitude_vod__c,Location_Services_Status_vod__c,MSJ_Double_Visit_Other__c,MSJ_Comment__c,MSJ_For_Reporting__c,MSJ_Number_of_Attendees__c,MSJ_Main_Dept__c,Planned_Type_vjh__c,Cobrowse_URL_Participant_vod__c,MSJ_Activity_Method_Text__c,MSJ_Activity_Method__c,MSJ_Classification__c,MSJ_Double_Visit_MSL__c,MSJ_MSL_Comment_for_MR__c,MSJ_APD__c,Medical_Inquiry_vod__c,Suggestion_vod__c,MSJ_Call_Type_MSJ__c,MSJ_Prescription_Request__c,MSJ_Patient_Follow__c,Child_Account_Id_vod__c,Child_Account_vod__c,Location_Id_vod__c,Location_Name_vod__c,MSJ_Comments_about_technology__c,Remote_Meeting_vod__c,Veeva_Remote_Meeting_Id_vod__c,MSJ_Activity_Type_Report__c,MSJ_Activity_Type__c,MSJ_Activity__c,MSJ_Comments__c,MSJ_Therapy__c,MSJ_Time_Hrs__c,EMDS_CO_Reference__c,EMDS_Call_Sub_Type__c,EMDS_Call_Type__c,EMDS_Call_Unsuccessful__c,EMDS_Congress_Type__c,EMDS_Date_of_Service__c,EMDS_Fertility_DisInterest__c,EMDS_Fertility_Interest__c,EMDS_Installed_Equipment__c,EMDS_Pipeline_Stage_Value__c,EMDS_Pipeline_Stage__c,EMDS_Pipeline__c,EMDS_Reason_for_Call__c,EMDS_Training_Completed__c,MSJ_BrainStorming__c,MSJ_SIPAGL_1A__c,MSJ_SIPAGL_1B__c,MSJ_SIPAGL_2__c,MSJ_SIPAGL_3__c,MSJ_SIPAGL_4A__c,MSJ_SIPAGL_5A__c,MSJ_SIPAGL_comment__c,MSJ_SIPAGL_4B__c,MSJ_SIPAGL_5B__c,Location_Text_vod__c,Call_Channel_vod__c,MSJ_Scientific_Interaction__c,MSJ_Activity_Email_Reply__c,MSJ_Interaction_Duration__c,MSJ_SIPAGL_1A_date__c,MSJ_CoPromotion__c,Call_Channel_Formula_vod__c,Meeting_Request_vod__c,Phone_vod__c,Detail_Section_Attribute_vod__c,Remote_Meeting_Type_vod__c
|
||||||
internal02.crm_Call2_vod__c
|
internal02.crm_Call2_vod__c
|
||||||
org02.crm_Call2_vod__c
|
org02.crm_Call2_vod__c
|
||||||
CRM_Call2_vod__c_ex.sql
|
CRM_Call2_vod__c_ex.sql
|
||||||
|
|||||||
@ -4,9 +4,9 @@ utf-8
|
|||||||
"
|
"
|
||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
57
|
59
|
||||||
Id,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Parent_Account_vod__c,Child_Account_vod__c,External_ID_vod__c,Mobile_ID_vod__c,Primary_vod__c,Copy_Address_vod__c,Child_Name_vod__c,Parent_Name_vod__c,Parent_Child_Name_vod__c,Account_Code__c,Child_Department__c,Child_Role__c,Child_Title__c,Child_Remark__c,MSJ_1C_segment__c,MSJ_BU_FE__c,MSJ_BU_ONC__c,MSJ_BVC_Segment__c,MSJ_CE_segment__c,MSJ_Child_Account_Link__c,MSJ_DCF_DR_Code__c,MSJ_DCF_HP_Code__c,MSJ_DR_Change_Log__c,MSJ_Delete__c,MSJ_Department__c,MSJ_EB_CRC_Segment__c,MSJ_EB_HN_Segment__c,MSJ_EB_H_N_LA_Segment__c,MSJ_EB_H_N_RM_Segment__c,MSJ_External_ID__c,MSJ_Fax__c,MSJ_GF2_segment__c,MSJ_GF_segment__c,MSJ_KOL_LOL__c,MSJ_KOL__c,MSJ_ONC_HP_Segment__c,MSJ_OPTIN_target__c,MSJ_OV_segment__c,MSJ_Parent_Child_Name__c,MSJ_Phone__c,MSJ_Remark__c,MSJ_Target_Call_Num__c,MSJ_Tech_segment__c,MSJ_Title__c,MSJ_XLK_Segment__c
|
Id,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Parent_Account_vod__c,Child_Account_vod__c,External_ID_vod__c,Mobile_ID_vod__c,Primary_vod__c,Copy_Address_vod__c,Child_Name_vod__c,Parent_Name_vod__c,Parent_Child_Name_vod__c,Account_Code__c,Child_Department__c,Child_Role__c,Child_Title__c,Child_Remark__c,MSJ_1C_segment__c,MSJ_BU_FE__c,MSJ_BU_ONC__c,MSJ_BVC_Segment__c,MSJ_CE_segment__c,MSJ_Child_Account_Link__c,MSJ_DCF_DR_Code__c,MSJ_DCF_HP_Code__c,MSJ_DR_Change_Log__c,MSJ_Delete__c,MSJ_Department__c,MSJ_EB_CRC_Segment__c,MSJ_EB_HN_Segment__c,MSJ_EB_H_N_LA_Segment__c,MSJ_EB_H_N_RM_Segment__c,MSJ_External_ID__c,MSJ_Fax__c,MSJ_GF2_segment__c,MSJ_GF_segment__c,MSJ_KOL_LOL__c,MSJ_KOL__c,MSJ_ONC_HP_Segment__c,MSJ_OPTIN_target__c,MSJ_OV_segment__c,MSJ_Parent_Child_Name__c,MSJ_Phone__c,MSJ_Remark__c,MSJ_Target_Call_Num__c,MSJ_Tech_segment__c,MSJ_Title__c,MSJ_XLK_Segment__c,MSJ_Main_Treatment_Plan__c,MSJ_Optimal_Visiting_Hours__c
|
||||||
Id,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Parent_Account_vod__c,Child_Account_vod__c,External_ID_vod__c,Mobile_ID_vod__c,Primary_vod__c,Copy_Address_vod__c,Child_Name_vod__c,Parent_Name_vod__c,Parent_Child_Name_vod__c,Account_Code__c,Child_Department__c,Child_Role__c,Child_Title__c,Child_Remark__c,MSJ_1C_segment__c,MSJ_BU_FE__c,MSJ_BU_ONC__c,MSJ_BVC_Segment__c,MSJ_CE_segment__c,MSJ_Child_Account_Link__c,MSJ_DCF_DR_Code__c,MSJ_DCF_HP_Code__c,MSJ_DR_Change_Log__c,MSJ_Delete__c,MSJ_Department__c,MSJ_EB_CRC_Segment__c,MSJ_EB_HN_Segment__c,MSJ_EB_H_N_LA_Segment__c,MSJ_EB_H_N_RM_Segment__c,MSJ_External_ID__c,MSJ_Fax__c,MSJ_GF2_segment__c,MSJ_GF_segment__c,MSJ_KOL_LOL__c,MSJ_KOL__c,MSJ_ONC_HP_Segment__c,MSJ_OPTIN_target__c,MSJ_OV_segment__c,MSJ_Parent_Child_Name__c,MSJ_Phone__c,MSJ_Remark__c,MSJ_Target_Call_Num__c,MSJ_Tech_segment__c,MSJ_Title__c,MSJ_XLK_Segment__c
|
Id,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Parent_Account_vod__c,Child_Account_vod__c,External_ID_vod__c,Mobile_ID_vod__c,Primary_vod__c,Copy_Address_vod__c,Child_Name_vod__c,Parent_Name_vod__c,Parent_Child_Name_vod__c,Account_Code__c,Child_Department__c,Child_Role__c,Child_Title__c,Child_Remark__c,MSJ_1C_segment__c,MSJ_BU_FE__c,MSJ_BU_ONC__c,MSJ_BVC_Segment__c,MSJ_CE_segment__c,MSJ_Child_Account_Link__c,MSJ_DCF_DR_Code__c,MSJ_DCF_HP_Code__c,MSJ_DR_Change_Log__c,MSJ_Delete__c,MSJ_Department__c,MSJ_EB_CRC_Segment__c,MSJ_EB_HN_Segment__c,MSJ_EB_H_N_LA_Segment__c,MSJ_EB_H_N_RM_Segment__c,MSJ_External_ID__c,MSJ_Fax__c,MSJ_GF2_segment__c,MSJ_GF_segment__c,MSJ_KOL_LOL__c,MSJ_KOL__c,MSJ_ONC_HP_Segment__c,MSJ_OPTIN_target__c,MSJ_OV_segment__c,MSJ_Parent_Child_Name__c,MSJ_Phone__c,MSJ_Remark__c,MSJ_Target_Call_Num__c,MSJ_Tech_segment__c,MSJ_Title__c,MSJ_XLK_Segment__c,MSJ_Main_Treatment_Plan__c,MSJ_Optimal_Visiting_Hours__c
|
||||||
src02.crm_Child_Account_vod__c
|
src02.crm_Child_Account_vod__c
|
||||||
org02.crm_Child_Account_vod__c
|
org02.crm_Child_Account_vod__c
|
||||||
CRM_Child_Account_vod__c_ex.sql
|
CRM_Child_Account_vod__c_ex.sql
|
||||||
|
|||||||
@ -5,8 +5,8 @@ utf-8
|
|||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
46
|
46
|
||||||
Id,OwnerId,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Mobile_ID_vod__c,Presentation_Id_vod__c,Product_vod__c,Default_Presentation_vod__c,Training_vod__c,ParentId_vod__c,Hidden_vod__c,Type_vod__c,Approved_vod__c,Copied_From_vod__c,Copy_Date_vod__c,Survey_vod__c,Original_Record_ID_vod__c,Directory_vod__c,End_Date_vod__c,Start_Date_vod__c,Status_vod__c,VExternal_Id_vod__c,Vault_DNS_vod__c,Vault_Doc_Id_vod__c,Vault_External_Id_vod__c,Vault_GUID_vod__c,Vault_Last_Modified_Date_Time_vod__c,Version_vod__c,Enable_Survey_Overlay_vod__c,Description_vod__c,Keywords_vod__c,Content_Channel_vod__c,original_material_approved_in_veritas__c,keywords__c,trade_team__c,ewizard_link__c,business_function__c
|
Id,OwnerId,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Mobile_ID_vod__c,Presentation_Id_vod__c,Product_vod__c,Default_Presentation_vod__c,Training_vod__c,ParentId_vod__c,Hidden_vod__c,Type_vod__c,Approved_vod__c,Copied_From_vod__c,Copy_Date_vod__c,Survey_vod__c,Original_Record_ID_vod__c,Directory_vod__c,End_Date_vod__c,Start_Date_vod__c,Status_vod__c,VExternal_Id_vod__c,Vault_DNS_vod__c,Vault_Doc_Id_vod__c,Vault_External_Id_vod__c,Vault_GUID_vod__c,Vault_Last_Modified_Date_Time_vod__c,Version_vod__c,Enable_Survey_Overlay_vod__c,Description_vod__c,Keywords_vod__c,Content_Channel_vod__c,business_function__c,ewizard_link__c,keywords__c,original_material_approved_in_veritas__c,trade_team__c
|
||||||
Id,OwnerId,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Mobile_ID_vod__c,Presentation_Id_vod__c,Product_vod__c,Default_Presentation_vod__c,Training_vod__c,ParentId_vod__c,Hidden_vod__c,Type_vod__c,Approved_vod__c,Copied_From_vod__c,Copy_Date_vod__c,Survey_vod__c,Original_Record_ID_vod__c,Directory_vod__c,End_Date_vod__c,Start_Date_vod__c,Status_vod__c,VExternal_Id_vod__c,Vault_DNS_vod__c,Vault_Doc_Id_vod__c,Vault_External_Id_vod__c,Vault_GUID_vod__c,Vault_Last_Modified_Date_Time_vod__c,Version_vod__c,Enable_Survey_Overlay_vod__c,Description_vod__c,Keywords_vod__c,Content_Channel_vod__c,original_material_approved_in_veritas__c,keywords__c,trade_team__c,ewizard_link__c,business_function__c
|
Id,OwnerId,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Mobile_ID_vod__c,Presentation_Id_vod__c,Product_vod__c,Default_Presentation_vod__c,Training_vod__c,ParentId_vod__c,Hidden_vod__c,Type_vod__c,Approved_vod__c,Copied_From_vod__c,Copy_Date_vod__c,Survey_vod__c,Original_Record_ID_vod__c,Directory_vod__c,End_Date_vod__c,Start_Date_vod__c,Status_vod__c,VExternal_Id_vod__c,Vault_DNS_vod__c,Vault_Doc_Id_vod__c,Vault_External_Id_vod__c,Vault_GUID_vod__c,Vault_Last_Modified_Date_Time_vod__c,Version_vod__c,Enable_Survey_Overlay_vod__c,Description_vod__c,Keywords_vod__c,Content_Channel_vod__c,business_function__c,ewizard_link__c,keywords__c,original_material_approved_in_veritas__c,trade_team__c
|
||||||
src02.crm_Clm_Presentation_vod__c
|
src02.crm_Clm_Presentation_vod__c
|
||||||
org02.crm_Clm_Presentation_vod__c
|
org02.crm_Clm_Presentation_vod__c
|
||||||
|
|
||||||
|
|||||||
@ -5,8 +5,8 @@ utf-8
|
|||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
144
|
144
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Mobile_ID_vod__c,Manager_vod__c,Employee_vod__c,Review_Date__c,Review_Period__c,Status__c,Comments__c,Strategic_Planning__c,Customer_Focus__c,Knowledge_Expertise__c,Business_Account_Planning__c,Call_Productivity__c,Overall_Rating__c,MSJ_A01__c,MSJ_A02__c,MSJ_A03__c,MSJ_AM_Memo__c,MSJ_Aid_Total__c,MSJ_C0_GC__c,MSJ_C1_GC__c,MSJ_C2_GC__c,MSJ_Countermeasure__c,MSJ_Deadline__c,MSJ_Double_Visit_Time__c,MSJ_Hospital__c,MSJ_K01_FE__c,MSJ_K01_ONC__c,MSJ_K02_FE__c,MSJ_K02_ONC__c,MSJ_K03_FE__c,MSJ_K03_ONC__c,MSJ_K04_FE__c,MSJ_K04_ONC__c,MSJ_K05_FE__c,MSJ_K05_ONC__c,MSJ_K06_FE__c,MSJ_K06_ONC__c,MSJ_K0_GC__c,MSJ_K1_GC__c,MSJ_K2_GC__c,MSJ_Knowledge_Total__c,MSJ_L0_GC__c,MSJ_L1_GC__c,MSJ_L2_GC__c,MSJ_MR_GC__c,MSJ_MR_Problems__c,MSJ_N0_GC__c,MSJ_N1_GC__c,MSJ_N2_GC__c,MSJ_Num_of_DTL__c,MSJ_P01__c,MSJ_P02__c,MSJ_P03__c,MSJ_P04__c,MSJ_P05__c,MSJ_P0_GC__c,MSJ_P1_GC__c,MSJ_P2_GC__c,MSJ_PlanningTotal__c,MSJ_R0_GC__c,MSJ_R1_GC__c,MSJ_R2_GC__c,MSJ_S01__c,MSJ_S02__c,MSJ_S03__c,MSJ_S04__c,MSJ_S05__c,MSJ_S06__c,MSJ_S07__c,MSJ_S08__c,MSJ_S09__c,MSJ_S10__c,MSJ_S11__c,MSJ_S12__c,MSJ_Skill_Total__c,MSJ_After_Call_01__c,MSJ_After_Call_02__c,MSJ_After_Call_03__c,MSJ_After_Call_04__c,MSJ_Closing__c,MSJ_Comment_by_MR__c,MSJ_Confirmed_by_MR__c,MSJ_Createdby__c,MSJ_FT_AM_Name__c,MSJ_Interview_Preparation__c,MSJ_Interview_Reflection__c,MSJ_Notify_To_MR__c,MSJ_Opening__c,MSJ_Others_01_Result__c,MSJ_Others_01__c,MSJ_Others_02_Result__c,MSJ_Others_02__c,MSJ_Patient_Thinking__c,MSJ_Probing__c,MSJ_Supporting__c,MSJ_Patient_Thinking_for_FE__c,MSJ_After_Call_05__c,MSJ_After_Call_06__c,MSJ_After_Call_07__c,MSJ_After_Call_08__c,MSJ_Createdby_FE__c,MSJ_Createdby_ONC__c,MSJ_Development_Level__c,MSJ_Interview_Prep_01__c,MSJ_Interview_Prep_02__c,MSJ_Leadership_Style__c,MSJ_Overcome_01__c,MSJ_Overcome_02__c,MSJ_Overcome_03__c,MSJ_Overcome_04__c,MSJ_Review_01__c,MSJ_Review_02__c,MSJ_SK_01__c,MSJ_SK_02__c,MSJ_SK_03__c,MSJ_SK_04__c,MSJ_SK_05__c,MSJ_SK_06__c,MSJ_SK_07__c,MSJ_SK_08__c,MSJ_SK_09__c,MSJ_SK_10__c,MSJ_Specific_Action__c,MSJ_Training_Point__c,MSJ_Efforts_of_Year__c,MSJ_Efforts_of_Month__c,MSJ_Skill_Task__c,MSJ_Action_of_This_Month__c,MSJ_Achievement_of_This_Month__c,MSJ_Comment_from_AM__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Mobile_ID_vod__c,Manager_vod__c,Employee_vod__c,Review_Date__c,Review_Period__c,Status__c,Comments__c,Strategic_Planning__c,Customer_Focus__c,Knowledge_Expertise__c,Business_Account_Planning__c,Call_Productivity__c,Overall_Rating__c,MSJ_A01__c,MSJ_A02__c,MSJ_A03__c,MSJ_AM_Memo__c,MSJ_Aid_Total__c,MSJ_C0_GC__c,MSJ_C1_GC__c,MSJ_C2_GC__c,MSJ_Countermeasure__c,MSJ_Deadline__c,MSJ_Double_Visit_Time__c,MSJ_Hospital__c,MSJ_K01_FE__c,MSJ_K01_ONC__c,MSJ_K02_FE__c,MSJ_K02_ONC__c,MSJ_K03_FE__c,MSJ_K03_ONC__c,MSJ_K04_FE__c,MSJ_K04_ONC__c,MSJ_K05_FE__c,MSJ_K05_ONC__c,MSJ_K06_FE__c,MSJ_K06_ONC__c,MSJ_K0_GC__c,MSJ_K1_GC__c,MSJ_K2_GC__c,MSJ_Knowledge_Total__c,MSJ_L0_GC__c,MSJ_L1_GC__c,MSJ_L2_GC__c,MSJ_MR_GC__c,MSJ_MR_Problems__c,MSJ_N0_GC__c,MSJ_N1_GC__c,MSJ_N2_GC__c,MSJ_Num_of_DTL__c,MSJ_P01__c,MSJ_P02__c,MSJ_P03__c,MSJ_P04__c,MSJ_P05__c,MSJ_P0_GC__c,MSJ_P1_GC__c,MSJ_P2_GC__c,MSJ_PlanningTotal__c,MSJ_R0_GC__c,MSJ_R1_GC__c,MSJ_R2_GC__c,MSJ_S01__c,MSJ_S02__c,MSJ_S03__c,MSJ_S04__c,MSJ_S05__c,MSJ_S06__c,MSJ_S07__c,MSJ_S08__c,MSJ_S09__c,MSJ_S10__c,MSJ_S11__c,MSJ_S12__c,MSJ_Skill_Total__c,MSJ_After_Call_01__c,MSJ_After_Call_02__c,MSJ_After_Call_03__c,MSJ_After_Call_04__c,MSJ_Closing__c,MSJ_Comment_by_MR__c,MSJ_Confirmed_by_MR__c,MSJ_Createdby__c,MSJ_FT_AM_Name__c,MSJ_Interview_Preparation__c,MSJ_Interview_Reflection__c,MSJ_Notify_To_MR__c,MSJ_Opening__c,MSJ_Others_01_Result__c,MSJ_Others_01__c,MSJ_Others_02_Result__c,MSJ_Others_02__c,MSJ_Patient_Thinking__c,MSJ_Probing__c,MSJ_Supporting__c,MSJ_Patient_Thinking_for_FE__c,MSJ_After_Call_05__c,MSJ_After_Call_06__c,MSJ_After_Call_07__c,MSJ_After_Call_08__c,MSJ_Createdby_FE__c,MSJ_Createdby_ONC__c,MSJ_Development_Level__c,MSJ_Interview_Prep_01__c,MSJ_Interview_Prep_02__c,MSJ_Leadership_Style__c,MSJ_Overcome_01__c,MSJ_Overcome_02__c,MSJ_Overcome_03__c,MSJ_Overcome_04__c,MSJ_Review_01__c,MSJ_Review_02__c,MSJ_SK_01__c,MSJ_SK_02__c,MSJ_SK_03__c,MSJ_SK_04__c,MSJ_SK_05__c,MSJ_SK_06__c,MSJ_SK_07__c,MSJ_SK_08__c,MSJ_SK_09__c,MSJ_SK_10__c,MSJ_Specific_Action__c,MSJ_Training_Point__c,MSJ_Achievement_of_This_Month__c,MSJ_Action_of_This_Month__c,MSJ_Comment_from_AM__c,MSJ_Efforts_of_Month__c,MSJ_Efforts_of_Year__c,MSJ_Skill_Task__c
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Mobile_ID_vod__c,Manager_vod__c,Employee_vod__c,Review_Date__c,Review_Period__c,Status__c,Comments__c,Strategic_Planning__c,Customer_Focus__c,Knowledge_Expertise__c,Business_Account_Planning__c,Call_Productivity__c,Overall_Rating__c,MSJ_A01__c,MSJ_A02__c,MSJ_A03__c,MSJ_AM_Memo__c,MSJ_Aid_Total__c,MSJ_C0_GC__c,MSJ_C1_GC__c,MSJ_C2_GC__c,MSJ_Countermeasure__c,MSJ_Deadline__c,MSJ_Double_Visit_Time__c,MSJ_Hospital__c,MSJ_K01_FE__c,MSJ_K01_ONC__c,MSJ_K02_FE__c,MSJ_K02_ONC__c,MSJ_K03_FE__c,MSJ_K03_ONC__c,MSJ_K04_FE__c,MSJ_K04_ONC__c,MSJ_K05_FE__c,MSJ_K05_ONC__c,MSJ_K06_FE__c,MSJ_K06_ONC__c,MSJ_K0_GC__c,MSJ_K1_GC__c,MSJ_K2_GC__c,MSJ_Knowledge_Total__c,MSJ_L0_GC__c,MSJ_L1_GC__c,MSJ_L2_GC__c,MSJ_MR_GC__c,MSJ_MR_Problems__c,MSJ_N0_GC__c,MSJ_N1_GC__c,MSJ_N2_GC__c,MSJ_Num_of_DTL__c,MSJ_P01__c,MSJ_P02__c,MSJ_P03__c,MSJ_P04__c,MSJ_P05__c,MSJ_P0_GC__c,MSJ_P1_GC__c,MSJ_P2_GC__c,MSJ_PlanningTotal__c,MSJ_R0_GC__c,MSJ_R1_GC__c,MSJ_R2_GC__c,MSJ_S01__c,MSJ_S02__c,MSJ_S03__c,MSJ_S04__c,MSJ_S05__c,MSJ_S06__c,MSJ_S07__c,MSJ_S08__c,MSJ_S09__c,MSJ_S10__c,MSJ_S11__c,MSJ_S12__c,MSJ_Skill_Total__c,MSJ_After_Call_01__c,MSJ_After_Call_02__c,MSJ_After_Call_03__c,MSJ_After_Call_04__c,MSJ_Closing__c,MSJ_Comment_by_MR__c,MSJ_Confirmed_by_MR__c,MSJ_Createdby__c,MSJ_FT_AM_Name__c,MSJ_Interview_Preparation__c,MSJ_Interview_Reflection__c,MSJ_Notify_To_MR__c,MSJ_Opening__c,MSJ_Others_01_Result__c,MSJ_Others_01__c,MSJ_Others_02_Result__c,MSJ_Others_02__c,MSJ_Patient_Thinking__c,MSJ_Probing__c,MSJ_Supporting__c,MSJ_Patient_Thinking_for_FE__c,MSJ_After_Call_05__c,MSJ_After_Call_06__c,MSJ_After_Call_07__c,MSJ_After_Call_08__c,MSJ_Createdby_FE__c,MSJ_Createdby_ONC__c,MSJ_Development_Level__c,MSJ_Interview_Prep_01__c,MSJ_Interview_Prep_02__c,MSJ_Leadership_Style__c,MSJ_Overcome_01__c,MSJ_Overcome_02__c,MSJ_Overcome_03__c,MSJ_Overcome_04__c,MSJ_Review_01__c,MSJ_Review_02__c,MSJ_SK_01__c,MSJ_SK_02__c,MSJ_SK_03__c,MSJ_SK_04__c,MSJ_SK_05__c,MSJ_SK_06__c,MSJ_SK_07__c,MSJ_SK_08__c,MSJ_SK_09__c,MSJ_SK_10__c,MSJ_Specific_Action__c,MSJ_Training_Point__c,MSJ_Efforts_of_Year__c,MSJ_Efforts_of_Month__c,MSJ_Skill_Task__c,MSJ_Action_of_This_Month__c,MSJ_Achievement_of_This_Month__c,MSJ_Comment_from_AM__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Mobile_ID_vod__c,Manager_vod__c,Employee_vod__c,Review_Date__c,Review_Period__c,Status__c,Comments__c,Strategic_Planning__c,Customer_Focus__c,Knowledge_Expertise__c,Business_Account_Planning__c,Call_Productivity__c,Overall_Rating__c,MSJ_A01__c,MSJ_A02__c,MSJ_A03__c,MSJ_AM_Memo__c,MSJ_Aid_Total__c,MSJ_C0_GC__c,MSJ_C1_GC__c,MSJ_C2_GC__c,MSJ_Countermeasure__c,MSJ_Deadline__c,MSJ_Double_Visit_Time__c,MSJ_Hospital__c,MSJ_K01_FE__c,MSJ_K01_ONC__c,MSJ_K02_FE__c,MSJ_K02_ONC__c,MSJ_K03_FE__c,MSJ_K03_ONC__c,MSJ_K04_FE__c,MSJ_K04_ONC__c,MSJ_K05_FE__c,MSJ_K05_ONC__c,MSJ_K06_FE__c,MSJ_K06_ONC__c,MSJ_K0_GC__c,MSJ_K1_GC__c,MSJ_K2_GC__c,MSJ_Knowledge_Total__c,MSJ_L0_GC__c,MSJ_L1_GC__c,MSJ_L2_GC__c,MSJ_MR_GC__c,MSJ_MR_Problems__c,MSJ_N0_GC__c,MSJ_N1_GC__c,MSJ_N2_GC__c,MSJ_Num_of_DTL__c,MSJ_P01__c,MSJ_P02__c,MSJ_P03__c,MSJ_P04__c,MSJ_P05__c,MSJ_P0_GC__c,MSJ_P1_GC__c,MSJ_P2_GC__c,MSJ_PlanningTotal__c,MSJ_R0_GC__c,MSJ_R1_GC__c,MSJ_R2_GC__c,MSJ_S01__c,MSJ_S02__c,MSJ_S03__c,MSJ_S04__c,MSJ_S05__c,MSJ_S06__c,MSJ_S07__c,MSJ_S08__c,MSJ_S09__c,MSJ_S10__c,MSJ_S11__c,MSJ_S12__c,MSJ_Skill_Total__c,MSJ_After_Call_01__c,MSJ_After_Call_02__c,MSJ_After_Call_03__c,MSJ_After_Call_04__c,MSJ_Closing__c,MSJ_Comment_by_MR__c,MSJ_Confirmed_by_MR__c,MSJ_Createdby__c,MSJ_FT_AM_Name__c,MSJ_Interview_Preparation__c,MSJ_Interview_Reflection__c,MSJ_Notify_To_MR__c,MSJ_Opening__c,MSJ_Others_01_Result__c,MSJ_Others_01__c,MSJ_Others_02_Result__c,MSJ_Others_02__c,MSJ_Patient_Thinking__c,MSJ_Probing__c,MSJ_Supporting__c,MSJ_Patient_Thinking_for_FE__c,MSJ_After_Call_05__c,MSJ_After_Call_06__c,MSJ_After_Call_07__c,MSJ_After_Call_08__c,MSJ_Createdby_FE__c,MSJ_Createdby_ONC__c,MSJ_Development_Level__c,MSJ_Interview_Prep_01__c,MSJ_Interview_Prep_02__c,MSJ_Leadership_Style__c,MSJ_Overcome_01__c,MSJ_Overcome_02__c,MSJ_Overcome_03__c,MSJ_Overcome_04__c,MSJ_Review_01__c,MSJ_Review_02__c,MSJ_SK_01__c,MSJ_SK_02__c,MSJ_SK_03__c,MSJ_SK_04__c,MSJ_SK_05__c,MSJ_SK_06__c,MSJ_SK_07__c,MSJ_SK_08__c,MSJ_SK_09__c,MSJ_SK_10__c,MSJ_Specific_Action__c,MSJ_Training_Point__c,MSJ_Achievement_of_This_Month__c,MSJ_Action_of_This_Month__c,MSJ_Comment_from_AM__c,MSJ_Efforts_of_Month__c,MSJ_Efforts_of_Year__c,MSJ_Skill_Task__c
|
||||||
src02c.crm_Coaching_Report_vod__c
|
src02c.crm_Coaching_Report_vod__c
|
||||||
org02.crm_Coaching_Report_vod__c
|
org02.crm_Coaching_Report_vod__c
|
||||||
|
|
||||||
|
|||||||
@ -4,9 +4,9 @@ utf-8
|
|||||||
"
|
"
|
||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
26
|
27
|
||||||
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Consent_Header_vod__c,Channel_Label_vod__c,Channel_Source_vod__c,Consent_Expires_In_vod__c,Default_Consent_Type_vod__c,Disclaimer_Text_vod__c,Display_Order_vod__c,Product_Preference_vod__c,zvod_Consent_Default_Consent_Text_vod__c,zvod_Consent_Line_vod__c,zvod_Signature_Capture_vod__c,Double_Opt_In_vod__c,zvod_Consent_Activity_Tracking_vod__c
|
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Consent_Header_vod__c,Channel_Label_vod__c,Channel_Source_vod__c,Consent_Expires_In_vod__c,Default_Consent_Type_vod__c,Disclaimer_Text_vod__c,Display_Order_vod__c,Product_Preference_vod__c,zvod_Consent_Default_Consent_Text_vod__c,zvod_Consent_Line_vod__c,zvod_Signature_Capture_vod__c,Double_Opt_In_vod__c,zvod_Consent_Activity_Tracking_vod__c,MSJ_Channel_Type__c
|
||||||
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Consent_Header_vod__c,Channel_Label_vod__c,Channel_Source_vod__c,Consent_Expires_In_vod__c,Default_Consent_Type_vod__c,Disclaimer_Text_vod__c,Display_Order_vod__c,Product_Preference_vod__c,zvod_Consent_Default_Consent_Text_vod__c,zvod_Consent_Line_vod__c,zvod_Signature_Capture_vod__c,Double_Opt_In_vod__c,zvod_Consent_Activity_Tracking_vod__c
|
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Consent_Header_vod__c,Channel_Label_vod__c,Channel_Source_vod__c,Consent_Expires_In_vod__c,Default_Consent_Type_vod__c,Disclaimer_Text_vod__c,Display_Order_vod__c,Product_Preference_vod__c,zvod_Consent_Default_Consent_Text_vod__c,zvod_Consent_Line_vod__c,zvod_Signature_Capture_vod__c,Double_Opt_In_vod__c,zvod_Consent_Activity_Tracking_vod__c,MSJ_Channel_Type__c
|
||||||
src02.crm_Consent_Type_vod__c
|
src02.crm_Consent_Type_vod__c
|
||||||
org02.crm_Consent_Type_vod__c
|
org02.crm_Consent_Type_vod__c
|
||||||
|
|
||||||
|
|||||||
13
s3/data/crm/settings/CRM_Directory_vod__c.txt
Normal file
13
s3/data/crm/settings/CRM_Directory_vod__c.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
CRM
|
||||||
|
,
|
||||||
|
utf-8
|
||||||
|
"
|
||||||
|
CRLF
|
||||||
|
1
|
||||||
|
18
|
||||||
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Display_Order_vod__c,External_ID_vod__c,Level_vod__c,Parent_Directory_vod__c
|
||||||
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Display_Order_vod__c,External_ID_vod__c,Level_vod__c,Parent_Directory_vod__c
|
||||||
|
src02.crm_Directory_vod__c
|
||||||
|
org02.crm_Directory_vod__c
|
||||||
|
|
||||||
|
|
||||||
@ -5,8 +5,8 @@ utf-8
|
|||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
59
|
59
|
||||||
Id,RecordTypeId,WhoId,WhatId,Subject,Location,IsAllDayEvent,ActivityDateTime,ActivityDate,DurationInMinutes,StartDateTime,EndDateTime,EndDate,Description,AccountId,OwnerId,IsPrivate,ShowAs,IsDeleted,IsChild,IsGroupEvent,GroupEventType,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,IsArchived,RecurrenceActivityId,IsRecurrence,RecurrenceStartDateTime,RecurrenceEndDateOnly,RecurrenceTimeZoneSidKey,RecurrenceType,RecurrenceInterval,RecurrenceDayOfWeekMask,RecurrenceDayOfMonth,RecurrenceInstance,RecurrenceMonthOfYear,ReminderDateTime,IsReminderSet,EventSubtype,IsRecurrence2Exclusion,Recurrence2PatternText,Recurrence2PatternVersion,IsRecurrence2,IsRecurrence2Exception,Recurrence2PatternStartDate,Recurrence2PatternTimeZone,Override_Lock_vod__c,Mobile_ID_vod__c,Color_vod__c,Event_Canceled_vod__c,Followup_Activity_Type_vod__c,MSJ_Data_ID__c,MSJ_Reason_ID__c,MSJ_Task_External_Id__c,MSJ_Task_Source__c,MSJ_Visit_Type__c
|
Id,RecordTypeId,WhoId,WhatId,Subject,Location,IsAllDayEvent,ActivityDateTime,ActivityDate,DurationInMinutes,StartDateTime,EndDateTime,EndDate,Description,AccountId,OwnerId,IsPrivate,ShowAs,IsDeleted,IsChild,IsGroupEvent,GroupEventType,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,IsArchived,RecurrenceActivityId,IsRecurrence,RecurrenceStartDateTime,RecurrenceEndDateOnly,RecurrenceTimeZoneSidKey,RecurrenceType,RecurrenceInterval,RecurrenceDayOfWeekMask,RecurrenceDayOfMonth,RecurrenceInstance,RecurrenceMonthOfYear,ReminderDateTime,IsReminderSet,EventSubtype,IsRecurrence2Exclusion,Recurrence2PatternText,Recurrence2PatternVersion,IsRecurrence2,IsRecurrence2Exception,Recurrence2PatternStartDate,Recurrence2PatternTimeZone,Override_Lock_vod__c,Mobile_ID_vod__c,Color_vod__c,Event_Canceled_vod__c,MSJ_Data_ID__c,MSJ_Reason_ID__c,MSJ_Task_External_Id__c,MSJ_Task_Source__c,Followup_Activity_Type_vod__c,MSJ_Visit_Type__c
|
||||||
Id,RecordTypeId,WhoId,WhatId,Subject,Location,IsAllDayEvent,ActivityDateTime,ActivityDate,DurationInMinutes,StartDateTime,EndDateTime,EndDate,Description,AccountId,OwnerId,IsPrivate,ShowAs,IsDeleted,IsChild,IsGroupEvent,GroupEventType,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,IsArchived,RecurrenceActivityId,IsRecurrence,RecurrenceStartDateTime,RecurrenceEndDateOnly,RecurrenceTimeZoneSidKey,RecurrenceType,RecurrenceInterval,RecurrenceDayOfWeekMask,RecurrenceDayOfMonth,RecurrenceInstance,RecurrenceMonthOfYear,ReminderDateTime,IsReminderSet,EventSubtype,IsRecurrence2Exclusion,Recurrence2PatternText,Recurrence2PatternVersion,IsRecurrence2,IsRecurrence2Exception,Recurrence2PatternStartDate,Recurrence2PatternTimeZone,Override_Lock_vod__c,Mobile_ID_vod__c,Color_vod__c,Event_Canceled_vod__c,Followup_Activity_Type_vod__c,MSJ_Data_ID__c,MSJ_Reason_ID__c,MSJ_Task_External_Id__c,MSJ_Task_Source__c,MSJ_Visit_Type__c
|
Id,RecordTypeId,WhoId,WhatId,Subject,Location,IsAllDayEvent,ActivityDateTime,ActivityDate,DurationInMinutes,StartDateTime,EndDateTime,EndDate,Description,AccountId,OwnerId,IsPrivate,ShowAs,IsDeleted,IsChild,IsGroupEvent,GroupEventType,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,IsArchived,RecurrenceActivityId,IsRecurrence,RecurrenceStartDateTime,RecurrenceEndDateOnly,RecurrenceTimeZoneSidKey,RecurrenceType,RecurrenceInterval,RecurrenceDayOfWeekMask,RecurrenceDayOfMonth,RecurrenceInstance,RecurrenceMonthOfYear,ReminderDateTime,IsReminderSet,EventSubtype,IsRecurrence2Exclusion,Recurrence2PatternText,Recurrence2PatternVersion,IsRecurrence2,IsRecurrence2Exception,Recurrence2PatternStartDate,Recurrence2PatternTimeZone,Override_Lock_vod__c,Mobile_ID_vod__c,Color_vod__c,Event_Canceled_vod__c,MSJ_Data_ID__c,MSJ_Reason_ID__c,MSJ_Task_External_Id__c,MSJ_Task_Source__c,Followup_Activity_Type_vod__c,MSJ_Visit_Type__c
|
||||||
src02c.crm_Event
|
src02c.crm_Event
|
||||||
org02.crm_Event
|
org02.crm_Event
|
||||||
|
|
||||||
|
|||||||
@ -4,9 +4,9 @@ utf-8
|
|||||||
"
|
"
|
||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
32
|
36
|
||||||
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,Attendee_vod__c,User_vod__c,Medical_Event_vod__c,Attendee_Type_vod__c,Status_vod__c,Contact_vod__c,Attendee_Name_vod__c,Account_vod__c,Start_Date_vod__c,Signature_vod__c,Signature_Datetime_vod__c,MSJ_Copy_Account_Type__c,MSJ_Evaluation__c,MSJ_Hospital__c,MSJ_Role__c,Mobile_ID_vod__c,MSJ_Evaluation_Comment__c,Position_vod__c,Talk_Title_vod__c,MSJ_Attendee_Reaction__c,MSJ_Registration__c
|
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,Attendee_vod__c,User_vod__c,Medical_Event_vod__c,Attendee_Type_vod__c,Status_vod__c,Contact_vod__c,Attendee_Name_vod__c,Account_vod__c,Start_Date_vod__c,Signature_vod__c,Signature_Datetime_vod__c,MSJ_Copy_Account_Type__c,MSJ_Evaluation__c,MSJ_Hospital__c,MSJ_Role__c,Mobile_ID_vod__c,MSJ_Evaluation_Comment__c,Position_vod__c,Talk_Title_vod__c,MSJ_Attendee_Reaction__c,MSJ_Registration__c,MSJ_DirectMail_Status__c,EM_Event_Team_Member_vod__c,Group_Name_vod__c,Role_vod__c
|
||||||
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,Attendee_vod__c,User_vod__c,Medical_Event_vod__c,Attendee_Type_vod__c,Status_vod__c,Contact_vod__c,Attendee_Name_vod__c,Account_vod__c,Start_Date_vod__c,Signature_vod__c,Signature_Datetime_vod__c,MSJ_Copy_Account_Type__c,MSJ_Evaluation__c,MSJ_Hospital__c,MSJ_Role__c,Mobile_ID_vod__c,MSJ_Evaluation_Comment__c,Position_vod__c,Talk_Title_vod__c,MSJ_Attendee_Reaction__c,MSJ_Registration__c
|
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,Attendee_vod__c,User_vod__c,Medical_Event_vod__c,Attendee_Type_vod__c,Status_vod__c,Contact_vod__c,Attendee_Name_vod__c,Account_vod__c,Start_Date_vod__c,Signature_vod__c,Signature_Datetime_vod__c,MSJ_Copy_Account_Type__c,MSJ_Evaluation__c,MSJ_Hospital__c,MSJ_Role__c,Mobile_ID_vod__c,MSJ_Evaluation_Comment__c,Position_vod__c,Talk_Title_vod__c,MSJ_Attendee_Reaction__c,MSJ_Registration__c,MSJ_DirectMail_Status__c,EM_Event_Team_Member_vod__c,Group_Name_vod__c,Role_vod__c
|
||||||
src02c.crm_Event_Attendee_vod__c
|
src02c.crm_Event_Attendee_vod__c
|
||||||
org02.crm_Event_Attendee_vod__c
|
org02.crm_Event_Attendee_vod__c
|
||||||
|
|
||||||
|
|||||||
@ -4,9 +4,9 @@ utf-8
|
|||||||
"
|
"
|
||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
47
|
52
|
||||||
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,MSJ_Medical_Inquiry__c,MSJ_Close__c,MSJ_Doctor_Name__c,MSJ_Hospital_Name__c,MSJ_Indication__c,MSJ_Inquiry_Text__c,MSJ_MEC_User__c,MSJ_MSL_Manager__c,MSJ_MSL_User__c,MSJ_Notice_to_MR__c,MSJ_Product_for_MEC__c,MSJ_Product_for_MR__c,MSJ_Reply_Date__c,MSJ_Reply__c,MSJ_AE_Infomation__c,MSJ_Cancel__c,MSJ_FAQ_number_c__c,MSJ_Return_Call__c,MSJ_Inquiry_Origin__c,First_Response__c,Inquiry_Created_Date__c,Inquiry_Type_1__c,Inquiry_Type_2__c,MSJ_First_User__c,MSJ_MEC_Comment__c,MSJ_Send_Email__c,MSJ_Temp_Aggregated_Info__c,MSJ_AE_Report__c,MSJ_Background__c,MSJ_Inquiry_Date__c,MSJ_MSL_Support__c,MSJ_Handover_Comment__c,MSJ_Handover_Email__c,MSJ_Material_Requirement__c
|
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,MSJ_Medical_Inquiry__c,MSJ_Close__c,MSJ_Doctor_Name__c,MSJ_Hospital_Name__c,MSJ_Indication__c,MSJ_Inquiry_Text__c,MSJ_MEC_User__c,MSJ_MSL_Manager__c,MSJ_MSL_User__c,MSJ_Notice_to_MR__c,MSJ_Product_for_MEC__c,MSJ_Product_for_MR__c,MSJ_Reply_Date__c,MSJ_Reply__c,MSJ_AE_Infomation__c,MSJ_Cancel__c,MSJ_FAQ_number_c__c,MSJ_Return_Call__c,MSJ_Inquiry_Origin__c,First_Response__c,Inquiry_Created_Date__c,Inquiry_Type_1__c,Inquiry_Type_2__c,MSJ_First_User__c,MSJ_MEC_Comment__c,MSJ_Send_Email__c,MSJ_Temp_Aggregated_Info__c,MSJ_AE_Report__c,MSJ_Background__c,MSJ_Inquiry_Date__c,MSJ_MSL_Support__c,MSJ_Handover_Comment__c,MSJ_Handover_Email__c,MSJ_Material_Requirement__c,MSJ_Material_Used__c,MSJ_File_Attached__c,MSJ_Off_Label__c,MSJ_Include_Quality_Complaint__c,MSJ_PSC__c
|
||||||
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,MSJ_Medical_Inquiry__c,MSJ_Close__c,MSJ_Doctor_Name__c,MSJ_Hospital_Name__c,MSJ_Indication__c,MSJ_Inquiry_Text__c,MSJ_MEC_User__c,MSJ_MSL_Manager__c,MSJ_MSL_User__c,MSJ_Notice_to_MR__c,MSJ_Product_for_MEC__c,MSJ_Product_for_MR__c,MSJ_Reply_Date__c,MSJ_Reply__c,MSJ_AE_Infomation__c,MSJ_Cancel__c,MSJ_FAQ_number_c__c,MSJ_Return_Call__c,MSJ_Inquiry_Origin__c,First_Response__c,Inquiry_Created_Date__c,Inquiry_Type_1__c,Inquiry_Type_2__c,MSJ_First_User__c,MSJ_MEC_Comment__c,MSJ_Send_Email__c,MSJ_Temp_Aggregated_Info__c,MSJ_AE_Report__c,MSJ_Background__c,MSJ_Inquiry_Date__c,MSJ_MSL_Support__c,MSJ_Handover_Comment__c,MSJ_Handover_Email__c,MSJ_Material_Requirement__c
|
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,MSJ_Medical_Inquiry__c,MSJ_Close__c,MSJ_Doctor_Name__c,MSJ_Hospital_Name__c,MSJ_Indication__c,MSJ_Inquiry_Text__c,MSJ_MEC_User__c,MSJ_MSL_Manager__c,MSJ_MSL_User__c,MSJ_Notice_to_MR__c,MSJ_Product_for_MEC__c,MSJ_Product_for_MR__c,MSJ_Reply_Date__c,MSJ_Reply__c,MSJ_AE_Infomation__c,MSJ_Cancel__c,MSJ_FAQ_number_c__c,MSJ_Return_Call__c,MSJ_Inquiry_Origin__c,First_Response__c,Inquiry_Created_Date__c,Inquiry_Type_1__c,Inquiry_Type_2__c,MSJ_First_User__c,MSJ_MEC_Comment__c,MSJ_Send_Email__c,MSJ_Temp_Aggregated_Info__c,MSJ_AE_Report__c,MSJ_Background__c,MSJ_Inquiry_Date__c,MSJ_MSL_Support__c,MSJ_Handover_Comment__c,MSJ_Handover_Email__c,MSJ_Material_Requirement__c,MSJ_Material_Used__c,MSJ_File_Attached__c,MSJ_Off_Label__c,MSJ_Include_Quality_Complaint__c,MSJ_PSC__c
|
||||||
src02m.crm_MSJ_Inquiry_Assignment__c
|
src02m.crm_MSJ_Inquiry_Assignment__c
|
||||||
org02.crm_MSJ_Inquiry_Assignment__c
|
org02.crm_MSJ_Inquiry_Assignment__c
|
||||||
|
|
||||||
|
|||||||
@ -4,9 +4,9 @@ utf-8
|
|||||||
"
|
"
|
||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
35
|
41
|
||||||
Id,OwnerId,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,MSJ_Account_Name__c,MSJ_Activity_Results_Summary__c,MSJ_MUID__c,MSJ_Next_Week_Action_What__c,MSJ_Next_Week_Action_When__c,MSJ_Next_Week_Action_Where__c,MSJ_Next_Week_Action_Who__c,MSJ_Report_Week__c,MSJ_Target_Patient_Count__c,Mobile_ID_vod__c,MSJ_Activity_Results_Summary_HN__c,MSJ_Next_Week_Action_Where_HN__c,MSJ_Next_Week_Action_Who_HN__c,MSJ_Next_Week_Action_What_HN__c,MSJ_Next_Week_Action_When_HN__c,MSJ_Target_Patient_Count_HN__c,MSJ_Activity_Results_Summary_MCC__c,MSJ_Next_Week_Action_Where_MCC__c,MSJ_Next_Week_Action_Who_MCC__c,MSJ_Next_Week_Action_What_MCC__c,MSJ_Next_Week_Action_When_MCC__c,MSJ_Target_Patient_Count_MCC__c
|
Id,OwnerId,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,MSJ_Account_Name__c,MSJ_Activity_Results_Summary__c,MSJ_MUID__c,MSJ_Next_Week_Action_What__c,MSJ_Next_Week_Action_When__c,MSJ_Next_Week_Action_Where__c,MSJ_Next_Week_Action_Who__c,MSJ_Report_Week__c,MSJ_Target_Patient_Count__c,Mobile_ID_vod__c,MSJ_Activity_Results_Summary_HN__c,MSJ_Next_Week_Action_Where_HN__c,MSJ_Next_Week_Action_Who_HN__c,MSJ_Next_Week_Action_What_HN__c,MSJ_Next_Week_Action_When_HN__c,MSJ_Target_Patient_Count_HN__c,MSJ_Activity_Results_Summary_MCC__c,MSJ_Next_Week_Action_Where_MCC__c,MSJ_Next_Week_Action_Who_MCC__c,MSJ_Next_Week_Action_What_MCC__c,MSJ_Next_Week_Action_When_MCC__c,MSJ_Target_Patient_Count_MCC__c,MSJ_Activity_Results_Summary_LC__c,MSJ_Next_Week_Action_Where_LC__c,MSJ_Next_Week_Action_Who_LC__c,MSJ_Next_Week_Action_What_LC__c,MSJ_Next_Week_Action_When_LC__c,MSJ_Target_Patient_Count_LC__c
|
||||||
Id,OwnerId,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,MSJ_Account_Name__c,MSJ_Activity_Results_Summary__c,MSJ_MUID__c,MSJ_Next_Week_Action_What__c,MSJ_Next_Week_Action_When__c,MSJ_Next_Week_Action_Where__c,MSJ_Next_Week_Action_Who__c,MSJ_Report_Week__c,MSJ_Target_Patient_Count__c,Mobile_ID_vod__c,MSJ_Activity_Results_Summary_HN__c,MSJ_Next_Week_Action_Where_HN__c,MSJ_Next_Week_Action_Who_HN__c,MSJ_Next_Week_Action_What_HN__c,MSJ_Next_Week_Action_When_HN__c,MSJ_Target_Patient_Count_HN__c,MSJ_Activity_Results_Summary_MCC__c,MSJ_Next_Week_Action_Where_MCC__c,MSJ_Next_Week_Action_Who_MCC__c,MSJ_Next_Week_Action_What_MCC__c,MSJ_Next_Week_Action_When_MCC__c,MSJ_Target_Patient_Count_MCC__c
|
Id,OwnerId,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,MSJ_Account_Name__c,MSJ_Activity_Results_Summary__c,MSJ_MUID__c,MSJ_Next_Week_Action_What__c,MSJ_Next_Week_Action_When__c,MSJ_Next_Week_Action_Where__c,MSJ_Next_Week_Action_Who__c,MSJ_Report_Week__c,MSJ_Target_Patient_Count__c,Mobile_ID_vod__c,MSJ_Activity_Results_Summary_HN__c,MSJ_Next_Week_Action_Where_HN__c,MSJ_Next_Week_Action_Who_HN__c,MSJ_Next_Week_Action_What_HN__c,MSJ_Next_Week_Action_When_HN__c,MSJ_Target_Patient_Count_HN__c,MSJ_Activity_Results_Summary_MCC__c,MSJ_Next_Week_Action_Where_MCC__c,MSJ_Next_Week_Action_Who_MCC__c,MSJ_Next_Week_Action_What_MCC__c,MSJ_Next_Week_Action_When_MCC__c,MSJ_Target_Patient_Count_MCC__c,MSJ_Activity_Results_Summary_LC__c,MSJ_Next_Week_Action_Where_LC__c,MSJ_Next_Week_Action_Who_LC__c,MSJ_Next_Week_Action_What_LC__c,MSJ_Next_Week_Action_When_LC__c,MSJ_Target_Patient_Count_LC__c
|
||||||
src02c.crm_MSJ_MR_Weekly_Report__c
|
src02c.crm_MSJ_MR_Weekly_Report__c
|
||||||
org02.crm_MSJ_MR_Weekly_Report__c
|
org02.crm_MSJ_MR_Weekly_Report__c
|
||||||
|
|
||||||
|
|||||||
@ -4,9 +4,9 @@ utf-8
|
|||||||
"
|
"
|
||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
67
|
69
|
||||||
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_vod__c,Address_Line_1_vod__c,Address_Line_2_vod__c,City_vod__c,Delivery_Method_vod__c,Email_vod__c,Fax_Number_vod__c,Inquiry_Text__c,Lock_vod__c,Mobile_ID_vod__c,Phone_Number_vod__c,Product__c,Rush_Delivery__c,Signature_Date_vod__c,Signature_vod__c,State_vod__c,Status_vod__c,Zip_vod__c,zvod_Delivery_Method_vod__c,zvod_Disclaimer_vod__c,Submitted_By_Mobile_vod__c,Disclaimer_vod__c,Entity_Reference_Id_vod__c,Call2_vod__c,Country_vod__c,Override_Lock_vod__c,MSJ_Department__c,MSJ_Doctor_Name__c,MSJ_Hospital_Name__c,MSJ_Indication__c,MSJ_Inquiry_Assignment__c,MSJ_Inquiry_Date__c,MSJ_Inquiry_Input_Manager__c,MSJ_Inquiry_Input_User__c,MSJ_MSL_Manager__c,MSJ_Notice_to_MR__c,MSJ_Person_in_charge_1__c,MSJ_Person_in_charge_2__c,MSJ_Product_for_MEC__c,MSJ_Product_for_MR__c,MSJ_Reply_Date__c,MSJ_Reply_User__c,MSJ_Reply__c,MSJ_Title__c,MSJ_AE_Infomation__c,MSJ_FAQ_Number_Report__c,MSJ_Return_Call_Report__c,MSJ_Inquiry_Origin_Report__c,MSJ_AE_Report__c,MSJ_Background__c,MSJ_MSL_Support__c,MSJ_Material_Requirement__c,MSJ_Hospital_Name_Disp__c,MSJ_Hospital__c
|
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_vod__c,Address_Line_1_vod__c,Address_Line_2_vod__c,City_vod__c,Delivery_Method_vod__c,Email_vod__c,Fax_Number_vod__c,Inquiry_Text__c,Lock_vod__c,Mobile_ID_vod__c,Phone_Number_vod__c,Product__c,Rush_Delivery__c,Signature_Date_vod__c,Signature_vod__c,State_vod__c,Status_vod__c,Zip_vod__c,zvod_Delivery_Method_vod__c,zvod_Disclaimer_vod__c,Submitted_By_Mobile_vod__c,Disclaimer_vod__c,Entity_Reference_Id_vod__c,Call2_vod__c,Country_vod__c,Override_Lock_vod__c,MSJ_Department__c,MSJ_Doctor_Name__c,MSJ_Hospital_Name__c,MSJ_Indication__c,MSJ_Inquiry_Assignment__c,MSJ_Inquiry_Date__c,MSJ_Inquiry_Input_Manager__c,MSJ_Inquiry_Input_User__c,MSJ_MSL_Manager__c,MSJ_Notice_to_MR__c,MSJ_Person_in_charge_1__c,MSJ_Person_in_charge_2__c,MSJ_Product_for_MEC__c,MSJ_Product_for_MR__c,MSJ_Reply_Date__c,MSJ_Reply_User__c,MSJ_Reply__c,MSJ_Title__c,MSJ_AE_Infomation__c,MSJ_FAQ_Number_Report__c,MSJ_Return_Call_Report__c,MSJ_Inquiry_Origin_Report__c,MSJ_AE_Report__c,MSJ_Background__c,MSJ_MSL_Support__c,MSJ_Material_Requirement__c,MSJ_Hospital_Name_Disp__c,MSJ_Hospital__c,MSJ_Chatbot_Check__c,MSJ_File_Attached__c
|
||||||
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_vod__c,Address_Line_1_vod__c,Address_Line_2_vod__c,City_vod__c,Delivery_Method_vod__c,Email_vod__c,Fax_Number_vod__c,Inquiry_Text__c,Lock_vod__c,Mobile_ID_vod__c,Phone_Number_vod__c,Product__c,Rush_Delivery__c,Signature_Date_vod__c,Signature_vod__c,State_vod__c,Status_vod__c,Zip_vod__c,zvod_Delivery_Method_vod__c,zvod_Disclaimer_vod__c,Submitted_By_Mobile_vod__c,Disclaimer_vod__c,Entity_Reference_Id_vod__c,Call2_vod__c,Country_vod__c,Override_Lock_vod__c,MSJ_Department__c,MSJ_Doctor_Name__c,MSJ_Hospital_Name__c,MSJ_Indication__c,MSJ_Inquiry_Assignment__c,MSJ_Inquiry_Date__c,MSJ_Inquiry_Input_Manager__c,MSJ_Inquiry_Input_User__c,MSJ_MSL_Manager__c,MSJ_Notice_to_MR__c,MSJ_Person_in_charge_1__c,MSJ_Person_in_charge_2__c,MSJ_Product_for_MEC__c,MSJ_Product_for_MR__c,MSJ_Reply_Date__c,MSJ_Reply_User__c,MSJ_Reply__c,MSJ_Title__c,MSJ_AE_Infomation__c,MSJ_FAQ_Number_Report__c,MSJ_Return_Call_Report__c,MSJ_Inquiry_Origin_Report__c,MSJ_AE_Report__c,MSJ_Background__c,MSJ_MSL_Support__c,MSJ_Material_Requirement__c,MSJ_Hospital_Name_Disp__c,MSJ_Hospital__c
|
Id,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_vod__c,Address_Line_1_vod__c,Address_Line_2_vod__c,City_vod__c,Delivery_Method_vod__c,Email_vod__c,Fax_Number_vod__c,Inquiry_Text__c,Lock_vod__c,Mobile_ID_vod__c,Phone_Number_vod__c,Product__c,Rush_Delivery__c,Signature_Date_vod__c,Signature_vod__c,State_vod__c,Status_vod__c,Zip_vod__c,zvod_Delivery_Method_vod__c,zvod_Disclaimer_vod__c,Submitted_By_Mobile_vod__c,Disclaimer_vod__c,Entity_Reference_Id_vod__c,Call2_vod__c,Country_vod__c,Override_Lock_vod__c,MSJ_Department__c,MSJ_Doctor_Name__c,MSJ_Hospital_Name__c,MSJ_Indication__c,MSJ_Inquiry_Assignment__c,MSJ_Inquiry_Date__c,MSJ_Inquiry_Input_Manager__c,MSJ_Inquiry_Input_User__c,MSJ_MSL_Manager__c,MSJ_Notice_to_MR__c,MSJ_Person_in_charge_1__c,MSJ_Person_in_charge_2__c,MSJ_Product_for_MEC__c,MSJ_Product_for_MR__c,MSJ_Reply_Date__c,MSJ_Reply_User__c,MSJ_Reply__c,MSJ_Title__c,MSJ_AE_Infomation__c,MSJ_FAQ_Number_Report__c,MSJ_Return_Call_Report__c,MSJ_Inquiry_Origin_Report__c,MSJ_AE_Report__c,MSJ_Background__c,MSJ_MSL_Support__c,MSJ_Material_Requirement__c,MSJ_Hospital_Name_Disp__c,MSJ_Hospital__c,MSJ_Chatbot_Check__c,MSJ_File_Attached__c
|
||||||
src02m.crm_Medical_Inquiry_vod__c
|
src02m.crm_Medical_Inquiry_vod__c
|
||||||
org02.crm_Medical_Inquiry_vod__c
|
org02.crm_Medical_Inquiry_vod__c
|
||||||
|
|
||||||
|
|||||||
@ -5,8 +5,8 @@ utf-8
|
|||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
66
|
66
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_vod__c,Clinical_Trial_vod__c,Date_vod__c,Description_vod__c,Entity_Reference_Id_vod__c,Interaction_vod__c,Medical_Event_vod__c,Mobile_ID_vod__c,Other_Source_vod__c,Override_Lock_vod__c,Publication_vod__c,Status_vod__c,Summary_vod__c,Unlock_vod__c,Commercial_Medical__c,MSJ_Level_1A__c,MSJ_Level_1B__c,MSJ_Level_2A__c,MSJ_Level_2B__c,MSJ_Level_3A__c,MSJ_Level_3B__c,MSJ_Level_4A__c,MSJ_Level_4B__c,MSJ_SubStatus__c,MSJ_Type_A__c,MSJ_Type_B__c,MSJ_Description_Backup__c,MSJ_Country__c,MSJ_Received_at_Boomi__c,MSJ_Level_1A_Value__c,MSJ_Level_1B_Value__c,MSJ_Level_2A_Value__c,MSJ_Level_2B_Value__c,MSJ_Level_3A_Value__c,MSJ_Level_3B_Value__c,MSJ_Level_4A_Value__c,MSJ_Level_4B_Value__c,MSJ_Hospital_ID__c,MSJ_Hospital_Name__c,MSJ_Hospital__c,MSJ_Type_of_Insight__c,MSJ_Therapeutic_Area__c,MSJ_Starred_Insight__c,MSJ_Disclaimer__c,MSJ_Not_pharmacovigilance_related__c,MSJ_Approval_Status__c,MSJ_Insight_Owner_Sharing__c,MSJ_Description_J__c,MSJ_Summary_J__c,MSJ_Level_1J__c,MSJ_Level_2J__c,MSJ_HighlightPanel_Display_J__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_vod__c,Clinical_Trial_vod__c,Date_vod__c,Description_vod__c,Entity_Reference_Id_vod__c,Interaction_vod__c,Medical_Event_vod__c,Mobile_ID_vod__c,Other_Source_vod__c,Override_Lock_vod__c,Publication_vod__c,Status_vod__c,Summary_vod__c,Unlock_vod__c,Commercial_Medical__c,MSJ_Level_1A__c,MSJ_Level_1B__c,MSJ_Level_2A__c,MSJ_Level_2B__c,MSJ_Level_3A__c,MSJ_Level_3B__c,MSJ_Level_4A__c,MSJ_Level_4B__c,MSJ_SubStatus__c,MSJ_Type_A__c,MSJ_Type_B__c,MSJ_Description_Backup__c,MSJ_Country__c,MSJ_Received_at_Boomi__c,MSJ_Level_1A_Value__c,MSJ_Level_1B_Value__c,MSJ_Level_2A_Value__c,MSJ_Level_2B_Value__c,MSJ_Level_3A_Value__c,MSJ_Level_3B_Value__c,MSJ_Level_4A_Value__c,MSJ_Level_4B_Value__c,MSJ_Hospital_ID__c,MSJ_Hospital_Name__c,MSJ_Hospital__c,MSJ_Approval_Status__c,MSJ_Description_J__c,MSJ_Disclaimer__c,MSJ_HighlightPanel_Display_J__c,MSJ_Insight_Owner_Sharing__c,MSJ_Level_1J__c,MSJ_Not_pharmacovigilance_related__c,MSJ_Starred_Insight__c,MSJ_Summary_J__c,MSJ_Therapeutic_Area__c,MSJ_Type_of_Insight__c,MSJ_Level_2J__c
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_vod__c,Clinical_Trial_vod__c,Date_vod__c,Description_vod__c,Entity_Reference_Id_vod__c,Interaction_vod__c,Medical_Event_vod__c,Mobile_ID_vod__c,Other_Source_vod__c,Override_Lock_vod__c,Publication_vod__c,Status_vod__c,Summary_vod__c,Unlock_vod__c,Commercial_Medical__c,MSJ_Level_1A__c,MSJ_Level_1B__c,MSJ_Level_2A__c,MSJ_Level_2B__c,MSJ_Level_3A__c,MSJ_Level_3B__c,MSJ_Level_4A__c,MSJ_Level_4B__c,MSJ_SubStatus__c,MSJ_Type_A__c,MSJ_Type_B__c,MSJ_Description_Backup__c,MSJ_Country__c,MSJ_Received_at_Boomi__c,MSJ_Level_1A_Value__c,MSJ_Level_1B_Value__c,MSJ_Level_2A_Value__c,MSJ_Level_2B_Value__c,MSJ_Level_3A_Value__c,MSJ_Level_3B_Value__c,MSJ_Level_4A_Value__c,MSJ_Level_4B_Value__c,MSJ_Hospital_ID__c,MSJ_Hospital_Name__c,MSJ_Hospital__c,MSJ_Type_of_Insight__c,MSJ_Therapeutic_Area__c,MSJ_Starred_Insight__c,MSJ_Disclaimer__c,MSJ_Not_pharmacovigilance_related__c,MSJ_Approval_Status__c,MSJ_Insight_Owner_Sharing__c,MSJ_Description_J__c,MSJ_Summary_J__c,MSJ_Level_1J__c,MSJ_Level_2J__c,MSJ_HighlightPanel_Display_J__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_vod__c,Clinical_Trial_vod__c,Date_vod__c,Description_vod__c,Entity_Reference_Id_vod__c,Interaction_vod__c,Medical_Event_vod__c,Mobile_ID_vod__c,Other_Source_vod__c,Override_Lock_vod__c,Publication_vod__c,Status_vod__c,Summary_vod__c,Unlock_vod__c,Commercial_Medical__c,MSJ_Level_1A__c,MSJ_Level_1B__c,MSJ_Level_2A__c,MSJ_Level_2B__c,MSJ_Level_3A__c,MSJ_Level_3B__c,MSJ_Level_4A__c,MSJ_Level_4B__c,MSJ_SubStatus__c,MSJ_Type_A__c,MSJ_Type_B__c,MSJ_Description_Backup__c,MSJ_Country__c,MSJ_Received_at_Boomi__c,MSJ_Level_1A_Value__c,MSJ_Level_1B_Value__c,MSJ_Level_2A_Value__c,MSJ_Level_2B_Value__c,MSJ_Level_3A_Value__c,MSJ_Level_3B_Value__c,MSJ_Level_4A_Value__c,MSJ_Level_4B_Value__c,MSJ_Hospital_ID__c,MSJ_Hospital_Name__c,MSJ_Hospital__c,MSJ_Approval_Status__c,MSJ_Description_J__c,MSJ_Disclaimer__c,MSJ_HighlightPanel_Display_J__c,MSJ_Insight_Owner_Sharing__c,MSJ_Level_1J__c,MSJ_Not_pharmacovigilance_related__c,MSJ_Starred_Insight__c,MSJ_Summary_J__c,MSJ_Therapeutic_Area__c,MSJ_Type_of_Insight__c,MSJ_Level_2J__c
|
||||||
src02m.crm_Medical_Insight_vod__c
|
src02m.crm_Medical_Insight_vod__c
|
||||||
org02.crm_Medical_Insight_vod__c
|
org02.crm_Medical_Insight_vod__c
|
||||||
|
|
||||||
|
|||||||
@ -4,9 +4,9 @@ utf-8
|
|||||||
"
|
"
|
||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
47
|
55
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_External_ID_Map_vod__c,Account_vod__c,Call_vod__c,City_vod__c,Client_Name_vod__c,Client_OS_vod__c,Client_Type_vod__c,Country_vod__c,Debug_vod__c,Device_vod__c,IP_Address_vod__c,Multichannel_Activity_vod__c,Referring_Site_vod__c,Region_vod__c,Sent_Email_vod__c,Session_Id_vod__c,Site_vod__c,Start_DateTime_vod__c,Total_Duration_vod__c,URL_vod__c,User_Agent_vod__c,VExternal_Id_vod__c,Viewport_Height_vod__c,Viewport_Width_vod__c,Color_vod__c,Icon_vod__c,MCD_Primary_Key_vod__c,Record_Type_Name_vod__c,MSJ_Date_Opened__c,MSJ_Sent_Date__c,MSJ_Email_Subject__c,MSJ_Opens__c,MSJ_Email_Status__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_External_ID_Map_vod__c,Account_vod__c,Call_vod__c,City_vod__c,Client_Name_vod__c,Client_OS_vod__c,Client_Type_vod__c,Country_vod__c,Debug_vod__c,Device_vod__c,IP_Address_vod__c,Multichannel_Activity_vod__c,Referring_Site_vod__c,Region_vod__c,Sent_Email_vod__c,Session_Id_vod__c,Site_vod__c,Start_DateTime_vod__c,Total_Duration_vod__c,URL_vod__c,User_Agent_vod__c,VExternal_Id_vod__c,Viewport_Height_vod__c,Viewport_Width_vod__c,Color_vod__c,Icon_vod__c,MCD_Primary_Key_vod__c,Record_Type_Name_vod__c,MSJ_Date_Opened__c,MSJ_Sent_Date__c,MSJ_Email_Subject__c,MSJ_Opens__c,MSJ_Email_Status__c,MSJ_Activity_Name__c,MSJ_Asset__c,MSJ_CIAM_Account__c,MSJ_Channel__c,MSJ_Content__c,MSJ_Registration_Time__c,MSJ_Related_External_Account_Data__c,MSJ_Tag_Id__c
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_External_ID_Map_vod__c,Account_vod__c,Call_vod__c,City_vod__c,Client_Name_vod__c,Client_OS_vod__c,Client_Type_vod__c,Country_vod__c,Debug_vod__c,Device_vod__c,IP_Address_vod__c,Multichannel_Activity_vod__c,Referring_Site_vod__c,Region_vod__c,Sent_Email_vod__c,Session_Id_vod__c,Site_vod__c,Start_DateTime_vod__c,Total_Duration_vod__c,URL_vod__c,User_Agent_vod__c,VExternal_Id_vod__c,Viewport_Height_vod__c,Viewport_Width_vod__c,Color_vod__c,Icon_vod__c,MCD_Primary_Key_vod__c,Record_Type_Name_vod__c,MSJ_Date_Opened__c,MSJ_Sent_Date__c,MSJ_Email_Subject__c,MSJ_Opens__c,MSJ_Email_Status__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_External_ID_Map_vod__c,Account_vod__c,Call_vod__c,City_vod__c,Client_Name_vod__c,Client_OS_vod__c,Client_Type_vod__c,Country_vod__c,Debug_vod__c,Device_vod__c,IP_Address_vod__c,Multichannel_Activity_vod__c,Referring_Site_vod__c,Region_vod__c,Sent_Email_vod__c,Session_Id_vod__c,Site_vod__c,Start_DateTime_vod__c,Total_Duration_vod__c,URL_vod__c,User_Agent_vod__c,VExternal_Id_vod__c,Viewport_Height_vod__c,Viewport_Width_vod__c,Color_vod__c,Icon_vod__c,MCD_Primary_Key_vod__c,Record_Type_Name_vod__c,MSJ_Date_Opened__c,MSJ_Sent_Date__c,MSJ_Email_Subject__c,MSJ_Opens__c,MSJ_Email_Status__c,MSJ_Activity_Name__c,MSJ_Asset__c,MSJ_CIAM_Account__c,MSJ_Channel__c,MSJ_Content__c,MSJ_Registration_Time__c,MSJ_Related_External_Account_Data__c,MSJ_Tag_Id__c
|
||||||
src02c.crm_Multichannel_Activity_vod__c
|
src02c.crm_Multichannel_Activity_vod__c
|
||||||
org02.crm_Multichannel_Activity_vod__c
|
org02.crm_Multichannel_Activity_vod__c
|
||||||
|
|
||||||
|
|||||||
13
s3/data/crm/settings/CRM_ProcessDefinition.txt
Normal file
13
s3/data/crm/settings/CRM_ProcessDefinition.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
CRM
|
||||||
|
,
|
||||||
|
utf-8
|
||||||
|
"
|
||||||
|
CRLF
|
||||||
|
1
|
||||||
|
13
|
||||||
|
Id,Name,DeveloperName,Type,Description,TableEnumOrId,LockType,State,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp
|
||||||
|
Id,Name,DeveloperName,Type,Description,TableEnumOrId,LockType,State,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp
|
||||||
|
src02.crm_ProcessDefinition
|
||||||
|
org02.crm_ProcessDefinition
|
||||||
|
CRM_ProcessDefinition_ex.sql
|
||||||
|
|
||||||
14
s3/data/crm/settings/CRM_ProcessDefinition_ALL.txt
Normal file
14
s3/data/crm/settings/CRM_ProcessDefinition_ALL.txt
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
CRM
|
||||||
|
,
|
||||||
|
utf-8
|
||||||
|
"
|
||||||
|
CRLF
|
||||||
|
1
|
||||||
|
13
|
||||||
|
Id,Name,DeveloperName,Type,Description,TableEnumOrId,LockType,State,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp
|
||||||
|
Id,Name,DeveloperName,Type,Description,TableEnumOrId,LockType,State,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp
|
||||||
|
src02.crm_ProcessDefinition_all
|
||||||
|
org02.crm_ProcessDefinition_all
|
||||||
|
CRM_ProcessDefinition_ALL_ex.sql
|
||||||
|
|
||||||
|
truncate_src_table:src02.crm_ProcessDefinition_all
|
||||||
1
s3/data/crm/settings/CRM_ProcessDefinition_ALL_ex.sql
Normal file
1
s3/data/crm/settings/CRM_ProcessDefinition_ALL_ex.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
CALL internal02.crm_data_sync('src02.crm_ProcessDefinition', 'src02.crm_ProcessDefinition_all', 'SystemModstamp');
|
||||||
1
s3/data/crm/settings/CRM_ProcessDefinition_ex.sql
Normal file
1
s3/data/crm/settings/CRM_ProcessDefinition_ex.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
CALL internal02.crm_history('src02.crm_ProcessDefinition', 'SystemModstamp');
|
||||||
13
s3/data/crm/settings/CRM_ProcessInstance.txt
Normal file
13
s3/data/crm/settings/CRM_ProcessInstance.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
CRM
|
||||||
|
,
|
||||||
|
utf-8
|
||||||
|
"
|
||||||
|
CRLF
|
||||||
|
1
|
||||||
|
16
|
||||||
|
Id,ProcessDefinitionId,TargetObjectId,Status,CompletedDate,LastActorId,ElapsedTimeInDays,ElapsedTimeInHours,ElapsedTimeInMinutes,SubmittedById,IsDeleted,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp
|
||||||
|
Id,ProcessDefinitionId,TargetObjectId,Status,CompletedDate,LastActorId,ElapsedTimeInDays,ElapsedTimeInHours,ElapsedTimeInMinutes,SubmittedById,IsDeleted,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp
|
||||||
|
src02.crm_ProcessInstance
|
||||||
|
org02.crm_ProcessInstance
|
||||||
|
|
||||||
|
|
||||||
13
s3/data/crm/settings/CRM_ProcessInstanceNode.txt
Normal file
13
s3/data/crm/settings/CRM_ProcessInstanceNode.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
CRM
|
||||||
|
,
|
||||||
|
utf-8
|
||||||
|
"
|
||||||
|
CRLF
|
||||||
|
1
|
||||||
|
16
|
||||||
|
Id,IsDeleted,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,ProcessInstanceId,ProcessNodeId,NodeStatus,CompletedDate,LastActorId,ProcessNodeName,ElapsedTimeInDays,ElapsedTimeInHours,ElapsedTimeInMinutes
|
||||||
|
Id,IsDeleted,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,ProcessInstanceId,ProcessNodeId,NodeStatus,CompletedDate,LastActorId,ProcessNodeName,ElapsedTimeInDays,ElapsedTimeInHours,ElapsedTimeInMinutes
|
||||||
|
src02.crm_ProcessInstanceNode
|
||||||
|
org02.crm_ProcessInstanceNode
|
||||||
|
|
||||||
|
|
||||||
13
s3/data/crm/settings/CRM_ProcessInstanceStep.txt
Normal file
13
s3/data/crm/settings/CRM_ProcessInstanceStep.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
CRM
|
||||||
|
,
|
||||||
|
utf-8
|
||||||
|
"
|
||||||
|
CRLF
|
||||||
|
1
|
||||||
|
13
|
||||||
|
Id,ProcessInstanceId,StepStatus,OriginalActorId,ActorId,Comments,StepNodeId,ElapsedTimeInDays,ElapsedTimeInHours,ElapsedTimeInMinutes,CreatedDate,CreatedById,SystemModstamp
|
||||||
|
Id,ProcessInstanceId,StepStatus,OriginalActorId,ActorId,Comments,StepNodeId,ElapsedTimeInDays,ElapsedTimeInHours,ElapsedTimeInMinutes,CreatedDate,CreatedById,SystemModstamp
|
||||||
|
src02.crm_ProcessInstanceStep
|
||||||
|
org02.crm_ProcessInstanceStep
|
||||||
|
CRM_ProcessInstanceStep_ex.sql
|
||||||
|
|
||||||
14
s3/data/crm/settings/CRM_ProcessInstanceStep_ALL.txt
Normal file
14
s3/data/crm/settings/CRM_ProcessInstanceStep_ALL.txt
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
CRM
|
||||||
|
,
|
||||||
|
utf-8
|
||||||
|
"
|
||||||
|
CRLF
|
||||||
|
1
|
||||||
|
13
|
||||||
|
Id,ProcessInstanceId,StepStatus,OriginalActorId,ActorId,Comments,StepNodeId,ElapsedTimeInDays,ElapsedTimeInHours,ElapsedTimeInMinutes,CreatedDate,CreatedById,SystemModstamp
|
||||||
|
Id,ProcessInstanceId,StepStatus,OriginalActorId,ActorId,Comments,StepNodeId,ElapsedTimeInDays,ElapsedTimeInHours,ElapsedTimeInMinutes,CreatedDate,CreatedById,SystemModstamp
|
||||||
|
src02.crm_ProcessInstanceStep_all
|
||||||
|
org02.crm_ProcessInstanceStep_all
|
||||||
|
CRM_ProcessInstanceStep_ALL_ex.sql
|
||||||
|
|
||||||
|
truncate_src_table:src02.crm_ProcessInstanceStep_all
|
||||||
1
s3/data/crm/settings/CRM_ProcessInstanceStep_ALL_ex.sql
Normal file
1
s3/data/crm/settings/CRM_ProcessInstanceStep_ALL_ex.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
CALL internal02.crm_data_sync('src02.crm_ProcessInstanceStep', 'src02.crm_ProcessInstanceStep_all', 'SystemModstamp');
|
||||||
1
s3/data/crm/settings/CRM_ProcessInstanceStep_ex.sql
Normal file
1
s3/data/crm/settings/CRM_ProcessInstanceStep_ex.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
CALL internal02.crm_history('src02.crm_ProcessInstanceStep', 'SystemModstamp');
|
||||||
13
s3/data/crm/settings/CRM_ProcessInstanceWorkitem.txt
Normal file
13
s3/data/crm/settings/CRM_ProcessInstanceWorkitem.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
CRM
|
||||||
|
,
|
||||||
|
utf-8
|
||||||
|
"
|
||||||
|
CRLF
|
||||||
|
1
|
||||||
|
11
|
||||||
|
Id,ProcessInstanceId,OriginalActorId,ActorId,ElapsedTimeInDays,ElapsedTimeInHours,ElapsedTimeInMinutes,IsDeleted,CreatedDate,CreatedById,SystemModstamp
|
||||||
|
Id,ProcessInstanceId,OriginalActorId,ActorId,ElapsedTimeInDays,ElapsedTimeInHours,ElapsedTimeInMinutes,IsDeleted,CreatedDate,CreatedById,SystemModstamp
|
||||||
|
src02.crm_ProcessInstanceWorkitem
|
||||||
|
org02.crm_ProcessInstanceWorkitem
|
||||||
|
|
||||||
|
|
||||||
13
s3/data/crm/settings/CRM_ProcessNode.txt
Normal file
13
s3/data/crm/settings/CRM_ProcessNode.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
CRM
|
||||||
|
,
|
||||||
|
utf-8
|
||||||
|
"
|
||||||
|
CRLF
|
||||||
|
1
|
||||||
|
6
|
||||||
|
Id,Name,DeveloperName,ProcessDefinitionId,Description,SystemModstamp
|
||||||
|
Id,Name,DeveloperName,ProcessDefinitionId,Description,SystemModstamp
|
||||||
|
src02.crm_ProcessNode
|
||||||
|
org02.crm_ProcessNode
|
||||||
|
CRM_ProcessNode_ex.sql
|
||||||
|
|
||||||
14
s3/data/crm/settings/CRM_ProcessNode_ALL.txt
Normal file
14
s3/data/crm/settings/CRM_ProcessNode_ALL.txt
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
CRM
|
||||||
|
,
|
||||||
|
utf-8
|
||||||
|
"
|
||||||
|
CRLF
|
||||||
|
1
|
||||||
|
6
|
||||||
|
Id,Name,DeveloperName,ProcessDefinitionId,Description,SystemModstamp
|
||||||
|
Id,Name,DeveloperName,ProcessDefinitionId,Description,SystemModstamp
|
||||||
|
src02.crm_ProcessNode_all
|
||||||
|
org02.crm_ProcessNode_all
|
||||||
|
CRM_ProcessNode_ALL_ex.sql
|
||||||
|
|
||||||
|
truncate_src_table:src02.crm_ProcessNode_all
|
||||||
1
s3/data/crm/settings/CRM_ProcessNode_ALL_ex.sql
Normal file
1
s3/data/crm/settings/CRM_ProcessNode_ALL_ex.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
CALL internal02.crm_data_sync('src02.crm_ProcessNode', 'src02.crm_ProcessNode_all', 'SystemModstamp');
|
||||||
1
s3/data/crm/settings/CRM_ProcessNode_ex.sql
Normal file
1
s3/data/crm/settings/CRM_ProcessNode_ex.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
CALL internal02.crm_history('src02.crm_ProcessNode', 'SystemModstamp');
|
||||||
@ -4,9 +4,9 @@ utf-8
|
|||||||
"
|
"
|
||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
53
|
54
|
||||||
Id,OwnerId,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Consumer_site__c,Product_info__c,Therapeutic_Class_vod__c,Parent_Product_vod__c,Therapeutic_Area_vod__c,Product_Type_vod__c,Require_Key_Message_vod__c,Cost_vod__c,External_ID_vod__c,Manufacturer_vod__c,Company_Product_vod__c,Controlled_Substance_vod__c,Description_vod__c,Sample_Quantity_Picklist_vod__c,Display_Order_vod__c,No_Metrics_vod__c,Distributor_vod__c,Sample_Quantity_Bound_vod__c,Sample_U_M_vod__c,No_Details_vod__c,Quantity_Per_Case_vod__c,Schedule_vod__c,Restricted_vod__c,Pricing_Rule_Quantity_Bound_vod__c,No_Promo_Items_vod__c,User_Aligned_vod__c,Restricted_States_vod__c,Sort_Code_vod__c,No_Cycle_Plans_vod__c,Inventory_Order_UOM_vod__c,Inventory_Quantity_Per_Case_vod__c,VExternal_Id_vod__c,Country__c,MSJ_Product_Classification__c,MSJ_Indication__c,MSJ_Therapeutic_Area__c,MSJ_Global_Brand__c,MSJ_Global_Business_Unit__c,MSJ_Molecules__c,MSJ_SBU__c
|
Id,OwnerId,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Consumer_site__c,Product_info__c,Therapeutic_Class_vod__c,Parent_Product_vod__c,Therapeutic_Area_vod__c,Product_Type_vod__c,Require_Key_Message_vod__c,Cost_vod__c,External_ID_vod__c,Manufacturer_vod__c,Company_Product_vod__c,Controlled_Substance_vod__c,Description_vod__c,Sample_Quantity_Picklist_vod__c,Display_Order_vod__c,No_Metrics_vod__c,Distributor_vod__c,Sample_Quantity_Bound_vod__c,Sample_U_M_vod__c,No_Details_vod__c,Quantity_Per_Case_vod__c,Schedule_vod__c,Restricted_vod__c,Pricing_Rule_Quantity_Bound_vod__c,No_Promo_Items_vod__c,User_Aligned_vod__c,Restricted_States_vod__c,Sort_Code_vod__c,No_Cycle_Plans_vod__c,Inventory_Order_UOM_vod__c,Inventory_Quantity_Per_Case_vod__c,VExternal_Id_vod__c,Country__c,MSJ_Product_Classification__c,MSJ_Indication__c,MSJ_Therapeutic_Area__c,MSJ_Global_Brand__c,MSJ_Global_Business_Unit__c,MSJ_Molecules__c,MSJ_SBU__c,MSJ_Local_Business_Unit__c
|
||||||
Id,OwnerId,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Consumer_site__c,Product_info__c,Therapeutic_Class_vod__c,Parent_Product_vod__c,Therapeutic_Area_vod__c,Product_Type_vod__c,Require_Key_Message_vod__c,Cost_vod__c,External_ID_vod__c,Manufacturer_vod__c,Company_Product_vod__c,Controlled_Substance_vod__c,Description_vod__c,Sample_Quantity_Picklist_vod__c,Display_Order_vod__c,No_Metrics_vod__c,Distributor_vod__c,Sample_Quantity_Bound_vod__c,Sample_U_M_vod__c,No_Details_vod__c,Quantity_Per_Case_vod__c,Schedule_vod__c,Restricted_vod__c,Pricing_Rule_Quantity_Bound_vod__c,No_Promo_Items_vod__c,User_Aligned_vod__c,Restricted_States_vod__c,Sort_Code_vod__c,No_Cycle_Plans_vod__c,Inventory_Order_UOM_vod__c,Inventory_Quantity_Per_Case_vod__c,VExternal_Id_vod__c,Country__c,MSJ_Product_Classification__c,MSJ_Indication__c,MSJ_Therapeutic_Area__c,MSJ_Global_Brand__c,MSJ_Global_Business_Unit__c,MSJ_Molecules__c,MSJ_SBU__c
|
Id,OwnerId,IsDeleted,Name,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Consumer_site__c,Product_info__c,Therapeutic_Class_vod__c,Parent_Product_vod__c,Therapeutic_Area_vod__c,Product_Type_vod__c,Require_Key_Message_vod__c,Cost_vod__c,External_ID_vod__c,Manufacturer_vod__c,Company_Product_vod__c,Controlled_Substance_vod__c,Description_vod__c,Sample_Quantity_Picklist_vod__c,Display_Order_vod__c,No_Metrics_vod__c,Distributor_vod__c,Sample_Quantity_Bound_vod__c,Sample_U_M_vod__c,No_Details_vod__c,Quantity_Per_Case_vod__c,Schedule_vod__c,Restricted_vod__c,Pricing_Rule_Quantity_Bound_vod__c,No_Promo_Items_vod__c,User_Aligned_vod__c,Restricted_States_vod__c,Sort_Code_vod__c,No_Cycle_Plans_vod__c,Inventory_Order_UOM_vod__c,Inventory_Quantity_Per_Case_vod__c,VExternal_Id_vod__c,Country__c,MSJ_Product_Classification__c,MSJ_Indication__c,MSJ_Therapeutic_Area__c,MSJ_Global_Brand__c,MSJ_Global_Business_Unit__c,MSJ_Molecules__c,MSJ_SBU__c,MSJ_Local_Business_Unit__c
|
||||||
src02.crm_Product_vod__c
|
src02.crm_Product_vod__c
|
||||||
org02.crm_Product_vod__c
|
org02.crm_Product_vod__c
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -4,9 +4,9 @@ utf-8
|
|||||||
"
|
"
|
||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
65
|
66
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,MayEdit,IsLocked,Account_Email_vod__c,Account_vod__c,Approved_Email_Template_vod__c,Capture_Datetime_vod__c,Detail_Group_vod__c,Email_Config_Values_vod__c,Email_Content2_vod__c,Email_Content_vod__c,Email_Fragments_vod__c,Email_Sent_Date_vod__c,Failure_Msg_vod__c,Last_Activity_Date_vod__c,Last_Device_vod__c,MC_Capture_Datetime_vod__c,Mobile_ID_vod__c,Opened_vod__c,Product_Display_vod__c,Product_vod__c,Sender_Email_vod__c,Status_vod__c,Valid_Consent_Exists_vod__c,Approved_Document_Views_vod__c,Click_Count_vod__c,Last_Click_Date_vod__c,Last_Open_Date_vod__c,Open_Count_vod__c,Receipt_Entity_Type_vod__c,Receipt_Record_Id_vod__c,Territory_vod__c,Call2_vod__c,Medical_Inquiry_vod__c,Parent_Email_vod__c,Related_Transaction_ID_vod__c,Case_vod__c,Key_Message_vod__c,Suggestion_vod__c,EM_Attendee_vod__c,EM_Event_Speaker_vod__c,EM_Event_Team_Member_vod__c,Event_Attendee_vod__c,Event_vod__c,Medical_Event_vod__c,Scheduled_Send_Datetime_vod__c,User_vod__c,Content_Type_vod__c,Bcc_vod__c,Event_Attendee_Mobile_Id_vod__c,Event_Mobile_Id_vod__c,Activity_Tracking_Mode_vod__c,Email_Source_vod__c,Subject_vod__c,User_Input_Text_vod__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,MayEdit,IsLocked,Account_Email_vod__c,Account_vod__c,Approved_Email_Template_vod__c,Capture_Datetime_vod__c,Detail_Group_vod__c,Email_Config_Values_vod__c,Email_Content2_vod__c,Email_Content_vod__c,Email_Fragments_vod__c,Email_Sent_Date_vod__c,Failure_Msg_vod__c,Last_Activity_Date_vod__c,Last_Device_vod__c,MC_Capture_Datetime_vod__c,Mobile_ID_vod__c,Opened_vod__c,Product_Display_vod__c,Product_vod__c,Sender_Email_vod__c,Status_vod__c,Valid_Consent_Exists_vod__c,Approved_Document_Views_vod__c,Click_Count_vod__c,Last_Click_Date_vod__c,Last_Open_Date_vod__c,Open_Count_vod__c,Receipt_Entity_Type_vod__c,Receipt_Record_Id_vod__c,Territory_vod__c,Call2_vod__c,Medical_Inquiry_vod__c,Parent_Email_vod__c,Related_Transaction_ID_vod__c,Case_vod__c,Key_Message_vod__c,Suggestion_vod__c,EM_Attendee_vod__c,EM_Event_Speaker_vod__c,EM_Event_Team_Member_vod__c,Event_Attendee_vod__c,Event_vod__c,Medical_Event_vod__c,Scheduled_Send_Datetime_vod__c,User_vod__c,Content_Type_vod__c,Bcc_vod__c,Event_Attendee_Mobile_Id_vod__c,Event_Mobile_Id_vod__c,Activity_Tracking_Mode_vod__c,Email_Source_vod__c,Subject_vod__c,User_Input_Text_vod__c,Email_Group_Id_vod__c
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,MayEdit,IsLocked,Account_Email_vod__c,Account_vod__c,Approved_Email_Template_vod__c,Capture_Datetime_vod__c,Detail_Group_vod__c,Email_Config_Values_vod__c,Email_Content2_vod__c,Email_Content_vod__c,Email_Fragments_vod__c,Email_Sent_Date_vod__c,Failure_Msg_vod__c,Last_Activity_Date_vod__c,Last_Device_vod__c,MC_Capture_Datetime_vod__c,Mobile_ID_vod__c,Opened_vod__c,Product_Display_vod__c,Product_vod__c,Sender_Email_vod__c,Status_vod__c,Valid_Consent_Exists_vod__c,Approved_Document_Views_vod__c,Click_Count_vod__c,Last_Click_Date_vod__c,Last_Open_Date_vod__c,Open_Count_vod__c,Receipt_Entity_Type_vod__c,Receipt_Record_Id_vod__c,Territory_vod__c,Call2_vod__c,Medical_Inquiry_vod__c,Parent_Email_vod__c,Related_Transaction_ID_vod__c,Case_vod__c,Key_Message_vod__c,Suggestion_vod__c,EM_Attendee_vod__c,EM_Event_Speaker_vod__c,EM_Event_Team_Member_vod__c,Event_Attendee_vod__c,Event_vod__c,Medical_Event_vod__c,Scheduled_Send_Datetime_vod__c,User_vod__c,Content_Type_vod__c,Bcc_vod__c,Event_Attendee_Mobile_Id_vod__c,Event_Mobile_Id_vod__c,Activity_Tracking_Mode_vod__c,Email_Source_vod__c,Subject_vod__c,User_Input_Text_vod__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,MayEdit,IsLocked,Account_Email_vod__c,Account_vod__c,Approved_Email_Template_vod__c,Capture_Datetime_vod__c,Detail_Group_vod__c,Email_Config_Values_vod__c,Email_Content2_vod__c,Email_Content_vod__c,Email_Fragments_vod__c,Email_Sent_Date_vod__c,Failure_Msg_vod__c,Last_Activity_Date_vod__c,Last_Device_vod__c,MC_Capture_Datetime_vod__c,Mobile_ID_vod__c,Opened_vod__c,Product_Display_vod__c,Product_vod__c,Sender_Email_vod__c,Status_vod__c,Valid_Consent_Exists_vod__c,Approved_Document_Views_vod__c,Click_Count_vod__c,Last_Click_Date_vod__c,Last_Open_Date_vod__c,Open_Count_vod__c,Receipt_Entity_Type_vod__c,Receipt_Record_Id_vod__c,Territory_vod__c,Call2_vod__c,Medical_Inquiry_vod__c,Parent_Email_vod__c,Related_Transaction_ID_vod__c,Case_vod__c,Key_Message_vod__c,Suggestion_vod__c,EM_Attendee_vod__c,EM_Event_Speaker_vod__c,EM_Event_Team_Member_vod__c,Event_Attendee_vod__c,Event_vod__c,Medical_Event_vod__c,Scheduled_Send_Datetime_vod__c,User_vod__c,Content_Type_vod__c,Bcc_vod__c,Event_Attendee_Mobile_Id_vod__c,Event_Mobile_Id_vod__c,Activity_Tracking_Mode_vod__c,Email_Source_vod__c,Subject_vod__c,User_Input_Text_vod__c,Email_Group_Id_vod__c
|
||||||
src02c.crm_Sent_Email_vod__c
|
src02c.crm_Sent_Email_vod__c
|
||||||
org02.crm_Sent_Email_vod__c
|
org02.crm_Sent_Email_vod__c
|
||||||
|
|
||||||
|
|||||||
@ -5,8 +5,8 @@ utf-8
|
|||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
48
|
48
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_Priority_Score_vod__c,Account_vod__c,Action_Count_vod__c,Actioned_vod__c,Call_Objective_CLM_ID_vod__c,Call_Objective_From_Date_vod__c,Call_Objective_On_By_Default_vod__c,Call_Objective_Record_Type_vod__c,Call_Objective_To_Date_vod__c,Dismiss_Count_vod__c,Dismissed_vod__c,Display_Dismiss_vod__c,Display_Mark_As_Complete_vod__c,Display_Score_vod__c,Email_Template_ID_vod__c,Email_Template_Vault_ID_vod__c,Email_Template_vod__c,Expiration_Date_vod__c,Mark_Complete_Count_vod__c,Marked_As_Complete_vod__c,No_Homepage_vod__c,Planned_Call_Date_vod__c,Posted_Date_vod__c,Priority_vod__c,Reason_vod__c,Record_Type_Name_vod__c,Suggestion_External_Id_vod__c,Suppress_Reason_vod__c,Title_vod__c,Suggestion_Survey_vod__c,Category_vod__c,MSJ_Reason_unformatted__c,MSJ_Data_Id__c,MSJ_reason_id__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_Priority_Score_vod__c,Account_vod__c,Action_Count_vod__c,Actioned_vod__c,Call_Objective_CLM_ID_vod__c,Call_Objective_From_Date_vod__c,Call_Objective_On_By_Default_vod__c,Call_Objective_Record_Type_vod__c,Call_Objective_To_Date_vod__c,Dismiss_Count_vod__c,Dismissed_vod__c,Display_Dismiss_vod__c,Display_Mark_As_Complete_vod__c,Display_Score_vod__c,Email_Template_ID_vod__c,Email_Template_Vault_ID_vod__c,Email_Template_vod__c,Expiration_Date_vod__c,Mark_Complete_Count_vod__c,Marked_As_Complete_vod__c,No_Homepage_vod__c,Planned_Call_Date_vod__c,Posted_Date_vod__c,Priority_vod__c,Reason_vod__c,Record_Type_Name_vod__c,Suggestion_External_Id_vod__c,Suppress_Reason_vod__c,Title_vod__c,Suggestion_Survey_vod__c,Category_vod__c,MSJ_Data_Id__c,MSJ_Reason_unformatted__c,MSJ_reason_id__c
|
||||||
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_Priority_Score_vod__c,Account_vod__c,Action_Count_vod__c,Actioned_vod__c,Call_Objective_CLM_ID_vod__c,Call_Objective_From_Date_vod__c,Call_Objective_On_By_Default_vod__c,Call_Objective_Record_Type_vod__c,Call_Objective_To_Date_vod__c,Dismiss_Count_vod__c,Dismissed_vod__c,Display_Dismiss_vod__c,Display_Mark_As_Complete_vod__c,Display_Score_vod__c,Email_Template_ID_vod__c,Email_Template_Vault_ID_vod__c,Email_Template_vod__c,Expiration_Date_vod__c,Mark_Complete_Count_vod__c,Marked_As_Complete_vod__c,No_Homepage_vod__c,Planned_Call_Date_vod__c,Posted_Date_vod__c,Priority_vod__c,Reason_vod__c,Record_Type_Name_vod__c,Suggestion_External_Id_vod__c,Suppress_Reason_vod__c,Title_vod__c,Suggestion_Survey_vod__c,Category_vod__c,MSJ_Reason_unformatted__c,MSJ_Data_Id__c,MSJ_reason_id__c
|
Id,OwnerId,IsDeleted,Name,RecordTypeId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,MayEdit,IsLocked,LastViewedDate,LastReferencedDate,Account_Priority_Score_vod__c,Account_vod__c,Action_Count_vod__c,Actioned_vod__c,Call_Objective_CLM_ID_vod__c,Call_Objective_From_Date_vod__c,Call_Objective_On_By_Default_vod__c,Call_Objective_Record_Type_vod__c,Call_Objective_To_Date_vod__c,Dismiss_Count_vod__c,Dismissed_vod__c,Display_Dismiss_vod__c,Display_Mark_As_Complete_vod__c,Display_Score_vod__c,Email_Template_ID_vod__c,Email_Template_Vault_ID_vod__c,Email_Template_vod__c,Expiration_Date_vod__c,Mark_Complete_Count_vod__c,Marked_As_Complete_vod__c,No_Homepage_vod__c,Planned_Call_Date_vod__c,Posted_Date_vod__c,Priority_vod__c,Reason_vod__c,Record_Type_Name_vod__c,Suggestion_External_Id_vod__c,Suppress_Reason_vod__c,Title_vod__c,Suggestion_Survey_vod__c,Category_vod__c,MSJ_Data_Id__c,MSJ_Reason_unformatted__c,MSJ_reason_id__c
|
||||||
src02c.crm_Suggestion_vod__c
|
src02c.crm_Suggestion_vod__c
|
||||||
org02.crm_Suggestion_vod__c
|
org02.crm_Suggestion_vod__c
|
||||||
|
|
||||||
|
|||||||
@ -5,8 +5,8 @@ utf-8
|
|||||||
CRLF
|
CRLF
|
||||||
1
|
1
|
||||||
50
|
50
|
||||||
Id,RecordTypeId,WhoId,WhatId,Subject,ActivityDate,Status,Priority,IsHighPriority,OwnerId,Description,IsDeleted,AccountId,IsClosed,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,IsArchived,CallDurationInSeconds,CallType,CallDisposition,CallObject,ReminderDateTime,IsReminderSet,RecurrenceActivityId,IsRecurrence,RecurrenceStartDateOnly,RecurrenceEndDateOnly,RecurrenceTimeZoneSidKey,RecurrenceType,RecurrenceInterval,RecurrenceDayOfWeekMask,RecurrenceDayOfMonth,RecurrenceInstance,RecurrenceMonthOfYear,RecurrenceRegeneratedType,TaskSubtype,CompletedDateTime,Override_Lock_vod__c,Mobile_ID_vod__c,Color_vod__c,Event_Canceled_vod__c,Followup_Activity_Type_vod__c,MSJ_Data_ID__c,MSJ_Reason_ID__c,MSJ_Task_External_Id__c,MSJ_Task_Source__c,MSJ_Visit_Type__c
|
Id,RecordTypeId,WhoId,WhatId,Subject,ActivityDate,Status,Priority,IsHighPriority,OwnerId,Description,IsDeleted,AccountId,IsClosed,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,IsArchived,CallDurationInSeconds,CallType,CallDisposition,CallObject,ReminderDateTime,IsReminderSet,RecurrenceActivityId,IsRecurrence,RecurrenceStartDateOnly,RecurrenceEndDateOnly,RecurrenceTimeZoneSidKey,RecurrenceType,RecurrenceInterval,RecurrenceDayOfWeekMask,RecurrenceDayOfMonth,RecurrenceInstance,RecurrenceMonthOfYear,RecurrenceRegeneratedType,TaskSubtype,CompletedDateTime,Override_Lock_vod__c,Mobile_ID_vod__c,Color_vod__c,Event_Canceled_vod__c,MSJ_Data_ID__c,MSJ_Reason_ID__c,MSJ_Task_External_Id__c,MSJ_Task_Source__c,Followup_Activity_Type_vod__c,MSJ_Visit_Type__c
|
||||||
Id,RecordTypeId,WhoId,WhatId,Subject,ActivityDate,Status,Priority,IsHighPriority,OwnerId,Description,IsDeleted,AccountId,IsClosed,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,IsArchived,CallDurationInSeconds,CallType,CallDisposition,CallObject,ReminderDateTime,IsReminderSet,RecurrenceActivityId,IsRecurrence,RecurrenceStartDateOnly,RecurrenceEndDateOnly,RecurrenceTimeZoneSidKey,RecurrenceType,RecurrenceInterval,RecurrenceDayOfWeekMask,RecurrenceDayOfMonth,RecurrenceInstance,RecurrenceMonthOfYear,RecurrenceRegeneratedType,TaskSubtype,CompletedDateTime,Override_Lock_vod__c,Mobile_ID_vod__c,Color_vod__c,Event_Canceled_vod__c,Followup_Activity_Type_vod__c,MSJ_Data_ID__c,MSJ_Reason_ID__c,MSJ_Task_External_Id__c,MSJ_Task_Source__c,MSJ_Visit_Type__c
|
Id,RecordTypeId,WhoId,WhatId,Subject,ActivityDate,Status,Priority,IsHighPriority,OwnerId,Description,IsDeleted,AccountId,IsClosed,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,IsArchived,CallDurationInSeconds,CallType,CallDisposition,CallObject,ReminderDateTime,IsReminderSet,RecurrenceActivityId,IsRecurrence,RecurrenceStartDateOnly,RecurrenceEndDateOnly,RecurrenceTimeZoneSidKey,RecurrenceType,RecurrenceInterval,RecurrenceDayOfWeekMask,RecurrenceDayOfMonth,RecurrenceInstance,RecurrenceMonthOfYear,RecurrenceRegeneratedType,TaskSubtype,CompletedDateTime,Override_Lock_vod__c,Mobile_ID_vod__c,Color_vod__c,Event_Canceled_vod__c,MSJ_Data_ID__c,MSJ_Reason_ID__c,MSJ_Task_External_Id__c,MSJ_Task_Source__c,Followup_Activity_Type_vod__c,MSJ_Visit_Type__c
|
||||||
src02c.crm_Task
|
src02c.crm_Task
|
||||||
org02.crm_Task
|
org02.crm_Task
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -61,9 +61,19 @@ CRM_Task_[0-9]{14}\.(CSV|csv) CRM_Task.txt
|
|||||||
CRM_MSJ_Congresses__c_[0-9]{14}\.(CSV|csv) CRM_MSJ_Congresses__c.txt
|
CRM_MSJ_Congresses__c_[0-9]{14}\.(CSV|csv) CRM_MSJ_Congresses__c.txt
|
||||||
CRM_Publication__c_[0-9]{14}\.(CSV|csv) CRM_Publication__c.txt
|
CRM_Publication__c_[0-9]{14}\.(CSV|csv) CRM_Publication__c.txt
|
||||||
CRM_Clinical_Trial__c_[0-9]{14}\.(CSV|csv) CRM_Clinical_Trial__c.txt
|
CRM_Clinical_Trial__c_[0-9]{14}\.(CSV|csv) CRM_Clinical_Trial__c.txt
|
||||||
|
CRM_ProcessDefinition_[0-9]{14}\.(CSV|csv) CRM_ProcessDefinition.txt
|
||||||
|
CRM_ProcessInstance_[0-9]{14}\.(CSV|csv) CRM_ProcessInstance.txt
|
||||||
|
CRM_ProcessInstanceStep_[0-9]{14}\.(CSV|csv) CRM_ProcessInstanceStep.txt
|
||||||
|
CRM_ProcessInstanceNode_[0-9]{14}\.(CSV|csv) CRM_ProcessInstanceNode.txt
|
||||||
|
CRM_ProcessNode_[0-9]{14}\.(CSV|csv) CRM_ProcessNode.txt
|
||||||
|
CRM_ProcessInstanceWorkitem_[0-9]{14}\.(CSV|csv) CRM_ProcessInstanceWorkitem.txt
|
||||||
|
CRM_Directory_vod__c_[0-9]{14}\.(CSV|csv) CRM_Directory_vod__c.txt
|
||||||
/* 【CRMデータ 全件連携】 */
|
/* 【CRMデータ 全件連携】 */
|
||||||
CRM_Territory2_ALL_[0-9]{14}\.(CSV|csv) CRM_Territory2_ALL.txt
|
CRM_Territory2_ALL_[0-9]{14}\.(CSV|csv) CRM_Territory2_ALL.txt
|
||||||
CRM_UserTerritory2Association_ALL_[0-9]{14}\.(CSV|csv) CRM_UserTerritory2Association_ALL.txt
|
CRM_UserTerritory2Association_ALL_[0-9]{14}\.(CSV|csv) CRM_UserTerritory2Association_ALL.txt
|
||||||
CRM_Group_ALL_[0-9]{14}\.(CSV|csv) CRM_Group_ALL.txt
|
CRM_Group_ALL_[0-9]{14}\.(CSV|csv) CRM_Group_ALL.txt
|
||||||
CRM_ObjectTerritory2Association_ALL_[0-9]{14}\.(CSV|csv) CRM_ObjectTerritory2Association_ALL.txt
|
CRM_ObjectTerritory2Association_ALL_[0-9]{14}\.(CSV|csv) CRM_ObjectTerritory2Association_ALL.txt
|
||||||
CRM_AccountShare_ALL_[0-9]{14}\.(CSV|csv) CRM_AccountShare_ALL.txt
|
CRM_AccountShare_ALL_[0-9]{14}\.(CSV|csv) CRM_AccountShare_ALL.txt
|
||||||
|
CRM_ProcessDefinition_ALL_[0-9]{14}\.(CSV|csv) CRM_ProcessDefinition_ALL.txt
|
||||||
|
CRM_ProcessInstanceStep_ALL_[0-9]{14}\.(CSV|csv) CRM_ProcessInstanceStep_ALL.txt
|
||||||
|
CRM_ProcessNode_ALL_[0-9]{14}\.(CSV|csv) CRM_ProcessNode_ALL.txt
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user