sap

No sapjco3 in java.library.path Eclipse

我们两清 提交于 2019-12-04 06:24:09
问题 I'm getting this error when i run code. java.lang.UnsatisfiedLinkError: no sapjco3 in java.library.path I have added the jar( sapjco-3.0.jar ) to folder and did set the path in the project. Thanks. 回答1: You are missing the native implementation of the sap java connector. sapjco consists of a .jar for the java binding and a native library (an .so-file) for the platform specific binding. You need an account on the sap service marketplace to access it. If you have one go to http://service.sap

Merging cells and cell formatting in ALV

蓝咒 提交于 2019-12-04 05:27:39
问题 We are trying to manipulate the alv grid class to get result like in Sap Agenda (SSC1 tcode) i.e. to merge columns and rows. We found that the class cl_calendar_control_schedule with the method display handles that and we are working to understand the content of this method and its parameters. We found that the internat table of lvc_t_data type handles horizontal and/or vertical merging of cells (one row of this Internal table for each cell), but I struggle to understand how to code cell

Parsing json into data structures with lower case field names

我们两清 提交于 2019-12-04 03:43:29
问题 I am parsing JSON into ABAP structures, and it works: DATA cl_oops TYPE REF TO cx_dynamic_check. DATA(text) = `{"TEXT":"Hello ABAP, I'm JSON!","CODE":"123"}`. TYPES: BEGIN OF ty_structure, text TYPE string, code TYPE char3, END OF ty_structure. DATA : wa_structure TYPE ty_structure. TRY. text = |\{"DATA":{ text }\}|. CALL TRANSFORMATION id OPTIONS clear = 'all' SOURCE XML text RESULT data = wa_structure. WRITE: wa_structure-text , wa_structure-code. CATCH cx_transformation_error INTO cl_oops.

ALV Grid missing toolbar

对着背影说爱祢 提交于 2019-12-04 03:31:53
问题 I'm creating a simple ALV grid in SAP. So far i've been able to populate the grid with my data and display the grid after the selection screen no problem. I'm not adding the grid to a custom container on a custom screen. Just viewing the grid full screen. My question is - is there a property of the alv grid object that I need to set in order to view the tool bar that is normally on top of the grid with buttons for filter, sort etc? So far this is what I have: TRY. cl_salv_table=>factory(

SAP B1:如何在水晶报表中插入二维码

若如初见. 提交于 2019-12-04 01:57:41
动态二维码API接口地址:http://www.liantu.com/api.php?text=x 备注: 动态网址内可自定义相应的字段拼接(如图5为 【批号】+【质检员】字段) 若API接口链接失效,可百度”二维码生成接口”替换即可 x 必须用UTF8编码格式,x内容出现 & 符号时,请用 %26 代替, 换行符使用 %0A 来源: https://www.cnblogs.com/chenshc/p/11827542.html

我与SAP成都研究院吴院长的二三事

谁都会走 提交于 2019-12-04 01:15:06
这几天Jerry没怎么看手机,今天才注意到,昨天SAP中国研究院公众号上发布了一篇文章:SAP高管说: 体验经济时代下的SAP客户体验。仔细一看,这不是咱SAP成都研究院的吴院长么。 在今年没有发生部门架构变化的很长一段​时间里,吴院长都是Jerry的直接领导,因此本文想和大家聊一聊吴院长的另外一面。在SAP中国研究院的文章里,有一个视频,大家可以从中获取吴院长(也是吴博士,好像是火箭飞行器制造专业的博士学位)对于SAP客户体验的洞见,而从Jerry本文讲述的几件事情里,大家能体会到吴院长是如何关心员工成长的。这些事情都是在Jerry工作中发生的真实场景,出于保密目的,有些隐私细节略去。 事件1:2017年3月的时候,Jerry还有1个月的时间就要去德国出长达3个月的差了,但很多事情还没有落实,而且迟迟没有进展,让Jerry很是烦心。没有进展的原因出在Jerry自身:当时我认为很多准备工作,不应该由我来做。当时我内心坚持认为,作为程序员,在三个月出差这件事情上,我只需要在技术层面做好准备,过去之后可以立即和德国同事对接,然后开工就行了。至于其他的事情,自有公司专门部门的同事去操心。 后来3月的一天晚上,已经很晚了,Jerry收到了正在上海出差的吴院长一封邮件。Jerry收到邮件后第一件事是看了下发送时间(后来才知道吴院长是白天忙完工作后晚上回到酒店写的这封邮件)

CRM, C4C和SAP Hybris的数据库层设计

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-04 01:05:38
SAP的product都是DB provider无关的。 CRM大家都很熟悉了,application developer最多用Open SQL直接操作表。 Netweaver里支持的DB provider在这张表的DBMS里能看到: C4C的application developer 在ABAP后台的workbench里指定BO node的persistence table。 Hybris Hybris里也有和CRM WebUI里的API layer起同样作用的layer - API layer, 封装了对DB的操作。 Hybris里类似的layer实现是很多以DAO( Data Access Object)结尾的java class实现的,相当于我们CRM的function module. 随便点开一个看实现,里面也是拼SQL然后fire到DB去: Hybris支持下列的DB: 目前成都开发team使用的是HSQLDB: 一个轻量级的纯Java开发的开放源代码的关系数据库系统 要获取更多Jerry的原创文章,请关注公众号"汪子熙": 来源: https://www.cnblogs.com/sap-jerry/p/11826371.html

SAP ABAP的CI/CD解决方案

半腔热情 提交于 2019-12-04 00:47:47
如今国外很多partners已经在尝试Jenkins + abapGit + 公有云搭建ABAP CI/CD环境了。ABAP系统的改动通过abapGit提交,触发Jenkins上部署的命令行脚本,脚本调用restful API远程执行ABAP系统的ATC检查并以报表形式显示结果。 本来ABAP Netweaver系统同Jenkins服务器是割裂开的,通过ABAP系统上安装的abapGit和公网上的github仓库,为二者建立了交互的桥梁。现代ABAP系统的Code Inspector和ATC检查均能通过Restful API的方式远程执行。通过Jenkins脚本命令行调用这些ABAP API并显示结果到Jenkins的pipeline里,能充分利用到Jenkins强大的自动化功能和插件丰富的生态圈。 来源: https://www.cnblogs.com/sap-jerry/p/11825813.html

Insert array in HANA with JAVA

纵饮孤独 提交于 2019-12-03 22:32:49
问题 I am having an arraylist of objects and trying to insert the list into HANA. So my insert code looks like PreparedStatement stmt = conn .prepareStatement("INSERT INTO SCHEMA.TABLE VALUES" + " (?, ?, ?, ?, ?, ?, ?, ARRAY("+"1,2,3"+")"); for (int i = 1; i <= ITERATION_MAX; i++) { stmt.setInt(1, listofdata.get(i).get_id()); stmt.setInt(2, listofdata.get(i).get_name()); stmt.setInt(3, listofdata.get(i).get_place()); stmt.setInt(4, listofdata.get(i).get_year()); stmt.setInt(5, listofdata.get(i)

Extracting Data from SAP to SQL Server

大城市里の小女人 提交于 2019-12-03 21:51:03
问题 I am using SSIS packages to extract data from SAP database tables into SQL Server tables. I am using OLEDB source/destination connections to achieve this. The problem now is that a table in SAP has 5 Million records and its taking around 2 hours to extract this data into my SQL Server table. I have used the trunc-dump method (truncating the table in sql server and dumping data into it from SAP table) and also tried using Multiple Hash key to bring in the updated/new records. The problem with