Sage 100

 View Only
  • 1.  a client asked ""I would like some user to not be a

    Posted 01-04-2019 07:23
    a client asked ""I would like some user to not be able to create new batches. I'd like that to be a privilege to certain billers."" she is specifically asking about this in sales order invoice data entry. I don't see anything in role maintenance and I can't use custom office to modify the Batch screen since it is public to all modules. Any ideas on how this could be accomplished other than custom programming?


  • 2.  RE: a client asked ""I would like some user to not be a

    Posted 01-04-2019 07:30
    Have you tried giving the user only Modify rights for the task?


  • 3.  RE: a client asked ""I would like some user to not be a

    Posted 01-04-2019 09:43
    I can't find a task for the batch entry screen only for invoice data entry and I can't set that to modify only since they need to be able to create invoices but not a new batch.


  • 4.  RE: a client asked ""I would like some user to not be a

    Posted 01-04-2019 09:54
    Oh, I see! Hmm...


  • 5.  RE: a client asked ""I would like some user to not be a

    Posted 01-04-2019 10:34
    yea, I don't think there is a way; I was hoping I was missing something obvious.


  • 6.  RE: a client asked ""I would like some user to not be a

    Posted 01-04-2019 10:43
    Perhaps @NicoleRonchetti has a thought?


  • 7.  RE: a client asked ""I would like some user to not be a

    Posted 01-04-2019 11:03
    there isn't what you will need is a MOD or maybe some fancy scripting code


  • 8.  RE: a client asked ""I would like some user to not be a

    Posted 01-04-2019 11:31
    A UI Post-Load Event (v2015+) script checking the batch entry task and either hardcoding user or creating a empty role to assign to users to give exclusive or inclusive access to the batch number field and create new batch button would work. then just lock the batch number field and disable/hide the new batch button. Below is from another post. --------------------------------------------------------------- Even if you can't access the panel via custom office, you can create a UI post load event script on another panel accessible via customizer and then DFDM CM_UIScriptSettings and the record created on the panel and change the library and panel fields, remove old keys when prompted. After changing the record, compile the UI scripts again and clean up any orphaned *M4L.vbs files left over in MAS90\CM\Script that are not used Pretty sure i have a post on here with more detail. --------------------------------------------------------------- You can use steps 53+ from this post for detailed instructions to attach a UI script to a panel not accessible in customizer. https://90minds-com.socialcast.com/messages/39047557?ref=stream


  • 9.  RE: a client asked ""I would like some user to not be a

    Posted 01-04-2019 12:27
    Thank you David!