sap

Pulling data from SAP using Excel Macros

一个人想着一个人 提交于 2020-01-01 19:08:27
问题 So I am trying to pull data from SAP using excel macros. I am new to VBA so please bear with me. I found a topic on here called VBA pulling data from SAP for dummies and I am confused. What I am trying to do is as follows: Copy a notification number from a list in excel. Go to the appropriate screen in SAP and paste this number in the search box. Open the long text box. Copy the long text. Paste into excel. Here is the link VBA pulling data from SAP for dummies I can't seem to get by Set

Pulling data from SAP using Excel Macros

六月ゝ 毕业季﹏ 提交于 2020-01-01 19:08:11
问题 So I am trying to pull data from SAP using excel macros. I am new to VBA so please bear with me. I found a topic on here called VBA pulling data from SAP for dummies and I am confused. What I am trying to do is as follows: Copy a notification number from a list in excel. Go to the appropriate screen in SAP and paste this number in the search box. Open the long text box. Copy the long text. Paste into excel. Here is the link VBA pulling data from SAP for dummies I can't seem to get by Set

Field symbol and data reference concept in ABAP

限于喜欢 提交于 2019-12-31 22:39:13
问题 If we compare ABAP field symbols and data references with the pointer in C, we observe :- In C, say we declare a variable "var" type "integer" with default value "5". The variable "var" will be stored some where in memory, and say the memory address which holds this variable is "1000". Now we define a pointer "ptr" and this pointer is assigned to our variable. So, "ptr" will be "1000" and " *ptr " will be 5. Lets compare the above situation in ABAP. Here we declare a Field symbol "FS" and

sap可配置BOM的主要流程

放肆的年华 提交于 2019-12-31 20:54:49
SAP中,可配置BOM的基本顺序流程. 1.创建物料主数据,比如K1234,该物料是可配置的 (MM01) 2.创建物料清单,有哪些物料,将组成K1234. (CS01) 3.创建CLASS,每个可配置物料只有1个CLASS.(CL01) 4.创建特征值.特征值归结在CLASS中.(CT01) 5.创建零件关系.(CU01) 6.零件关系挂进物料清单.(CS02) 建个ORDER CHECK. 7.创建CONFIG PROFILE,每个可配置物料就一个CONFIG PROFILE(CU41) 8.创建PRICE关系.(CU01) 9.PRICE关系挂进CONFIG PROFILE.(CU42) 10.报价.(VK11) 建ORDER CHECK. 可以看到 1--6步是零件关系的设置,在完成后,可以进行配置和生产 7-10步是价钱关系,完成后可以报价. 来源: CSDN 作者: ChampaignWolf 链接: https://blog.csdn.net/champaignwolf/article/details/103783895

新浪微博和SAP CRM Interaction Center(呼叫中心)的集成

余生长醉 提交于 2019-12-31 15:33:15
这是SAP成都研究院CRM dev team2013年开发的新功能。 发布两条微博: 在CRM interaction center根据微博这个渠道搜索: 能看到微博已经自动被抓到IC里了: detail page: 要获取更多Jerry的原创文章,请关注公众号"汪子熙": 来源: CSDN 作者: 汪子熙 链接: https://blog.csdn.net/i042416/article/details/103781209

Open SQL equivalent for ROW_NUMBER()

久未见 提交于 2019-12-31 02:25:28
问题 Is there an equivalent for the ROW_NUMBER() function for ABAP programs? This function is used as follows in SQL: SELECT ROW_NUMBER() OVER (ORDER BY SomeField) AS Row, * FROM SomeTable Where it should return the line number as the first column in the resulting rows (I'm unsure if it will be the line number in the result set or the line number in the source table). I've found that this statement can be used in SAP Business One but can't seem to find an Open SQL equivalent. Is there one or will

Open SQL equivalent for ROW_NUMBER()

╄→гoц情女王★ 提交于 2019-12-31 02:25:27
问题 Is there an equivalent for the ROW_NUMBER() function for ABAP programs? This function is used as follows in SQL: SELECT ROW_NUMBER() OVER (ORDER BY SomeField) AS Row, * FROM SomeTable Where it should return the line number as the first column in the resulting rows (I'm unsure if it will be the line number in the result set or the line number in the source table). I've found that this statement can be used in SAP Business One but can't seem to find an Open SQL equivalent. Is there one or will

source code of a transaction in SAP

扶醉桌前 提交于 2019-12-31 01:48:38
问题 How can you look at the source code of a transaction in SAP? 回答1: You can go to System -> Status and see the program name there. After that you can go to Tcode SE38 or SE80 to view the coding. Alternatively, you could key in /h to activate the debugging mode before you run the transaction. 回答2: The exact answer to your question would be ?SYNTAX ERROR A transaction does not have source code to look at. Take a look at various transactions using the transaction SE93. A transaction may name a

SAP BI Open Doc URL for retrieving pdf

邮差的信 提交于 2019-12-30 11:09:31
问题 In a reporting application we use, we were using BI 3.x API to produce Web reports. While doing the migration activity to 4.x version, we thought it is fine to go with open doc url rather than doing the report generation through API. Many of the samples I have seen uses sIDType and iDocID parameters along with Token value to retrieve the document by constructing a URL like below http://server:port/BOE/OpenDocument/opendoc/openDocument.jsp?token=[LogonToken]&iDocID=[XXXX]&sIDType=CUID But all

How to search for available functions and tables on a SAP system

醉酒当歌 提交于 2019-12-30 09:49:10
问题 I've got to admit that I'm not an expert on SAP R/3 programming, so this is more of a basic question on that matter. Is there any way to get a list of accessible RFC modules and/or tables on a SAP system? On many examples on the internet I've found one RFC modul that seems to be available on every SAP system ("SD_RFC_CUSTOMER_GET") and I wonder if there are any more of these standard RFC modules that I can use. I can easily query the SAP system for all SAP-Queries that are available but I