欢迎来到萧静默的博客

路勤为径,学海无涯苦作舟。书山有

11 2019 档案

摘要:REPORT ZPMRP030. TABLES:USR02. DATA: L_ERROR TYPE REF TO CX_SY_OPEN_SQL_DB, L_ERROR_TEXT TYPE STRING. SELECT-OPTIONS:S_BNAME FOR USR02-BNAME. SELECT * 阅读全文
posted @ 2019-11-28 15:37 萧静默 阅读(249) 评论(0) 推荐(0) 编辑
摘要:RANGES: S_BUDAT FOR AFRU-BUDAT. PARAMETERS: P_RPMAX(6) TYPE N DEFAULT SY-DATUM+0(6) CONCATENATE P_RPMAX '01' INTO G_FIRST. CALL FUNCTION 'DATE_GET_MON 阅读全文
posted @ 2019-11-27 11:54 萧静默 阅读(239) 评论(0) 推荐(0) 编辑
摘要:SAP 表整理:VBKPF-预制凭证抬头表: VBKPF-预制凭证抬头表 VBKPF-预制凭证抬头表 VBSEG-预制凭证行项目表: VBSEG-预制凭证行项目表 VBSEG-预制凭证行项目表 VBSEGA-预制凭证行项目表_资产: VBSEGA-预制凭证行项目表_资产 VBSEGA-预制凭证行项目 阅读全文
posted @ 2019-11-25 15:13 萧静默 阅读(2148) 评论(0) 推荐(0) 编辑
摘要:using System; namespace test { class Program { static void Main(string[] args) { Cat cat = new Cat();//不含参数的构造方法 Console.WriteLine("姓名是{0},年龄是{1}",cat 阅读全文
posted @ 2019-11-19 17:19 萧静默 阅读(2173) 评论(0) 推荐(0) 编辑
摘要:TYPES: begin of ty_tab , num(3) type i, str(3) type c, end of ty_tab. data: gw_tab TYPE ty_tab , gt_tab TYPE TABLE OF ty_tab WITH HEADER LINE. data: g 阅读全文
posted @ 2019-11-18 10:08 萧静默 阅读(4005) 评论(0) 推荐(1) 编辑
摘要:Loop at screen会loop处理屏幕上的每一个组件,并对其做相应的处理。 SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME.PARAMETERS S_DATE TYPE DATUM DEFAULT SY-DATUM MODIF ID OO.SEL 阅读全文
posted @ 2019-11-15 10:14 萧静默 阅读(1653) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Text; namespace test { class Program { static void Main(string[] args) { Date birthday = 阅读全文
posted @ 2019-11-12 14:55 萧静默 阅读(527) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Text; namespace test { class Program { static void Main(string[] args) { Time test1 = new 阅读全文
posted @ 2019-11-12 14:32 萧静默 阅读(837) 评论(0) 推荐(1) 编辑
摘要:using System; namespace test { class Program { static void Main(string[] args) { Cat kitty = new Cat(); // 无参构造函数 Cat1 KITTY = new Cat1("KITTY", 4); C 阅读全文
posted @ 2019-11-11 16:42 萧静默 阅读(641) 评论(0) 推荐(0) 编辑
摘要:using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { Console.Write("你要输入多少项?"); int a = Convert.ToInt32(Console.Rea 阅读全文
posted @ 2019-11-08 15:52 萧静默 阅读(613) 评论(0) 推荐(0) 编辑
摘要:using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int b = j1(5); Console.WriteLine(b); int a = j(5); Console.Wri 阅读全文
posted @ 2019-11-08 14:39 萧静默 阅读(533) 评论(0) 推荐(0) 编辑
摘要:using System; namespace class1 { class program { static void Main(string[] args) { Console.Write("请输入a="); double a = double.Parse(Console.ReadLine()) 阅读全文
posted @ 2019-11-08 11:22 萧静默 阅读(581) 评论(0) 推荐(0) 编辑
摘要:using System; namespace class1 { class program { static void Main(string[] args) { //值传递引用,实际参数不会变化 Console.Write("请输入a="); double a = double.Parse(Co 阅读全文
posted @ 2019-11-08 10:30 萧静默 阅读(3374) 评论(0) 推荐(0) 编辑
摘要:using System; namespace class1 { class program { static void Main(string[] args) { int[][] arry = new int[2][];//这里的行必须定义好,但是列可以不定义好 arry[0] = new int 阅读全文
posted @ 2019-11-07 17:17 萧静默 阅读(1499) 评论(3) 推荐(0) 编辑
摘要:using System; namespace ConsoleApp3 { struct WuGong { public string Name; public int Attack; } class Program { static void Main(string[] args) { WuGon 阅读全文
posted @ 2019-11-07 15:12 萧静默 阅读(864) 评论(0) 推荐(0) 编辑
摘要:using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int[] a = { 1, 2, 3, 4, 5, 6 };//省略的数组声明方法 for (int i = 0; i < 阅读全文
posted @ 2019-11-06 16:50 萧静默 阅读(183) 评论(0) 推荐(0) 编辑
摘要:using System; namespace program { enum WeekDays { a,//0 b,//1 c = 11,//11 赋值以后就变成11,不赋值就是2 d,//12 e,//13 f,//14 g//15 }//不能输入数字 struct student { publi 阅读全文
posted @ 2019-11-06 14:42 萧静默 阅读(461) 评论(0) 推荐(0) 编辑
摘要:每个ABAP在写代码的时候,我们都不可避免的要使用到嵌套循环,虽然我们有时候能避免掉,也有无可避免的时候,这个时候就体现我们开发人员的经验和水平的时候。 如何更快的提升ABAP程序的性能,我们开始分析一下如下的代码: REPORT ZABAPHOME. TYPES: STR_VBAK TYPE ST 阅读全文
posted @ 2019-11-05 16:08 萧静默 阅读(1108) 评论(0) 推荐(0) 编辑
摘要:using System; namespace program { class program1 { static void Main(string[] args) { int a = 100; int b = 100; Console.WriteLine("下面使用竖式计算结果"); Consol 阅读全文
posted @ 2019-11-05 15:51 萧静默 阅读(425) 评论(0) 推荐(0) 编辑
摘要:原文链接:https://www.cnblogs.com/learnning/p/10647174.html 主要内容 内联声明 构造表达式 内表操作 Open SQL 其他 本文列出了ABAP新语法的一些使用方式,供大家学习参考。 内联声明 代码实现: *& * 主题一:内联声明 * 语法:DAT 阅读全文
posted @ 2019-11-04 17:26 萧静默 阅读(10554) 评论(0) 推荐(3) 编辑
摘要:using System; namespace program { class program1 { static void Main(string[] args) { program1 fenshu = new program1(); fenshu.Panduan(); program1 tian 阅读全文
posted @ 2019-11-04 15:29 萧静默 阅读(833) 评论(0) 推荐(0) 编辑
摘要:using System; namespace program { class program1 { static void Main(string[] args) { int a = 4, b = 5, c = 6; int p = (a + b + c) / 2; doub... 阅读全文
posted @ 2019-11-01 14:33 萧静默 阅读(250) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示