Inquiry whether the attribute change updated by API will be cascaded to Child org
We have a program that calls inv_item_grp.Update_Item to update item. The code is as below:
inv_item_grp.Update_Item (p_commit => fnd_api.g_false,
p_template_name => P_TEMPLATE_NAME,
p_item_rec => l_item_table,
x_item_rec => x_item_table,
x_return_status => x_return_status,
x_error_tbl => x_message_list);
We have date load file in CSV, which stores the item, template name, attribute to be changed as well as organization to be changed, which is master org. We first load this data to a staging table and then call the API above to get the data from the staging table to update attribute. Will the attribute that is controlled at master level and updated by this API at Master organization get automatically cascaded to all the child orgnizations? For example, we have internal ordered flag controlled at master org. We called the API to update this flag to N
inv_item_grp.Update_Item (p_commit => fnd_api.g_false,
p_template_name => P_TEMPLATE_NAME,
p_item_rec => l_item_table,
x_item_rec => x_item_table,
x_return_status => x_return_status,
x_error_tbl => x_message_list);
We have date load file in CSV, which stores the item, template name, attribute to be changed as well as organization to be changed, which is master org. We first load this data to a staging table and then call the API above to get the data from the staging table to update attribute. Will the attribute that is controlled at master level and updated by this API at Master organization get automatically cascaded to all the child orgnizations? For example, we have internal ordered flag controlled at master org. We called the API to update this flag to N
0