Saturday 8 September 2012

Oracle OPM Inventory Item Cost Creation API

Below is the API to create cost against  each Item in OPM Inventory.

begin
GMF_ITEMCOST_PUB.CREATE_ITEM_COST
(
 p_api_version         => 2.0,
 p_init_msg_list       => FND_API.G_TRUE,
 p_commit              => FND_API.G_FALSE,
 x_return_status       => l_return_status,
 x_msg_count           => l_msg_count,
 x_msg_data            => l_msg_data,
 p_header_rec          => l_header_rec,
 p_this_level_dtl_tbl  => l_this_level_tbl,
 p_lower_level_dtl_Tbl => l_lower_level_tbl,
 x_costcmpnt_ids       => l_costcmpnt_ids_tbl
);
  end;

No comments:

Post a Comment