dbTalk Databases Forums  

IWP FMP 8.5 + XP - Login showing only users records

comp.databases.filemaker comp.databases.filemaker


Discuss IWP FMP 8.5 + XP - Login showing only users records in the comp.databases.filemaker forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Toni
 
Posts: n/a

Default IWP FMP 8.5 + XP - Login showing only users records - 10-03-2006 , 03:43 AM






Hi there,
I am new to IWP and am struggling with a few basic issues...thank you for
any help :0)

I need to have web users to login and want them to only see records assigned
to their UserName and only they will only see certain layouts.
I have no idea how to write the script to do this...
Assuming in the start up I would have something like
If its a local intranet user then use this startup script
If webuserX use this startup script...

Thanks
T



Reply With Quote
  #2  
Old   
Bill
 
Posts: n/a

Default Re: IWP FMP 8.5 + XP - Login showing only users records - 10-03-2006 , 05:13 AM






In article <452222b8$0$11972$afc38c87 (AT) news (DOT) optusnet.com.au>,
"Toni" <toni (AT) dataspecifics (DOT) com.au> wrote:

Quote:
Hi there,
I am new to IWP and am struggling with a few basic issues...thank you for
any help :0)

I need to have web users to login and want them to only see records assigned
to their UserName and only they will only see certain layouts.
I have no idea how to write the script to do this...
Assuming in the start up I would have something like
If its a local intranet user then use this startup script
If webuserX use this startup script...

Thanks
T
When you define the privilege set for each account, you define what
tables, records and layouts that account holder can see, and whether
they can modify any of them. You also define their privileges regarding
seeing, modifying and using scripts and value lists. All these things
are in the definition of the privilege set, and do not need to be
controlled by a script.

In order to limit the access to particular records, the records have to
be identifiable by some calculation that you define in the privilege
set. In general this means that there has to be some field or
combination of fields that identifies the records for purposes of this
calculation.

Fore example, you can define a field that records the account name that
created the record. That could be used to allow subsequent access only
to records that account name created. I'm not saying you should do this,
it is only an example of the kind of thing you can do to limit access to
particular records. There are many other possibilities, depending on
your needs.

--
For email, change <fake> to <earthlink>
Bill Collins


Reply With Quote
  #3  
Old   
Toni
 
Posts: n/a

Default Re: IWP FMP 8.5 + XP - Login showing only users records - 10-04-2006 , 01:21 AM




"Bill" <bbcollins (AT) fake (DOT) net> wrote

Quote:
In article <452222b8$0$11972$afc38c87 (AT) news (DOT) optusnet.com.au>,
"Toni" <toni (AT) dataspecifics (DOT) com.au> wrote:

Hi there,
I am new to IWP and am struggling with a few basic issues...thank you for
any help :0)

I need to have web users to login and want them to only see records
assigned
to their UserName and only they will only see certain layouts.
I have no idea how to write the script to do this...
Assuming in the start up I would have something like
If its a local intranet user then use this startup script
If webuserX use this startup script...

Thanks
T

When you define the privilege set for each account, you define what
tables, records and layouts that account holder can see, and whether
they can modify any of them. You also define their privileges regarding
seeing, modifying and using scripts and value lists. All these things
are in the definition of the privilege set, and do not need to be
controlled by a script.

In order to limit the access to particular records, the records have to
be identifiable by some calculation that you define in the privilege
set. In general this means that there has to be some field or
combination of fields that identifies the records for purposes of this
calculation.

Fore example, you can define a field that records the account name that
created the record. That could be used to allow subsequent access only
to records that account name created. I'm not saying you should do this,
it is only an example of the kind of thing you can do to limit access to
particular records. There are many other possibilities, depending on
your needs.

--
For email, change <fake> to <earthlink
Bill Collins
Thanks Bill,

As dopey as this sounds... how to I record the AccountName who created the
record which would happen to be the same at the Inspector the job is
assigned to... Any way AccountName can be UserName... I thought it might be
as simple as a Calculation field with Get (AccountName) but cant find one?

t




Reply With Quote
  #4  
Old   
Bill
 
Posts: n/a

Default Re: IWP FMP 8.5 + XP - Login showing only users records - 10-04-2006 , 02:45 AM



In article <452352d8$0$2917$afc38c87 (AT) news (DOT) optusnet.com.au>,
"Toni" <toni (AT) dataspecifics (DOT) com.au> wrote:

Quote:
"Bill" <bbcollins (AT) fake (DOT) net> wrote in message
news:bbcollins-00711D.06145503102006 (AT) news (DOT) west.earthlink.net...
In article <452222b8$0$11972$afc38c87 (AT) news (DOT) optusnet.com.au>,
"Toni" <toni (AT) dataspecifics (DOT) com.au> wrote:

Hi there,
I am new to IWP and am struggling with a few basic issues...thank you for
any help :0)

I need to have web users to login and want them to only see records
assigned
to their UserName and only they will only see certain layouts.
I have no idea how to write the script to do this...
Assuming in the start up I would have something like
If its a local intranet user then use this startup script
If webuserX use this startup script...

Thanks
T

When you define the privilege set for each account, you define what
tables, records and layouts that account holder can see, and whether
they can modify any of them. You also define their privileges regarding
seeing, modifying and using scripts and value lists. All these things
are in the definition of the privilege set, and do not need to be
controlled by a script.

In order to limit the access to particular records, the records have to
be identifiable by some calculation that you define in the privilege
set. In general this means that there has to be some field or
combination of fields that identifies the records for purposes of this
calculation.

Fore example, you can define a field that records the account name that
created the record. That could be used to allow subsequent access only
to records that account name created. I'm not saying you should do this,
it is only an example of the kind of thing you can do to limit access to
particular records. There are many other possibilities, depending on
your needs.

--
For email, change <fake> to <earthlink
Bill Collins

Thanks Bill,

As dopey as this sounds... how to I record the AccountName who created the
record which would happen to be the same at the Inspector the job is
assigned to... Any way AccountName can be UserName... I thought it might be
as simple as a Calculation field with Get (AccountName) but cant find one?

t
Get(AccountName) is one of the numerous Get functions. See the Get
function in the FMP 8.5 Help file.

--
For email, change <fake> to <earthlink>
Bill Collins


Reply With Quote
  #5  
Old   
Guy
 
Posts: n/a

Default Re: IWP FMP 8.5 + XP - Login showing only users records - 10-05-2006 , 03:08 PM



hummm

where in 8.5 can you specify these details, all I see is read only, data
entry and fuill access; I recall in older versions you could get that
granular, but I can't seem to find in 7-8

guy

--


-------------------------------------------------
www.nsbtaxi.com

Captain Guy
s/v Island Time (352#277)
AICW 845.5
386-689-5088
"Bill" <bbcollins (AT) fake (DOT) net> wrote

Quote:
In article <452352d8$0$2917$afc38c87 (AT) news (DOT) optusnet.com.au>,
"Toni" <toni (AT) dataspecifics (DOT) com.au> wrote:

"Bill" <bbcollins (AT) fake (DOT) net> wrote in message
news:bbcollins-00711D.06145503102006 (AT) news (DOT) west.earthlink.net...
In article <452222b8$0$11972$afc38c87 (AT) news (DOT) optusnet.com.au>,
"Toni" <toni (AT) dataspecifics (DOT) com.au> wrote:

Hi there,
I am new to IWP and am struggling with a few basic issues...thank you
for
any help :0)

I need to have web users to login and want them to only see records
assigned
to their UserName and only they will only see certain layouts.
I have no idea how to write the script to do this...
Assuming in the start up I would have something like
If its a local intranet user then use this startup script
If webuserX use this startup script...

Thanks
T

When you define the privilege set for each account, you define what
tables, records and layouts that account holder can see, and whether
they can modify any of them. You also define their privileges regarding
seeing, modifying and using scripts and value lists. All these things
are in the definition of the privilege set, and do not need to be
controlled by a script.

In order to limit the access to particular records, the records have to
be identifiable by some calculation that you define in the privilege
set. In general this means that there has to be some field or
combination of fields that identifies the records for purposes of this
calculation.

Fore example, you can define a field that records the account name that
created the record. That could be used to allow subsequent access only
to records that account name created. I'm not saying you should do
this,
it is only an example of the kind of thing you can do to limit access
to
particular records. There are many other possibilities, depending on
your needs.

--
For email, change <fake> to <earthlink
Bill Collins

Thanks Bill,

As dopey as this sounds... how to I record the AccountName who created
the
record which would happen to be the same at the Inspector the job is
assigned to... Any way AccountName can be UserName... I thought it might
be
as simple as a Calculation field with Get (AccountName) but cant find
one?

t

Get(AccountName) is one of the numerous Get functions. See the Get
function in the FMP 8.5 Help file.

--
For email, change <fake> to <earthlink
Bill Collins



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.