Showing posts with label Useful Tips. Show all posts
Showing posts with label Useful Tips. Show all posts

Purging Service in BCC

PurgingService is service which is used to purge older versions of assets in Publishing Schema. This component is available in Publishing.base module. Question: I am using this service for first time. Are there any prerequisites? Answer: Yes, following are the prerequisites that needs to followed. 1. Delete all "Author" state projects which are not in use for week or month. 2. Close all the projects which are waiting for acceptance. 3. Halt...

How to delete project from Front end of BCC

Deleting project from Front End of BCC Note: This shall delete project along with project's associated process, assets, history. To delete projects from front end of BCC, perform following steps. 1. Include the following jsp in custom BCC module's war. File Name: delete-process.jsp <%@ taglib uri="/dspTaglib" prefix="dsp" %> <dsp:page><%@page import = "atg.epub.project.*" %> <%@page import = "atg.dtm.*" %>...

Resetting admin password for dyn/admin

Resetting "admin" password for dyn/admin Password after resetting: "admin123" update das_account set password='c1f59dd0bb1078b65a6c7f19f312e83ef6823716da2ba864507f1bb2eb393799' where account_name='admin'; commit; OR Delete the admin row and reinsert. delete from  das_account where account_name='admin'; Insert into das_account (ACCOUNT_NAME,TYPE,FIRST_NAME,LAST_NAME,PASSWORD,DESCRIPTION, LASTPWDUPDATE) values ('admin',1,'Andy','Administrator', 'c1f59dd0bb1078b65a6c7f19f312e83ef6823716da2ba864507f1bb2eb393799',null,to_date( '07-NOV-12','DD-MON-RR')); commit;...

ATG 10.1 BCC Localization

ATG 10.1 BCC Localization ATG 10.1 BCC comes up with following 9 supporting languages. Spanish (International Sort) French (France) German (Germany) Italian (Italy) Chinese (Simplified) Dutch (Netherlands) Portuguese (Brazil) Swedish Japanese To view BCC in different languages, Create a user and assign locale to user. 1. Login to BCC, and open "Internal Users" under "Personalization". 2. Click on "+" to add new user. 3....