oo里一些废弃的用法

news/2024/7/5 7:54:09 标签: oo, table, header

先摘录常用的,以后随时补充。呵呵

1,数据定义。

     data:begin of it_vbep occurs 0,

                vbeln like vbep-vbeln,

            end    of it_vbep.

    data:it_vbap type table of vbap with header line,

           it_vbap like table of vbap.

    notes:在oo里occurs n,表头,'like ' 数据字典的结构是不允许。

2,选择表

     ranges:r_vbeln for vbak-vbeln.

 

    notes:选择表也是不能用的。应该定义结构

   data:begin of st_range,

             sign(1),

              option(2),

              low type vbap-vbeln,

             high type vbap-vbeln,

           end   of st_range,

           r_vbeln like range of  vbap-vbeln,

          wa_vbeln like st_range .

   3,   FIELD-SYMBOLS   不允许使用

 


http://www.niftyadmin.cn/n/1071691.html

相关文章

删除项目文件/文件夹IIS重启,Session丢失问题

最近在做一个项目,涉及到大量文件中转(先上传到本项目的某个文件夹中,在移动到FTP中),后面发现每次一删除文件之后在做操作都会提示未登录,刚开始以为是WebService Session丢失问题,后面发现缓存…

C++ 概念易错点

typedef声明不属于类的成员 class Account { typedef double Money; // ... private: static Money _interestRate; static Money initInterest(); }; // Money 必须用 Account:: 限定修饰 Account::Money Account::_interestRate initInterest(); 在类体外的类成员定义中…

一个感动古今的爱情故事

从前,有一座圆音寺,每天都有许多人上香拜佛,香火很旺。在圆音寺庙前的横梁上有个蜘蛛结了张网,由于每天都受到香火和虔诚的祭拜的熏托,蛛蛛便有了佛性。经过了一千多年的修炼,蛛蛛佛性增加了不少。 忽然有一…

自动刷新网页

新建html文件&#xff0c;文件内容&#xff1a; <meta http-equiv"refresh" content"10"> <iframe src"要自动刷新的网址"></iframe> 打开&#xff08;运行&#xff09;该html文件以自动刷新网页。转载于:https://www.cnblogs…

程序属性中EDITOR LOCK

在程序属性设置中&#xff0c;假若把editor lock勾选上&#xff0c;除了自己&#xff0c;别的用户无法修改。 假若需求必须要更改&#xff0c;可以手工处理 SPAN {font-family: "Courier New";font-size: 10pt;color: #000000;background: #FFFFFF;}.L4S33 {color: …

复习linux启动时自动运行的守护进程

linux中有两种方式管理守护进程&#xff08;其实只要是调用了deamon函数的程序都能成为守护进程&#xff09;&#xff1a;standalone方式。进程被放到/etc/init.d中&#xff0c;启动方式可以选在用/sbin/service XXX restart&#xff0c;也可以用/etc/init.d/XXX restart。这两…

Easing Animation(缓动动画)

1 namespace Easing2 2 { 3 4 5 //EasingFunctionBase 为所有缓动函数提供基类 6 class CustomPowerEase : EasingFunctionBase 7 { 8 9 // Using a DependencyProperty as the backing store for Power.10 // This enables animation, styling, …

SAP NetWeaver集成化技术平台解决方案

一、方案产生背景 面对日益复杂的企业网络、日新月异的市场动态&#xff0c;商务需求与商务目标不断变化&#xff0c;企业需要能快速适应变化的技术平台&#xff0c;可与其他技术实现互操作&#xff0c;建立灵活的新型业务流程&#xff0c;在全面集成企业内、外部所有资源的同时…