Questions tagged [user-object]
34 questions
1
vote
2 answers
app-engine endpoint method taking user object
I have an endpoint method that requires a user object. Would I do the following? It seems a bit strange since I could get user using endpoints.get_current_user()
@endpoints.method(FriendListRequest, FriendListResponse,
…

learner
- 11,490
- 26
- 97
- 169
1
vote
4 answers
fetching logged in user data in activecollab by $this->logged_user
I am working with custom module of activecollab, I need to know how can I fetch logged in user data with the help of below object
$this->logged_user
or if anyone have another method to grab logged in user then please letme know, I just want to…

Shadman
- 755
- 2
- 11
- 19
0
votes
0 answers
How to get FB users with GraphAPI
We need to be able to retrieve public_profile for users by user_name on FB.
Unfortunately, I can't find the way to retrieve this data from FB.
Do you know if there any way to do it?
Any ideas / solutions /leads are more then welcome.
Thanks in…
0
votes
1 answer
Can I create a user object inside password hash function?
I was following a Backend REST Api tutorial, and in the video, this is what he did, creating a user object, then changing newUser.password to the hash generated.
// Data is valid, register user
let newUser = new User({
name,
username,
…

Darren Seet
- 35
- 5
0
votes
1 answer
Making the user active when tapping a button in html, and using a DetailView (Django)
I'm trying to make a user active when I tap a button, and I'm using a DetailView.
views.py
from .models import Model
from django.contrib.auth.models import User
from django.shortcuts import redirect
class UserInspectView(DetailView):
model =…

AnonymousUser
- 690
- 7
- 26
0
votes
4 answers
Arrays in PowerBuilder
I have this code
n_userobject inv_userobject[]
For i = 1 to dw_1.Rowcount()
inv_userobject[i] = create n_userobject
.
.
.
NEXT
dw_1.rowcount() returns only 210 rows. Its so odd that in the range of 170 up, the application stop and crashes…

icing1018
- 21
- 2
- 4
0
votes
4 answers
Writing an If statement to = a number but not allow for than another
Im writing an if statement that allows to display a choice based on users input,
Im basically trying to say if something like if they pick 2-4 guests then allow the option.
This is what i've written:
if (userObj.guests = 2 || userObj.guests <=4 &&…

Nate David-Peter
- 21
- 1
- 5
0
votes
1 answer
AD LDS User Password Management in ADSI
I am having some issues managing users (user type pbjects) in AD LDS, specifically managing passwords.
According to this article, i should be able to set password for user object by going to right click -> Reset password. If I do that, the dialog…

concentriq
- 359
- 2
- 6
- 16
0
votes
1 answer
Cant access user object in joomla 3.9.3
I built a small website using Joomla 3.4.0./ Wampserver 2.4 on Windows 8.1 Pro.
Now I've upgraded the computer to Windows 10 Pro and Wamp 3.1.7 (64 bit). I've rebuilt the website with latest version of Joomla 3.9.3 from scratch, and its working fine…

Roland
- 3
- 2
0
votes
1 answer
Exception in thread "AWT-EventQueue-0" java.lang.InternalError: The current process has used all of its system allowance of handles
We have numerous users that use our DSS OWC Application and one of the users is getting the error below:
Exception in thread "AWT-EventQueue-0" java.lang.InternalError: The current process has used all of its system allowance of handles for Window…

Chris Bottini
- 1
- 1
0
votes
2 answers
Shortcode using WP_User object
I'm trying to create a WP shortcode that will insert a profile form for a Wordpress user.
I want to call the following action:
Where $user is the WP_User object for the user being…

oyegigi
- 11
- 4
0
votes
2 answers
How to join USER_TABLES with its corresponding indexes in USER_OBJECTS?
I have for in loop to rebuild indexes of certain tables that have changed primary key. Anyway to select only indexes of these tables from USER_OBJECTS linking with TABLE_NAME in USER_TABLES, also to exclude any IOT table's index.
FOR r IN (SELECT…

user2102665
- 429
- 2
- 11
- 26
0
votes
2 answers
Design efficient user interactive event log so that I won't exceed my 10000 user object limit.
I have a problem: in my application I get some event-related information, so for event x I should get a form window in which I do some sort of things (enter some text and click on a button)
My problem is that for my application there is a 10,000…

Alex
- 10,869
- 28
- 93
- 165
0
votes
2 answers
Power Builder 10.5 user object array to datawindow table
I am new to Power Builder and I would like to ask how can I represent my objects in a table form. For example, given an ArrayList in java I have implemented the code like this:
table = new JTable();
scrollPane.setViewportView(table);
…

Panagis Loukatos
- 13
- 4
0
votes
1 answer
AngularJS: User object
I want to have an object that will save data for the login user in my web.
I want him to count how many times the user have been connected, how many times the user paged between the pages, how many times the user ordered the table and how many times…

Ariel Livshits
- 591
- 1
- 7
- 23