Advertisement
MrViSiOn

Untitled

Apr 7th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     var rr = Platform.Function.CreateObject("RetrieveRequest");
  2.     Platform.Function.SetObjectProperty(rr, "ObjectType", "DataExtension");
  3.  
  4.  
  5.     var sfp = Platform.Function.CreateObject("SimpleFilterPart");
  6.     Platform.Function.SetObjectProperty(sfp, "Property", "DataExtension.CustomerKey");
  7.     Platform.Function.SetObjectProperty(sfp, "SimpleOperator", "equals");
  8.     Platform.Function.AddObjectArrayItem(sfp, "Value", "2512D571-8E5D-43D1-BF65-99666CACB70A");
  9.  
  10.  
  11.     Platform.Function.AddObjectArrayItem(rr, "Properties", "Name");
  12.     Platform.Function.AddObjectArrayItem(rr, "Properties", "FieldType");
  13.  
  14.     Platform.Function.SetObjectProperty(rr, "Filter", sfp);
  15.  
  16.     var retrieveStatus = [0,0,0];
  17.     var rows = Platform.Function.InvokeRetrieve(rr, retrieveStatus);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement