`
Jack Wu
  • 浏览: 866085 次
  • 来自: ...
社区版块
存档分类
最新评论
文章列表
在ALV报表设计有时候需要根据一定条件将特定的单元显示成特定的颜色,具体实现步骤如下: 1. 在需要显示的内表中添加新的字段,字段类型为lvc_t_scol2. 根据条件设置颜色数据;3. 设置layout-coltab_fieldname的数据指定显示颜色的字段.代码如下:(注意红色部分)REPORT  z_alv_color.TYPE-POOLS: slis.DATA: BEGIN OF it_flight OCCURS 0,       carrid  LIKE sflight-carrid,       connid   LIKE sflight-connid,       fldate ...
 在销售订单处理中,用户会需要控制屏幕的一些字段是否允许修改,在配置里没有设置,为了实现该要求只能通过sap提供的增强来实现。sap为用户提供了三种增强,用户可以选择任一种来实现。 1)BADI 对应的接口类是:IF_EX_BADI_SD_SALES_BASIC 实现方法参见:http://blog.csdn.net/CompassButton/archive/2006/10/21/1344686.aspx   2)函数型增强 对应函数是:FUNCTION EXIT_SAPMV45A_004 FUNCTION EXIT_SAPMV45A_004.*"------------------ ...
在sap的应用中,我们有时会需要设计折叠样式的屏幕(类似MIGO的屏幕),以缓解屏幕区域的太小的矛盾。折叠样式屏幕实现的基本原理是用子屏幕根据用户的输入调用不同的子屏幕来实现的。现在以放置两个子屏幕的折叠式的屏幕来说明实现的步骤。为了实现两个子屏幕的折叠式的屏幕需要设计7个屏幕(一个主屏幕,两个信息屏幕,一个全展示子屏幕,一个下半部展示子屏幕,一个上半部展示子屏幕,一个下全关闭子屏幕)。具体步骤如下:<o:p></o:p> Step 1:设计一个主屏幕,放置一个”子屏幕范围”<o:p></o:p> 屏幕的逻辑流为:<o:p></ ...
  <style type="text/css"> SPAN { font-family: "Courier New"; font-size: 10pt; color: #000000; background: #FFFFFF; } .L1S31 { font-style: italic; color: #808080; } .L1S32 { color: #3399FF; } .L1S33 { color: #4DA619; } .L1S52 { color: #0000FF; } </style> 本代码使用下列三个函数来完成 ...
1)Overview  https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/60981d00-ca87-2910-fdb8-d4a2640d69d4 Volume Testing for SAP BW ERP: Note 821148 - Installing/upgrading Basis Plug-in (PI_BASIS) 2005.1 2)Model https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e701051a ...
...
一、sapBI的用户分类 There are different types of users in SAP BW. Most of your users will be the users who execute queries and workbooks. These people could be considered "reporting users" or "end users."  There are also users who develop new queries. Some people may refer to them as & ...
SAP Business Information Warehouse (SAP BW) is the name of the Business Intelligence, Analytical, Reporting and Data Warehousing (DW) solution which is one of the major enterprise software applications produced by SAP AG. It was originally named SAP BIW, (Business Information Warehouse), but is now ...
一、说明 IDoc: An Intermediate Document (IDoc) is a SAP standard format for data transfer between systems.IDocs are mainly used for Application Link Enabling (ALE) and for Electronic Data Interchange(EDI). They are not used for processing inside an application.DBoc: Business Documents (BDocs) are used by ...
最近在sap的SDN上发现了一篇详细讲叙如何创建BI的新Client,该文章讲得非常详细,对BI安装的新手非常有用,特贴出链接供大家参考: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/007af9a7-e48e-2a10-5c85-fcac22d58e82
TCODE: SLIN 或者在SE38 界面的菜单: 程序-》语法-》扩展程序检查 就会弹出下面的界面,用户可以根据自己的需求设置检查点,并根据检查结果修改程序,使自己的代码更加可靠。另外在SE38 界面的菜单: 程序-》语法-》Code Inspector 提供了从另外的一些角度来检查程序的合理性。
在ABAP设计中,程序员经常需要用图形显示报表的统计结果,我们可以使用函数:GRAPH_MATRIX_3D来达到图形显示。GRAPH_MATRIX_3D函数参数很多,但只有三个参数必须需要输入:Table DATAThe first field of table DATA must be a C field of any length. The number values must then be passed in one or more numeric fields. These fields can have type P or F.Table OPTSTable OPTS is used ...
FI--数据表图 图中相关表的说明。Parking Documents VBKPF Document Header for Document Parking预制凭证的凭证抬头 VBSEGA Document Segment for Document Parking - Asset Database凭证预制的凭证段-资产数据库 VBSEGD Document Segment for Customer Document Parking客户凭证 ...
One of the most important considerations when writing a select statement against a large table is the effective use of an index. However this is sometimes more easily said than done. Have you ever found that your WHERE clause is missing just one field of an index and that field is not at the end of t ...
由于bseg表很大,而且表的索引字段是: BUKRS - Company CodeBELNR - Accounting Document Number GJAHR - Fiscal Year BUZEI - Line Item Number  访问此表最佳的是包含所有的索引字段,但在实际应用是很少能达到的。但要有好的性能根据经验必须要有公司和凭证号作为查询条件。为了达到这一点,我可以根据条件不同而使用不同sap的其他表,先查出公司和凭证号,再去读取BSEG表。 代码如下: 注意:该程序包含了各种条件的查询,程序员可以根据自己应用需求选择对应一个的子程序来读取公司和凭证号。 REPORT zt ...
Global site tag (gtag.js) - Google Analytics