{"id":4865,"date":"2014-05-01T22:00:59","date_gmt":"2014-05-01T16:30:59","guid":{"rendered":"http:\/\/erpschools.com\/?p=4865"},"modified":"2014-12-02T15:58:43","modified_gmt":"2014-12-02T15:58:43","slug":"register-pl-sql-stored-procedure-in-oracle-apps","status":"publish","type":"post","link":"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps","title":{"rendered":"Register PL SQL stored procedure in Oracle Apps"},"content":{"rendered":"<p>Register PL SQL stored procedure in Oracle Apps:<\/p>\n<p>You have a PL\/SQL procedure in your database and you want the user to be able to execute it from Oracle Apps front end. To do so, we have to register the procedure in Oracle Apps. Now let&#8217;s see how to do that.<\/p>\n<p><span style=\"text-decoration: underline;\">Steps to register a PL\/SQL program<\/span>:<br \/>\n1. Create procedure<br \/>\n2. Create Executable<br \/>\n3. Create Program<br \/>\n4. Add this program to the required request group<\/p>\n<p>1. <span style=\"text-decoration: underline;\">Create Procedure:<\/span><br \/>\nLet&#8217;s create a procedure that will take\u00a0 input as Item name and returns the respective Item ID.<br \/>\nIf you want to register a procedure, the procedure should be created with the two below mandatory parameters:<br \/>\nerrbuf : For printing out the error messages.<br \/>\nretcode: return 0 for successful execution<br \/>\nreturn 1 to end the concurrent program in warning<br \/>\nreturn 2 to end the concurrent program in error<\/p>\n<p>Below is the code snippet of the procedure. Compile the same by connecting to the database as APPS user.<br \/>\n<code><br \/>\nPROCEDURE erps21_conc_prog(<br \/>\nerrbuf OUT VARCHAR2,<br \/>\nretcode OUT VARCHAR2,<br \/>\nv_name VARCHAR2 )<br \/>\nIS<br \/>\nv_item_id VARCHAR2(100);<br \/>\nBEGIN<br \/>\nSELECT inventory_item_id<br \/>\nINTO v_item_id<br \/>\nFROM mtl_system_items_b<br \/>\nWHERE segment1 = v_name<br \/>\nAND rownum =1;<br \/>\nfnd_file.put_line(fnd_file.output, 'Parameter received:' || v_item_id);<br \/>\nEXCEPTION<br \/>\nWHEN OTHERS THEN<br \/>\nRETCODE := 2;<br \/>\nerrbuf := 'Entered EXCEPTION block';<br \/>\nEND;<br \/>\n<\/code><\/p>\n<p>We can also use API\u00a0 fnd_concurrent.set_completion_Status to set the concurrent program status.<\/p>\n<p>2. Create Executable:<br \/>\nNavigation: System Administrator \/ Application Developer responsibility &gt; Concurrent &gt; Executable<\/p>\n<p>Enter the below details and save.<br \/>\na.Executable: Enter any meaningful name<\/p>\n<p>b.Short Name: This should be unique and used for internal purposes<\/p>\n<p>c.Application: Specify under which application you want to register this Concurrent Program, normally all customizations will be registered under custom application.<\/p>\n<p>d.Description: Description<\/p>\n<p>e.Execution Method: Choose PL\/SQL Stored Procedure since we want to register a procedure<\/p>\n<p>f.Execution File Name: Enter the procedure name. You don&#8217;t need to specify any parameters of procedure here. If your procedure is encapsulated within a package, then executable file name should be entered as &lt;package name&gt;.&lt;procedure name&gt;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4866\" src=\"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_100026_PM.jpg\" alt=\"Screenshot_042914_100026_PM\" width=\"659\" height=\"315\" \/><\/p>\n<p>3. Create Program:<br \/>\nNavigation: System Administrator\/Application Developer responsibility &gt; Concurrent &gt; Program<\/p>\n<p>Enter the below details and save the work.<br \/>\na.Program: User Understandable Program Name<\/p>\n<p>b.Short Name: This should be a unique name and for system reference<\/p>\n<p>c.Application: Enter the application under which you want to register this concurrent program<\/p>\n<p>d.Executable Name: Enter the Executable Short Name created in Step 2.<\/p>\n<p>e.Method: This will be populated automatically from Executable Definition<\/p>\n<p>f.Output Format: Select the format of the output you want<\/p>\n<p>g.Output Style: Select A4 to print on A4 Paper<\/p>\n<p>h.Printer: You can default any printer or you can enter while submitting concurrent program.<\/p>\n<p>i.Enable Trace: Check this if you want to enable trace on this program. This is normally for debugging performance issues.<\/p>\n<p>j.Use in SRS: Check this box if you want the users to be able run this program from Submit Request window.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4867\" src=\"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_100905_PM.jpg\" alt=\"Screenshot_042914_100905_PM\" width=\"754\" height=\"623\" \/><\/p>\n<p>Click on Parameters button to define the parameters for your concurrent program.<\/p>\n<p>Enter the below details and save the work.<br \/>\na.Seq: It&#8217;s always better to enter sequences in multiple of 5 or 10 so that you can insert any additional parameters if you want later in between.<\/p>\n<p>b.Parameter: Enter a name for the parameter.<\/p>\n<p>c.Description: You can see this description while submitting the concurrent program.<\/p>\n<p>d.Value set: Enter a valid value set name. You can use the standard value sets provided as well.<\/p>\n<p>e.Default Type and Value: These fields are optional. They are to be used when you want to default any particular value for a parameter.<\/p>\n<p>Current Date : Will be used to pass the Sysdate as default value<br \/>\nCurrent Time : Will be used to pass the Systime as default value<br \/>\nConstant\u00a0\u00a0\u00a0\u00a0 : Will be used to pass the constant number or date or string as default value<br \/>\nSegment\u00a0\u00a0\u00a0\u00a0\u00a0 : will be used to get the Previous parameter value as default to the next parameter<br \/>\nSQL Statement: We can pass the SELECT statement result as default value<br \/>\nProfile : This will be used to pass the user profile value as default like userid ,username,respid,respname and so on.<br \/>\nRequired CheckBox : This will be used to make the parameter as mandatory or optional<\/p>\n<p>f.Prompt: This is the actual parameter name displayed while submitting the concurrent program<\/p>\n<p>g.Token: This should be used only when you are registering a report.This is used to link this parameter to the parameter defined in actual report file(.rdf)<\/p>\n<p>h.Enabled\u00a0 CheckBox: will be used to enable or disable the parameter<br \/>\ni. Display\u00a0 CheckBox: will be used to hide or display the parameter<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4868\" src=\"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_101856_PM.jpg\" alt=\"Screenshot_042914_101856_PM\" width=\"756\" height=\"508\" \/><\/p>\n<p>4.Assign to Request Group:<br \/>\nSay you want this program to be accessible to Inventory responsibility.<\/p>\n<p>First find out the request group of this responsibility.<br \/>\nNavigation: System Administrator Responsibility &gt; Security &gt; Responsibility &gt; Define<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4869\" src=\"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_102856_PM.jpg\" alt=\"Screenshot_042914_102856_PM\" width=\"753\" height=\"526\" \/><\/p>\n<p>Navigation: System Administrator Responsibility &gt; Security &gt; Responsibility &gt; Request<br \/>\nQuery for the Request Group obtained above.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4870\" src=\"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_103117_PM.jpg\" alt=\"Screenshot_042914_103117_PM\" width=\"761\" height=\"532\" \/><\/p>\n<p>Now place the cursor under Requests section and click on ADD icon in the Menu.<\/p>\n<p>Enter the below details and save the work.<br \/>\n1. Type: Enter Program if this is a concurrent program. Enter Set if this is a request set.<br \/>\n2. Name: Enter the concurrent program \/set name.<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4871\" src=\"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_103402_PM.jpg\" alt=\"Screenshot_042914_103402_PM\" width=\"757\" height=\"506\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Register PL SQL stored procedure in Oracle Apps: You have a PL\/SQL procedure in your database and you want the user to be able to execute it from Oracle Apps front end. To do so, we have to register the procedure in Oracle Apps. Now let&#8217;s see how to do that. Steps to register a [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3,8],"tags":[],"class_list":["post-4865","post","type-post","status-publish","format-standard","hentry","category-articles","category-sysadmin-and-aol"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Register PL SQL stored procedure in Oracle Apps - erpSchools<\/title>\n<meta name=\"description\" content=\"Register PL SQL stored procedure in Oracle Apps\" \/>\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\/articles\/register-pl-sql-stored-procedure-in-oracle-apps\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prudhvi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#article\",\"isPartOf\":{\"@id\":\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps\"},\"author\":{\"name\":\"Prudhvi\",\"@id\":\"https:\/\/erpschools.com\/erps\/#\/schema\/person\/dbed9bb7fb66aa7a700fc565da024512\"},\"headline\":\"Register PL SQL stored procedure in Oracle Apps\",\"datePublished\":\"2014-05-01T16:30:59+00:00\",\"dateModified\":\"2014-12-02T15:58:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps\"},\"wordCount\":830,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/erpschools.com\/erps\/#organization\"},\"image\":{\"@id\":\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#primaryimage\"},\"thumbnailUrl\":\"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_100026_PM.jpg\",\"articleSection\":[\"Articles\",\"Sysadmin and AOL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps\",\"url\":\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps\",\"name\":\"Register PL SQL stored procedure in Oracle Apps - erpSchools\",\"isPartOf\":{\"@id\":\"https:\/\/erpschools.com\/erps\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#primaryimage\"},\"image\":{\"@id\":\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#primaryimage\"},\"thumbnailUrl\":\"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_100026_PM.jpg\",\"datePublished\":\"2014-05-01T16:30:59+00:00\",\"dateModified\":\"2014-12-02T15:58:43+00:00\",\"description\":\"Register PL SQL stored procedure in Oracle Apps\",\"breadcrumb\":{\"@id\":\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#primaryimage\",\"url\":\"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_100026_PM.jpg\",\"contentUrl\":\"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_100026_PM.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/erpschools.com\/erps\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Register PL SQL stored procedure in Oracle Apps\"}]},{\"@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\/dbed9bb7fb66aa7a700fc565da024512\",\"name\":\"Prudhvi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/erpschools.com\/erps\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/488cec3605845b95cb20e60c67a8f5c7e74b65a305525c8006315d524f120db9?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/488cec3605845b95cb20e60c67a8f5c7e74b65a305525c8006315d524f120db9?s=96&d=blank&r=g\",\"caption\":\"Prudhvi\"},\"sameAs\":[\"http:\/\/www.erpschools.com\"],\"url\":\"https:\/\/erpschools.com\/erps\/author\/prudhvi\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Register PL SQL stored procedure in Oracle Apps - erpSchools","description":"Register PL SQL stored procedure in Oracle Apps","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\/articles\/register-pl-sql-stored-procedure-in-oracle-apps","twitter_misc":{"Written by":"Prudhvi","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#article","isPartOf":{"@id":"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps"},"author":{"name":"Prudhvi","@id":"https:\/\/erpschools.com\/erps\/#\/schema\/person\/dbed9bb7fb66aa7a700fc565da024512"},"headline":"Register PL SQL stored procedure in Oracle Apps","datePublished":"2014-05-01T16:30:59+00:00","dateModified":"2014-12-02T15:58:43+00:00","mainEntityOfPage":{"@id":"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps"},"wordCount":830,"commentCount":1,"publisher":{"@id":"https:\/\/erpschools.com\/erps\/#organization"},"image":{"@id":"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#primaryimage"},"thumbnailUrl":"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_100026_PM.jpg","articleSection":["Articles","Sysadmin and AOL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#respond"]}]},{"@type":"WebPage","@id":"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps","url":"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps","name":"Register PL SQL stored procedure in Oracle Apps - erpSchools","isPartOf":{"@id":"https:\/\/erpschools.com\/erps\/#website"},"primaryImageOfPage":{"@id":"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#primaryimage"},"image":{"@id":"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#primaryimage"},"thumbnailUrl":"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_100026_PM.jpg","datePublished":"2014-05-01T16:30:59+00:00","dateModified":"2014-12-02T15:58:43+00:00","description":"Register PL SQL stored procedure in Oracle Apps","breadcrumb":{"@id":"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#primaryimage","url":"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_100026_PM.jpg","contentUrl":"http:\/\/erpschools.com\/erps\/wp-content\/uploads\/img\/Screenshot_042914_100026_PM.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/erpschools.com\/erps\/articles\/register-pl-sql-stored-procedure-in-oracle-apps#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/erpschools.com\/erps"},{"@type":"ListItem","position":2,"name":"Register PL SQL stored procedure in Oracle Apps"}]},{"@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\/dbed9bb7fb66aa7a700fc565da024512","name":"Prudhvi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/erpschools.com\/erps\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/488cec3605845b95cb20e60c67a8f5c7e74b65a305525c8006315d524f120db9?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/488cec3605845b95cb20e60c67a8f5c7e74b65a305525c8006315d524f120db9?s=96&d=blank&r=g","caption":"Prudhvi"},"sameAs":["http:\/\/www.erpschools.com"],"url":"https:\/\/erpschools.com\/erps\/author\/prudhvi"}]}},"_links":{"self":[{"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/posts\/4865","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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/comments?post=4865"}],"version-history":[{"count":0,"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/posts\/4865\/revisions"}],"wp:attachment":[{"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/media?parent=4865"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/categories?post=4865"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/erpschools.com\/erps\/wp-json\/wp\/v2\/tags?post=4865"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}