SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

Вызов SAP RFC из net



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
amac
Участник
Участник



Joined: 15 Aug 2008
Posts: 1

PostPosted: Fri Aug 15, 2008 6:58 pm    Post subject: Вызов SAP RFC из net Reply with quote

Есть функция SAP R/3:
ZRFC_BO_GET_STATUS_GOODSDEL

Входные параметры:
NUM_DELIV - номер доставки

Выходные параметры:
E_RETCD - код возврата (0 - все ок, 1 - ошибки, смотреть в транзакции SLG1: код объекта - ZUNI_SI, код подобъекта - ZGDSDEL_UPL)
E_DATA - таблица с данными (два поля, номер материала и статус доставки)
Статусы доставки бывают:
00 - товар не обработан,
01 - товар зарезервирован,
02 - товар готов к отправке,
03 - товар отправлен,
04 - товар доставлен.

Для ее вызова из asp .net страницы написан следующий код (где-то в Интернете нашел сборки librfc32.dll, SAP.Connector.dll, SAP.Connector.Rfc.dll):

string connStr;
connStr = "CLIENT=№ USER=польз. PASSWD=пароль LANG=en ASHOST=IP SYSNR=16";
SAPConnection objSAP = new SAPConnection(connStr);
SAPClient newSapClient = new SAPClient();
newSapClient.Connection = objSAP;
objSAP.Open();
object[] input = new object[1];
input[0] = 6096;
RfcClient rfcClient = new RfcClient();
object[] output = new object[2];
output = rfcClient.RfcInvoke(newSapClient, "ZRFC_BO_GET_STATUS_GOODSDEL", input);
objSAP.Close();

Подключение к SAP происходит (если, например, указать неправильный пароль, будет исключение при objSAP.Open()). Но при попытке вызова функции создается исключение invalid methodZRFC_BO_GET_STATUS_GOODSDEL.

Никто не знает, в чем может быть дело? RFC-функция существует именно на том сервере, к которому я подключаюсь, права на нее есть.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG.
SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG.
Every effort is made to ensure content integrity. Use information on this site at your own risk.