Fórumok

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

piyush liferay, módosítva 11 év-val korábban

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

Junior Member Bejegyzések: 40 Csatlakozás dátuma: 2013.01.02. Legújabb bejegyzések
Hello ,

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

can you suggest me best solution for that...
Siby Mathew, módosítva 11 év-val korábban

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

Expert Bejegyzések: 268 Csatlakozás dátuma: 2011.03.04. Legújabb bejegyzések
Use methods from UserLocalServiceUtil.java like addUser, updateUser etc.

Thanks,
Siby
thumbnail
Hitoshi Ozawa, módosítva 11 év-val korábban

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

Liferay Legend Bejegyzések: 7942 Csatlakozás dátuma: 2010.03.24. Legújabb bejegyzések
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, módosítva 11 év-val korábban

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

Junior Member Bejegyzések: 40 Csatlakozás dátuma: 2013.01.02. Legújabb bejegyzések
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, módosítva 11 év-val korábban

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

Liferay Master Bejegyzések: 875 Csatlakozás dátuma: 2011.01.07. Legújabb bejegyzések
For the extra fields you can create custom fields .
http://www.liferay.com/community/wiki/-/wiki/Main/Custom+fields
thumbnail
Hitoshi Ozawa, módosítva 11 év-val korábban

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

Liferay Legend Bejegyzések: 7942 Csatlakozás dátuma: 2010.03.24. Legújabb bejegyzések
For you own fields, just use expando

http://www.liferay.com/community/wiki/-/wiki/Main/Developing+with+Expando
piyush liferay, módosítva 11 év-val korábban

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

Junior Member Bejegyzések: 40 Csatlakozás dátuma: 2013.01.02. Legújabb bejegyzések
can we insert data without using expando ??
thumbnail
Hitoshi Ozawa, módosítva 11 év-val korábban

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

Liferay Legend Bejegyzések: 7942 Csatlakozás dátuma: 2010.03.24. Legújabb bejegyzések
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, módosítva 11 év-val korábban

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

Junior Member Bejegyzések: 40 Csatlakozás dátuma: 2013.01.02. Legújabb bejegyzések
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, módosítva 11 év-val korábban

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

Liferay Legend Bejegyzések: 7942 Csatlakozás dátuma: 2010.03.24. Legújabb bejegyzések
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, módosítva 11 év-val korábban

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

Junior Member Bejegyzések: 40 Csatlakozás dátuma: 2013.01.02. Legújabb bejegyzések
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, módosítva 11 év-val korábban

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

Expert Bejegyzések: 268 Csatlakozás dátuma: 2011.03.04. Legújabb bejegyzések
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, módosítva 11 év-val korábban

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

Junior Member Bejegyzések: 40 Csatlakozás dátuma: 2013.01.02. Legújabb bejegyzések
but for inserting a user i want to require a userId which is autoincrement so how can i do ...
thumbnail
Hitoshi Ozawa, módosítva 11 év-val korábban

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

Liferay Legend Bejegyzések: 7942 Csatlakozás dátuma: 2010.03.24. Legújabb bejegyzések
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, módosítva 8 év-val korábban

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

Junior Member Bejegyzések: 48 Csatlakozás dátuma: 2014.08.27. Legújabb bejegyzések
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, módosítva 8 év-val korábban

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

Expert Bejegyzések: 483 Csatlakozás dátuma: 2010.07.31. Legújabb bejegyzések
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, módosítva 8 év-val korábban

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

Junior Member Bejegyzések: 48 Csatlakozás dátuma: 2014.08.27. Legújabb bejegyzések
Thank s Harish Sir
Its working Fine