`
Jack Wu
  • 浏览: 887452 次
  • 来自: ...
社区版块
存档分类
最新评论
文章列表
参加了两天sap的技术大会,我的感觉是sap为用户画出了更大的应用饼子,会推动企业应用和信息整合的发展。这次会议的主题就是ESOA,SAP是这样定义ESOA的应用,从RFC BAPI到WEB SERVICE,再从WEB SERVICE到ESOA ,未来的就是服务的应用。大家有空请多多关注ESOA.
DATA: BEGIN OF itab occurs 0,        text(100),      END OF itab.INITIALIZATION.  itab-text = ’Line1: ’.  APPEND itab.  itab-text = ’Line2: ’.  APPEND itab.  itab-text = ’Line3: ’.  APPEND itab.  itab-text = ’Line4: ’.  APPEND itab.START-OF-SELECTION.  EDITOR-CALL FOR itab TITLE ’Testing EDITOR-CALL ...
1、概览通过LDB_PROCESS函数可以允许任何程序访问逻辑数据库,允许一个程序访问多个逻辑数据库,当然也允许多次连续访问访问同个逻辑数据库。当使用LDB_PROCESS函数来访问逻辑数据库时,选择屏幕将不显示,其选择参数由FIELD_SELECTION参数传入。 2、LDB_PROCESS参数说明LDBNAMEName of the logical database you want to call. VARIANTName of a variant to fill the selection screen of the logical database. The variant must ...
1. CListCtrl 风格       LVS_ICON: 为每个item显示大图标      LVS_SMALLICON: 为每个item显示小图标      LVS_LIST: 显示一列带有小图标的item      LVS_REPORT: 显示item详细资料      直观的理解:windows资源管理器,“查看”标签下的“大图标,小图标,列表,详细资料” 2. 设置listctrl 风格及扩展风格       LONG lStyle;      lStyle = GetWindowLong(m_list.m_hWnd, GWL_STYLE);//获取当前窗口style      l ...
*&---------------------------------------------------------------------**&      Form  GET_NAME_MONTH*&---------------------------------------------------------------------**  Get the name of the month passed as parameter*-------------------------------------------------------------------- ...
一、SAP Control Framework的架构SAP Control Framework的架构分为客户端和应用服务器端,其中客户端包含重要的部件:“Automation Controller”,应用服务器端包含:“ABAP Objects Control Framework”;Automation Controller的功能1) The automation controller is the central instance at the frontend. It administers all instances of custom controls. 2) The Automatio ...
■ 框架标记 <FRAMESET> <FRAME> <NOFRAMES> <IFRAME>   欲明白本篇【HTML彻底剖析】之标记分类,请看 【标记一览】。   也请先明白围堵标记与空标记的分别,请看 【HTML概念】。 ■ 框架概念 :   谓框架便是网 ...
Class Definition *----------------------------------------------------------------------**       CLASS lcl_alv DEFINITION*----------------------------------------------------------------------***----------------------------------------------------------------------*CLASS lcl_alv DEFINITION.  PUBLIC S ...
#include "stdafx.h"#include "sreport.h"#include "SHTMLReport.h" #ifdef _DEBUG#undef THIS_FILEstatic char THIS_FILE[]=__FILE__;#define new DEBUG_NEW#endif //////////////////////////////////////////////////////////////////////// Construction/Destruction//////////////////// ...
样例1(JavaScript修改Table表的行背景颜色): 首先使用CSS定义背景颜色: <style>  .odd{background-color: white;}  .even{background-color: gray;} </style> 编写修改背景颜色函数: function alternate(id){  if(document.getElementsByTagName){     var table = document.getElementById(id);      var rows = table.getElementsByTagName(&q ...
S.No Tcode Description 1 RSA1 Administrator Work Bench 2 RSA11 Calling up AWB with the IC tree 3 ...
Transfer Structure   RSTS Transfer Structure List RSTSFIELD Transfer Structure fields RSTSRULES  Transfer Structure rules ...
本代码是通过OLE技术操作EXCEL,将SAP的数据填写到本地EXCEL中,Office运行在SAP的GUI界面外,注意红色代码。REPORT ZRSDEMO01 NO STANDARD PAGE HEADING.* this report demonstrates how to send some ABAP data to an* EXCEL sheet using OLE automation.*必须包含INCLUDE OLE2INCL.* handles for OLE objects*申明相关的OFFICE的OLE对象DATA: H_EXCEL TYPE OLE2_OBJECT,     ...
report demo_field_symbols_assign_comp . DATA: BEGIN OF gs_itab,      drph(10) ,      cmsl01(17),      cmsl02(17),      sl01(17),      sl02(17),      END OF gs_itab.DATA: gt_ita1 LIKE gs_itab OCCURS 0 WITH HEADER LINE. data gv_zd(15). FIELD-SYMBOLS <sl> TYPE c.FIELD-SYMBOLS <cmsl> TYPE c.F ...
1. 什么是聚簇   聚簇是根据码值找到数据的物理存储位置,从而达到快速检索数据的目的。聚簇索引的顺序就是数据的物理存储顺序,叶节点就是数据节点。非聚簇索引的顺序与数据物理排列顺序无关,叶节点仍然是索引节点 ...
Global site tag (gtag.js) - Google Analytics