| <?xml version="1.0" encoding="UTF-8"?> | 
| <WebLink xmlns="http://soap.sforce.com/2006/04/metadata"> | 
|     <fullName>SelectProduct2CIC</fullName> | 
|     <availability>online</availability> | 
|     <displayType>massActionButton</displayType> | 
|     <linkType>javascript</linkType> | 
|     <masterLabel>新建CIC/产品</masterLabel> | 
|     <openType>onClickJavaScript</openType> | 
|     <protected>false</protected> | 
|     <requireRowSelection>false</requireRowSelection> | 
|     <url>// 必ず iframeからと想定 | 
| var pathnames = window.self.location.pathname.split('/'); | 
| if (pathnames[1]=="emptyHtmlDoc.html") { | 
|     window.open("/apex/SelectProduct2CIC?cicid={!URLENCODE(Case.Id)}", "_parent"); | 
| } | 
| else { | 
|     window.open("/apex/SelectProduct2CIC?cicid={!URLENCODE(Case.Id)}", "_self"); | 
| }</url> | 
| </WebLink> |