DECLARE
l_rec_profile_t hz_customer_profile_v2pub.customer_profile_rec_type;
l_rec_profile hz_customer_profile_v2pub.cust_profile_amt_rec_type;
l_profile_amt_id NUMBER;
l_profile_id NUMBER;
l_return_status1 VARCHAR2(30);
l_msg_count1 NUMBER;
l_msg_data1 VARCHAR2(2000);
l_return_status2 VARCHAR2(30);
l_msg_count2 NUMBER;
l_msg_data2 VARCHAR2(2000);
l_object_version_number NUMBER;
BEGIN
/* alter session set NLS_LANGUAGE = 'AMERICAN' ;*/
mo_global.init('AR');
fnd_global.apps_initialize(user_id => 1250,
resp_id => 50719,
resp_appl_id => 20005);
l_rec_profile_t.cust_account_profile_id := 1040;
l_rec_profile_t.cust_account_id := 1042; --CXY-TEST0028660
/* l_rec_profile_t.status := &
更新客户配置文件
最新推荐文章于 2022-02-18 17:53:35 发布
这是一个Oracle PL/SQL代码段,用于更新hz_customer_profile_v2pub表中的客户配置文件。代码初始化了变量并调用了update_customer_profile API来更新特定的客户配置项,同时进行了错误处理和状态检查。
摘要由CSDN通过智能技术生成