上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 99 下一页

2007年6月20日

ABAP---How to use controls

摘要: How to use controls How to: GeneralSynchronization/FlushSet up event handling for controlsDeclare a reference variable before the class has been d... 阅读全文

posted @ 2007-06-20 10:56 毛小娃 阅读(189) 评论(0) 推荐(0) 编辑

2007年6月17日

BASIS--LSMW Steps For Data Migration

摘要: How to develop a lsmw for data migration for va01 or xk01 transaction? You can create lsmw for data migration as follows (using session method): Ex... 阅读全文

posted @ 2007-06-17 18:16 毛小娃 阅读(119) 评论(0) 推荐(0) 编辑

2007年6月15日

Enhancement--User exit documentation from SAP

摘要: Prints out the SAP documentation on user exits REPORT YVENKATESH_PRINT_SMOD_DOC NO STANDARD PAGE HEADING LINE-SIZE 80 LI... 阅读全文

posted @ 2007-06-15 23:28 毛小娃 阅读(139) 评论(0) 推荐(0) 编辑

Enhancement--How to Find a Screen Exit for T-code

摘要: REPORT YSMOD2 .TABLES: MODSAP, MODACT, TSTC.PARAMETERS: INPUT1 LIKE TSTC-TCODE DEFAULT ' ', INPUT2 LIKE MODSAP-TYP DEFAULT ' '.DATA: SEARC... 阅读全文

posted @ 2007-06-15 23:19 毛小娃 阅读(115) 评论(0) 推荐(0) 编辑

Enhancement--Finding a project and enhancement

摘要: Here are a couple of hints: If you have a user exit function module: EXIT_SAPLEINM_014 1) Fire up SE37 to get the development class ME 2) Fire up t... 阅读全文

posted @ 2007-06-15 23:16 毛小娃 阅读(131) 评论(0) 推荐(0) 编辑

ABAP--Field Symbol 的Example(来自SAP的样例)

摘要: Full type specification REPORT demo_field_symbols_type .DATA: BEGIN OF line, col1(1) TYPE c, col2(1) TYPE c VALUE 'X', END OF ... 阅读全文

posted @ 2007-06-15 23:11 毛小娃 阅读(162) 评论(0) 推荐(0) 编辑

ABAP--关于Data Reference的使用

摘要: Data References(只能指向abap定义的基本数据或者基本数据组合体) 1、定义数据参考变量(Data References) DATA dref TYPE REF TO DATA.(指向任意类型,但在创建时必须指定对象类型) DATA dref TYPE REF TO DATA_... 阅读全文

posted @ 2007-06-15 08:47 毛小娃 阅读(185) 评论(0) 推荐(0) 编辑

2007年6月14日

ABAP--如何在join查询中使用动态表名(其实这样是没有必要的)

摘要: 最近有人问如何写在join查询中使用动态表名的方法,现在我给出一个样例,供大家参考: REPORT demo_class_counter_event. DATA: BEGIN OF wa, carrid TYPE spfli-carrid, connid TYPE sp... 阅读全文

posted @ 2007-06-14 16:55 毛小娃 阅读(189) 评论(0) 推荐(0) 编辑

ABAP--ABAP变量的可见范围

摘要: ABAP变量有三种可见范围 1、局部可见变量在Form和Function中定义的变量,这类变量只在Form和Function可见,当有全局变量与局部变量同名,全局变量将被局部变量屏蔽。 2、全局可见变量除去tables定义声明的变量以外的所有在程序中定义的变量为全局变量,在程序范围内可访问。 3... 阅读全文

posted @ 2007-06-14 15:29 毛小娃 阅读(169) 评论(0) 推荐(0) 编辑

2007年6月12日

BW--BW访问接口列表(摘自sap library)

摘要: Interface Service: Read Write Di... 阅读全文

posted @ 2007-06-12 14:26 毛小娃 阅读(482) 评论(0) 推荐(0) 编辑

上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 99 下一页

导航