2008年7月23日

【EXIT】如何实现标准TCODE的屏幕增强(HOWTO:Implement a screen exit to a standard SAP transaction)(from Jack Wu)

摘要: http://blog.csdn.net/CompassButton/archive/2007/03/19/1533453.aspxIntroductionSAP provides standard transactions to enter data into database. But a client may want to maintain some additional information in SAP other than what is provided. To make provisions for this, additional screens have to be p 阅读全文

posted @ 2008-07-23 12:33 LongSky 阅读(667) 评论(0) 推荐(0) 编辑

abap--关于异常的处理(From Jack Wu)

摘要: http://blog.csdn.net/CompassButton/archive/2007/04/03/1550818.aspx 1、异常分类 从sap 6.10开始,abap的异常分为两类:1)基于异常类的异常,2)非类异常。非类异常又分为系统定义异常(如:被0除异常)和用户自定义异常(用户自定义函数中由exception语句定义,raise语句产生的异常)。 异常有的是可以截获处理,... 阅读全文

posted @ 2008-07-23 12:03 LongSky 阅读(1546) 评论(1) 推荐(0) 编辑

许多人推荐的sap关于ALV的教程样例(BCALV_EDIT_08)(转)

摘要: http://blog.csdn.net/CompassButton/archive/2006/12/28/1465872.aspx program bcalv_edit_08. *&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 阅读全文

posted @ 2008-07-23 12:00 LongSky 阅读(1199) 评论(0) 推荐(0) 编辑

非常不错ALV GRID CONTROL 教材(From Jack Wu)

摘要: http://blog.csdn.net/CompassButton/archive/2006/12/01/1424228.aspx An Easy Reference for ALV GRID CONTROL Table of Contents Purpose.......................................................... 阅读全文

posted @ 2008-07-23 11:58 LongSky 阅读(830) 评论(0) 推荐(0) 编辑

[BAdI]如何使用BAdi修改PO (processing to ME21N )(from Jack Wu)

摘要: http://blog.csdn.net/CompassButton/archive/2006/10/21/1344686.aspxRequirement: Populate EVERS [ Shipping Point ] at the time of purchase order ceration. Shipping point should be derivated from the shipping point on sales order [ if PO created from in reference to a sales order ]. Processing: This is 阅读全文

posted @ 2008-07-23 11:39 LongSky 阅读(996) 评论(0) 推荐(0) 编辑

[BAdI]如何从SAP中查找BADI(from Jack Wu)

摘要: http://blog.csdn.net/CompassButton/archive/2006/09/16/1231652.aspxBADI作为SAP的第三代用户出口,他的应用也越来越广泛,但如何找到合适的badi是许多abap程序员的困惑。我这里就介绍一下我个人的应用的经验,供大家参考。1、badi对象的信息存储在SXS_INTER, SXC_EXIT, SXC_CLASS 和SXC_ATTR这四个表中(参见SECE包);2、sap程序都会调用cl_exithandler=>get_instance来判断对象是否存在,并返回实例;其实get_instance就是对上述几个表和他们的视图 阅读全文

posted @ 2008-07-23 11:34 LongSky 阅读(455) 评论(0) 推荐(0) 编辑

正确地使用SAP的标准对话框函数(from Jack wu)

摘要: http://blog.csdn.net/CompassButton/archive/2006/09/29/1306632.aspx 在用户设计sap的程序时,经常需要一些对话框,用户可以自己编写,但使用SAP系统中提供了的对话框函数将减少许多开发工作。 1、sap的函数组列表和用途说明 适用情况 ... 阅读全文

posted @ 2008-07-23 11:27 LongSky 阅读(306) 评论(0) 推荐(0) 编辑

ABAP--如何在REUSE_ALV_GRID_DISPLAY标识不同行用不同的颜色(from Jack Wu)

摘要: http://blog.csdn.net/CompassButton/archive/2006/09/08/1195672.aspx 1 在内表中加入颜色字段 ............................. color(4) type c, ................................ 2 在内表添加记录是通过条件设置颜色字段值 wa_customerinfo... 阅读全文

posted @ 2008-07-23 11:24 LongSky 阅读(459) 评论(0) 推荐(0) 编辑

如何从SAP中连接其他数据库(From Jack Wu)

