|
---------------------2005-09-13到2005-09-17----------------------
这几天香港那边来的顾问对我们几个新手进行了培训,主要是讲ABAP这方面的知识,因为那老师讲的都是白话,加上速度很快,所以这段时间笔记写的比较乱。
1,ABOUT XX SAP,本公司要上的功能模块:PM,FI/CO,PP,MM,SD,BASIS。
2,实话阶段:计划前准备:项目管理—正式实话会议—议程—系统配置—企业动作架构—主业务流程。 商业蓝图:业务流程—工作物资—报表清单—批核概念。
3,项目标准:确定项目成员,LOGO制定,确定小组合作形式,帐套管理策略。。。
4,ABAP communicator service: J2EE engine module (using local tcp/ip network)
5,Payroll: ABAP dictionary containing data as well meta data.
6, Model object connot be created in a local package (only create the object after consulting sap,create the object in an sap package).
7,the lock objects deal with the problem which some users synchronize access to the same data.
8,different fields having the same technical type can be combined in domains.
呵呵上面这些偶也不知道是记了些什么东东。不过下面这些也好不到哪去。
9,Basis administrator: clients management, transports, data archiving, system monitoring, perform….
10,some useful transaction code:AL06, AL08, AL10 , AL11.
11,NEW-LINE = write: / eg: write: / xxx. The same to, new line. Write xxx.
12,在EDITOR界面的GOTO-》ATTRIBUTE-》可改TITLE的属性。
13,在Report xxx后可跟LINE-SIZE WIDTH, LINE-COUNT, PAGE LINES等属性,这些选项可以用来控制列表输出的页格式。
14,插入断点: BREAK-POINT, BREAK-USERNAME,也可以在程序激活的状态下按下STOP BUTTON。
15,用PROGRAM中的DOCUMENT可同步显示提示帮助。同时也可以在此处编辑。
16,可以用INCLUDE去包含一个数据类型 eg: include type xxx. 其中XXX为已经定义的数据类型。 这种方法在定义游标的时候会用到。
17,几个字符串操作函数:split…at…into.., shift ….right…., add-corresponding, divide-coresponding, move-corresponding, abs, concatename, condense.
18,刷新的时候对于基表用refresh, 内表用clear,free.
19,读数据集:READ DATASET DSS INTO RECORDE。
20,批处理工具,LSMW,BDC, CATT,ECATT。
21,如果要让个选择屏幕浮在SCREEN 1000的上面,则使用调用语句:
CALL SELECTION-SCREEN 100 STRATING AT 10 10 END AT 50 50。
-------------------------------很难整理这段时间的日记,相当乱,很大一部分是对一些具体例子作的说明,所以更不好整理了----------------------------------------------------- |
|