cancel
Showing results for 
Search instead for 
Did you mean: 

Wrong name vor behaviour definition in documentation

gregorw
Active Contributor

Hello Steampunk (SAP CP ABAP Environment) Experts, Hi andre.fischer,

I'm currently working through the example Developing a UI Service with Access to a Remote Service. On the page Defining a Behavior for the Business Object in section "The following code block displays the behavior definition with the definitions that are relevant for the transactional behavior of the business object." this source is shown:

implementation unmanaged;
define behavior for /DMOI_/TRAVEL_C_C  alias Travel_CE
etag calculatedetag

{
  update;
}

the name should be /DMO/I_TRAVEL_C_C instead of /DMOI_/TRAVEL_C_C. Also the etag calculatedetag seems to be deprecated and must be replaced with etag master calculatedetag in 2008. So the correct source would be:

implementation unmanaged;
define behavior for /DMO/I_TRAVEL_C_C //alias <alias_name>

etag master calculatedetag
{
  update;
}

Best regards
Gregor

Accepted Solutions (1)

Accepted Solutions (1)

Andre_Fischer
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Gregor,

thanks for pointing us to this typo. I informed the colleagues who are developing the RAP documentation. It is already fixed and the fix will be rolled out with the next planned update.

Best Regards,

Andre

Answers (0)