How to Invite External user on your VSTS
One of my colleague was want to add external user in VSTS. but while he is trying to add external user and typing user name then only organization users are appearing in the drop down.
Resolution
Login to Azure Active Portal with admin right or contact you AD administrator
Go to Azure Active Directory
Select Users Menu
Now click on New Guest User and save it.
Now login again to your VSTS and try to add users
Item Attribute
Query relation to getting Item attributes.
InventTable objinventTable;
EcoResProduct objecoResProduct;
EcoResValue objecoResValue;
EcoResAttributeValue objecoResAttributeValue;
EcoResAttribute objecoResAttribute;
EcoResInstanceValue objecoResInstanceValue;
EcoResAttributeType objecoResAttributeType;
EcoResProductInstanceValue objecoResProductInstanceValue;
int i = 0;
;
while select objecoResAttributeValue
join objecoResAttribute
where objecoResAttributeValue.Attribute == objecoResAttribute.RecId
join objecoResAttributeType
where objecoResAttribute.AttributeType == objecoResAttributeType.RecId
join objecoResInstanceValue
where objecoResAttributeValue.InstanceValue == objecoResInstanceValue.RecId
join objecoResValue
where ecoResAttributevalue.Value == objecoResValue.RecId
join objecoResProductInstanceValue
where objecoResInstanceValue.RecId == objecoResProductInstanceValue.RecId
join objecoResProduct
where objecoResProduct.RecId == objecoResProductInstanceValue.Product
join objinventTable
where objinventTable.Product == objecoResProduct.RecId
&& objinventTable.itemid='D0001'
{
info(strFmt("%1 %2",objecoResProduct.DisplayProductNumber,objecoResAttribute.Name));
}