Quantcast
Channel: SCN : Unanswered Discussions - ABAP Connectivity
Viewing all 1115 articles
Browse latest View live

IDOC's in TRFC ("Transaction recorded") Problem

$
0
0

Dear Gurus,

 

BW System = SAP NetWeaver 7.40 , Sap_Basis = 7.40 - 007 , Database = Hana , 1.00.80.00.391861 , Kernel = 741 , Sup.Pck.Lvl = 31

ERP System = ERP 6 EHP 4 , Sap_Basis = 701 - 0011 , Database = Oracle , 11.2.0.4.0 , Kernel = 721 , Sup.Pck.Lvl = 401

 

The IDOCs we send are sitting in TRFC queues, they are not sent to the target system. I checked all the ALE settings, they are fine. The processing mode is "Immediate".


When I go to SM58 I will find the entry for the transaction with status "Transaction Recorded". If I select the entry and press F6 (Execute LUW) the IDOC is sent to the target system and the queue becomes empty.


rfc.png


Also " 530997 - tRFC calls are not processed in transaction SM58" job is scheduled for 2 min period but same result !


What is the problem ? It should be goes automatically.


Best Regards


Consuming webserives in sap of Non sap system

$
0
0

Hi Guys,

 

I want to consume web services in sap of a non sap system (which is service provide) , but i am encountering a problem that how can I use WSDL file (which contains Service provider data) of service provide to use in abap code to use further, without PI, please guide in this regard as i followed different tutorial which only guide me communicate between two sap system, but i want consume web service of non sap system

 

please help me as I am beginner,

 

Thanks

Proxy Generation Error

$
0
0

Hi

  I am trying to consume the external WSDL URL but I am getting "Proxy Generation Error " while creating the consumer service.

Note : I am connecting to SAP via VPN and there is no internet connection in the client's environment.

Help will be appreciated.

 

Thanks in Advance.

How to extend generated iDoc types for CRMXIF_PARTNER_SAVE_M01

$
0
0

Hi all,

 

I am working with SAP CRM 7.0 ehp1. While trying to send the data from one SAP system to another using ALE/iDocs for custom fields of BP, I am facing some problem. I have successfully sent the BP data automatically while creating new BP, but the transferred data is not having the customized fields of BP because standard iDoc type CRM_XIF_PARTNER_SAVE_M01 is not having these fields. So now when I tried to extend standard iDoc type using the tcode we30, the system is showing the error - 'Action is not possible for generated idoctypes'. I have searched many places but could not find any proper way to extend standard idoc types with out creating new idoc type. Please share step by step procedure to extend standard idoc type to transfer the customized fields in BP.

 

Please help!

 

Regards,

kavita

Update HRPAD500 table update

$
0
0

Hi All,

 

Can anyone help me with a FM or class or any ABAP way to update

HRPAD500 table fields based on ADATANR (TABNR)

Not suppose to use update syntax.

 

Thanks,

DDutt.

issue system allowing two popup's

$
0
0

i have created custom screen(subscreen) for which on two fields i have created search help for f4 at data element level .

when i click on the first field f4 it also allow me to open another field f4.

how can i restrict that  . like standard f4  search help.
help me with my issuepopup's.PNG



   
 
 
 
 
 
 
 
 
 
 
 





Proxy generation Error while Consuming webservies se80

$
0
0

Hi guys

 

I am consuming web services of 3rd party non sap system without PI. When i tried to create client proxy from se80 and given the URL and create it.

 

it gives that error "Exception occurred in communication framework:Error in HTTP Framework:404conn failedhttp://202.83.160.22/WS-crpl-9001  "I search this on google but  couldn't find any satisfactory answer, and I am all ready using ip not host name .

 

Please help as I already consuming so much in searching the solution of this problem.

SAP RFC Function module

$
0
0

Hi,

 

I have an application which has a form in front end with various input fields, radio buttons, and check boxes. This application is created in Web Dynpro JAVA. Now, I want to store these values to SAP system, and need to create RFC enabled function module for that. Table creation for storing data is already done in backend.

 

I have no knowledge of ABAP, as I am a Web Dynpro JAVA resource.

 

Can anyone please suggest some resources, or tutorials, which can guide me on this?

 

Thanks in advance.


Empty Payload Queue RFC Inbound

$
0
0

Hi ,

 

There is a issue that Empty Payload QRFC's are getting generated in the system. Could you please let me know what empty payload Qrfc's.

 

How can I identify in SBGRFCMON ? In which table the empty units are stored .

 

Customer wants to delete the empty units as it putting so much of load . Please suggest.

 

Thanks,

Nikhil

RFC and read table in another destination

$
0
0

HI

I search a complete code to read a table using the function 'RFC_GET_TABLE_ENTRIES '

