Opportunity Odata model里有三个entity set mark成address = true:
SAP help里的解释是mark成address = true的entity set能够直接通过url访问,比如如下两个例子:document history和maxhit.
而对于其他通过$expand访问的entity set, 比如Attachments,product等等,虽然表面上也是通过url直接访问:
但是根据SAP help里的定义,framework在访问这些entity set时,总是先拿到root entity set,即Oppportunity,再执行expand操作。
下面的例子是Framework处理documentHistory的读操作:框架直接call GET_ENTITYSET method直接根据传入的guid将history返回:
但是对于这个expand的url而言:
框架的处理是先从Opportunity出发
待expand 操作的四个entityset维护在输入参数lo_expand_root的internal table里:
line 28先读取Opp header,再call line 41的read function 读取需要expand的sub entity set信息: