sap

Retrieve texts from a sales order by using RFC_READ_TEXT

跟風遠走 提交于 2019-12-12 14:01:59
问题 I'm using SAP .NET Connector 3.0 to read data from SAP(R/3). I need to get some header texts from sales orders: A lot of information I found regarding READ_TEXT function which can be used for this purpose. Here you can find some sample how to do it by using ERPConnect. I'm trying to do the same and I have following function which returns IRfcTable: static IRfcTable ReadFunction(string destName, int rowCount) { // get the destination RfcDestination dest = RfcDestinationManager.GetDestination

Can I save modiffications to development objects ( Report in my case) to another transport request (not the one they're locked in)?

坚强是说给别人听的谎言 提交于 2019-12-12 12:17:52
问题 When I try to switch to edit mode for a Report source, a popup comes up telling me "A new task will be created for the following request of user XXX". A transport request is also being suggested. I don't want to save my changes in this request however, but in another existing one. I am not aware of any versioning systems being implemented in my system, and don't know how to check that. Is what i'm trying to achieve possible? And if so, how? 回答1: No, this is not possible. There are very good

What is the meaning of 'controlAggregation' in the SAPUI5 routing configuration?

ε祈祈猫儿з 提交于 2019-12-12 10:46:36
问题 I really don't get what the property controlAggregation below does for routing a SAPUI5 application. There is not element with that id. I cant find any reference to 'pages' anywhere in the demo app found here: SAPUI5 routing demo "routing": { "config": { "routerClass": "sap.m.routing.Router", "viewType": "XML", "viewPath": "sap.ui.demo.nav.view", "controlId": "app", "controlAggregation": "pages", // what does this do? "transition": "slide", "bypassed": { "target": "notFound" } The views are

Export data from SAP to SQL Server [closed]

大憨熊 提交于 2019-12-12 07:45:38
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . I have an application which uses SQL Server 2008 to store data that needs to feed a bunch of financial information from SAP (which in this company uses Oracle 11 as back end). I asked the SAP guys for access to read the tables, they said no way. I asked them to connect to my

Set SAP RFC import table parameter using php multidimensional array

江枫思渺然 提交于 2019-12-12 06:04:44
问题 I am trying to call a SAP RFC function which has import parameters as a table. Currently I am using saprfc for communication between SAP-PHP but it is not accepting table in import parameter. It is giving following error for import parameter EX_ORDER_HEADER: Can't find interface name EX_ORDER_HEADER, __cal_refresh_internal_buffer(); 来源: https://stackoverflow.com/questions/29078015/set-sap-rfc-import-table-parameter-using-php-multidimensional-array

How to parse SAP business connector link in iPhone using Obj-C?

北慕城南 提交于 2019-12-12 05:48:38
问题 I have SAP business connector URL which opens in XML format in browser. When I paste SAP BU URL in browser, the pop up opens with asking user ID and password. Then after entering the password it shows XML format data. I know how to parse XML file in iPhone but that method is not working with this SAP url. What are the steps required to fetch data from this kind of url which have User ID & pwd in iPHone using xcode, objective C? Updated with Code - (void)applicationDidFinishLaunching:

Microsoft.Adapters.SAP properties not listed in the filters section when creating a send port

假装没事ソ 提交于 2019-12-12 05:17:45
问题 I am trying to set up a windows 7 64bit enterprise machine as a BizTalk development machine. Everything works well except.. I've installed the necessary adapters from the BizTalk installer, I've also installed the SAP 7.2 adapters as it has been done on the server. The problem is that when I am trying to create a send port and define my filter I cannot find Microsoft.Adapters.SAP. properties in the drop down. It is available in the server but not in my development machine. Any clues? 回答1: It

Getting specific cell data from SAP to excel

走远了吗. 提交于 2019-12-12 04:44:49
问题 I am trying to get data from specific cells in a row in SAP, into an excel table using vba. When i record a macro of me clicking the 5-6 items i need, it only gives me that i clicked one. Further more i cannot se any way to get the data from the cells, into SAP. The SAP code is here: Dim W_Ret As Boolean W_Ret = Attach_Session If Not W_Ret Then Exit Sub End If startrow = 10 On Error GoTo myerr objSess.findById("wnd[0]").maximize objSess.findById("wnd[0]/tbar[0]/okcd").Text = "/nymm_pricelist"

SAP HANA getting csv data size

心不动则不痛 提交于 2019-12-12 04:32:31
问题 I am working with SAP HANA I would like to know if it is possible to get disk size of csv data with sql. The csv data that i mean is the file \index\SCHEMA NAME \CL\TABLE_NAME\data.csv after export. Best Regards Houssem 回答1: Nope, there is no way to generate this directly.\ You could, however, do some rough estimation, by looking at M_CS_COLUMNS to see the estimated uncompressed size for each column. Then you could add six bytes (double byte encoding) for every column * no. of records to

How to consume SAP SOAP Webservices, with ksoap2, in android

感情迁移 提交于 2019-12-12 04:14:37
问题 I want to consume SAP webservices in my android app. The webservices are working as intended in SOAPUI (generated requests from the sap wsdl). I have tried using ksoap2 . When using ksoap2 I get "Webservice processing error" as response. I have exhausted all results from google/stackoverflow/sap community network. I have tried the request sent from ksoap2 in SOAPUI, but I am unable to pin down the crucial difference between it and the working (SOAPUI generated) request. Please guide me.