sap

JCO IDOC Server for multiple destinations

前提是你 提交于 2020-06-11 17:12:22
问题 I'm developing a IDOC server which can connect to multiple destinations on same SAP system(gateway host will be same) and receive IDocs. I'm not sure that I need multiple JCoServer instance running or single JCoServer with multiple destinations. If latter is the case, why would there is a parameter to specify the destination name using jco.server.repository_destination property when providing the server data? 回答1: The property jco.server.repository_destination is for telling the JCoServer

Add table rows to the transport request

萝らか妹 提交于 2020-06-08 15:01:43
问题 I have a problem with adding rows of table to the transport request in programming way. When i wrote down the transport request number i get the error: You cannot use request EAMK913244 the code that i used for transporting date is: form add_data_to_transaction . data lt_variable_changed type table of ztable_task2 . data: l_request type trkorr, lt_e071 type tr_objects, lt_e071k type tr_keys, lv_position type ddposition, lv_tabkey type trobj_name, ls_e071 type e071, ls_e071k type e071k.

SAP ERP integration with C++

隐身守侯 提交于 2020-05-28 09:56:46
问题 Is there a SDK for C++ or .NET available for SAP ERP 4.0 as I need to read and write data into it? 回答1: I am not sure what version SAP ERP 4.0 refers to, but there is certainly the RFC SDK that you can use (can be made to work with C++ and .Net): Very old version: http://help.sap.com/saphelp_40b/helpdata/pt/8c/20e2bf493311d1894a0000e829fbbd/frameset.htm Recent version: http://help.sap.com/erp2005_ehp_04/helpdata/EN/22/04287a488911d189490000e829fbbd/frameset.htm 回答2: Building on the previous

SAP ERP integration with C++

寵の児 提交于 2020-05-28 09:55:48
问题 Is there a SDK for C++ or .NET available for SAP ERP 4.0 as I need to read and write data into it? 回答1: I am not sure what version SAP ERP 4.0 refers to, but there is certainly the RFC SDK that you can use (can be made to work with C++ and .Net): Very old version: http://help.sap.com/saphelp_40b/helpdata/pt/8c/20e2bf493311d1894a0000e829fbbd/frameset.htm Recent version: http://help.sap.com/erp2005_ehp_04/helpdata/EN/22/04287a488911d189490000e829fbbd/frameset.htm 回答2: Building on the previous

SAP ERP integration with C++

こ雲淡風輕ζ 提交于 2020-05-28 09:55:29
问题 Is there a SDK for C++ or .NET available for SAP ERP 4.0 as I need to read and write data into it? 回答1: I am not sure what version SAP ERP 4.0 refers to, but there is certainly the RFC SDK that you can use (can be made to work with C++ and .Net): Very old version: http://help.sap.com/saphelp_40b/helpdata/pt/8c/20e2bf493311d1894a0000e829fbbd/frameset.htm Recent version: http://help.sap.com/erp2005_ehp_04/helpdata/EN/22/04287a488911d189490000e829fbbd/frameset.htm 回答2: Building on the previous

Smart edit unable edit the page emailsignmodal

眉间皱痕 提交于 2020-05-16 02:30:11
问题 Hi Hybris 1811 smartedit I am trying to edit Email Signup Modal but as soon as I click on the link it redirects me to below page. I have multiple sites so sometimes I am getting this warning: WARN [hybrisHTTP20] [DefaultCMSSiteService] More than one site associated with URL [https://localhost:9002/?site=XXXX]. Returning first. Did anybody faced similar issue? 回答1: The main problem is that you have more than one site containing the same urlPatterns This attribute represents a regex that is

Getting RFC function module parameters in C#

拜拜、爱过 提交于 2020-05-15 09:34:05
问题 I am currently using the SAP .NET Connector 3.0 in C# and I want to get the parameters like Import, Export and Table from a given function module. Is there any way in C# while using the SAP .NET Connector to do this? 回答1: Assuming that you are referring to a function module's interface definition, the functionality to query and interpret this RFC meta data from a SAP system is already contained in the connector library. As an entry point for NCo 3.0, have a look into its official API

SAP SAML authentication doesn't accept WS-TRUST URI token

有些话、适合烂在心里 提交于 2020-04-17 04:17:37
问题 We have a SSO setup between SAP Netweaver and ADFS (acting as the STS). So, some user will login on a custom ASP.Net application and this application will request a SAML assertion from ADFS to access the SAP system. The thing is that according to SAP documentation the relying party identifier of the SAP system is not an URL (its just a name), and that way is specified en ADFS (eg: SAPSYSTEMRPID). How on earth I can get a token issued using WS-TRUST (which is what ADFS provides) when the

SAP SAML authentication doesn't accept WS-TRUST URI token

时间秒杀一切 提交于 2020-04-17 04:17:23
问题 We have a SSO setup between SAP Netweaver and ADFS (acting as the STS). So, some user will login on a custom ASP.Net application and this application will request a SAML assertion from ADFS to access the SAP system. The thing is that according to SAP documentation the relying party identifier of the SAP system is not an URL (its just a name), and that way is specified en ADFS (eg: SAPSYSTEMRPID). How on earth I can get a token issued using WS-TRUST (which is what ADFS provides) when the

XXX is a table without a header line and therefore has no component called “EBELN”

一笑奈何 提交于 2020-04-15 17:20:48
问题 I'm getting the syntax error: "IT_COMBINE" is a table without a header line and therefore has no component called "EBELN". I have tried using "into corresponding fields" and that does not work. My code: 19 Data it_combine type standard table of ty_combine. ... 32 select ebeln lifnr ekorg bsart ekgrp 33 into table it_po 34 from ekko 35 where ebeln = it_combine-ebeln. " <=== SYNTAX ERROR ... 回答1: You can not use the fields in internal tables directly if you did not declare your internal table