Sure Lucy. Please see to the following shortened description of the warnings as there is long list of same warning number but with different reference to columns/tables.
Build warning SQL71502: SqlProcedure:
1. w.r.t. many TEMP tables
2. One of SP highlighted for issues with sys columns used in the below cursor:
DECLARE Tables_Ref_ID CURSOR FOR
SELECT DISTINCT OBJECT_NAME(f.parent_object_id) TableName,
COL_NAME(fk.parent_object_id,fk.parent_column_id) ColumnName
FROM sys.foreign_keys AS f
INNER JOIN sys.foreign_key_columns AS fk ON f.OBJECT_ID = fk.constraint_object_id
INNER JOIN sys.tables t ON fk.referenced_object_id = t.object_id
WHERE OBJECT_NAME(fk.referenced_object_id) = @TableName
and (COL_NAME(fk.referenced_object_id,fk.referenced_column_id) = 'REC_ID')
3. [dbo].[sp_WhoIsActive] --> downloaded from google. And has many unresolved references.
4. Another SP highlighted for issues with all the columns mentioned in this part of query within that SP
Select
COLUMN_NAME,
DATA_TYPE,
CHARACTER_MAXIMUM_LENGTH,
IS_NULLABLE
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = @Table_Name
5. SPs having declared tables
6. SPs using 'sp_xml_preparedocument', 'sp_executesql'
7. SPs having CTEs
&
1. Build warning SQL71558: The object reference '' differs only by case from the object definition ''.
For the last warning SQL71558 it can be resolved by setting to not consider case, but I am not getting that setting within ADS, can see it only with VS.