摘要: http://blog.csdn.net/CompassButton/archive/2006/08/30/1144319.aspx 1. 工作环境需求 A. The operating system user adm must be able to log on to the secondary database. B. The R/3 table DBCON m... 阅读全文

posted @ 2008-07-23 11:17 LongSky 阅读(547) 评论(0) 推荐(0) 编辑

SAP SHDB BDC example for MM02 & SAP标准OK Code Values 列表(from Jack Wu)

摘要: http://moryhanry.com/sapbdcMM02.htmlhttp://blog.csdn.net/CompassButton/archive/2006/08/11/1052193.aspxDirect callof transaction,session handling/nXXXX中断当前事务并开始新事务XXXX/n中断当前事务,一般用于相应F15 键,返回./nend关闭所有会... 阅读全文

posted @ 2008-07-23 11:11 LongSky 阅读(1785) 评论(0) 推荐(0) 编辑

SAP的Selection屏幕的事件处理顺序(From Jack Wu)

摘要: http://blog.csdn.net/CompassButton/archive/2006/08/18/1091626.aspx 一、abap程序处理顺序图 二、INITIALIZATION 和 START-OF-SELECTION 事件之间的事件顺序 该图有一个错误,START-OF-SELECTION执行是回到INITIALIZATION事件,但是INTITIALIZATION事... 阅读全文

posted @ 2008-07-23 11:10 LongSky 阅读(325) 评论(0) 推荐(0) 编辑

ABAP的代码规范标准(from Jack Wu)

摘要: http://blog.csdn.net/CompassButton/archive/2006/08/24/1111941.aspx ABAP代码编写要求 1、单元格式 ************************************************************************ * Copyright 2006 C-Bons Wuhan ... 阅读全文

posted @ 2008-07-23 11:08 LongSky 阅读(267) 评论(0) 推荐(0) 编辑

一些有用的SAP技术TCODE(转)

摘要: http://blog.csdn.net/CompassButton/archive/2006/08/09/1042185.aspx Background Processing RZ01 Job Scheduling Monitor SM36 ... 阅读全文

posted @ 2008-07-23 10:59 LongSky 阅读(665) 评论(0) 推荐(0) 编辑

如何调整ABAP程序的性能(转)

摘要: http://blog.csdn.net/CompassButton/archive/2006/07/31/1004912.aspx 1、使用where语句 不推荐 Select * from zflight. Check : zflight-airln = ‘LF’ and zflight-fligh = ‘BW222’. ... 阅读全文

posted @ 2008-07-23 10:55 LongSky 阅读(233) 评论(0) 推荐(0) 编辑

关于SAP的TABLEVIEW编程的几个重要变量值的变化列表(转)

摘要: http://blog.csdn.net/CompassButton/archive/2006/07/29/997465.aspx SAP的TC控件编程的几个重要变量值说明 BPO内 B... 阅读全文

posted @ 2008-07-23 10:51 LongSky 阅读(279) 评论(0) 推荐(0) 编辑

【EXIT】查找SAP系统用户出口列表的程序代码(--SMOD)(转)

摘要: http://blog.csdn.net/CompassButton/archive/2005/02/05/281437.aspxREPORT ZEXIT_HELP no standard page heading.tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.tables : tstct.data : jtab like tadir occurs 0 with header line.data : field1(30).data : v_devclass like tadir-devclass.parameters 阅读全文

posted @ 2008-07-23 10:46 LongSky 阅读(358) 评论(0) 推荐(0) 编辑

获取SAP表字段说明(转)

摘要: http://blog.csdn.net/CompassButton/archive/2005/02/05/281435.aspx *&--------------------------------------------------------------------- *& Report ZGETTABLEFIELD ... 阅读全文

posted @ 2008-07-23 10:38 LongSky 阅读(432) 评论(0) 推荐(0) 编辑

SAP根据配置&MVT抛帐说明(转)

摘要: 移动类型相关的表 http://blog.csdn.net/CompassButton/archive/2008/04/19/2307924.aspx Customizable Table Name Descriptioin T156 Movement Type - BWART ... 阅读全文

posted @ 2008-07-23 08:05 LongSky 阅读(1747) 评论(0) 推荐(0) 编辑

导航