Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.

Michael

About

Username
Michael
Joined
Visits
128
Last Active
Roles
Member

Comments

  • Hmm the plot thickens.. if I call a msg before the popup, the popup appears with no problem. I wonder what's being un/set by the msg.
  • Checked Status() in all the scenarios. It's always 0. What else should I check? The only time it Doesn't work is when called from one button on one form.
  • mvkeys contains an @vm list of record keys. I've coded the popup call to only happen if it's MV. The popup displays fine if I call from UI or from a stand-alone program. I wasn't sure if it could be something in the event chain of the button th…
  • "Eventually the UD will clear the lock. I think the default timeout is 30 minutes but I believe this can be changed." Resurrecting the thread.. How can this default timeout be changed? Thanks!
  • We'll be going with a different solution. Thanks for all your help!
  • No Attach or Listmedia will work. They both bomb out with the same error.
  • Will do. Trying one other thang right now. Thank you sir!
  • Installed RDK. I still get the same error from Attach or Listmedia.
  • Will give it a shot. Thanks Don!
  • 9.4 After it was copied, the Revparam for the OI copy was changed to ServerOnly = 0, as was the Revparam on the target volume.
  • My client copied it from a system that was working. They ran the ClientSetup app as well. I've copied OI systems before and have never run into this.
  • Thanks Jared.. I should have been more specific. I'm trying to delete another username, Not the APP username. OI isn't letting me do it. Any direction is most appreciated!
  • Oook.. The call to ADD_REPOS_APP sort of works.. it creates an application. But when I try to log in, it tells me that the user (same name as the app) doesn't exist. Not trying to use SSO at that point, just to log in. When I created a new app fr…
    in Logto Comment by Michael March 2020
  • Thanks! I did what you suggested, and I also found a few things online about the routine. It's going to be perfect for this purpose. Is there a similar routine/function for creating a new user on a different database? I know that Create_User wil…
    in Logto Comment by Michael March 2020
  • Ok, doing workarounds for some things. In Arev there was a MAKEACCOUNT_SUB that would do exactly that: create a new account (application). Is there a way in OI to programagically create a new application associated with the current database? Hope…
    in Logto Comment by Michael February 2020
  • SSO pretty much works as advertised now. I created a login application that uses SSO that recognizes the user's login/access based on the AD group. Once in the "launch" app, I need to "Logto" another app based on user selection. I'm trying to avo…
    in Logto Comment by Michael February 2020
  • Field 5 is empty. I did notice the CFG_Login record for the application (with 0 in field 1) also has 0 in field 5. Does that matter? I put the same LDAP group name in fields 2-4. Same result.
  • Yes it does. And there's nothing in field 5. Should there be?
  • Yes and Yes, sir
  • Ok, I've set up a SYSENV record for SSO. Field 1 is 2, field 4 is a group name. The ID is CFG_LOGIN*applicationname. There is no password on the application. When I log in from the command line, I pass a /AP=applicationname. It's still promptin…
  • Nevermind.. I got it.. Play time..lol
  • I totally agree, but my client has a zillion references to @Username that we don't want to have to modify. SSO is definitely the way to go. Can I configure SSO to apply to one application, or is it per install/license?
  • And/or is there a way to leverage the SSO logic to achieve this end?
  • So if the apps are all using the same database, is there a way to pull this off?
  • It wasn't as bad as you might think. And it was a huge performance gain. We're in the process of utilizing it in other processes as well now.
  • I created 2 functions to speed things up. One is a replacement for an Open call, called TOpen. You pass in the table name and it returns the table variable. The 2nd (optional) parameter is a flag that says whether to return the "raw" variable (i.…
  • Will each developer need a physical copy of OI? My client has a setup that runs on one copy, but each developer has his/her own "sandbox" (application) that inherits from the main system. They have a subsystem that currently manages check-ins, che…
    in SRP Git Comment by Michael August 2019
  • Oook.. next obvious question.. When? Do you have any documentation in the meantime? Client wants it bad..lol
    in SRP Git Comment by Michael August 2019
  • Will this be OI 9.x compatible, or just for 10.x?
    in SRP Git Comment by Michael August 2019
  • I have indeed. It's easier and more convenient (and a Lot less code) to let the system write process do its thing. I just need to make sure the "shadow record" is posted first to cover all the fields that are not associated with a control. I wish…