自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(27)
  • 收藏
  • 关注

原创 JAVA学习笔记- Java中基本类型和封装类

int是java提供的8种原始数据类型之一。Java为每个原始类型提供了封装类,Integer是java为int提供的封装类。int的默认值为0,而Integer的默认值为null,即Integer可以区分出未赋值和值为0的区别,int则无法表达出未赋值的情况,例如,要想表达出没有参加考试和考试成绩为0的区别,则只能使用Integer。在JSP开发中,Integer的默认为null,所以用el表...

2016-12-07 21:49:13 204

原创 Java 注解指导手册 – 终极向导

摘要: 原文链接 原文作者:Dani Buiza 译者:Toien Liu  校对:深海 编者的话:注解是java的一个主要特性且每个java开发者都应该知道如何使用它。 我们已经在Java Code Geeks提供了丰富的教程, 如Creating Your Own Java Annotations, ...原文链接 原文作者:Dani Buiza 译者:Toien Liu  校对:深海...

2016-11-16 17:29:50 280

原创 ABAP+Development

https://wiki.scn.sap.com/wiki/display/ABAP/ABAP+Development

2016-11-11 12:00:14 161

原创 JAVA学习笔记-增强for循环

for/in循环就是JDK5.0中所谓的增强For循环,它能对数组和集合进行遍历,使用它会使用你的代码短小而精炼的多。这里将介绍以下内容: 传统的for循环和增强for循环的比较 定制自己的增强for循环 增强for循环的局限性 一:传统的for循环和增强for循环的比较 //传统的数组遍历 String[] persons={"张三","李四","王五"}; for(int i=0;i<p...

2016-11-05 05:40:05 134

原创 JAVA学习笔记-String