I can acess to another server using RFC without problem.

 

I need to read table 'tmsbuftxt ' and data ' TRKORR '.

 

my program looks like

 

 

TABLES:
       tmsbuftxt.

     DATA:
       i_tab512 TYPE tab512 OCCURS 0 WITH HEADER LINE,
       i_tmsbuftxt TYPE table of  tmsbuftxt,
       st_tmsbuftxt type tmsbuftxt.

     PARAMETERS p_dest LIKE rfcdes-rfcdest OBLIGATORY.

     START-OF-SELECTION.
       CLEAR i_tab512. REFRESH i_tab512.
       CALL FUNCTION 'RFC_GET_TABLE_ENTRIES'
         DESTINATION
           p_dest
         EXPORTING
    "     BYPASS_BUFFER           = ' '
     "     FROM_KEY                = ' '
     "     GEN_KEY                 = ' '
     "     MAX_ENTRIES             = 0
           table_name              = 'tmsbuftxt'
     "     TO_KEY                  = ' '
     "   IMPORTING
     "*     NUMBER_OF_ENTRIES       =
         TABLES
           entries                 = i_tab512
         EXCEPTIONS
           OTHERS                  = 1.

       i_tmsbuftxt[] = i_tab512[].



         LOOP AT i_tmsbuftxt INTO st_tmsbuftxt.
             Write : st_tmsbuftxt-TRKORR.
         ENDLOOP.

 

 

 

 

The problem is I dont know how to use the function correctly , I can choose the RFC I want but  my programm return nothing.

Anyone can corect this?

I just start develop abap since 1 month.

I just want write  st_tmsbuftxt-TRKORR. who is in another environnement using RFC.

Formatting the spool output.

$
0
0

Hello All,

 

   Can any one let me know how to format the spool out into internal table.

 

   I am using FM "RSPO_RETURN_ABAP_SPOOLJOB"  to get the spool data and getting the output in Buffer table type which is single column with 255 characters.

 

Now i need to format this data into internal table so that i can process further.

 

Thanks & regards,

sathish.

IDOC's in TRFC ("Transaction recorded") Problem

$
0
0

Dear Gurus,

 

BW System = SAP NetWeaver 7.40 , Sap_Basis = 7.40 - 007 , Database = Hana , 1.00.80.00.391861 , Kernel = 741 , Sup.Pck.Lvl = 31

ERP System = ERP 6 EHP 4 , Sap_Basis = 701 - 0011 , Database = Oracle , 11.2.0.4.0 , Kernel = 721 , Sup.Pck.Lvl = 401

 

The IDOCs we send are sitting in TRFC queues, they are not sent to the target system. I checked all the ALE settings, they are fine. The processing mode is "Immediate".


When I go to SM58 I will find the entry for the transaction with status "Transaction Recorded". If I select the entry and press F6 (Execute LUW) the IDOC is sent to the target system and the queue becomes empty.


rfc.png


Also " 530997 - tRFC calls are not processed in transaction SM58" job is scheduled for 2 min period but same result !


What is the problem ? It should be goes automatically.


Best Regards

no EAN code on Standard Order (created by incoming IDoc)

$
0
0

Hi

 

incoming IDoc has just been created. In segment E1EDP19 003 exist right EAN number, but on standard order created via this IDoc automatically EAN code field isn't filled. When I'm creating the same OR with the same data manually everything is okey (EAN code is in the right place). However when I'm reprocessing IDoc manually (in WE19) creating another, identical order then EAN code is also appearing on every item.

 

Any ideas what can be the reason of this problem?

 

Cheers

Ashoka

How to use loop in VBAK table using BDC RFC connection through excel vba ?

$
0
0

Hello,

 

I am trying to extract data from VBAK table using rfc connection with Excel VBA. where i can able to pull data first time, when i tried to use the same set of code using loops, it throws an error like BAD INDEX.

 

Any help appreciated.

Trigger outbound during SU01 Password change?

$
0
0

Hi All,

 

I have a requirement to trigger a custom idoc whenever a password is changes in SU01?

 

I don't find any standard idocs doing this?

 

How can I approach this, anything can be done via change pointers?

 

Please Share your inputs?

 

Thanks,

Kannan N


lsmw, butch input RCPTRA01 , assignment of components to routings

$
0
0

hi experts

I use "LSMW" with the method "butch input", the subject : routing "RCPTRA01" for the assignment of components to the existing routings, but when I execute my butch input, the system forces me to create a new routing then it will assign the components. but what I want is to assign components to the routings that are already created

you have proposals please

INcorrect value: unknown namespace http://www.w3.org/2001/xmlschema consuming webservies in sap

$
0
0

Hi guys,

 

 

