Click here to Skip to main content
15,881,173 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
i try to add pending column

there is two tables documnet and approval table

i show document in grid view but here i add one more column that is pending column

just like this
SQL
docid docname file documnettype deptype status
1    abc      abc.pdf  pdf        finance  pending


i try to add column which is pending when user upload document then its status automatically show as pending

in approve type there is approve,reject and pending

SQL
create procedure sppendingfilesss
as
select DocumentInfo.DepID,DocumentInfo.DocName,DocumentInfo.Uploadfile,DocType.DocType,Department.DepType,ApproveType.ApproveType
from DocumentInfo inner join DocType on DocumentInfo.DocTypeID=DocType.DocTypeID inner join Department on DocumentInfo.DepID=Department.DepID
inner join ApproveType  on DocumentInfo.ApproveID=ApproveType.ApproveID  and (ApproveType.ApproveType=2)
Posted
Updated 15-Oct-13 9:15am
v2
Comments
bryce 15-Oct-13 21:13pm    
can you explain more about what you want to do

bryce
Diya Ayesa 16-Oct-13 3:48am    
i want to add a column pending in gridview through store procedure..means that when any user upload document then in grid-view automatically status display as pending the above query which i posted as a show upload documents now in this i want to add pending status i have a separate approve type table in which approveid ,approvetype(1 approve 2 reject ,3 pending) ...and i show pedning in grdiview . @bryce
Diya Ayesa 16-Oct-13 4:27am    
plz see this article i post in deatiledd..
http://social.msdn.microsoft.com/Forums/sqlserver/en-US/0dc095de-a0dc-4884-ab5a-58ffe9abd3f0/store-peocedures?forum=sqldataaccess

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900