‎2012 Sep 26 4:49 PM
I have created a simple Delta Generic Extractor. Initially, I did the full load and worked fine and now when I try to do the Delta load I am getting error from Source System.
In SAP side using ST22: I see following error message.
Category : Internal Kernel Error
Runtime Errors : PARAMETER_CONVERSION_ERROR
Please suggest.
BW
‎2012 Sep 26 4:55 PM
hello,
Please check in your custom extractor you might have written FM to pick the delta records...check that FM...might be the sequence of IMPORT and EXPORT is wrong. Also try to debug your FM to see why and where the error is coming.
best regards,
swanand
‎2012 Sep 26 5:09 PM
There is no FM written to this extractor but there is another Extractor that use the same table has FM. Will that conflict with this extractor becuase they are using the same table.
‎2012 Sep 26 5:10 PM
Hi,
This type of error comes when you try to move some data to a data type which does not support the data. e.g you want to move "ABC' to a integer data type. If possible please post the dump. It will help others to analyze in better way.
Regards,
R
‎2012 Sep 26 5:54 PM
Hello Roy,
If the data type does not support then my full load should fail right but it did not. Only it happen when I do the delta load. It does not complain Full load..
Kippa-Just to clarify: I am not using Function Module in the Datasource.
Following is the error message from T-code: ST22
Category Internal Kernel Error
Runtime Errors PARAMETER_CONVERSION_ERROR
Application Component BC-MID-RFC
Short text
An error occurred during the receipt of a complex parameter.
What happened?
During a remote function call, an error occurred while converting
a complex parameter.
What can you do?
Note which actions and input led to the error.
For further help in handling the problem, contact your SAP administrator
.
You can use the ABAP dump analysis transaction ST22 to view and manage
termination messages, in particular for long term reference.
Error analysis
An error occurred during the conversion of a complex parameter.
Thanks
BW
‎2012 Sep 26 6:12 PM
Please post the entire dump. It is not complete still. Download it in a text file and attach.
‎2012 Sep 26 7:30 PM
Hi BW,
Did you happen to check the ST22 and get some clue on which part of the program is erroring out?.
Please debug before that place and get the reason for the data parameter mappings?
Cheers,
Kripa Rangachari.
‎2012 Sep 26 5:11 PM
Hi BWTeamBW,
I think - you might have encountered this error duing a RFC Call nad with Complex Parameters Transfer(IMPORT// EXPORT / CHANGING)
Please try to have the interface with prominent IMPORT / EXPORT / CHAGGING parameters and even if there are any tables parameter - have the structure definted in TABLE TYPES and pas it to the RFC function module.
Keep us posted.
Cheers,
Kripa Rangachari.
‎2015 Apr 15 12:09 PM
Calling Thru Trans code: BPS0 in ECC 6
getting this error:
Message No. UPC202
You have selected a function, to execute this the system must set up an RFC connection to another SAP System. However, setting up this connection was not successful. The following internal error message was generated:
"An error occurred during the receipt of a complex parameter."
after i check in bw trans code:st22
Following this error message:
Category Internal Kernel Error
Runtime Errors PARAMETER_CONVERSION_ERROR
Application Component BC-MID-RFC
Short text
An error occurred during the receipt of a complex parameter.
What happened?
During a remote function call, an error occurred while converting
a complex parameter.
What can you do?
Note which actions and input led to the error.
For further help in handling the problem, contact your SAP administrator
.
You can use the ABAP dump analysis transaction ST22 to view and manage
termination messages, in particular for long term reference.
Error analysis
An error occurred during the conversion of a complex parameter.
‎2012 Sep 26 8:05 PM
Hi,
as the error tells you:
You can use the ABAP dump analysis transaction ST22 to view and manage
termination messages, in particular for long term reference.
Check the code line where the dump occurs, check the data passed (helpul: LOG-POINTS using transaction SAAB)
Regards
Clemens
‎2012 Sep 26 8:36 PM
If you did not create a FM for extraction, I suppose your extracted s based on a table, a view, an infoset or such object. The initial load performed well, so look at the definition you input for the delta identification, usually a date, number range or some timestamp, check its definition.
Regards,
Raymond
‎2015 Apr 15 8:40 AM
Calling Thru Trans code: BPS0 in ECC 6
getting this error:
Message No. UPC202
You have selected a function, to execute this the system must set up an RFC connection to another SAP System. However, setting up this connection was not successful. The following internal error message was generated:
"An error occurred during the receipt of a complex parameter."
after i check in bw trans code:st22
Following this error message:
Category Internal Kernel Error
Runtime Errors PARAMETER_CONVERSION_ERROR
Application Component BC-MID-RFC
Short text
An error occurred during the receipt of a complex parameter.
What happened?
During a remote function call, an error occurred while converting
a complex parameter.
What can you do?
Note which actions and input led to the error.
For further help in handling the problem, contact your SAP administrator
.
You can use the ABAP dump analysis transaction ST22 to view and manage
termination messages, in particular for long term reference.
Error analysis
An error occurred during the conversion of a complex parameter.
‎2015 Apr 15 9:20 AM
Hi,
are you trying to communicate betweenn a non-unicode ERP and a unicode BW system. The system should be able to handle this if properly configured.
Otherwise you might check the data passed in the interface in detail - if the structures in both systems are not 100% the same, this may happen. I.e. someone may have put an append structure to any part of the interface involved in the ERP system buit did not do so in BW. Please check.
Regards,
Clemens
‎2015 Apr 15 9:37 AM
‎2015 Apr 15 10:57 AM
Calling Thru Trans code: BPS0 in ECC 6
getting this error:
Message No. UPC202
You have selected a function, to execute this the system must set up an RFC connection to another SAP System. However, setting up this connection was not successful. The following internal error message was generated:
"An error occurred during the receipt of a complex parameter."
after i check in bw trans code:st22
Following this error message:
Category Internal Kernel Error
Runtime Errors PARAMETER_CONVERSION_ERROR
Application Component BC-MID-RFC
Short text
An error occurred during the receipt of a complex parameter.
What happened?
During a remote function call, an error occurred while converting
a complex parameter.
What can you do?
Note which actions and input led to the error.
For further help in handling the problem, contact your SAP administrator
.
You can use the ABAP dump analysis transaction ST22 to view and manage
termination messages, in particular for long term reference.
Error analysis
An error occurred during the conversion of a complex parameter.
‎2015 Jul 07 8:24 AM
Hi Abdulkaleem/ Experts ,
I have encountering similar issue.
What I can check in st22 dump is that it is giving dump during a function module call (although my data source is simple table based) .
This FM is automatically created with name as /BIC/QI<"Datasource name">___1000 .
And while running only delta it is giving error.
The timestamp I am using is of domain type CPE_TIMESTAMP which is standard.
Also when I run the same delta with delta specific field as Numeric pointer and same timestamp it is working fine.
Can someone please suggest what is the root cause of this.
‎2015 Jul 12 8:14 AM
Hi All,
Got a solution , in my case there was a text type object present in my ECC table.
Which we have unchecked in datasource from RSO2 while creating it ,
this was not giving problem during full load , but while delta run was throwing error.
We created a view and removed that field in view from that table , and now delta is working properly.
Regards ,
Abhishek Bhattacharya
‎2016 Mar 30 7:04 AM