myITforum.com Community Forum myITforum.com Community Forum

Home  Forums  Blogs  Live Support chat  Search Articles  Wiki  FAQ  Email Lists  Register  Login  My Profile  Inbox  Address Book  My Subscription  My Forums 

Photo Gallery  Member List  Search  Calendars  FAQ  Ticket List  Log Out

All Forums RSS Feed Subscription:


  


Adding, User Ranking to a web-report

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
  Printable Version
All Forums >> [Management Products] >> Microsoft Systems Management Server >> SMS 2003 >> Adding, User Ranking to a web-report Page: [1]
Login
Message << Older Topic   Newer Topic >>
Adding, User Ranking to a web-report - 10/27/2008 4:40:33 PM   
MeenEnta


Posts: 118
Score: 0
Joined: 9/9/2008
Status: offline
I like to add User Logon info ( In red) into the below working report (in blue) (From John Nelson)

v_GS_User_Logon_Info0.LogonCount0 as 'Number of Logons',
v_GS_User_Logon_Info0.UserRank0,


Any Help is appreciated. thank you all

Here's the working report:
--put laptop data into #tmp table
SELECT
SYS.Netbios_Name0,
SYS.User_Name0,

 
-- Like to insert the red above here

'Laptop' as ComputerType,
ENC.SerialNumber0,
SYS.Client0,
SYS.Active0,
SYS.Obsolete0,
PROC2.Manufacturer0,
PROC2.Model0,
OPSYS.Caption0        AS "Operating System",
OPSYS.CSDVersion0,
ENC.ChassisTypes0,
OPSYS.LastBootUpTime0
INTO #tmp
FROM   
v_FullCollectionMembership fcm
JOIN v_R_System SYS
  ON fcm.ResourceID = SYS.ResourceID
JOIN v_GS_OPERATING_SYSTEM OPSYS
  ON SYS.ResourceID = OPSYS.ResourceID
JOIN v_GS_COMPUTER_SYSTEM PROC2
  ON SYS.ResourceID = PROC2.ResourceID
JOIN v_GS_SYSTEM_ENCLOSURE ENC
  ON SYS.ResourceID = ENC.ResourceId
WHERE    ENC.ChassisTypes0 IN ('8','9','10','11','14')
AND fcm.CollectionID = @CollID

--now pull the data from #tmp table...
SELECT
Netbios_Name0,
User_Name0,

ComputerType,
-- or here
SerialNumber0,
Client0,
Active0,
Obsolete0,
Manufacturer0,
Model0,
[Operating System],
CSDVersion0,
ChassisTypes0,
LastBootUpTime0
FROM
#tmp
-- add the results above to results below
UNION
--this removes duplicates, UNION ALL would leave them

-- get list of desktops for those same users and add to the results
SELECT
SYS.Netbios_Name0,
SYS.User_Name0,

-- or here
'Desktop' AS ComputerType,
ENC.SerialNumber0,
SYS.Client0,
SYS.Active0,
SYS.Obsolete0,
PROC2.Manufacturer0,
PROC2.Model0,
OPSYS.Caption0        AS [Operating System],
OPSYS.CSDVersion0,
ENC.ChassisTypes0,
OPSYS.LastBootUpTime0
FROM   
v_FullCollectionMembership fcm

JOIN v_R_System SYS
  ON fcm.ResourceID = SYS.ResourceID
JOIN v_GS_OPERATING_SYSTEM OPSYS
  ON SYS.ResourceID = OPSYS.ResourceID
JOIN v_GS_COMPUTER_SYSTEM PROC2
  ON SYS.ResourceID = PROC2.ResourceID
JOIN v_GS_SYSTEM_ENCLOSURE ENC
  ON SYS.ResourceID = ENC.ResourceId

 
