Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7184882
  • 博文数量: 655
  • 博客积分: 10264
  • 博客等级: 上将
  • 技术积分: 8278
  • 用 户 组: 普通用户
  • 注册时间: 2007-06-04 17:47
个人简介

ABAP顾问

文章分类

全部博文(655)

文章存档

2017年(2)

2014年(8)

2013年(3)

2012年(2)

2011年(18)

2010年(102)

2009年(137)

2008年(274)

2007年(134)

分类:

2010-09-02 09:45:31

REPORT  z_barry_test NO STANDARD PAGE HEADING .

TABLES resb.
DATA: amount_in LIKE bapicurr-bapicurr ,
      amount_ex LIKE bapicurr-bapicurr .

SELECT FROM resb UP TO 100 ROWS WHERE waers = 'TWD'.
  amount_in = resb-gpreis.
  CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
    EXPORTING
      currency        = resb-waers
      amount_internal = amount_in
    IMPORTING
      amount_external = amount_ex.
  WRITE: / resb-gpreis,amount_ex,resb-waers.
ENDSELECT.
阅读(3171) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~