netweaver

Dynamically defined variable in ABAP

柔情痞子 提交于 2020-01-02 08:28:25
问题 Lets say I have a variable (char30) which contains a name of a Datatype and I would like to create another variable of this Datatype. Example: lv_type = 'BU_PARTNER' data: rt_value type range of ( lv_type ). Any tips how to achieve this in ABAP? Thanks! 回答1: RANGE table is just a STANDARD table with component like 'LOW', 'HIGH', 'EQ' and 'OPTION' . Using RTTS related API to create such a STANDARD table. data: lr_data type ref to data, lt_ra_string type range of string, ls_ra_string like line

Excel VBA pulling data from SAP NetWeaver

孤街醉人 提交于 2019-12-23 05:36:07
问题 How do you pull data from SAP NetWeaver into Excel using a VBA macro? I have data in an SAP system accessible in a few different transactions through the SAP GUI. I need to extract this data on a daily basis, then format it into Excel spreadsheets and reports. Manually extracting this data is very time consuming and error prone. I don't have developer or system support. I have to be able to do it myself as an unprivileged user. 回答1: This is copied from my answer here: https://stackoverflow

Orbeon Single sign-on to SAP Netweaver

荒凉一梦 提交于 2019-12-12 00:21:46
问题 We have setup Orbeon 4.0 beta 3 on SAP Netweaver 7.3 with custom persistancy layer. This layer is created on Netweaver with this in mind: http://wiki.orbeon.com/forms/doc/developer-guide/form-runner/persistence-api Basic CXF webservices which acts as a proxy to the SAP Backend where we store the form and data. Connection to the backend is made via SAP HTTPDestination. This setup works as long as authentication is turn off in web.xml etc. The next step was to enable this with SSO in mind. So

Retrieving Object names and Transfer requests for an entire package programmatically

我的未来我决定 提交于 2019-12-11 08:29:49
问题 I have two separate system (development and testing) and I need to check that for all my objects (programs and all includes) the version in development matches that in dev. I can do this manually by going to SE80 -> Utilities -> Version Management for each object but for hundreds/thousands of objects this is extremely time consuming. Is there a way to retrieve the object name and TR programatically so that they could be output to a table or spreadsheet? EDIT. (Vwgert it seems to me like this

SAPUI5 create multiple value(batch) using post

纵饮孤独 提交于 2019-12-11 05:46:56
问题 To post data in the SAP Back-end I use: oModel.create("/Dummyset", oEntry); //so far it works fine Now I have multiple lines in my oEntry and it doesn't work. I found the following solution aBatchOperation.push(contactBatchOperation); oModel.addBatchChangeOperations(aBatchOperation); oModel.submitBatch(fSuccess,fError,true); But unfortunately it's not working with my OData version 2.0 . I always get an error as "addBatchChangeOperations is not a function" Then I tried to find out which

SAP Netweaver hot deployment

社会主义新天地 提交于 2019-12-11 02:55:58
问题 I am completely new to SAP netweaver in fact SAP. I am working in a project which is based on Java/J2ee(JSF, Icefaces) and SAP netweaver combination. Currently, we are building/deploying the application using ant, for every small change in jspx file or some html file, we have do re-build. Just wanted to know, if I can browse the deployment location like other application servers(Jboss,tomcat,weblogic) and manually deploy the respective changed file. Any possibility. Does it have hot

How do I configure my Microsoft Access database to pull source data directly from SAP BW?

混江龙づ霸主 提交于 2019-12-07 14:47:53
问题 I use several Microsoft Access databases on a regular basis to create reports. To get the source data, I currently have to log in to SAP BW (via SAP NetWeaver), run the source data report, export the results as a .csv file (but actually saving it as a .txt file), and then import that file into Microsoft Access. Is there a way that I can have Access pull the data from SAP BW directly? Any help is appreciated! 回答1: All of the databases used by SAP are industry standard databases and the data is

VBA pulling data from SAP for dummies [closed]

北慕城南 提交于 2019-11-26 19:40:37
Does anyone know how to use VBA to pull data from SAP Netweaver? I have a number of daily reports that require exporting data from SAP to Excel and formatting it into a report. I have already written working VBA macros that do the formatting. I have to manually extract the data and run each report macro individually. So much time could be saved if my macro could just go into SAP, grab the data for report #1, format it, grab the data for report #2, etc. I work with SAP NetWeaver (Release 730, Version 7300.1.3.1079). The reports are just Excel pivot tables and charts. Thanks! This all depends on

VBA general way for pulling data out of SAP [closed]

泪湿孤枕 提交于 2019-11-26 07:22:48
问题 Does anyone know how to use VBA to pull data from SAP Netweaver? I have a number of daily reports that require exporting data from SAP to Excel and formatting it into a report. I have already written working VBA macros that do the formatting. I have to manually extract the data and run each report macro individually. So much time could be saved if my macro could just go into SAP, grab the data for report #1, format it, grab the data for report #2, etc. I work with SAP NetWeaver (Release 730,