I am trying to consume External web services url  http://172.31.3.48:8717/?wsdl from se80 - enterprise services - client proxy etc, which is located on our local server , but it giving me a error"liberary haldler exception"  " incorrect value: unknown namespacehttp://www.w3.org/2001/xmlschemaI AM trying to solve this issue from last one week but failed to fix it,

 

Attached is my WSDL File

 

please help me.

incorrect value: unknown namespace http://www.w3.org/2001/xmlschema

$
0
0

Hello

I am trying to consume External web services url  http://172.31.3.48:8717/?wsdl from se80 - enterprise services - client proxy etc, which is located on our local server , but it giving me a error "liberary haldler exception"  " incorrect value: unknown namespace http://www.w3.org/2001/xmlschema"  I AM trying to solve this issue from last one week but failed to fix it, please help me I have already posted this question but no one replied to me,

 

your help will be appreciated.

 

Given below is my Wsdl file.

 

<?xml version="1.0" encoding="utf-8"?>

<wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://tempuri.org/">

  <wsdl:types>

  <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">

  <s:element name="GetData">

  <s:complexType>

  <s:sequence>

  <s:element minOccurs="0" maxOccurs="1" name="user" type="s:string"/>

  <s:element minOccurs="0" maxOccurs="1" name="pass" type="s:string"/>

  <s:element minOccurs="0" maxOccurs="1" name="fromdate" type="s:string"/>

  <s:element minOccurs="0" maxOccurs="1" name="todate" type="s:string"/>

  </s:sequence>

  </s:complexType>

  </s:element>

  <s:element name="GetDataResponse">

  <s:complexType>

  <s:sequence>

  <s:element minOccurs="0" maxOccurs="1" name="GetDataResult">

  <s:complexType>

  <s:sequence>

  <s:element ref="s:schema"/>

  <s:any/>

  </s:sequence>

  </s:complexType>

  </s:element>

  </s:sequence>

  </s:complexType>

  </s:element>

  </s:schema>

  </wsdl:types>

  <wsdl:message name="GetDataSoapIn">

  <wsdl:part name="parameters" element="tns:GetData"/>

  </wsdl:message>

  <wsdl:message name="GetDataSoapOut">

  <wsdl:part name="parameters" element="tns:GetDataResponse"/>

  </wsdl:message>

  <wsdl:portType name="WSCRPL9001Soap">

  <wsdl:operation name="GetData">

  <wsdl:input message="tns:GetDataSoapIn"/>

  <wsdl:output message="tns:GetDataSoapOut"/>

  </wsdl:operation>

  </wsdl:portType>

  <wsdl:binding name="WSCRPL9001Soap" type="tns:WSCRPL9001Soap">

  <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>

  <wsdl:operation name="GetData">

  <soap:operation soapAction="http://tempuri.org/GetData" style="document"/>

  <wsdl:input>

  <soap:body use="literal"/>

  </wsdl:input>

  <wsdl:output>

  <soap:body use="literal"/>

  </wsdl:output>

  </wsdl:operation>

  </wsdl:binding>

  <wsdl:binding name="WSCRPL9001Soap12" type="tns:WSCRPL9001Soap">

  <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>

  <wsdl:operation name="GetData">

  <soap12:operation soapAction="http://tempuri.org/GetData" style="document"/>

  <wsdl:input>

  <soap12:body use="literal"/>

  </wsdl:input>

  <wsdl:output>

  <soap12:body use="literal"/>

  </wsdl:output>

  </wsdl:operation>

  </wsdl:binding>

  <wsdl:service name="WSCRPL9001">

  <wsdl:port name="WSCRPL9001Soap" binding="tns:WSCRPL9001Soap">

  <soap:address location="http://172.31.3.48:8717/WS-CRPL-9001.asmx"/>

  </wsdl:port>

  <wsdl:port name="WSCRPL9001Soap12" binding="tns:WSCRPL9001Soap12">

  <soap12:address location="http://172.31.3.48:8717/WS-CRPL-9001.asmx"/>

  </wsdl:port>

  </wsdl:service>

</wsdl:definitions>

Idoc export into wsdl format

$
0
0

HI Expats,

 

I was trying to export the idoc into wsdl format using SRT_IDOC_WSDL_NS for C4C integration. Where in getting an error stating

" Function call IDOCTYPE_READ_COMPLETE failed

Structure of segment E1T023W is unknown"

 

Could anyone of you provide some insight to solve this and get me the idoc exported.

 

Appreciate your support.

 

Thanks in anticipation.

WE09 run in background display spool

$
0
0

Is there a way to run the idocs in a collapsed form in the background (not expanding all the data segments) This is what I don't want:background_we09_cba.JPG

This is what I want, how it looks in the non-background processing:

background_we09_cba-2.JPG

Viewing all 1115 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>