2006年11月4日

ABAP--显示修改数据(tables CDHDR and CDPOS)

摘要: REPORT z_alv_cdhdr_cdpos.TYPE-POOLS slis. DATA : cdhdr TYPE cdhdr. SELECT-OPTIONS : s_objcls FOR cdhdr-objectclas OBLIGATORY, s_objtid FOR c... 阅读全文

posted @ 2006-11-04 23:38 毛小娃 阅读(343) 评论(0) 推荐(0)

Download ABAP Spool to PDF(代码样例)

摘要: *** This program receive spool id and destination file name ***DATA: it_pdf TYPE TABLE OF TLINE WITH HEADER LINE, gv_string TYPE string.PARAMETE... 阅读全文

posted @ 2006-11-04 10:54 毛小娃 阅读(247) 评论(0) 推荐(0)

How to Get Name of Months in ABAP/4

摘要: 1 使用数据表 ’T247’DATA: it_month_name TYPE TABLE OF t247 WITH HEADER LINE.SELECT * INTO TABLE it_month_name FROM T247 WHERE spras = sy-langu. 2 使用函... 阅读全文

posted @ 2006-11-04 10:18 毛小娃 阅读(94) 评论(0) 推荐(0)

导航