{"id":4707,"date":"2014-04-01T16:01:16","date_gmt":"2014-04-01T16:01:16","guid":{"rendered":"http:\/\/erpschools.com\/?p=4707"},"modified":"2014-12-05T10:05:06","modified_gmt":"2014-12-05T10:05:06","slug":"ozf_funds_pub","status":"publish","type":"post","link":"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub","title":{"rendered":"OZF_FUNDS_PUB"},"content":{"rendered":"<p><code class=\"lang:plsql decode:true \" title=\"Create Budget\"><br \/>\nSET serveroutput on;<br \/>\nDECLARE<\/p>\n<p>l_user_name\t\tVARCHAR2(100);<br \/>\nl_user_id\t\tNUMBER;<br \/>\nl_resource_id\t\tNUMBER;<br \/>\nl_resp_id\t\tNUMBER;<br \/>\nl_api_version           NUMBER := 1.0;<br \/>\nl_fund_id\t\tNUMBER;<br \/>\nl_validation_level\tNUMBER := fnd_api.g_valid_level_none;<br \/>\nl_return_status\t\tVARCHAR2(1);<br \/>\nl_msg_count\t\tNUMBER;<br \/>\nl_msg_data\t\tVARCHAR2(2000);<\/p>\n<p>l_pvt_fund_rec OZF_FUNDS_PUB.fund_rec_type;<br \/>\nl_modifier_list_rec ozf_offer_pub.modifier_list_rec_type;<br \/>\nl_modifier_line_tbl ozf_offer_pub.modifier_line_tbl_type;<br \/>\nl_vo_pbh_tbl ozf_offer_pub.vo_disc_tbl_type;<br \/>\nl_vo_dis_tbl ozf_offer_pub.vo_disc_tbl_type;<br \/>\nl_vo_prod_tbl ozf_offer_pub.vo_prod_tbl_type;<br \/>\nl_qualifier_tbl ozf_offer_pub.qualifiers_tbl_type;<br \/>\nl_vo_mo_tbl ozf_offer_pub.vo_mo_tbl_type;<\/p>\n<p>BEGIN<\/p>\n<p>select resource_id<br \/>\ninto l_pvt_fund_rec.owner<br \/>\nfrom JTF_RS_RESOURCE_EXTNS<br \/>\nwhere user_id = 1177;<\/p>\n<p>BEGIN<br \/>\n\tselect responsibility_id<br \/>\n\tinto l_resp_id<br \/>\n\tfrom fnd_responsibility_vl<br \/>\n\twhere responsibility_key = 'OZF_USER';<br \/>\nEXCEPTION<br \/>\nWHEN OTHERS THEN<br \/>\n\tl_resp_id := NULL;<br \/>\nEND;<\/p>\n<p>FND_GLOBAL.apps_initialize (<br \/>\nuser_id =&gt; 1234,<br \/>\nresp_id =&gt; l_resp_id, -- Oracle trade management user<br \/>\nresp_appl_id =&gt; 682 -- Oracle Trade management<br \/>\n);<\/p>\n<p>FND_PROFILE.put ('FND_AS_MSG_LEVEL_THRESHOLD', FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);<br \/>\nFND_MSG_PUB.initialize;<\/p>\n<p>l_pvt_fund_rec.category_id\t\t:= 1234;   -- ams_categories_tl (table)<br \/>\nl_pvt_fund_rec.short_name\t\t:= 'Test Budget';<br \/>\nl_pvt_fund_rec.description\t\t:= 'Test Budget Descrition';<br \/>\nl_pvt_fund_rec.currency_code_tc\t\t:= 'USD';<br \/>\nl_pvt_fund_rec.start_date_active\t:= SYSDATE;<br \/>\nl_pvt_fund_rec.end_date_active\t\t:= null;<br \/>\nl_pvt_fund_rec.fund_type\t\t:= 'FIXED';--'FULLY_ACCRUED';<br \/>\nl_pvt_fund_rec.user_status_id\t\t:= 2100; --for DRAFT status<br \/>\nl_pvt_fund_rec.status_code\t\t:= 'draft';<br \/>\nl_pvt_fund_rec.custom_setup_id\t\t:= 2000;<br \/>\nl_pvt_fund_rec.original_budget\t\t:= 999;<br \/>\nl_pvt_fund_rec.org_id\t\t\t:= 12;<br \/>\nl_pvt_fund_rec.holdback_amt\t\t:= 0;<br \/>\nl_pvt_fund_rec.ledger_id\t\t:= 123;<br \/>\nl_pvt_fund_rec.attribute1\t\t:= 'ABC';<br \/>\nl_pvt_fund_rec.attribute2\t\t:= 'XYZ';<\/p>\n<p>-- discount rules<\/p>\n<p>OZF_FUNDS_PUB.Create_fund(<br \/>\np_api_version =&gt; l_api_version<br \/>\n,p_init_msg_list =&gt; FND_API.g_true<br \/>\n,p_commit =&gt; FND_API.g_false<br \/>\n,p_validation_level =&gt; l_validation_level<br \/>\n,x_return_status =&gt; l_return_status<br \/>\n,x_msg_count =&gt; l_msg_count<br \/>\n,x_msg_data =&gt; l_msg_data<br \/>\n,p_fund_rec =&gt; l_pvt_fund_rec<br \/>\n,p_modifier_list_rec =&gt; l_modifier_list_rec<br \/>\n,p_modifier_line_tbl =&gt; l_modifier_line_tbl<br \/>\n,p_vo_pbh_tbl =&gt; l_vo_pbh_tbl<br \/>\n,p_vo_dis_tbl =&gt; l_vo_dis_tbl<br \/>\n,p_vo_prod_tbl =&gt; l_vo_prod_tbl<br \/>\n,p_qualifier_tbl =&gt; l_qualifier_tbl<br \/>\n,p_vo_mo_tbl =&gt; l_vo_mo_tbl<br \/>\n,x_fund_id =&gt; l_fund_id<br \/>\n);<\/p>\n<p>dbms_output.put_line('create returns ' || l_return_status);<br \/>\ndbms_output.put_line('l_fund_id ' || l_fund_id);<\/p>\n<p>dbms_output.put_line('l_msg_count ' || l_msg_count);<\/p>\n<p>IF l_return_status &lt;&gt; 'S' THEN<br \/>\n\tfor i in 1..l_msg_count loop<br \/>\n\tdbms_output.put_line(substr(fnd_msg_pub.get(p_msg_index =&gt; i, p_encoded =&gt; 'F'), 1, 254));<br \/>\n\tend loop;<br \/>\n\tROLLBACK;<br \/>\nELSE<br \/>\n\tCOMMIT;<br \/>\nEND IF;<br \/>\nexception<br \/>\nwhen others then<br \/>\nrollback;<br \/>\nend;<br \/>\n<\/code><br \/>\n&nbsp;<\/p>\n<p><code><br \/>\n Select * from ozf_funds_all_b where fund_id = 1234;<br \/>\n Select * from ozf_funds_all_tl where fund_id = 1234;<br \/>\n --Navigation to view the Budget<br \/>\n --Oracle Trademanagement User -&gt; Funds -&gt; Search for the Budget<br \/>\n<\/code><\/p>\n<p>&nbsp;<br \/>\n<code class=\"lang:plsql decode:true \" title=\"Create Product Eligibility for a Budget\"><br \/>\nSET serveroutput on;<br \/>\nDECLARE<\/p>\n<p>l_act_product_rec_type                  OZF_FUNDS_PUB.act_product_rec_type;<br \/>\nx_return_status\t\t\t        VARCHAR2(2000);<br \/>\nx_msg_count\t\t                NUMBER;<br \/>\nx_msg_data\t\t                VARCHAR2(2000);<br \/>\nl_act_product_id\t\t        NUMBER;<\/p>\n<p>BEGIN<\/p>\n<p>FND_GLOBAL.apps_initialize (<br \/>\nuser_id =&gt; 1177,<br \/>\nresp_id =&gt; 22371, -- Oracle trade management user<br \/>\nresp_appl_id =&gt; 682 -- Oracle Trade management<br \/>\n);<\/p>\n<p>FND_PROFILE.put ('FND_AS_MSG_LEVEL_THRESHOLD', FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);<br \/>\nFND_MSG_PUB.initialize;<\/p>\n<p>l_act_product_rec_type.act_product_used_by_id:=1234; -- Fund_id<br \/>\nl_act_product_rec_type.arc_act_product_used_by :='FUND';<br \/>\nl_act_product_rec_type.CATEGORY_ID :=4567;<br \/>\nl_act_product_rec_type.CATEGORY_SET_ID:=1000789;<br \/>\nl_act_product_rec_type.LEVEL_TYPE_CODE:='FAMILY';<br \/>\nl_act_product_rec_type.primary_product_flag :='Y';<\/p>\n<p>OZF_FUNDS_PUB.create_product_eligibility(<br \/>\n   p_api_version        =&gt; 1.0 --l_api_version<br \/>\n  ,p_act_product_rec    =&gt;l_act_product_rec_type<br \/>\n  ,x_return_status      =&gt;x_return_status<br \/>\n  ,x_msg_count          =&gt;x_msg_count<br \/>\n  ,x_msg_data           =&gt;x_msg_data<br \/>\n  ,x_act_product_id     =&gt;l_act_product_id<br \/>\n  );<\/p>\n<p>IF x_return_status &lt;&gt; 'S'<br \/>\nTHEN<br \/>\n\tFOR I IN 1..x_msg_count LOOP<br \/>\n\t  dbms_output.put_line(substr(fnd_msg_pub.get(p_msg_index =&gt; i, p_encoded =&gt; 'F'), 1, 254));<br \/>\n\tEND LOOP;<br \/>\n    ROLLBACK;<br \/>\nELSE<br \/>\n  COMMIT;<br \/>\nEND IF;<\/p>\n<p>EXCEPTION<br \/>\nWHEN OTHERS THEN<br \/>\n\tROLLBACK;<br \/>\nEND;<\/code><br \/>\n&nbsp;<\/p>\n<p><code><br \/>\n-- Search for the Products created for the Fund<br \/>\nselect * from ams_act_products where arc_Act_product_used_by = 'FUND' and act_product_used_by_id = 10327;<br \/>\n<\/code><\/p>\n<p>&nbsp;<br \/>\n<code class=\"lang:plsql decode:true \" title=\"Create Market Segments for a Budget\"><br \/>\nSET serveroutput on;<br \/>\nDECLARE<\/p>\n<p>l_mks_rec_type \t\t            \tOZF_FUNDS_PUB.mks_rec_type;<br \/>\nx_return_status\t\t\t        VARCHAR2(2000);<br \/>\nx_msg_count\t\t                NUMBER;<br \/>\nx_msg_data\t\t               \tVARCHAR2(2000);<br \/>\nl_act_mks_id\t\t\t        NUMBER;<\/p>\n<p>BEGIN<\/p>\n<p>FND_GLOBAL.apps_initialize (<br \/>\nuser_id =&gt; 1177,<br \/>\nresp_id =&gt; 22371, -- Oracle trade management user<br \/>\nresp_appl_id =&gt; 682 -- Oracle Trade management<br \/>\n);<\/p>\n<p>FND_PROFILE.put ('FND_AS_MSG_LEVEL_THRESHOLD', FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);<br \/>\nFND_MSG_PUB.initialize;<\/p>\n<p>-- TO CALL Market Eligibility API<\/p>\n<p>l_mks_rec_type.act_market_segment_used_by_id  := 1234<br \/>\nl_mks_rec_type.arc_act_market_segment_used_by := 'FUND';<br \/>\nl_mks_rec_type.segment_type :=  'TERRITORY';<br \/>\nl_mks_rec_type.market_segment_id := 1234;<\/p>\n<p>OZF_FUNDS_PUB.create_market_segment(<br \/>\n  p_api_version          =&gt;   1.0 --l_api_version<br \/>\n ,p_init_msg_list        =&gt;   fnd_api.g_false<br \/>\n ,p_commit               =&gt;   fnd_api.g_false<br \/>\n ,p_validation_level     =&gt;   fnd_api.g_valid_level_full<br \/>\n ,p_mks_rec              =&gt;   l_mks_rec_type<br \/>\n ,x_return_status        =&gt;   x_return_status<br \/>\n ,x_msg_count            =&gt;   x_msg_count<br \/>\n ,x_msg_data             =&gt;   x_msg_data<br \/>\n ,x_act_mks_id           =&gt;   l_act_mks_id );<\/p>\n<p>IF x_return_status &lt;&gt; 'S'<br \/>\nTHEN<br \/>\n\tFOR I IN 1..x_msg_count LOOP<br \/>\n\t  dbms_output.put_line(substr(fnd_msg_pub.get(p_msg_index =&gt; i, p_encoded =&gt; 'F'), 1, 254));<br \/>\n\tEND LOOP;<br \/>\n    ROLLBACK;<br \/>\nELSE<br \/>\n  COMMIT;<br \/>\nEND IF;<\/p>\n<p>EXCEPTION<br \/>\nWHEN OTHERS THEN<br \/>\n\tROLLBACK;<br \/>\nEND;<br \/>\n<\/code><br \/>\n&nbsp;<\/p>\n<p><code><br \/>\n-- Search for the market Segmetns created for the fund<br \/>\nselect * from ams_Act_market_Segments where arc_Act_market_segment_used_by = 'FUND' and act_market_Segment_used_by_id = 1234;<br \/>\n<\/code><\/p>\n","protected":false},"excerpt":{"rendered":"<p>SET serveroutput on; DECLARE l_user_name VARCHAR2(100); l_user_id NUMBER; l_resource_id NUMBER; l_resp_id NUMBER; l_api_version NUMBER := 1.0; l_fund_id NUMBER; l_validation_level NUMBER := fnd_api.g_valid_level_none; l_return_status VARCHAR2(1); l_msg_count NUMBER; l_msg_data VARCHAR2(2000); l_pvt_fund_rec OZF_FUNDS_PUB.fund_rec_type; l_modifier_list_rec ozf_offer_pub.modifier_list_rec_type; l_modifier_line_tbl ozf_offer_pub.modifier_line_tbl_type; l_vo_pbh_tbl ozf_offer_pub.vo_disc_tbl_type; l_vo_dis_tbl ozf_offer_pub.vo_disc_tbl_type; l_vo_prod_tbl ozf_offer_pub.vo_prod_tbl_type; l_qualifier_tbl ozf_offer_pub.qualifiers_tbl_type; l_vo_mo_tbl ozf_offer_pub.vo_mo_tbl_type; BEGIN select resource_id into l_pvt_fund_rec.owner from JTF_RS_RESOURCE_EXTNS where user_id = 1177; [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[503],"tags":[229,230,231,232],"class_list":["post-4707","post","type-post","status-publish","format-standard","hentry","category-om-api","tag-create_fund","tag-create_market_segment","tag-create_product_eligibility","tag-ozf_funds_pub"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>OZF_FUNDS_PUB - erpSchools<\/title>\n<meta name=\"description\" content=\"OZF_FUNDS_PUB. create_market_segment, create_product_eligibility, Create_fund sample scripts\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Renuka\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub#article\",\"isPartOf\":{\"@id\":\"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub\"},\"author\":{\"name\":\"Renuka\",\"@id\":\"https:\/\/erpschools.com\/erps\/#\/schema\/person\/cbade316c91d3f36ba5339e274c76249\"},\"headline\":\"OZF_FUNDS_PUB\",\"datePublished\":\"2014-04-01T16:01:16+00:00\",\"dateModified\":\"2014-12-05T10:05:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub\"},\"wordCount\":8,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/erpschools.com\/erps\/#organization\"},\"keywords\":[\"Create_fund\",\"create_market_segment\",\"create_product_eligibility\",\"OZF_FUNDS_PUB\"],\"articleSection\":[\"OM API\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub\",\"url\":\"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub\",\"name\":\"OZF_FUNDS_PUB - erpSchools\",\"isPartOf\":{\"@id\":\"https:\/\/erpschools.com\/erps\/#website\"},\"datePublished\":\"2014-04-01T16:01:16+00:00\",\"dateModified\":\"2014-12-05T10:05:06+00:00\",\"description\":\"OZF_FUNDS_PUB. create_market_segment, create_product_eligibility, Create_fund sample scripts\",\"breadcrumb\":{\"@id\":\"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/erpschools.com\/erps\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"OZF_FUNDS_PUB\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/erpschools.com\/erps\/#website\",\"url\":\"https:\/\/erpschools.com\/erps\/\",\"name\":\"erpSchools\",\"description\":\"Oracle Apps\",\"publisher\":{\"@id\":\"https:\/\/erpschools.com\/erps\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/erpschools.com\/erps\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/erpschools.com\/erps\/#organization\",\"name\":\"erpSchools\",\"url\":\"https:\/\/erpschools.com\/erps\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/erpschools.com\/erps\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/erps_logo7.png\",\"contentUrl\":\"https:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/erps_logo7.png\",\"width\":250,\"height\":60,\"caption\":\"erpSchools\"},\"image\":{\"@id\":\"https:\/\/erpschools.com\/erps\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"http:\/\/facebook.com\/erpschools\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/erpschools.com\/erps\/#\/schema\/person\/cbade316c91d3f36ba5339e274c76249\",\"name\":\"Renuka\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/erpschools.com\/erps\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cce370e0af70415e6928d71fa62e268258b9b5de89d5d65e0d14c63abd3cad0c?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cce370e0af70415e6928d71fa62e268258b9b5de89d5d65e0d14c63abd3cad0c?s=96&d=blank&r=g\",\"caption\":\"Renuka\"},\"url\":\"https:\/\/erpschools.com\/erps\/author\/renuka\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"OZF_FUNDS_PUB - erpSchools","description":"OZF_FUNDS_PUB. create_market_segment, create_product_eligibility, Create_fund sample scripts","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub","twitter_misc":{"Written by":"Renuka","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub#article","isPartOf":{"@id":"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub"},"author":{"name":"Renuka","@id":"https:\/\/erpschools.com\/erps\/#\/schema\/person\/cbade316c91d3f36ba5339e274c76249"},"headline":"OZF_FUNDS_PUB","datePublished":"2014-04-01T16:01:16+00:00","dateModified":"2014-12-05T10:05:06+00:00","mainEntityOfPage":{"@id":"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub"},"wordCount":8,"commentCount":0,"publisher":{"@id":"https:\/\/erpschools.com\/erps\/#organization"},"keywords":["Create_fund","create_market_segment","create_product_eligibility","OZF_FUNDS_PUB"],"articleSection":["OM API"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub#respond"]}]},{"@type":"WebPage","@id":"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub","url":"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub","name":"OZF_FUNDS_PUB - erpSchools","isPartOf":{"@id":"https:\/\/erpschools.com\/erps\/#website"},"datePublished":"2014-04-01T16:01:16+00:00","dateModified":"2014-12-05T10:05:06+00:00","description":"OZF_FUNDS_PUB. create_market_segment, create_product_eligibility, Create_fund sample scripts","breadcrumb":{"@id":"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/erpschools.com\/erps\/api\/om-api\/ozf_funds_pub#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/erpschools.com\/erps"},{"@type":"ListItem","position":2,"name":"OZF_FUNDS_PUB"}]},{"@type":"WebSite","@id":"https:\/\/erpschools.com\/erps\/#website","url":"https:\/\/erpschools.com\/erps\/","name":"erpSchools","description":"Oracle Apps","publisher":{"@id":"https:\/\/erpschools.com\/erps\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/erpschools.com\/erps\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/erpschools.com\/erps\/#organization","name":"erpSchools","url":"https:\/\/erpschools.com\/erps\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/erpschools.com\/erps\/#\/schema\/logo\/image\/","url":"https:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/erps_logo7.png","contentUrl":"https:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/erps_logo7.png","width":250,"height":60,"caption":"erpSchools"},"image":{"@id":"https:\/\/erpschools.com\/erps\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/facebook.com\/erpschools"]},{"@type":"Person","@id":"https:\/\/erpschools.com\/erps\/#\/schema\/person\/cbade316c91d3f36ba5339e274c76249","name":"Renuka","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/erpschools.com\/erps\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cce370e0af70415e6928d71fa62e268258b9b5de89d5d65e0d14c63abd3cad0c?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cce370e0af70415e6928d71fa62e268258b9b5de89d5d65e0d14c63abd3cad0c?s=96&d=blank&r=g","caption":"Renuka"},"url":"https:\/\/erpschools.com\/erps\/author\/renuka"}]}},"_links":{"self":[{"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/posts\/4707","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/comments?post=4707"}],"version-history":[{"count":0,"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/posts\/4707\/revisions"}],"wp:attachment":[{"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/media?parent=4707"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/categories?post=4707"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/tags?post=4707"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}