WHERE    ENC.ChassisTypes0 NOT IN ('8','9','10','11','14')
AND netbios_name0 NOT IN (SELECT netbios_name0 FROM #tmp)
AND user_name0 IN (SELECT user_name0 FROM #tmp)
AND fcm.CollectionID = @CollID
ORDER BY User_Name0, ComputerType DESC, Netbios_Name0

drop table #tmp
Post #: 1
RE: Adding, User Ranking to a web-report - 10/27/2008 4:50:33 PM   
MeenEnta


Posts: 118
Score: 0
Joined: 9/9/2008
Status: offline
sorry, this is the red font part:

v_GS_User_Logon_Info0.LogonCount0 as 'Number of Logons',
v_GS_User_Logon_Info0.UserRank0,

(in reply to MeenEnta)
Post #: 2
RE: Adding, User Ranking to a web-report - 10/27/2008 5:13:02 PM   
MeenEnta


Posts: 118
Score: 0
Joined: 9/9/2008
Status: offline
For example if i do this report, I get no results:

--put laptop data into #tmp table
SELECT
SYS.Netbios_Name0,
SYS.User_Name0,
v_GS_User_Logon_Info0.LogonCount0 as 'Number of Logons',
v_GS_User_Logon_Info0.UserRank0,

'Laptop' as ComputerType,
ENC.SerialNumber0,
SYS.Client0,
SYS.Active0,
SYS.Obsolete0,
PROC2.Manufacturer0,
PROC2.Model0,
OPSYS.Caption0        AS "Operating System",
OPSYS.CSDVersion0,
ENC.ChassisTypes0,
OPSYS.LastBootUpTime0
INTO #tmp
FROM   
v_FullCollectionMembership fcm
join v_gs_user_logon_info0 on fcm.resourceid = v_GS_User_Logon_Info0.resourceid
JOIN v_R_System SYS
  ON fcm.ResourceID = SYS.ResourceID
JOIN v_GS_OPERATING_SYSTEM OPSYS
  ON SYS.ResourceID = OPSYS.ResourceID
JOIN v_GS_COMPUTER_SYSTEM PROC2
  ON SYS.ResourceID = PROC2.ResourceID
JOIN v_GS_SYSTEM_ENCLOSURE ENC
  ON SYS.ResourceID = ENC.ResourceId
WHERE    ENC.ChassisTypes0 IN ('8','9','10','11','14')
AND fcm.CollectionID = @CollID
--now pull the data from #tmp table...
SELECT
Netbios_Name0,
User_Name0,
v_GS_User_Logon_Info0.LogonCount0 as 'Number of Logons',
v_GS_User_Logon_Info0.UserRank0,
ComputerType,
SerialNumber0,
Client0,
Active0,
Obsolete0,
Manufacturer0,
Model0,
[Operating System],
CSDVersion0,
ChassisTypes0,
LastBootUpTime0
FROM
#tmp
-- add the results above to results below
UNION
--this removes duplicates, UNION ALL would leave them
-- get list of desktops for those same users and add to the results
SELECT
SYS.Netbios_Name0,
SYS.User_Name0,

v_GS_User_Logon_Info0.LogonCount0 as 'Number of Logons',
v_GS_User_Logon_Info0.UserRank0,

'Desktop' AS ComputerType,
ENC.SerialNumber0,
SYS.Client0,
SYS.Active0,
SYS.Obsolete0,
PROC2.Manufacturer0,
PROC2.Model0,
OPSYS.Caption0        AS [Operating System],
OPSYS.CSDVersion0,
ENC.ChassisTypes0,
OPSYS.LastBootUpTime0
FROM   
v_FullCollectionMembership fcm
join v_gs_user_logon_info0 on fcm.resourceid = v_GS_User_Logon_Info0.resourceid
JOIN v_R_System SYS
  ON fcm.ResourceID = SYS.ResourceID
JOIN v_GS_OPERATING_SYSTEM OPSYS
  ON SYS.ResourceID = OPSYS.ResourceID
JOIN v_GS_COMPUTER_SYSTEM PROC2
  ON SYS.ResourceID = PROC2.ResourceID
JOIN v_GS_SYSTEM_ENCLOSURE ENC
  ON SYS.ResourceID = ENC.ResourceId
WHERE    ENC.ChassisTypes0 NOT IN ('8','9','10','11','14')
AND netbios_name0 NOT IN (SELECT netbios_name0 FROM #tmp)
AND user_name0 IN (SELECT user_name0 FROM #tmp)
AND fcm.CollectionID = @CollID
ORDER BY User_Name0, ComputerType DESC, Netbios_Name0
drop table #tmp

(in reply to MeenEnta)
Post #: 3
RE: Adding, User Ranking to a web-report - 10/27/2008 5:36:20 PM   
skissinger


Posts: 2293
Score: 145
Joined: 9/13/2001
From: Sherry Kissinger
Status: offline
Do you currently have any data in v_gs_user_logon_info0?  At first glance, your edits look fine; so I wonder if there simply isn't any data.

_____________________________

mofmaster@smsexpert.com (version 2007) | http://www.smsexpert.com | http://www.sccmexpert.com
My Blog
Microsoft MVP - ConfigMgr

(in reply to MeenEnta)
Post #: 4
RE: Adding, User Ranking to a web-report - 10/27/2008 5:51:03 PM   
MeenEnta


Posts: 118
Score: 0
Joined: 9/9/2008
Status: offline
Thank Sherry for your prompt response.

As you see from uploaded PIC, yes I DO.

I also played with the grouping structure, the above is just one of the options I did, for example i placed the Field at the End of Each Select Group to not mix the Classes.




Thumbnail Image


Attachment (1)

(in reply to skissinger)
Post #: 5
RE: Adding, User Ranking to a web-report - 10/27/2008 5:53:58 PM   
MeenEnta


Posts: 118
Score: 0
Joined: 9/9/2008
Status: offline
Also here's the Data report.



Thumbnail Image


Attachment (1)

(in reply to MeenEnta)
Post #: 6
RE: Adding, User Ranking to a web-report - 10/27/2008 5:54:31 PM  1 votes
skissinger


Posts: 2293
Score: 145
Joined: 9/13/2001
From: Sherry Kissinger
Status: offline
Since that's a #2 special (it takes me a while to understand his stuff), for the middle section, I think you have to shorten it to match where he's pulling from the tmp table, i.e.,:

SELECT
Netbios_Name0,
User_Name0,
[Number of Logons],
UserRank0,
ComputerType,
SerialNumber0,
Client0,
Active0,
Obsolete0,
Manufacturer0,
Model0,
[Operating System],
CSDVersion0,
ChassisTypes0,


_____________________________

mofmaster@smsexpert.com (version 2007) | http://www.smsexpert.com | http://www.sccmexpert.com
My Blog
Microsoft MVP - ConfigMgr

(in reply to MeenEnta)
Post #: 7
RE: Adding, User Ranking to a web-report - 10/27/2008 6:18:56 PM   
MeenEnta


Posts: 118
Score: 0
Joined: 9/9/2008
Status: offline
Not sure what to say to you anymore Sherry... I'm out of Complements, Adjectives and English words..Will you take foreign language? LOL

Worked perfectly... See PIC

And here's the final code:


--put laptop data into #tmp table
SELECT
SYS.Netbios_Name0,
SYS.User_Name0,
'Laptop' as ComputerType,
ENC.SerialNumber0,
v_GS_User_Logon_Info0.LogonCount0 as 'Number of Logons',
v_GS_User_Logon_Info0.UserRank0,
SYS.Client0,
SYS.Active0,
SYS.Obsolete0,
PROC2.Manufacturer0,
PROC2.Model0,
OPSYS.Caption0        AS "Operating System",
OPSYS.CSDVersion0,
ENC.ChassisTypes0,
OPSYS.LastBootUpTime0
INTO #tmp
FROM   
v_FullCollectionMembership fcm
join v_gs_user_logon_info0 on fcm.resourceid = v_GS_User_Logon_Info0.resourceid
JOIN v_R_System SYS
  ON fcm.ResourceID = SYS.ResourceID
JOIN v_GS_OPERATING_SYSTEM OPSYS
  ON SYS.ResourceID = OPSYS.ResourceID
JOIN v_GS_COMPUTER_SYSTEM PROC2
  ON SYS.ResourceID = PROC2.ResourceID
JOIN v_GS_SYSTEM_ENCLOSURE ENC
  ON SYS.ResourceID = ENC.ResourceId
WHERE    ENC.ChassisTypes0 IN ('8','9','10','11','14')
AND fcm.CollectionID = @CollID
--now pull the data from #tmp table...
SELECT
Netbios_Name0,
User_Name0,
ComputerType,
SerialNumber0,
[Number of Logons],
UserRank0,
Client0,
Active0,
Obsolete0,
Manufacturer0,
Model0,
[Operating System],
CSDVersion0,
ChassisTypes0,
LastBootUpTime0
FROM
#tmp
-- add the results above to results below
UNION
--this removes duplicates, UNION ALL would leave them
-- get list of desktops for those same users and add to the results
SELECT
SYS.Netbios_Name0,
SYS.User_Name0,
'Desktop' AS ComputerType,
ENC.SerialNumber0,
v_GS_User_Logon_Info0.LogonCount0 as 'Number of Logons', v_GS_User_Logon_Info0.UserRank0,
SYS.Client0,
SYS.Active0,
SYS.Obsolete0,
PROC2.Manufacturer0,
PROC2.Model0,
OPSYS.Caption0        AS [Operating System],
OPSYS.CSDVersion0,
ENC.ChassisTypes0,
OPSYS.LastBootUpTime0
FROM   
v_FullCollectionMembership fcm
join v_gs_user_logon_info0 on fcm.resourceid = v_GS_User_Logon_Info0.resourceid
JOIN v_R_System SYS
  ON fcm.ResourceID = SYS.ResourceID
JOIN v_GS_OPERATING_SYSTEM OPSYS
  ON SYS.ResourceID = OPSYS.ResourceID
JOIN v_GS_COMPUTER_SYSTEM PROC2
  ON SYS.ResourceID = PROC2.ResourceID
JOIN v_GS_SYSTEM_ENCLOSURE ENC
  ON SYS.ResourceID = ENC.ResourceId
WHERE    ENC.ChassisTypes0 NOT IN ('8','9','10','11','14')
AND netbios_name0 NOT IN (SELECT netbios_name0 FROM #tmp)
AND user_name0 IN (SELECT user_name0 FROM #tmp)
AND fcm.CollectionID = @CollID
ORDER BY User_Name0, ComputerType DESC, Netbios_Name0
drop table #tmp

and don't forget the prompt:

begin
if (@__filterwildcard = '')
SELECT DISTINCT CollectionID, Name FROM v_Collection ORDER BY Name
else
SELECT DISTINCT CollectionID, Name FROM v_Collection
WHERE CollectionID like @__filterwildcard
ORDER BY Name
end



THANK YOU AGAIN TO YOU AND JOHN.



Thumbnail Image


Attachment (1)

(in reply to skissinger)
Post #: 8
RE: Adding, User Ranking to a web-report - 10/28/2008 11:54:24 AM   
MeenEnta


Posts: 118
Score: 0
Joined: 9/9/2008
Status: offline
Let's push the envelop even further,

In the above report it will rank all users on the machine including the same user with multiple or different ranking.

I would like to filter the report to still show the different users but only list the Top Rank of each user.

for example if I'm a user on a machine with Rank 2, 7 and 9, I just want to list my top Rank which is 2, and the same for the other users on the same box.

What do you say to that?

thank you all...

(in reply to MeenEnta)
Post #: 9
RE: Adding, User Ranking to a web-report - 10/28/2008 12:36:58 PM   
skissinger


Posts: 2293
Score: 145
Joined: 9/13/2001
From: Sherry Kissinger
Status: offline
I don't quite get what you're asking.  All users ever, plus their rankings?  Just the top 3 users on a box?  only machines where the username johnsmith ever logged in?  There wouldn't/shouldn't be results where johnsmith is user rank 2 as well as user rank 7 on the same box (unless your inventory data is not being updated correctly), and that is what it sounds like you wanted.  It shouldn't exist.

_____________________________

mofmaster@smsexpert.com (version 2007) | http://www.smsexpert.com | http://www.sccmexpert.com
My Blog
Microsoft MVP - ConfigMgr

(in reply to MeenEnta)
Post #: 10
RE: Adding, User Ranking to a web-report - 10/28/2008 1:17:21 PM   
MeenEnta


Posts: 118
Score: 0
Joined: 9/9/2008
Status: offline
Thx Sherry for your reply.

As you see in the PIC, the user is logged on a box and ranked 1 thru 5, I just want to show 1.


Thumbnail Image


Attachment (1)

(in reply to skissinger)
Post #: 11
RE: Adding, User Ranking to a web-report - 10/28/2008 1:58:18 PM   
gjones


Posts: 903
Score: 60
Joined: 6/5/2001
From: Ottawa, Ontario, Canada
Status: offline
Why not try and find everyone with more than one WS? Try something like this.
http://smsug.ca/blogs/garth_jones/archive/2008/10/28/find-everyone-with-two-or-more-workstations.aspx


_____________________________

Garth@enhansoft.com

For a List of my Articles
http://www.myitforum.com/contrib/default.asp?cid=116
Blogs:
http://smsug.ca/blogs/garth_jones/default.aspx
http://myitforum.com/cs2/blogs/gjones/default.aspx


(in reply to MeenEnta)
Post #: 12
RE: Adding, User Ranking to a web-report - 10/28/2008 3:00:04 PM   
skissinger


Posts: 2293
Score: 145
Joined: 9/13/2001
From: Sherry Kissinger
Status: offline
Use Garth's report.

Or, you'll want to add in your report above this to your where statement at the bottom:
and v_GS_User_Logon_Info0.UserRank0 = 1

(it might be = '1', I didn't test anything, I don't remember if userrank0 is a string or an integer in the db)

_____________________________

mofmaster@smsexpert.com (version 2007) | http://www.smsexpert.com | http://www.sccmexpert.com
My Blog
Microsoft MVP - ConfigMgr

(in reply to gjones)
Post #: 13
RE: Adding, User Ranking to a web-report - 10/28/2008 3:47:14 PM  1 votes
jnelson993


Posts: 959
Score: 132
Joined: 2/18/2005
From: Minneapolis, MN
Status: offline
No, don't use that v_GS_Computer_System garbage that Garth is trying to shove on you :)

It SHOULD be as simple as adding the rank = 1 criteria in the WHERE clause.
--put laptop data into #tmp table
SELECT
  SYS.Netbios_Name0,
  SYS.User_Name0,
  'Laptop'                          AS ComputerType,
  ENC.SerialNumber0,
  v_GS_User_Logon_Info0.LogonCount0 AS 'Number of Logons',
  v_GS_User_Logon_Info0.UserRank0,
  SYS.Client0,
  SYS.Active0,
  SYS.Obsolete0,
  PROC2.Manufacturer0,
  PROC2.Model0,
  OPSYS.Caption0                    AS "Operating System",
  OPSYS.CSDVersion0,
  ENC.ChassisTypes0,
  OPSYS.LastBootUpTime0
INTO   #tmp
FROM  
  v_FullCollectionMembership fcm
  JOIN v_gs_user_logon_info0
    ON fcm.resourceid = v_GS_User_Logon_Info0.resourceid
  JOIN v_R_System SYS
    ON fcm.ResourceID = SYS.ResourceID
  JOIN v_GS_OPERATING_SYSTEM OPSYS
    ON SYS.ResourceID = OPSYS.ResourceID
  JOIN v_GS_COMPUTER_SYSTEM PROC2
    ON SYS.ResourceID = PROC2.ResourceID
  JOIN v_GS_SYSTEM_ENCLOSURE ENC
    ON SYS.ResourceID = ENC.ResourceId
WHERE  ENC.ChassisTypes0 IN ('8','9','10','11',
                            '14')
      AND fcm.CollectionID = @CollID
       AND v_GS_User_Logon_Info0.UserRank0 = '1'
--now pull the data from #tmp table...
SELECT
  Netbios_Name0,
  User_Name0,
  ComputerType,
  SerialNumber0,
  [Number of Logons],
  UserRank0,
  Client0,
  Active0,
  Obsolete0,
  Manufacturer0,
  Model0,
  [Operating System],
  CSDVersion0,
  ChassisTypes0,
  LastBootUpTime0
FROM  
  #tmp
-- add the results above to results below
UNION
--this removes duplicates, UNION ALL would leave them
-- get list of desktops for those same users and add to the results
SELECT
  SYS.Netbios_Name0,
  SYS.User_Name0,
  'Desktop'                         AS ComputerType,
  ENC.SerialNumber0,
  v_GS_User_Logon_Info0.LogonCount0 AS 'Number of Logons',
  v_GS_User_Logon_Info0.UserRank0,
  SYS.Client0,
  SYS.Active0,
  SYS.Obsolete0,
  PROC2.Manufacturer0,
  PROC2.Model0,
  OPSYS.Caption0                    AS [Operating System],
  OPSYS.CSDVersion0,
  ENC.ChassisTypes0,
  OPSYS.LastBootUpTime0
FROM  
  v_FullCollectionMembership fcm
  JOIN v_gs_user_logon_info0
    ON fcm.resourceid = v_GS_User_Logon_Info0.resourceid
  JOIN v_R_System SYS
    ON fcm.ResourceID = SYS.ResourceID
  JOIN v_GS_OPERATING_SYSTEM OPSYS
    ON SYS.ResourceID = OPSYS.ResourceID
  JOIN v_GS_COMPUTER_SYSTEM PROC2
    ON SYS.ResourceID = PROC2.ResourceID
  JOIN v_GS_SYSTEM_ENCLOSURE ENC
    ON SYS.ResourceID = ENC.ResourceId
WHERE  ENC.ChassisTypes0 NOT IN ('8','9','10','11',
                                '14')
      AND netbios_name0 NOT IN (SELECT
                                  netbios_name0
                                FROM  
                                  #tmp)
      AND user_name0 IN (SELECT
                           user_name0
                         FROM  
                           #tmp)
      AND fcm.CollectionID = @CollID
       AND v_GS_User_Logon_Info0.UserRank0 = '1'
ORDER BY User_Name0,
        ComputerType DESC,
        Netbios_Name0
DROP TABLE #tmp



_____________________________

Number2 (John Nelson)
MyITForum - Blog
MyITForum - Forum Posts

(in reply to skissinger)
Post #: 14
RE: Adding, User Ranking to a web-report - 10/28/2008 4:01:58 PM   
gjones


Posts: 903
Score: 60
Joined: 6/5/2001
From: Ottawa, Ontario, Canada
Status: offline
quote:

ORIGINAL: jnelson993
No, don't use that v_GS_Computer_System garbage that Garth is trying to shove on you :)

I'm just going to roll my eyes..



_____________________________

Garth@enhansoft.com

For a List of my Articles
http://www.myitforum.com/contrib/default.asp?cid=116
Blogs:
http://smsug.ca/blogs/garth_jones/default.aspx
http://myitforum.com/cs2/blogs/gjones/default.aspx


(in reply to jnelson993)
Post #: 15
RE: Adding, User Ranking to a web-report - 10/28/2008 4:10:50 PM   
jnelson993


Posts: 959
Score: 132
Joined: 2/18/2005
From: Minneapolis, MN
Status: offline
quote:

ORIGINAL: skissinger
Use Garth's report.


Sherry, if you want to keep working here, those words should never come out of your mouth.




_____________________________

Number2 (John Nelson)
MyITForum - Blog
MyITForum - Forum Posts

(in reply to skissinger)
Post #: 16
RE: Adding, User Ranking to a web-report - 10/28/2008 5:21:22 PM   
MeenEnta


Posts: 118
Score: 0
Joined: 9/9/2008
Status: offline
Garth, I appologize for John's treatment to you; but do not worry Starting Next Tuesday (after the eelction) we'll be friends to our Canadia neighbors and evryone else... (Vote No on Prop 8 in California)..LOL.

Sherry, I have a sepcial appology to you, because John did not think about what he just said...(Threats are not acceptable) again all this will change next Tuesday after the election, because the world will be nicer and gentler)

John be Nice to :

- Garth, because we might have to move and live in canada to cool off when the gloabal warming progresses.
- Sherry, just because she is a Lady.

Everyone, let's have a Rainbow group Hug, peace love and health to all..(Remember holiday season is starting with Ramadan, Diwali, Thanks givings, Quanza, Hanukkah, and Christmas..)

John, Garth and Sherry I appreciate all of your help, you all made me shine here at our comapny, and because of all of you I'm able to give our public Company the Best of what you offered.

I love you All,

Meanwhile, and back to the subject, the report now works as designed initially by John.


Thumbnail Image


Attachment (1)

(in reply to jnelson993)
Post #: 17
RE: Adding, User Ranking to a web-report - 10/28/2008 5:35:42 PM   
skissinger


Posts: 2293
Score: 145
Joined: 9/13/2001
From: Sherry Kissinger
Status: offline
LOL, MeenEnta, don't worry about me (or Garth, or #2), we can all hold our own.  We're quite close friends.  We actually just had an email thread between the 3 of us ribbing each other about this forum thread!

All that really matters is the end result:  you are shining like a star to management.  And that's what Myitforum is all about.

_____________________________

mofmaster@smsexpert.com (version 2007) | http://www.smsexpert.com | http://www.sccmexpert.com
My Blog
Microsoft MVP - ConfigMgr

(in reply to MeenEnta)
Post #: 18
RE: Adding, User Ranking to a web-report - 10/28/2008 5:39:10 PM   
MeenEnta


Posts: 118
Score: 0
Joined: 9/9/2008
Status: offline
Whooo...what a relief,

Just call me MiniMe.

One

(in reply to skissinger)
Post #: 19
RE: Adding, User Ranking to a web-report - 10/28/2008 5:40:00 PM   
MeenEnta


Posts: 118
Score: 0
Joined: 9/9/2008
Status: offline
I had one more Question, if John is #2, who is Dr. Evil?

(in reply to MeenEnta)
Post #: 20
RE: Adding, User Ranking to a web-report - 10/28/2008 6:26:47 PM   
jnelson993


Posts: 959
Score: 132
Joined: 2/18/2005
From: Minneapolis, MN
Status: offline
Who...does...number...2...work...for...?

_____________________________

Number2 (John Nelson)
MyITForum - Blog
MyITForum - Forum Posts

(in reply to MeenEnta)
Post #: 21
RE: Adding, User Ranking to a web-report - 10/28/2008 6:46:53 PM   
MeenEnta


Posts: 118
Score: 0
Joined: 9/9/2008
Status: offline
Wells Fargo!!? LOL LOL LOL im on the floor laughing...

(in reply to jnelson993)
Post #: 22
RE: Adding, User Ranking to a web-report - 10/28/2008 6:52:09 PM   
jnelson993


Posts: 959
Score: 132
Joined: 2/18/2005
From: Minneapolis, MN
Status: offline
Oh, no, I didn't mean to imply THAT at all.  They're a fabulous place, and when everyone else was chasing sub-prime mortgages, they stayed out of it.  And they got to buy up another giant company because they were wise.  They're rated as the safest bank in the US...you don't get that way by being Dr. Evil :)




_____________________________

Number2 (John Nelson)
MyITForum - Blog
MyITForum - Forum Posts

(in reply to MeenEnta)
Post #: 23
Page:   [1]
All Forums >> [Management Products] >> Microsoft Systems Management Server >> SMS 2003 >> Adding, User Ranking to a web-report Page: [1]
Jump to:





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts



  
Forum Software © ASPPlayground.NET Advanced Edition 2.4.5 ANSI

0.500