一、Java内存模型按照官方的说法:Java 虚拟机具有一个堆,堆是运行时数据区域,所有类实例和数组的内存均从此处分配。    JVM主要管理两种类型内存:堆和非堆,堆内存(Heap Memory)是在 Java 虚拟机启动时创建,非堆内存(Non-heap Memory)是在JVM堆之外的内存。简单来说,非堆包含方法区、JVM内部处理或优化所需的内存(如 JITCompiler,Just-i...

2016-11-04 22:34:34 85

原创 Flight Data Application - Demo Example for Integration Technologies

How to generate demo dataTechnologies for which Flight demo is providedLinksMiscellaneousSAP provides many demo programs to demonstrate how to use concretely various technologies. Most of t...

2016-11-02 08:46:35 163

原创 Tiny C Compiler最小的C语言编译器

TCC研究(1): Tiny C Compiler最小的C语言编译器,自己编译自己,tcccompiler 最近,在学习编译器技术, 研究了一下TCC, 记录一下。 Tiny C Compiler(简称TCC, 或Tiny CC)是世界上最小的C语言编译器,而且是开源的, 小到只有约100K. (VC, GCC动不动几十M几百M的, 汗) 别看它小, 功能还是很强. 可以编译所有C99标准的AN...

2016-10-19 11:44:37 5255 1

原创 Enhanced Table Maintenance with Automatic Change Recording

Table maintenance generator is very powerful tool to generate simple data entry screen for tables. For tables which store configuration data i.e. rarely modified it not worth spending time creating m...

2016-09-28 16:59:37 159

原创 Events in Table Maintenance

Scenario: We have a following custom table which contains the fields “Date on which record was created” and “Name of the person who created the object”. We would like to have these to be filled up w...

2016-09-22 17:05:31 167

原创 生成程序崩溃的dump文件,使用windbg调试

1,目的 有时候程序在客户那里崩溃了,你程序也没有什么有效的log日志能记录到崩溃的细节,那这实在是一件很麻烦的事情。你得向客户反复了解操作内容并希望能在自己这里重现,这个过程想想都很痛苦吧。。使用下面的方法,能在程序崩溃时生成一个自己的dump文件,记录了崩溃时的一些有用的信息,一般能帮你容易地找到出错的地方。 2,原理 简单地说,就是windows程序崩溃时会...

2016-09-22 11:46:57 543

原创 How to create custom button in TMG

Adding Custom button in Table maintenance Generator and their functionality :           Multiple events are defined by SAP to  handle PF status. Following are the steps to create our own custom ...

2016-09-21 14:45:37 125

原创 Error message 6P012 “Requirement blocked”

Go to start of metadata If the error is issued in MD62, check t-code SM12 and see if any user is locking the requirement on table PBIM.                    If the error occurs in BAPI BAPI_R...

2016-09-10 09:13:31 807

原创 Configuring SAP SMTP service

SAP ECC permits sending and receiving of messages, including email. NetWeaver ABAP comes with everything needed to set up the configuration. What is needed is an external email infrastructure to have...

2016-08-23 12:04:47 344

ABAP 屏幕字段输入后回车值不显示的问题

<!--StartFragment -->   SCREEN-ACTIVE       = '1'.   SCREEN-INPUT       = '1'.   SCREEN-OUTPUT       = '0'. 屏幕虽然可以输入,但值不能显示,修改为以下则可以: SCREEN-ACTIVE       = '1'.   SCREEN-INPUT       = '1'...

2016-08-23 09:20:02 1818

原创 ABAP OO Explained

ABAP data is the same as data.It doesn't matter what module you're working on. The only type of information we can use in ABAP are:Character Data: A, B, C, and so forth or collections of these ...

2016-08-12 11:41:06 143

原创 SAPFI凭证表的关系(BSEG和BSIS、BSAS、BSID、BSAD、BSIK、BSAK)

BSAS+BSIS+BSAK+BSIK+BSAD+BSID = BSEG cleared   │ opened --------------------------------     BSAS     │ BSIS     ==>all GL documents BSAK     │   BSIK     ==>all AP documents BSAD     │ BSID    ...

2016-07-04 13:10:01 4552

原创 Qt官方开发环境生成的exe发布方式--使用windeployqt

Qt 官方开发环境使用的动态链接库方式,在发布生成的exe程序时,需要复制一大堆 dll,如果自己去复制dll,很可能丢三落四,导致exe在别的电脑里无法正常运行。因此 Qt 官方开发环境里自带了一个工具:windeployqt.exe。以官方 Qt 5.4.0+MinGW 开发环境为例,从开始菜单--》Qt 5.4.0--》5.4--》MinGW 4.9 (32-bit)--》Qt 5.4 fo...

2016-05-08 01:54:59 93

SAPGUI 740 错误 (Error: hostname 'NiHLGetNodeAddr' unknown)

SAPGUI 740 增加 组/服务器时发生错误: Error: hostname 'NiHLGetNodeAddr' unknown 原因: Note 52959 IMPORTANT:**********When inserting this into this file, pleas ensure that the last entry is always ...

2016-05-06 17:55:50 8859 2

原创 SAP打印问题的分析

Analyzing SAP Printing Problems Print-Out Missing or IncorrectThe  procedure that we recommend for analyzing a printer problem is explained below. This section reviews both of the following:·  ...

2016-04-29 15:37:32 230

原创 Maven3--目录结构-02

 目录结构: src     -main        -java           -package     -test       -java           -package      -resources  

2016-04-14 21:32:17 79

原创 Maven3--目录结构--02

目录结构: 

2016-04-14 21:26:32 99

原创 Maven3--基本配置--01

环境:Maven:Maven 3.0.5  解压后路径:F:\Maven\apache-maven-3.0.5-binJDK:jdk1.7.0_11  安装路径:C:\Program Files\Java\jdk1.7.0_11一.下载MavenMaven主页:http://maven.apache.org/下载地址:http://maven.apache.org/d...

2016-04-14 08:55:38 84

原创 Step by step example(hibersap)

Step by step exampleIn this example we will create a simple Maven project which uses Hibersap to call a function in SAP and print the result to the command line.Download and install the S...

2016-04-13 22:49:16 204

原创 开发人员收藏的网站

http://www.oracle.com/technetwork/java/index.html 语言:英文 简介:Sun官方网站 http://www.java.net 语言:英文 简介:由Sun公司维护的一个Java社区网站 http://www.ibm.com/developerworks/cn/java/ 语言:中文 简介:IBM技术博客 http://www.infoq.com/...

2016-04-12 10:19:46 110

原创 看完你也能独立负责项目!APP从头到尾的所有工作流程详解!

(一)项目启动前从事产品的工作一年多,但自己一直苦于这样或者那样的困惑,很多人想要从事产品,或者老板自己创业要亲自承担产品一职,但他们对产品这个岗位的认识却不明晰,有的以为是纯粹的画原型,有的是以为做项目管理跟踪项目进度,有的是做竞品分析给老板看。实际上,这些都不是产品经理的核心和重点。在较为成熟的企业,因为产品的壮大和人员的增多,为了便于协作和沟通,岗位会细化的很清楚,如产品经理、交互设计...

2016-04-11 12:31:33 1453

原创 Step by step example(HiberSAP)

In this example we will create a simple Maven project which uses Hibersap to call a function in SAP and print the result to the command line.Download and install the SAP Java ConnectorDo...

2016-04-08 11:47:53 122

原创 Java连接SAP ————JCO 3.0技术详解

SAP的ERP平台很强大,这是毋庸置疑的,它被运用于个个行业领域,也正因如此,所以公司上线SAP后,总需要花费很多时间去培养用户,有时候,在SAP上,用户的操作需求很简单,但在SAP平台上,却不得不进行许多复杂的操作。 ======================================================================================...

2016-04-08 10:51:35 299

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除