sap

How do I in Crystal Report sum data on a column where id is some number

Deadly 提交于 2019-12-13 04:06:33
问题 I am new to Crystal Reports and have been trying to figure this out for a while. I am running Crystal Reports XI. Please Help. The data: john respMonitor 5 abe case mgmt 4 Cy test1 4 Claire respMonitor 5 Moe test3 2 Bob case mgmt 8 Lynn respMonitor 4 Rick test2 33 Ray test1 31 Al test1 24 etc. I want to create the following data: group cost sumOfTests1_3 124.0 <====== want a sum of tests only respMonitor 5.0 caseMgmt 7.0 respMonitor 3 respMonitor 2 caseMgmt 4 etc. So I want to be able to only

VBA: Macro Error 91 without VBA editor on - no error when it's open

自闭症网瘾萝莉.ら 提交于 2019-12-13 03:16:17
问题 I'm working on a macro that uses the UIAutomationClient client to expand the SAP Analysis ribbon tab from Excel and click one of the buttons available there. This macro is then executed from a Form Control Button . Here's the code: 'global object to hold the translations Dim translations As Object Public Enum oConditions eUIA_NamePropertyId eUIA_AutomationIdPropertyId eUIA_ClassNamePropertyId eUIA_LocalizedControlTypePropertyId End Enum 'element name translations for English Function

How can I link RSEG table into BSEG or RBKP to BSEG?

家住魔仙堡 提交于 2019-12-13 03:01:34
问题 I already browse the web but i find no answer that can solve my problem. I tried the concatenation of RBKP-BELNR and RBKP-GJAHR into BKPF-AWKEY to get the BKPF-BELNR then BKPF-BELNR to BSEG-BELNR , but always show no records. I need to link to the RSEG to BSEG or RBKP to BSEG . Need some help! thanks! Edit: I made the parked document in Tcode MIR7 I found this, but can't enter to VBSEGS table. UPDATE : these are the details I want to get. but can't find the other details 回答1: Concatenate

Limit number of result or rows returned in BO using WebI

夙愿已清 提交于 2019-12-13 02:13:32
问题 How do I to limit the number of results/rows returned from a query in WebI other than using custom SQL? Possibly something like 'Top 100' records. I can't change the 'Limit resultant size' in the parameters as I do not want it to affect any other reports. Thank you in advance :) 回答1: In Web Intelligence, you can set the number of rows that the query provider should retrieve. This setting is called the Max rows retrieved . From the Webi user guide: The Max rows retrieved query property

Finding out the place where an attribute of a model changes in Hybris

╄→尐↘猪︶ㄣ 提交于 2019-12-13 00:19:44
问题 I have a custom attribute called visibility in CategoryModel and it can be changed both from backoffice manually and from a cronjob which checks whether there is at least one product under the category. If it is changed from backoffice, cronjob should not change the visibility even if any product is found under it. When an attribute is changed from backoffice, section called Last Changes in Backoffice registers changes related to attribute but I could not find how or where it is done. How can

SAP Fiori应用的三种部署方式

别说谁变了你拦得住时间么 提交于 2019-12-12 23:59:31
封面图片来自Google搜索,关键字: Fiori Deployment 方式1 On premise环境下以BSP应用作为Fiori应用部署和运行的载体 典型的例子是SAP CRM这几个 Fiori应用 : 在Google上搜索关键字Fiori Architecture, 能找到这样一张图片,其中CRM和S/4 HANA的Fiori应用都以BSP应用的方式运行在下图我标注了红色方框的ABAP前台服务器上。 以CRM的My lead应用为例,在Chrome的development tool里能找到其对应的BSP应用名称为crm_leads, 用SAPGUI登录这台前台服务器,使用事务码SE80即可打开该BSP应用,里面的层级结构和Chrome的development tool里观察到的一致(前提是您使用ctrl+alt+shift+p加载了调试版本的应用源码) 我们可以用各种IDE(比如Eclipse, Sublime, Atom, Webstorm)等进行Fiori应用开发,然后使用report /UI5/UI5_REPOSITORY_LOAD将本地工程上传到前台服务器,具体步骤参考这篇博客 Deploy a Fiori app in SAP Fiori 另外,Eclipse有个SAP开发的插件叫做ABAP Repository Team Provider

ABAP find out all program screens?

落花浮王杯 提交于 2019-12-12 18:46:16
问题 I am new to ABAP and I want to make a program where there are multiple screens and an initial screen/home screen where one can see the list of all the program screens. I understand that I can hardcode them, but there's got to be a better way. And if there is any, what kind of field/area do I need to make for the list to be clickable (to go to screen). So far, I have made an initial screen and when GO button is pressed, it leads to the next screen. REPORT Z_UZD_1_LOCAL. CALL SCREEN 1001.

Can I generate a wsdl file without binding and service information?

流过昼夜 提交于 2019-12-12 17:48:28
问题 I came across an issue where a customer is able to open a SAP wsdl using net-beans as well as in .Net but not in soap UI. When i checked the wsdl i found that service as well as binding tags are not defined or no such tags included. wsdl ends with port-type information. In soap UI i got an error like no content in the file and when i try to open it in eclipse i am able to open it using web explorer window, but service as well binding information fields are empty. I could see ws-policy

Transition to OO ABAP?

廉价感情. 提交于 2019-12-12 14:44:40
问题 It appears that most of our SAP programmers are using the old version of ABAP, the one before object-oriented stuff. I also noticed that the language is much cleaner and more modern with OO (they apparently took the opportunity to get rid of deprecated things). As the system is not rolled out yet, the time to make any redesign is now rather than later. It is worth requesting that new code be written as OO ABAP programs? How to sell that to management? Does the interface with non-OO programs

How to convert a structure to an internal table dynamically in ABAP

非 Y 不嫁゛ 提交于 2019-12-12 14:33:43
问题 I'm trying to create a method that will import a structure assuming that all structure elements are flat and the same data type. Then I want to convert it to a table with that type dynamically and return it. Where should I start? I've been trying to get this to work for several hours and am getting nowhere. 回答1: You can use the create_dynamic_table form using cl_alv_table_create like so: * Create dynamic internal table and assign to FS CALL METHOD cl_alv_table_create=>create_dynamic_table