{"id":289,"date":"2019-03-25T12:05:41","date_gmt":"2019-03-25T07:05:41","guid":{"rendered":"http:\/\/iparagons.com\/blog\/?p=289"},"modified":"2021-11-18T15:29:53","modified_gmt":"2021-11-18T10:29:53","slug":"copy-case-properties-values-to-document-class-properties-values-in-ibm-icm","status":"publish","type":"post","link":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/","title":{"rendered":"Copy Case Properties Values to Document Class properties values in IBM ICM"},"content":{"rendered":"\r\n<p>Sometimes, there is requirement that, when user add document in icm user has to fill document properties values again that are however same with case properties values. Following are the steps to achieve the requirement Copy Case properties values to document class:<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>Open Case Manager Builder first, create a Case Document Type, and add properties with a case type.<\/li>\r\n<li>Go to the Pages Section in Case Manager Builder, find the Case Information widget on the &#8220;Case Details&#8221; page or &#8220;<strong>Work Details<\/strong>&#8221; page, and edit its toolbar configuration.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"1020\" height=\"440\" class=\"wp-image-290 aligncenter\" src=\"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/case_information_toolbar_setting.png\" alt=\"case_information_toolbar_setting\" srcset=\"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/case_information_toolbar_setting.png 1020w, https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/case_information_toolbar_setting-300x129.png 300w, https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/case_information_toolbar_setting-768x331.png 768w, https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/case_information_toolbar_setting-940x405.png 940w\" sizes=\"auto, (max-width: 1020px) 100vw, 1020px\" \/><\/figure>\r\n<\/div>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>Add script action with the label of <strong>&#8220;Add Document with updated properties&#8221;<\/strong> as described above.<\/li>\r\n<li>In the script action&#8217;s configuration, put the following script in the <strong>Execute <\/strong>section.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<blockquote class=\"is-layout-flow wp-block-quote-is-layout-flow\">\r\n<p style=\"padding-left: 40px;\"><em>var self = this;<br \/>require([&#8220;ecm\/model\/Teamspace&#8221;, &#8220;ecm\/widget\/dialog\/AddContentItemDialog&#8221;, &#8220;dojo\/aspect&#8221;, &#8220;dojo\/_base\/array&#8221;, &#8220;dojo\/_base\/lang&#8221;, &#8220;icm\/model\/properties\/controller\/ControllerManager&#8221;],<br \/>function(Teamspace, AddContentItemDialog, aspect, array, lang, ControllerManager) {<br \/>var caseEdt = self.getActionContext(&#8220;Case&#8221;)[0];<br \/>var parentFolder = self.getActionContext(&#8220;CurrentFolder&#8221;)[0];<br \/><\/em><code><em>\/*Create the add document dialog*\/ var addContentItemDialog = new AddContentItemDialog(); var _propagateCaseProps = function() {   var contentItemPropertiesPane = addContentItemDialog.addContentItemPropertiesPane;   \/*Fetch the properties from document properties pane*\/   var allProps = contentItemPropertiesPane.getPropertiesJSON();   \/*Match the doc propertis with case properties, and set value*\/   var propsCtrl = ControllerManager.bind(caseEdt);   array.forEach(allProps, function(entry, i) {     var propName = entry.name;     var propCtrl = propsCtrl.getPropertyController(propName);     if (propCtrl) {       var casePropValue = propCtrl.get(\"value\");       if (entry.dataType === \"xs:boolean\") {\/*Convert the case property control's value to case document property control's vaule*\/         casePropValue = (casePropValue == true) ? 1 : 0;       } else if (entry.dataType === \"xs:timestamp\") {         casePropValue = casePropValue.valueOf();       }       contentItemPropertiesPane.setPropertyValue(propName, casePropValue);     }   });   ControllerManager.unbind(caseEdt); }; var widgetAttrs = null; var widget = self.getWidget();     if (widget.parentWidget &amp;&amp; widget.parentWidget.getWidgetAttributes) {    widgetAttrs = widget.parentWidget.getWidgetAttributes(); }else {    widgetAttrs = widget.getWidgetAttributes(); } \/*Check if the the solution document type filtering is on in the case information widget's configuration*\/ var filterOn = widgetAttrs.getItemValue(\"filterDocumentTypes\");     if(filterOn){   var currSolution = caseEdt.getCase().caseType.getSolution();   currSolution.retrieveDocumentTypes(function(docTypes) {     var dcList = null;     if (docTypes &amp;&amp; docTypes.length &gt; 0) {       dcList = new Teamspace({         repository: parentFolder.repository,         name: parentFolder.repository.name,         type: Teamspace.RUNTIME,         addAllowAllClasses: false,         contentClasses: docTypes,         defaultClass: null       });     }     \/*Show the add document dialog*\/     addContentItemDialog.show(parentFolder.repository, parentFolder, true, false, null, dcList, false, null, true);   });      }else{   \/*Show the add document dialog*\/   addContentItemDialog.show(parentFolder.repository, parentFolder, true, false, null, null, false, null, true); } \/*Hook to the complete rendering document properties*\/ aspect.after(addContentItemDialog.addContentItemPropertiesPane, \"onCompleteRendering\", _propagateCaseProps);<\/em><\/code><em><br \/>});\u00a0<\/em><\/p>\r\n<\/blockquote>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>In Case Manager Client, in the case document list inside Case Information widget, choose the &#8220;<strong>Add Document with updated properties<\/strong>&#8221; action for adding case document.<\/li>\r\n<li>You will see that the document properties will be filled with the values from the properties from the case to which the document was added as described below:<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"1023\" height=\"737\" class=\"wp-image-292 aligncenter\" src=\"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/new_document_class_dialog_box_icm.png\" alt=\"new_document_class_dialog_box_icm\" srcset=\"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/new_document_class_dialog_box_icm.png 1023w, https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/new_document_class_dialog_box_icm-300x216.png 300w, https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/new_document_class_dialog_box_icm-768x553.png 768w, https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/new_document_class_dialog_box_icm-940x677.png 940w\" sizes=\"auto, (max-width: 1023px) 100vw, 1023px\" \/><\/figure>\r\n<\/div>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\">\r\n<figure id=\"attachment_291\" aria-describedby=\"caption-attachment-291\" style=\"width: 1024px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-291\" title=\"Copy Case properties values to document class\" src=\"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/copy_case_properties_to_case_properties_icm-1024x768.png\" alt=\"Copy Case properties values to document class\" width=\"1024\" height=\"768\" srcset=\"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/copy_case_properties_to_case_properties_icm.png 1024w, https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/copy_case_properties_to_case_properties_icm-300x225.png 300w, https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/copy_case_properties_to_case_properties_icm-768x576.png 768w, https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/copy_case_properties_to_case_properties_icm-940x705.png 940w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption id=\"caption-attachment-291\" class=\"wp-caption-text\">Copy case properties values to document class<\/figcaption><\/figure>\r\n<\/figure>\r\n<\/div>\r\n\r\n\r\n\r\n<p>In addition, please visit <a href=\"https:\/\/www.ibm.com\/developerworks\/community\/blogs\/e8206aad-10e2-4c49-b00c-fee572815374\/entry\/when_adding_case_document_copy_the_case_property_values_as_the_case_document_property_values?lang=en\" target=\"_blank\" rel=\"noopener\">https:\/\/www.ibm.com\/developerworks\/community\/blogs\/e8206aad-10e2-4c49-b00c-fee572815374\/entry\/when_adding_case_document_copy_the_case_property_values_as_the_case_document_property_values?lang=en<\/a><\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>Sometimes, there is requirement that, when user add document in icm user has to fill document properties values again that are however same with case properties values. Following are the steps to achieve the requirement Copy Case properties values to document class: Open Case Manager Builder first, create a Case Document Type, and add properties &hellip; <\/p>\n","protected":false},"author":1,"featured_media":291,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,177],"tags":[208,184,196,26,27],"class_list":["post-289","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ibm-case-manager-icm","category-ibm-case-manager-client","tag-copy-case-properties-to-doc-properties","tag-ibm-case-manager","tag-ibm-icm","tag-icm5-2","tag-icm5-3"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Copy case properties values to document class in ibm case manager<\/title>\n<meta name=\"description\" content=\"Copy Case Properties Values to Document Class properties values in IBM ICM - iparagons blog - ibm access client solutions, ibm case manager\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Copy case properties values to document class in ibm case manager\" \/>\n<meta property=\"og:description\" content=\"Copy Case Properties Values to Document Class properties values in IBM ICM - iparagons blog - ibm access client solutions, ibm case manager\" \/>\n<meta property=\"og:url\" content=\"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/\" \/>\n<meta property=\"og:site_name\" content=\"iparagons blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/iParagons\" \/>\n<meta property=\"article:author\" content=\"http:\/\/www.facebook.com\/iPragons\" \/>\n<meta property=\"article:published_time\" content=\"2019-03-25T07:05:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-18T10:29:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/copy_case_properties_to_case_properties_icm.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"768\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Junaid Azam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@iparagons786\" \/>\n<meta name=\"twitter:site\" content=\"@junaidazam4\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Junaid Azam\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/\"},\"author\":{\"name\":\"Junaid Azam\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#\\\/schema\\\/person\\\/8e3ee37e9c2e825bd340f8d71ab7eede\"},\"headline\":\"Copy Case Properties Values to Document Class properties values in IBM ICM\",\"datePublished\":\"2019-03-25T07:05:41+00:00\",\"dateModified\":\"2021-11-18T10:29:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/\"},\"wordCount\":271,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/copy_case_properties_to_case_properties_icm.png\",\"keywords\":[\"copy-case-properties-to-doc-properties\",\"ibm case manager\",\"ibm icm\",\"icm5.2\",\"icm5.3\"],\"articleSection\":[\"IBM Case Manager (ICM)\",\"IBM Case Manager Client\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/\",\"url\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/\",\"name\":\"Copy case properties values to document class in ibm case manager\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/copy_case_properties_to_case_properties_icm.png\",\"datePublished\":\"2019-03-25T07:05:41+00:00\",\"dateModified\":\"2021-11-18T10:29:53+00:00\",\"description\":\"Copy Case Properties Values to Document Class properties values in IBM ICM - iparagons blog - ibm access client solutions, ibm case manager\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/#primaryimage\",\"url\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/copy_case_properties_to_case_properties_icm.png\",\"contentUrl\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/copy_case_properties_to_case_properties_icm.png\",\"width\":1024,\"height\":768,\"caption\":\"Copy Case properties values to document class\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/2019\\\/03\\\/25\\\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Copy Case Properties Values to Document Class properties values in IBM ICM\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/\",\"name\":\"iparagons blog\",\"description\":\"IBM FileNet P8 | Case Manager | Content Navigator\",\"publisher\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#organization\",\"name\":\"iparagons technologies\",\"url\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"http:\\\/\\\/iparagons.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/logo_ip.jpeg\",\"contentUrl\":\"http:\\\/\\\/iparagons.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/logo_ip.jpeg\",\"width\":140,\"height\":28,\"caption\":\"iparagons technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/iParagons\",\"https:\\\/\\\/x.com\\\/junaidazam4\",\"https:\\\/\\\/www.instagram.com\\\/azamjunaid\\\/\",\"https:\\\/\\\/pk.linkedin.com\\\/in\\\/junaid-azam-2a683443\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/#\\\/schema\\\/person\\\/8e3ee37e9c2e825bd340f8d71ab7eede\",\"name\":\"Junaid Azam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9f5a4974af969e5b66926242d8f22c1ee7877192a88e3e11381f82ab5d46e642?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9f5a4974af969e5b66926242d8f22c1ee7877192a88e3e11381f82ab5d46e642?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9f5a4974af969e5b66926242d8f22c1ee7877192a88e3e11381f82ab5d46e642?s=96&d=mm&r=g\",\"caption\":\"Junaid Azam\"},\"description\":\"IBM ECM Consultant\",\"sameAs\":[\"http:\\\/\\\/iparagons.com\",\"http:\\\/\\\/www.facebook.com\\\/iPragons\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/junaid-azam-2a683443\\\/\",\"https:\\\/\\\/x.com\\\/iparagons786\"],\"url\":\"https:\\\/\\\/iparagons.com\\\/blog\\\/author\\\/ip_admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Copy case properties values to document class in ibm case manager","description":"Copy Case Properties Values to Document Class properties values in IBM ICM - iparagons blog - ibm access client solutions, ibm case manager","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:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/","og_locale":"en_GB","og_type":"article","og_title":"Copy case properties values to document class in ibm case manager","og_description":"Copy Case Properties Values to Document Class properties values in IBM ICM - iparagons blog - ibm access client solutions, ibm case manager","og_url":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/","og_site_name":"iparagons blog","article_publisher":"http:\/\/www.facebook.com\/iParagons","article_author":"http:\/\/www.facebook.com\/iPragons","article_published_time":"2019-03-25T07:05:41+00:00","article_modified_time":"2021-11-18T10:29:53+00:00","og_image":[{"width":1024,"height":768,"url":"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/copy_case_properties_to_case_properties_icm.png","type":"image\/png"}],"author":"Junaid Azam","twitter_card":"summary_large_image","twitter_creator":"@iparagons786","twitter_site":"@junaidazam4","twitter_misc":{"Written by":"Junaid Azam","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/#article","isPartOf":{"@id":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/"},"author":{"name":"Junaid Azam","@id":"https:\/\/iparagons.com\/blog\/#\/schema\/person\/8e3ee37e9c2e825bd340f8d71ab7eede"},"headline":"Copy Case Properties Values to Document Class properties values in IBM ICM","datePublished":"2019-03-25T07:05:41+00:00","dateModified":"2021-11-18T10:29:53+00:00","mainEntityOfPage":{"@id":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/"},"wordCount":271,"commentCount":1,"publisher":{"@id":"https:\/\/iparagons.com\/blog\/#organization"},"image":{"@id":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/#primaryimage"},"thumbnailUrl":"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/copy_case_properties_to_case_properties_icm.png","keywords":["copy-case-properties-to-doc-properties","ibm case manager","ibm icm","icm5.2","icm5.3"],"articleSection":["IBM Case Manager (ICM)","IBM Case Manager Client"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/","url":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/","name":"Copy case properties values to document class in ibm case manager","isPartOf":{"@id":"https:\/\/iparagons.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/#primaryimage"},"image":{"@id":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/#primaryimage"},"thumbnailUrl":"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/copy_case_properties_to_case_properties_icm.png","datePublished":"2019-03-25T07:05:41+00:00","dateModified":"2021-11-18T10:29:53+00:00","description":"Copy Case Properties Values to Document Class properties values in IBM ICM - iparagons blog - ibm access client solutions, ibm case manager","breadcrumb":{"@id":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/#primaryimage","url":"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/copy_case_properties_to_case_properties_icm.png","contentUrl":"https:\/\/iparagons.com\/blog\/wp-content\/uploads\/2019\/03\/copy_case_properties_to_case_properties_icm.png","width":1024,"height":768,"caption":"Copy Case properties values to document class"},{"@type":"BreadcrumbList","@id":"https:\/\/iparagons.com\/blog\/2019\/03\/25\/copy-case-properties-values-to-document-class-properties-values-in-ibm-icm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/iparagons.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Copy Case Properties Values to Document Class properties values in IBM ICM"}]},{"@type":"WebSite","@id":"https:\/\/iparagons.com\/blog\/#website","url":"https:\/\/iparagons.com\/blog\/","name":"iparagons blog","description":"IBM FileNet P8 | Case Manager | Content Navigator","publisher":{"@id":"https:\/\/iparagons.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/iparagons.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/iparagons.com\/blog\/#organization","name":"iparagons technologies","url":"https:\/\/iparagons.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/iparagons.com\/blog\/#\/schema\/logo\/image\/","url":"http:\/\/iparagons.com\/blog\/wp-content\/uploads\/2018\/07\/logo_ip.jpeg","contentUrl":"http:\/\/iparagons.com\/blog\/wp-content\/uploads\/2018\/07\/logo_ip.jpeg","width":140,"height":28,"caption":"iparagons technologies"},"image":{"@id":"https:\/\/iparagons.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/iParagons","https:\/\/x.com\/junaidazam4","https:\/\/www.instagram.com\/azamjunaid\/","https:\/\/pk.linkedin.com\/in\/junaid-azam-2a683443"]},{"@type":"Person","@id":"https:\/\/iparagons.com\/blog\/#\/schema\/person\/8e3ee37e9c2e825bd340f8d71ab7eede","name":"Junaid Azam","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/9f5a4974af969e5b66926242d8f22c1ee7877192a88e3e11381f82ab5d46e642?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9f5a4974af969e5b66926242d8f22c1ee7877192a88e3e11381f82ab5d46e642?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9f5a4974af969e5b66926242d8f22c1ee7877192a88e3e11381f82ab5d46e642?s=96&d=mm&r=g","caption":"Junaid Azam"},"description":"IBM ECM Consultant","sameAs":["http:\/\/iparagons.com","http:\/\/www.facebook.com\/iPragons","https:\/\/www.linkedin.com\/in\/junaid-azam-2a683443\/","https:\/\/x.com\/iparagons786"],"url":"https:\/\/iparagons.com\/blog\/author\/ip_admin\/"}]}},"_links":{"self":[{"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/posts\/289","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/comments?post=289"}],"version-history":[{"count":4,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/posts\/289\/revisions"}],"predecessor-version":[{"id":812,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/posts\/289\/revisions\/812"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/media\/291"}],"wp:attachment":[{"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/media?parent=289"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/categories?post=289"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/iparagons.com\/blog\/wp-json\/wp\/v2\/tags?post=289"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}