0
CRM Dynamicsの検索フィールドにSitecore WFFMフォームの検索フィールドから値を挿入するにはどうすればよいですか?私はWFFMからGuidフォームの価値を得ることができますが、CRMのダイナミックスには挿入されません。なぜ?? Dynamics CRMのためにcrm dynamicsに値を挿入
public void Execute(ID formid, AdaptedResultList fields, params object[] data)
{
string email = fields.GetValueByFieldID(Email); //this works and insert into CRM
string CountryName = fields.GetValueByFieldID(Country); // this does not work and value is not inserted into the CRM. This one is picking up value in GUID form.
}
、これは動作しません。上記の国コードを変更して説明できますか? – user7832038