cancel
Showing results for 
Search instead for 
Did you mean: 

Error Code SY/530

Former Member
0 Kudos

Hi

I am testing SAP's RFC CountryCodes but the error I receive

when launching the URL my android received is this:

<error>

<code>SY/530</code>

<message xml:lang="en">

        Processing of request failed. Contact your system administrator.

</message>

<innererror>230E5FE20095F14685BD005056AF69F2</innererror>

</error>

Any idea how this error can be removed?

best regards

Yuval

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Perry,

One of the reason to receive error - SY530 is that you may be using field in creating entity, which you have not defined in structure used for binding..

For example-

lo_property = lo_entity_type->create_property( iv_property_name  = 'FIELD' iv_abap_fieldname = 'FIELD' ).

*

  lo_entity_type->bind_structure( <Reference Structure> ).

You can check if you are using any field which is not defined in <Reference Structure>.

Regards,

Rajesh