ISSERVICE TIER

Hi all,

In some base report using ISSERVICETIER system function…what is the use of that function…but learned something i didn’t get clearly. pls explain me clearly ASAP.

Regards

Packiya

You can use the ISSERVICETIER function to execute different code based on the client that you are running i.e RTC and classic

ISSERVICETIER function returns true when you call it from RTC and FALSE from Classic.

Ex: IF ISSERVICETIER THEN

ELSE

hi…

i did one report …using request form…create one field C-Form Boolean …if it’s true means…C-Formname txt field anabled or C-Form txt field disabled…using this coding C-Form boolean Onvalida()

IF C-Form THEN

RequestOptionsForm.C-Formname .ENABLED(TRUE)

ELSE

RequestOptionsForm.C-Formname .ENABLED(FALSE)

But RTC Layout it’s not working…i got error unkonwn variable ENABLED…replay ASAP

Regards

Packiya

Use Requestpage

I am using

IF C-Form THEN

RequestOptionsPage.C-Formname .ENABLED(TRUE)

ELSE

RequestOptionsPage.C-Formname .ENABLED(FALSE)…even though C-Formname field is enabled…not accept edit field…one base report is there… Report ID-29 --name–Export Acc. Sched. to Excel…while running RTC that same issues are there…classic…select option field Create Workbook remaining field editable false…else editable true…but RTC not working…help me…asap

Regards

Packiya

Please dont use these kind of ASAP words in forum…

If you need ASAP replies contact Microsoft Support…

What exactly you are trying to do ?