{"id":343,"date":"2020-08-19T18:28:13","date_gmt":"2020-08-19T18:28:13","guid":{"rendered":"https:\/\/www.techcrm.in\/blogs\/?p=343"},"modified":"2020-09-08T14:51:14","modified_gmt":"2020-09-08T09:21:14","slug":"sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search","status":"publish","type":"post","link":"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/","title":{"rendered":"SugarCRM 7 &#8211; Apply initial filter in relate fields and relationship fields with quick(popup) search"},"content":{"rendered":"\n<p>In this article,I will be explaining how to apply initial filter in relationship fields including quick(popup) search in Sugarcrm7.x.Lets say we have accounts module(sugarcrm out of the box module),is having one-to-many relationship with accounts module,for the purpose of linking new records to old(parent) record.This is not sugar out of the box relationship,we have build this relationship.<\/p>\n\n\n\n<p>In record view of accounts,When user is trying choose account for &#8220;parent account&#8221; relationship field,the system should display records except current record,(current account should not to be &nbsp;available to select).Now we need to prevent user to choose same record as parent.<\/p>\n\n\n\n<p>Lets go with example,We have one account named &#8220;Banque Lombard Odier &amp; Cie SA&#8221; in accounts module.<br>This record should not link with same &#8220;Banque Lombard Odier &amp; Cie SA&#8221;.It can link with some other accounts.<\/p>\n\n\n\n<p>To achieve this, we need to touch&nbsp;3 files&nbsp;.There are 3 records in which starts with banq&#8221; in Accounts module.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"866\" height=\"330\" src=\"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/account.png\" alt=\"\" class=\"wp-image-344\" srcset=\"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/account.png 866w, https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/account-300x114.png 300w, https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/account-768x293.png 768w\" sizes=\"auto, (max-width: 866px) 100vw, 866px\" \/><\/figure>\n\n\n\n<p>Below is the Record view of &nbsp;&#8220;Banque lombard odier &amp; Cie SA&#8221; account.Here we are having parent account(relationship field) as &nbsp;field.I have added filter defintion for this field.Now if you type &#8220;banq&#8221; in parent account relationship field,current record name will not be available to select &nbsp;in quick(popup) search,open drawer and search in open drawer.(like below).<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"872\" height=\"625\" src=\"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/record_view.png\" alt=\"\" class=\"wp-image-345\" srcset=\"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/record_view.png 872w, https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/record_view-300x215.png 300w, https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/record_view-768x550.png 768w\" sizes=\"auto, (max-width: 872px) 100vw, 872px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"872\" height=\"625\" src=\"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/record_view-1.png\" alt=\"\" class=\"wp-image-346\" srcset=\"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/record_view-1.png 872w, https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/record_view-1-300x215.png 300w, https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/record_view-1-768x550.png 768w\" sizes=\"auto, (max-width: 872px) 100vw, 872px\" \/><\/figure>\n\n\n\n<p>Lets dive into coding part,<\/p>\n\n\n\n<p>Step 1 : <strong>Creating filter template<\/strong><\/p>\n\n\n\n<p>First we need to create a filter template for accounts which will filter out only the accounts records except current account.To do this we will create a new file in the following path.Let\u2019s name this template as&nbsp;<strong>FilerAccountTemplate<\/strong>.<\/p>\n\n\n\n<p>Create &nbsp;file in below path &nbsp;<code><strong>custom\/Extension\/modules\/Accounts\/Ext\/clients\/base\/filters\/basic\/ FilerAccountTemplate.php<\/strong><\/code><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\/*\n*custom\/Extension\/modules\/Accounts\/Ext\/clients\/base\/filters\/basic\/FilerAccountTemplate.php\n* Ajay Kumar\n*\/\n$viewdefs&#91;'Accounts']&#91;'base']&#91;'filter']&#91;'basic']&#91;'filters']&#91;] = array(\n 'id' => 'FilterAccountTemplate',\n 'name' => 'LBL_FILTER_ACCOUNT_TEMPLATE',\n 'filter_definition' => array(  \n         'name' => array(\n             '$not_equals' => '',\n         ),                        \n      ),  \n 'editable' => true,\n 'is_template' => true,\n);<\/code><\/pre>\n\n\n\n<p>In this filter template,File name(<strong>FilerAccountTemplate<\/strong>) and id should be same(<strong>FilerAccountTemplate<\/strong>).<\/p>\n\n\n\n<p>In this file we are defining filter definition in (&#8220;<em><strong>filter_definition<\/strong>&#8220;)<\/em>&nbsp;variable.Here I am using name is not equals in filter definition.We can use record id also instead of name.<\/p>\n\n\n\n<p>Step 2: <strong>Filter label<\/strong><\/p>\n\n\n\n<p>Now we need to give a display label for out filter template ,which we have created.<br>Create &nbsp;file in below path <\/p>\n\n\n\n<p>Create &nbsp;file in below path &nbsp;<code><strong><strong>custom\/Extension\/modules\/Accounts\/Ext\/Language\/ en_us.FilterAccountTemplate.php<\/strong><\/strong><\/code><\/p>\n\n\n\n<p>Add file to below code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n $mod_strings&#91;'LBL_FILTER_ACCOUNT_TEMPLATE']='Accounts without Current Account';<\/code><\/pre>\n\n\n\n<p>Step 3: <strong>Controller&nbsp;<\/strong><\/p>\n\n\n\n<p>Now&nbsp;we need to pass this template as filter options into &nbsp;the look up search when user try to select a account&nbsp;.For&nbsp;that we will create a new controller file for relate field and will extend it from parent controller.<\/p>\n\n\n\n<p>Create &nbsp;file in below path <strong><strong>&nbsp;<code><strong>c<strong>custom\/modules\/Accounts\/clients\/base\/fields\/relate\/relate.js<\/strong><\/strong><\/code><\/strong><\/strong><\/p>\n\n\n\n<p>Add below code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>({\n    extendsFrom: 'RelateField',\n    initialize: function(options) {\n        this._super('initialize', &#91;options]);\n    },\n    getFilterOptions: function(force) {\n        if (this._filterOptions &amp;&amp; !force) {\n            return this._filterOptions;\n        }\n        \/\/Defining our filter definitions\n        var custom_FilterOptions = new app.utils.FilterOptions().config({\n            'initial_filter': 'FilterAccountTemplate',\n            'initial_filter_label': 'LBL_FILTER_ACCOUNT_TEMPLATE',\n            'filter_populate': {\n                'name': &#91;this.model.get('name')],\n            }\n        }).populateRelate(this.model).format();\n\n        \/\/Assigning our filter definitions \n        this._filterOptions = custom_FilterOptions;\n        return this._filterOptions;\n    },\n    openSelectDrawer: function() {\n        app.drawer.open({\n            layout: 'selection-list',\n            context: {\n                module: this.getSearchModule(),\n                fields: this.getSearchFields(),\n                filterOptions: this.getFilterOptions()\n            }\n        }, _.bind(this.setValue, this));\n    },\n\n})<\/code><\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p><strong>Note : <\/strong><\/p><cite><em>1. Accounts &#8211; module name<br>2. name- relationship field name<br>3. We are overriding&nbsp;getFilterOptions method.and we are defining our custom filter definition instead of default filter options<\/em><\/cite><\/blockquote>\n\n\n\n<p>This filter options is getting called &nbsp;in opendrawer function also,So the same definition will be apply openselect drawer function as well.<br>here we are creating instance of filter options,and configuring with filter template name,filter label and passing current record name to filter definition.(this only will prevent system to not display current record).<br>The above our filter definition is getting apply in quick(popup) search,when user clicks &#8220;select more accounts&#8221; and in open drawer search .<\/p>\n\n\n\n<p>That&#8217;s it.<br>Inevitably&nbsp;<strong><em>Administration &gt; Repair &gt; Quick Repair and Rebuild &nbsp;.<\/em><\/strong><br><strong><em><br><strong>This is upgrade safe .<\/strong><\/em><\/strong><\/p>\n\n\n\n<p>Hope you find this blog post helpful.<\/p>\n\n\n\n<p>Feel free to add comments and queries, that helps us to improve the quality of posts.<\/p>\n\n\n\n<p>You can contact us at&nbsp;<a rel=\"noreferrer noopener\" href=\"mailto:contact@urdhva-tech.com\" target=\"_blank\">info@techcrm.in<\/a><\/p>\n\n\n\n<p>Thank you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article,I will be explaining how to apply initial filter in relationship fields including quick(popup) search in Sugarcrm7.x.Lets say we have accounts module(sugarcrm out of the box module),is having one-to-many relationship with accounts module,for the purpose of linking new records to old(parent) record.This is not sugar out of the box relationship,we have build this [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[90],"tags":[93,17,92,94,20,87,95,12,91],"class_list":["post-343","post","type-post","status-publish","format-standard","hentry","category-sugarcrm-7","tag-auto-complete","tag-filter","tag-initial-filter","tag-quick-search","tag-relate-field","tag-relationship","tag-relationship-field","tag-sugarcrm","tag-sugarcrm-7"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SugarCRM 7 - Apply initial filter in relate fields and relationship fields with quick(popup) search - TechCRM<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SugarCRM 7 - Apply initial filter in relate fields and relationship fields with quick(popup) search - TechCRM\" \/>\n<meta property=\"og:description\" content=\"In this article,I will be explaining how to apply initial filter in relationship fields including quick(popup) search in Sugarcrm7.x.Lets say we have accounts module(sugarcrm out of the box module),is having one-to-many relationship with accounts module,for the purpose of linking new records to old(parent) record.This is not sugar out of the box relationship,we have build this [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/\" \/>\n<meta property=\"og:site_name\" content=\"TechCRM\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-19T18:28:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-09-08T09:21:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/account.png\" \/>\n<meta name=\"author\" content=\"Navin Rakhonde\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Navin Rakhonde\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/\",\"url\":\"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/\",\"name\":\"SugarCRM 7 - Apply initial filter in relate fields and relationship fields with quick(popup) search - TechCRM\",\"isPartOf\":{\"@id\":\"https:\/\/www.techcrm.in\/blogs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/account.png\",\"datePublished\":\"2020-08-19T18:28:13+00:00\",\"dateModified\":\"2020-09-08T09:21:14+00:00\",\"author\":{\"@id\":\"https:\/\/www.techcrm.in\/blogs\/#\/schema\/person\/992dfe427bb53dcdfd72dd80e3ef9dbc\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/#primaryimage\",\"url\":\"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/account.png\",\"contentUrl\":\"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/account.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.techcrm.in\/blogs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SugarCRM 7\",\"item\":\"https:\/\/www.techcrm.in\/blogs\/category\/sugarcrm-7\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SugarCRM 7 &#8211; Apply initial filter in relate fields and relationship fields with quick(popup) search\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.techcrm.in\/blogs\/#website\",\"url\":\"https:\/\/www.techcrm.in\/blogs\/\",\"name\":\"TechCRM\",\"description\":\"Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.techcrm.in\/blogs\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.techcrm.in\/blogs\/#\/schema\/person\/992dfe427bb53dcdfd72dd80e3ef9dbc\",\"name\":\"Navin Rakhonde\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.techcrm.in\/blogs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9cc8fd1b948255055b85e5d41dabfc6e704f806d180a1e21cb8fb378e2f5c022?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9cc8fd1b948255055b85e5d41dabfc6e704f806d180a1e21cb8fb378e2f5c022?s=96&d=mm&r=g\",\"caption\":\"Navin Rakhonde\"},\"sameAs\":[\"https:\/\/www.techcrm.in\/\"],\"url\":\"https:\/\/www.techcrm.in\/blogs\/author\/navin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SugarCRM 7 - Apply initial filter in relate fields and relationship fields with quick(popup) search - TechCRM","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:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/","og_locale":"en_US","og_type":"article","og_title":"SugarCRM 7 - Apply initial filter in relate fields and relationship fields with quick(popup) search - TechCRM","og_description":"In this article,I will be explaining how to apply initial filter in relationship fields including quick(popup) search in Sugarcrm7.x.Lets say we have accounts module(sugarcrm out of the box module),is having one-to-many relationship with accounts module,for the purpose of linking new records to old(parent) record.This is not sugar out of the box relationship,we have build this [&hellip;]","og_url":"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/","og_site_name":"TechCRM","article_published_time":"2020-08-19T18:28:13+00:00","article_modified_time":"2020-09-08T09:21:14+00:00","og_image":[{"url":"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/account.png"}],"author":"Navin Rakhonde","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Navin Rakhonde","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/","url":"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/","name":"SugarCRM 7 - Apply initial filter in relate fields and relationship fields with quick(popup) search - TechCRM","isPartOf":{"@id":"https:\/\/www.techcrm.in\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/#primaryimage"},"image":{"@id":"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/#primaryimage"},"thumbnailUrl":"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/account.png","datePublished":"2020-08-19T18:28:13+00:00","dateModified":"2020-09-08T09:21:14+00:00","author":{"@id":"https:\/\/www.techcrm.in\/blogs\/#\/schema\/person\/992dfe427bb53dcdfd72dd80e3ef9dbc"},"breadcrumb":{"@id":"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/#primaryimage","url":"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/account.png","contentUrl":"https:\/\/www.techcrm.in\/blogs\/wp-content\/uploads\/2020\/08\/account.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.techcrm.in\/blogs\/sugarcrm-7-apply-initial-filter-in-relate-fields-and-relationship-fields-with-quickpopup-search\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.techcrm.in\/blogs\/"},{"@type":"ListItem","position":2,"name":"SugarCRM 7","item":"https:\/\/www.techcrm.in\/blogs\/category\/sugarcrm-7\/"},{"@type":"ListItem","position":3,"name":"SugarCRM 7 &#8211; Apply initial filter in relate fields and relationship fields with quick(popup) search"}]},{"@type":"WebSite","@id":"https:\/\/www.techcrm.in\/blogs\/#website","url":"https:\/\/www.techcrm.in\/blogs\/","name":"TechCRM","description":"Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.techcrm.in\/blogs\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.techcrm.in\/blogs\/#\/schema\/person\/992dfe427bb53dcdfd72dd80e3ef9dbc","name":"Navin Rakhonde","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.techcrm.in\/blogs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9cc8fd1b948255055b85e5d41dabfc6e704f806d180a1e21cb8fb378e2f5c022?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9cc8fd1b948255055b85e5d41dabfc6e704f806d180a1e21cb8fb378e2f5c022?s=96&d=mm&r=g","caption":"Navin Rakhonde"},"sameAs":["https:\/\/www.techcrm.in\/"],"url":"https:\/\/www.techcrm.in\/blogs\/author\/navin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.techcrm.in\/blogs\/wp-json\/wp\/v2\/posts\/343","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.techcrm.in\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.techcrm.in\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.techcrm.in\/blogs\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.techcrm.in\/blogs\/wp-json\/wp\/v2\/comments?post=343"}],"version-history":[{"count":2,"href":"https:\/\/www.techcrm.in\/blogs\/wp-json\/wp\/v2\/posts\/343\/revisions"}],"predecessor-version":[{"id":348,"href":"https:\/\/www.techcrm.in\/blogs\/wp-json\/wp\/v2\/posts\/343\/revisions\/348"}],"wp:attachment":[{"href":"https:\/\/www.techcrm.in\/blogs\/wp-json\/wp\/v2\/media?parent=343"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.techcrm.in\/blogs\/wp-json\/wp\/v2\/categories?post=343"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.techcrm.in\/blogs\/wp-json\/wp\/v2\/tags?post=343"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}