Foren

How to insert data in User table through own portlet ??

piyush liferay, geändert vor 11 Jahren.

How to insert data in User table through own portlet ??

Junior Member Beiträge: 40 Beitrittsdatum: 02.01.13 Neueste Beiträge
Hello ,

How to insert data in User table which is already present in liferay..

can you suggest me best solution for that...
Siby Mathew, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Expert Beiträge: 268 Beitrittsdatum: 04.03.11 Neueste Beiträge
Use methods from UserLocalServiceUtil.java like addUser, updateUser etc.

Thanks,
Siby
thumbnail
Hitoshi Ozawa, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Liferay Legend Beiträge: 7942 Beitrittsdatum: 24.03.10 Neueste Beiträge
Use UserLocalServiceImpl.addUser

http://docs.liferay.com/portal/6.1/javadocs-all/com/liferay/portal/service/impl/UserLocalServiceImpl.html

OR

UserLocalServiceUtil.AddUser

http://docs.liferay.com/portal/6.1/javadocs/com/liferay/portal/service/UserLocalServiceUtil.html
piyush liferay, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Junior Member Beiträge: 40 Beitrittsdatum: 02.01.13 Neueste Beiträge
Hitoshi Ozawa:
Use UserLocalServiceImpl.addUser

http://docs.liferay.com/portal/6.1/javadocs-all/com/liferay/portal/service/impl/UserLocalServiceImpl.html

OR

UserLocalServiceUtil.AddUser

http://docs.liferay.com/portal/6.1/javadocs/com/liferay/portal/service/UserLocalServiceUtil.html


Liferay User Class contain some of few fields but i have more fields so i have to insert some field in User Class and Some Field in Own Class..

so how to insert such entries in both the User and Own class.

Thanks..
thumbnail
Jitendra Rajput, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Liferay Master Beiträge: 875 Beitrittsdatum: 07.01.11 Neueste Beiträge
For the extra fields you can create custom fields .
http://www.liferay.com/community/wiki/-/wiki/Main/Custom+fields
thumbnail
Hitoshi Ozawa, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Liferay Legend Beiträge: 7942 Beitrittsdatum: 24.03.10 Neueste Beiträge
For you own fields, just use expando

http://www.liferay.com/community/wiki/-/wiki/Main/Developing+with+Expando
piyush liferay, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Junior Member Beiträge: 40 Beitrittsdatum: 02.01.13 Neueste Beiträge
can we insert data without using expando ??
thumbnail
Hitoshi Ozawa, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Liferay Legend Beiträge: 7942 Beitrittsdatum: 24.03.10 Neueste Beiträge
can we insert data without using expando ??


Insert data where? You need a database table column to enter data. Which column do you want to enter you data?
piyush liferay, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Junior Member Beiträge: 40 Beitrittsdatum: 02.01.13 Neueste Beiträge
i have column for inserting a data but not using expando..

i am inserting a data normally ..

can we insert data in database ??
thumbnail
Hitoshi Ozawa, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Liferay Legend Beiträge: 7942 Beitrittsdatum: 24.03.10 Neueste Beiträge
have column for inserting a data but not using expando..


So, use your api to enter data into your column. I'm not sure what the problem is. If you created a column, creating a method to insert/change/delete data from that column is dependent on you code not liferay's.
piyush liferay, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Junior Member Beiträge: 40 Beitrittsdatum: 02.01.13 Neueste Beiträge
Hitoshi Ozawa:
have column for inserting a data but not using expando..


So, use your api to enter data into your column. I'm not sure what the problem is. If you created a column, creating a method to insert/change/delete data from that column is dependent on you code not liferay's.



Sir i write down my complete problem here ....

i have fileds like :-

name,email,password,mobileno,address etc.

but in User class contain only name,email and password field so i want to insert mobileno and address field in my class Register

so give me the solution for that problem... but i am not using a expando.
Siby Mathew, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Expert Beiträge: 268 Beitrittsdatum: 04.03.11 Neueste Beiträge
Hi Piyush,
The easiest way to achieve this is to store it in the expando.
But if you really want another table, use servicebuilder to generate a new table. All the CRUD operations will be autogenerated by Liferay.
After inserting the user, you can use these APIs to update your custom table.

Thanks,
Siby
piyush liferay, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Junior Member Beiträge: 40 Beitrittsdatum: 02.01.13 Neueste Beiträge
but for inserting a user i want to require a userId which is autoincrement so how can i do ...
thumbnail
Hitoshi Ozawa, geändert vor 11 Jahren.

RE: How to insert data in User table through own portlet ??

Liferay Legend Beiträge: 7942 Beitrittsdatum: 24.03.10 Neueste Beiträge
but for inserting a user i want to require a userId which is autoincrement so how can i do ...


The subject of this thread has nothing to do with the question you're asking now.
Close this thread and create a new thread with the question you've just asked - "How to modify liferay addUser method to autoincrement userId"
thumbnail
Bharamani P Tashildar, geändert vor 8 Jahren.

RE: How to insert data in User table through own portlet ??

Junior Member Beiträge: 48 Beitrittsdatum: 27.08.14 Neueste Beiträge
HI friends,,

The same problem i am facing...

for user_ there are two methods available that we can use

1.. UserLocalServiceUtil.addUser(user);
2..UserLocalServiceUtil.addUser(creatorUserId, companyId, autoPassword, password1, password2, autoScreenName, screenName,
emailAddress, facebookId, openId, locale, firstName, middleName, lastName, prefixId, suffixId, male,
birthdayMonth, birthdayDay, birthdayYear, getTitle(null), groupIds, organizationIds, roleIds,
userGroupIds, sendEmail, serviceContext);

Both i tried but no result plz help me to solve this..............

I have firstName ,lastName, password, emailId, role and autogenerated userId in my custom portlet......
I want to store it in User_table

Thanks & Regards
Bharamani Tashildar
thumbnail
Harish Kumar, geändert vor 8 Jahren.

RE: How to insert data in User table through own portlet ??

Expert Beiträge: 483 Beitrittsdatum: 31.07.10 Neueste Beiträge
Hi

Data should be saved in user_ table. Following is the code snippet you can try


user = UserLocalServiceUtil.addUser(themeDisplay.getUserId(),
					themeDisplay.getCompanyId(), false, password, password, false,
					screenName, email, 0L, StringPool.BLANK,
					themeDisplay.getLocale(), firstName, StringPool.BLANK, lastName, 0, 0,
					true, 1, 1, 1971, StringPool.BLANK,
					new long[] { themeDisplay.getScopeGroupId() },
					new long[] {}, new long[] {}, new long[] {}, false,
					serviceContext);
thumbnail
Bharamani P Tashildar, geändert vor 8 Jahren.

RE: How to insert data in User table through own portlet ??

Junior Member Beiträge: 48 Beitrittsdatum: 27.08.14 Neueste Beiträge
Thank s Harish Sir
Its working Fine