Do not let any software impress you!

Only let it convince your intellect.
Slider img 1
Do not look for a business paradise!

It is a waste of time.
Slider img 2
Only yourself can push you uphill.

There is no easy road to prizes.
Slider img 3
Productivity is the name of the game.

And you have to conquer it.
Slider img 4
As long as you understand it,

you will start to build your know-how.
Slider img 5
We can help with that.

We have the tools and the method.
Slider img 6

Activity Status Comments Closed Date Associate
Define Company Image 16/11/2016
Import Protoypes Image 16/11/2016
Import Organization Plan Project
Import Associates
Setup Organogram
Setup Roles Permissions
Setup Standard Processes Roles
Import Contacts
Import Businesses
Import Mail Accounts
112:1-60

Title : Processes Check Lists

Toolbars

call PrintGrid()
call CreateSheet()
call edit()

Buttons

Fields



AutoScript

lib

proc Panels_Start()

     start_sql "DATA" "KOSMOS"
         SELECT AU_PROC_CLIST_LST.*, AU_USER.UNAME
         FROM AU_PROC_CLIST_LST LEFT JOIN AU_USER ON AU_PROC_CLIST_LST.CUSER = AU_USER.AU_USER
         WHERE (AU_PROC_CLIST_LST.AU_PROC_CLIST = :A)
     end_sql
     q = QueryByName("DATA")
     if (__params[4] > 0) then
        process_id = __params[4]
        agent_id = LookUpId("AU_PROCESS",process_id,"AGENT_ID")
        sql = strcat("SELECT AU_PROC_CLIST FROM AU_PROC_CLIST WHERE (AGID = '",agent_id,"')")
        val = SelectFrom(sql)
     else
        val = getfprevfield("AU_PROC_CLIST")
        if (val = "") then         {..............called from Status}
         step_id = getfprevfield("AU_STEP")
         process_id = LookUpId("AU_STEP",step_id,"AU_PROCESS")
         agent_id = LookUpId("AU_PROCESS",process_id,"AGENT_ID")
         sql = strcat("SELECT AU_PROC_CLIST FROM AU_PROC_CLIST WHERE (AGID = '",agent_id,"')")
         val = SelectFrom(sql)
        endif
     endif
     call TSetParam(q,"A",val)
     call TPrepare(q)

end

proc Form_Start()

     call SetCaption("Procedure Check Sheet")

   is_admin = IsAdmin()
   if (is_admin = 0) then
      OnOpenForm_HideControl("PROC_EDIT_BTN")
   endif

end

proc edit()

     call OpenFormTop("ptEdit","AU_PROC_CLIST_LST_E.FM","WORK.AU_PROC_CLIST_LST",1,"?=AU_PROC_CLIST_LST")

end