创建AR收款

-- Created on 2013-7-17 by ADMINISTRATOR
declare
  -- Local variables here
  i integer;
  v_attribute_rec Ar_receipt_api_pub.attribute_rec_type;
  v_receipt_num varchar2(30) := '2013071702';
  v_amount number := 234;
  v_receipt_method_id number := 1365;
  v_receipt_date date := trunc(sysdate);
  v_customer_name varchar2(200) := 'customer 001';
  x_return_status varchar2(1);
  x_msg_count number;
  x_msg_data varchar2(2000);
  x_cr_id number;
begin
  -- Test statements here
    mo_global.init('AR');
    mo_global.set_policy_context('S', 4555);
    fnd_global.apps_initialize(1013475,
                               58812,
                               222);
    v_attribute_rec.attribute1 := '测试';                          
    Ar_receipt_api_pub.Create_cash(
              p_api_version => 1.0,
              p_init_msg_list => FND_API.G_TRUE,
              p_commit        => FND_API.G_TRUE,
              p_validation_level => FND_API.G_VALID_LEVEL_FULL,
              p_receipt_number => v_receipt_num,
              p_amount => v_amount,
              p_receipt_method_id => v_receipt_method_id,
              p_receipt_date => v_receipt_date,
              p_gl_date      =>trunc(sysdate),
              p_maturity_date => v_receipt_date,
              p_deposit_date  => v_receipt_date,
              p_customer_name => v_customer_name,
              p_attribute_rec => v_attribute_rec, --弹性域数据
              p_cr_id => x_cr_id,
              x_return_status => x_return_status,
              x_msg_count => x_msg_count,
              x_msg_data => x_msg_data);
      dbms_output.put_line('return status:'||x_return_status);
      dbms_output.put_line('msg count:'||x_msg_count);
      dbms_output.put_line('msg data:'||x_msg_data);
      if x_msg_count > 0 then
        for i in 1 .. x_msg_count loop
          dbms_output.put_line(i||':'||substr(fnd_msg_pub.Get(p_msg_index => i,p_encoded => fnd_api.G_FALSE),1,255));
        end loop;
      end if;                      
                   
end;

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/13387766/viewspace-766522/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/13387766/viewspace-766522/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值