Wednesday, January 10, 2018

Oracle Enterprise Users Lists

Hi,

Would you be interested in acquiring any Oracle Enterprise Users Lists for marketing or email campaign 2018?

We can segment Industry List & Technology Users List by C-level, VP-level, Director-Level and Manager Level as per your requirements.

We are specialized in providing database as per client requirement (could be anything):-

•         Job Titles…?

•         Technology Users/ Targeted Industry…?

•         Geography….?

•         Special Instructions (If any)…?

Once you confirm I will send you the Counts, Cost and more information in my next email.

Awaiting your response!

Regards,
Sophia Taylor
Data Specialist 

                                                    To opt-out reply in subject line.

 

powered by GSM. Free mail merge and email marketing software for Gmail.

Wednesday, April 5, 2017

Oracle Enterprise Manager Users List

Hi,

We would like to learn your interest in acquiring our recently updated Oracle Enterprise Manager Users List which helps you to improve your business campaign.

We have other Innovation information also like: New Relic APM, Microsoft System Center, Retrace, Splunk Enterprise, Amazon CloudWatch, Zabbix, Datadog, Foglight, Dynatrace Application Monitoring, Splunk Light, TrueSight Pulse, Logentries, AppDynamics, Sumo Logic and many more.

 

If you are searching for other innovation contact us we provide other technology user's lists and decision makers list as well that meet your criteria and interest.


Data Fields: Name, Title, Email, Company Name, and Company Details like, Physical Address, Web Address, Revenue Size, Employee Size and industry.


Please let me know your thoughts we will provide you the more information according to your criteria and interest. If you are not the right person to discuss this mail then feel freely to forward this mail to the right person in your organization.

Thanks,
Sophia Keller
Marketing Analytics.

 

 

 

 

 

 

Monday, May 19, 2014

Akshata VasanthaMadhava's invitation is awaiting your response

 
Akshata VasanthaMadhava would like to connect on LinkedIn. How would you like to respond?
Akshata VasanthaMadhava
Akshata VasanthaMadhava
Manager at Capgemini
Confirm you know Akshata
You are receiving Reminder emails for pending invitations. Unsubscribe
© 2014, LinkedIn Corporation. 2029 Stierlin Ct. Mountain View, CA 94043, USA

Monday, May 12, 2014

Akshata VasanthaMadhava's invitation is awaiting your response

 
Akshata VasanthaMadhava would like to connect on LinkedIn. How would you like to respond?
Akshata VasanthaMadhava
Akshata VasanthaMadhava
Manager at Capgemini
Confirm you know Akshata
You are receiving Reminder emails for pending invitations. Unsubscribe
© 2014, LinkedIn Corporation. 2029 Stierlin Ct. Mountain View, CA 94043, USA

Monday, May 5, 2014

Invitation to connect on LinkedIn

 
LinkedIn
 
 
 
Akshata VasanthaMadhava
 
From Akshata VasanthaMadhava
 
Senior Consultant at Capgemini
Mumbai Area, India
 
 
 
 
 
 
 

I'd like to add you to my professional network on LinkedIn.

- Akshata

 
 
 
 
 
 
 
You are receiving Invitation to Connect emails. Unsubscribe
© 2014, LinkedIn Corporation. 2029 Stierlin Ct. Mountain View, CA 94043, USA
 

Saturday, November 7, 2009

Peoplesoft Tips

Back End Role Insert
This is a script to show you how to insert a role from the back end.
INSERT INTO
PSROLEUSER (ROLEUSER, ROLENAME, DYNAMIC_SW)
VALUES ('AKSHATA','PeopleTools','N')

Find Unused Permission Lists
This query should find unused permission lists that could be deleted.
SELECT * FROM PSCLASSDEFN A
WHERE NOT EXISTS ( SELECT 'X' FROM PSUSERCLASSVW B WHERE A.CLASSID = B.CLASSID )
AND NOT EXISTS (SELECT 'X' FROM PSOPRDEFN B WHERE A.CLASSID = B.OPRCLASS)
AND NOT EXISTS (SELECT 'X' FROM PSOPRDEFN B WHERE A.CLASSID = B.PRCSPRFLCLS)
AND NOT EXISTS (SELECT 'X' FROM PSOPRDEFN B WHERE A.CLASSID = B.DEFAULTNAVHP)
AND NOT EXISTS (SELECT 'X' FROM PSOPRDEFN B WHERE A.CLASSID = B.ROWSECCLASS)
AND A.LASTUPDOPRID <> 'PPLSOFT'
ORDER BY CLASSID ;

Find Portal CREF in Navigation
Here is a quick way to find where a component shows up in the portal
navigation for a given component. In this example, we are going to
find the navigation for the JOB_DATA component.
Step 1.) Find the Portal Object Name the component was registered
under. This object name will be returned by the PORTAL_OBJNAME column
from the following sql. Notice that the JOB_DATA component name is
hard coded in the SQL.
SELECT PORTAL_OBJNAME , PORTAL_URI_SEG2
FROM
PSPRSMDEFN
WHERE PORTAL_NAME = 'EMPLOYEE'
AND PORTAL_URI_SEG2 like'JOB_DATA' -- THIS IS THE COMPONENT NAME

Step 2.) Use the Online Portal Page to look this portal object name.
Navigate to: PeopleTools | Portal |View Menu Item Detail
Then enter in the PORTAL_OBJNAME found above in the search record and
the page will show you where the navigation is.

Force a CREF Open in a New Window
Here is a quick tip to make a portal Content Reference (CREF) open in
a new window.
This might be used for linking to an external or intranet site that is
not part of Peopletools.
You just need to add a Content Reference Attribute of "NAVNEWWIN" = true
This is a script to show you how to insert a role from the back end.
INSERT INTO
PSROLEUSER (ROLEUSER, ROLENAME, DYNAMIC_SW)
VALUES ('AKSHATA','PeopleTools','N')

Find Unused Permission Lists
This query should find unused permission lists that could be deleted.
SELECT * FROM PSCLASSDEFN A
WHERE NOT EXISTS ( SELECT 'X' FROM PSUSERCLASSVW B WHERE A.CLASSID = B.CLASSID )
AND NOT EXISTS (SELECT 'X' FROM PSOPRDEFN B WHERE A.CLASSID = B.OPRCLASS)
AND NOT EXISTS (SELECT 'X' FROM PSOPRDEFN B WHERE A.CLASSID = B.PRCSPRFLCLS)
AND NOT EXISTS (SELECT 'X' FROM PSOPRDEFN B WHERE A.CLASSID = B.DEFAULTNAVHP)
AND NOT EXISTS (SELECT 'X' FROM PSOPRDEFN B WHERE A.CLASSID = B.ROWSECCLASS)
AND A.LASTUPDOPRID <> 'PPLSOFT'
ORDER BY CLASSID ;