Foros de discusión

How to Create Organization ??

piyush liferay, modificado hace 11 años.

How to Create Organization ??

Junior Member Mensajes: 40 Fecha de incorporación: 2/01/13 Mensajes recientes
Hello,

can you suggest me which method is used for creating a organization in liferay....
thumbnail
Subhash Pavuskar, modificado hace 11 años.

RE: How to Create Organization ??

Regular Member Mensajes: 234 Fecha de incorporación: 13/03/12 Mensajes recientes
Hi Piyush ,

You can create organization using OrganizationLocalServiceUtil !!

public Organization addOrganization(
         long userId, long parentOrganizationId, String name, String type,
         boolean recursable, long regionId, long countryId, int statusId,
         String comments, boolean site, ServiceContext serviceContext)
         throws PortalException, SystemException;
thumbnail
Gnaniyar Zubair, modificado hace 11 años.

RE: How to Create Organization ??

Liferay Master Mensajes: 722 Fecha de incorporación: 19/12/07 Mensajes recientes
Try this :

OrganizationLocalServiceUtil.addOrganization(userId, 
				OrganizationConstants.DEFAULT_PARENT_ORGANIZATION_ID, "My-Organization-Name", OrganizationConstants.TYPE_REGULAR_ORGANIZATION, 
                                 true, 0, 0, ListTypeConstants.ORGANIZATION_STATUS_DEFAULT,"Organization description", true, new ServiceContext());
thumbnail
Hitoshi Ozawa, modificado hace 11 años.

RE: How to Create Organization ??

Liferay Legend Mensajes: 7942 Fecha de incorporación: 24/03/10 Mensajes recientes
Check the addOrganization in following class.

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