2014 Jun 24 11:43 PM
Attention ABAP pros, ninjas, and rock stars:
I am trying to learn more about some standard SAP code that is having a runtime error.
IF NOT gv_cluster_key IS INITIAL.
* Get the combinations
IMPORT it_combi TO <plobs_in_view>
FROM DATABASE indx(dp) ID gv_cluster_key.
ENDIF.
There is a mismatch on what is being imported and bombs on the IMPORT statement.
It would be great if there was a way to see what was being stored at the memory location, and then therefore get a hint as to where the mismatch is.
In debug, I have used Special Tools/System Areas (Internal); Area - MEMORIES and don't see anything that makes sense.
Is there a way to see what's in that memory location?
Thank you in advance.
G Allen
@glenn_a_allen
Attention ABAP pros, ninjas, and rock stars:
I am trying to learn more about some standard SAP code that is having a runtime error.
IF NOT gv_cluster_key IS INITIAL.
* Get the combinations
IMPORT it_combi TO <plobs_in_view>
FROM DATABASE indx(dp) ID gv_cluster_key.
ENDIF.
There is a mismatch on what is being imported and bombs on the IMPORT statement.
It would be great if there was a way to see what was being stored at the memory location, and then therefore get a hint as to where the mismatch is.
In debug, I have used Special Tools/System Areas (Internal); Area - MEMORIES and don't see anything that makes sense.
Is there a way to see what's in that memory location?
Thank you in advance.
G Allen
@glenn_a_allen
2014 Jun 25 2:00 AM
Hi Glen,
This is not a memory location, this is database cluster table INDX. AFAIK there's no (standard) way to display the data.
I guess your best chance is try to track the export and make sure the structure being exported is the same as the one being imported (including names). Also, you can put your import inside a try / catch, catching exception CX_SY_IMPORT_MISMATCH_ERROR.
Cheers,
Custodio
2014 Jun 25 6:16 AM
Hi Glenn,
please check the SAP notes 1590418 and 1623389 for your issue
http://service.sap.com/sap/support/notes/1590418
http://service.sap.com/sap/support/notes/1623389
Regards,
Klaus
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |