get_children 方法里面参数 iv_as_copy 有什么用?

简介: Sent: Wednesday, May 08, 2013 11:47 AM

Question:

lv_children = iv_account->get_children( iv_as_copy       = abap_true ). 的参数啥意思

lo_children = iv_account->get_relation( iv_relation_name = <rel>

iv_as_copy = abap_false ).

解释没太看懂

There is one special thing you need to know on the parameter IV_AS_COPY of GET_CHILDREN. It has

only effect on the iterator GET_FIRST etc. of the container list you will receive back. If set to true the

iterator will iterate only on the children inside the container list when it was created. If the parameter is

set to false the iterator will take into account children that are added to the container (or which are deleted

from it) after the container list was get. It is a misunderstanding that you get a copy of the content of the

container if you use this parameter. Knowing this you now have the knowledge going through the

relations of your model getting a separate nested container for every 1:n relation.

?

Rule of thumb:


iv_as_copy = true => you get a snapshot (preffered)

iv_as_copy = false => list gets updated; use only if you want to keep the list; has negative impact on

performance/memory consumption

Sent: Thursday, May 09, 2013 5:21 PM

其实对于做过debug的developer,看了文档里对这个参数的解释后理解就会更加深刻。但是的确刚刚接触的developer看了解释可能仍然似懂非懂。


这个参数关键起作用的地方就在container object list的构造函数里:


如果你使用iv_as_copy = true得到一个container object list,那么这个container object list A 只是当前parent container object的children的一个snapshot,今后parent container object 如果有新的children加进来之后,新的child不会反映到你得到的snapshot A去,因为technical上讲,你的snapshot并没有注册 parent container object的CHILD_ADDED event,因为不会被通知到。


举一个例子:


我在从Account navigate 到AccountAddress的地方加一段代码,分别存储两种方式得到的account address container object list,这个时候还没有真正取Account address,所以两个container object list里面都只有一个dummy的entry,is_handle = X


我新建一个Address,然后save


因为当前的Account DB里面有50个address,我又在当前session里面添加了1个,所以iv_as_copy = false的有51个item,而snapshot仍然只有1个dummy的。


image.png

image.png

image.png

image.png

image.png

image.png

image.png

image.png

image.png

相关文章
|
4月前
|
索引
ArrayList集合常用方法,.set可以用来生成图片和赋值命名,array.remove(1),array.set(1,“xxxx”)可以修改指定位置,array.size可以获取元素的个数
ArrayList集合常用方法,.set可以用来生成图片和赋值命名,array.remove(1),array.set(1,“xxxx”)可以修改指定位置,array.size可以获取元素的个数
|
4月前
|
JavaScript
element-ui Cannot read properties of undefined (reading ‘name‘),data中写成集合的形式
element-ui Cannot read properties of undefined (reading ‘name‘),data中写成集合的形式
|
4月前
4. 解决uni-app开发过程中view、image等标签出现诸如“出现错误:类型“{ class: string; }”的参数不能赋给类型“.......”
4. 解决uni-app开发过程中view、image等标签出现诸如“出现错误:类型“{ class: string; }”的参数不能赋给类型“.......”
327 0
|
6月前
|
API Android开发
android setTag (int key, Object tag)使用
android setTag (int key, Object tag)使用
51 1
|
6月前
|
算法 C++ 容器
【C++11算法】find_if_not、 copy_if、copy_n
【C++11算法】find_if_not、 copy_if、copy_n
111 0
|
安全 编译器 C语言
【C++】string 之 assign、at、append函数的学习
【C++】string 之 assign、at、append函数的学习
146 0
|
XML 前端开发 JavaScript
PHPDOM中的children方法是什么
在PHP开发中,PHPDOM是一个非常常用的类库,该类库是基于DOM模型的PHP扩展,主要用于处理XML和HTML文档。而其中的children方法是一种非常重要的函数,用于获取某个元素的所有子元素。
63 0
|
机器学习/深度学习 存储 PyTorch
params.data.clone()是什么意思?params是模型的参数
在深度学习中,模型的参数通常是由多个张量组成的。这些张量存储了模型在训练过程中学到的权重和偏置等参数。 params.data 是一个张量,其中包含了模型的参数数据。clone() 是 PyTorch 中的一个方法,它用于创建一个与当前张量具有相同数据但不同内存地址的新张量。 因此,params.data.clone() 的意思是创建一个与 params.data 张量具有相同数据但不同内存地址的新张量。通常,这个方法被用来复制模型参数,以便在优化器中使用。
250 0
|
数据采集 Python
'str' object has no attribute 'get' 错误解决方案
'str' object has no attribute 'get' 错误解决方案
Kyro - Output 类中没有 clear() 方法
Kyro - Output 类中没有 clear() 方法
88 0