Contact Merging - Getting 'resourceName' of deleted Contact from Merge - google-people-api

When merging 2 Contacts together, is there a way to find the 'resourceName' of the Contact that was deleted (Merged into the resulting Contact)?
Contact A - people/12345
Contact B - people/23456
Merging 'B' into 'A'. Resulting Contact is 'A' (people/12345). Is there a way to determine what Contact got merged into Contact A, and a result, deleted? I'd love to find that Contact B (people/23456) was the Contact that merged into Contact A (people/12345) so I can make link and association adjustments on our own end of things.
It doesn't appear that "previousResourceNames" does what I first thought it did (https://developers.google.com/people/api/rest/v1/people#personmetadata)
Any insight on a possible solution would be greatly appreciated, thank you so much!

Related

Google Org Charts Display Functionality

I'm using Google Org charts and I need to have a child element have 3 parents above it - is this possible? For example a situation where an employee has three bosses.
No, the parent column only accepts one id. Which is lucky for the employee with 3 bosses because maybe it will help them sort out who the employee actually reports to.
As a conceptual work-around you could establish the three bosses as a single entity like "The Triumverate", "The Tribunal", or whatever and then put the employee under that entity. Or have a node with 3 comma-seperated names like "Mike, John, Susan", and then use "Mike, John, Susan" as the parent node for the poor confused employee.
This is one case where, while I know these things happen, when you're formalizing this you should really be asking, "Why does this employee have 3 bosses?" It's really very confusing for both the employees and the bosses 99% of the time. It is often best to pick one boss for them to report to and then have all the bosses communicate sideways to each other. The only exception that I can think of is a shared receptionist somewhere like a Doctor's Office with multiple doctors. And even then it might help for the receptionist to have one formal boss who has the right to discipline, fire, give them a raise, and two other superiors that just use their services. Helps a lot if the employee encounters conflicting orders.
But of course, that's not what you asked for. But it is probably why they didn't make nodes support multiple parent nodes.

How do I ascertain the CONTACT linked to an S_EVT_ACT record?

Apologies if this is very basic but I'm fairly new to Siebel.
I have four activity record IDs and I need to find out to which contact they are attached in the database.
I'm assuming a join somewhere, but I don't know the Schema well enough and I can't see an obvious contact ID in the S_EVT_ACT table.
I figured it out.
The S_CONTACT row_id exists in the TARGET_PER_ID column of the S_EVT_ACT table.
If you can't get it from that you can use the S_ACT_CONTACT intersection table.

FQL Searching for events for a specific venue

I'm a newbie to facebook API development. I've been searching for any posts similar to my one, but no success so far.
I would like to perform an FQL query, rquesting plublic events which are going to take place whitin a specific venue (ex. specific city "London") whitin the next days.
I know that venue is a column which is not aceptable to place under the "WHERE" caluse acording to FQL guide (only name and eid). The question is that, I don't know the names or event ids. That's what I'm trying to figure out!
Does anyone has come across a similar problem?
Any sugestions are more than welcome.
Thanks a milion!
I know its not a FQL query but I make a request to
https://graph.facebook.com/search?q=" + city + "," + sstate + "&type=event&limit="

variable date option in opencart

1st I want to remove text field for date so the calendar will replace it.
2nd I want to make the status order.. I want to sell the service, so I need to make booking order by calendar. If the date is green client can make an order. If red the client can't book an order. If yellow there certain items can be ordered.
I hope someone can help..
Thanks.
You have to try something at least and ask only for advice then.
Anyway, few suggestions:
it cannot be done using that option field of type date, at least not with the default datepicker.
You will need to create Your own datepicker component that will search for free/partialy/fully ordered days in the database and color the table cells accordingly.
It is not very wise to hide the input - by this visible user could anytime check what date did he pick - if it is not visible he would need to always open the datepicker to check for it...
Disallowing to order some service based on some reservations is highly decreasing Your conversion rate - thus decreasing Your income. I would definitely go the way let the user buy/order anything at anytime while having separate reservation system. If user buys a service at thank You page I would recommend him to book a concrete date for the service to be drawn. Here You do not need to fight with product options which are meant totally for something different that You are trying to.
Keep that in mind (mainly the 4th point) and re-think Your problem.

Summing values in Sencha List via Grouping and displaying in Group Header list item

Could somebody give me a little info on how I might go about adding a summarized value to the header of a grouped list. For example. I have the model
{firstname, lastname}
and say 10 records.
I want to group by lastname, but while I group I'd like to keep track of the number of records in the current grouping and display that in the "Header" or "Group Header". Like this..
Thompson -- 3 Results
David
Susan
Audrey
Smith -- 1 Result
Cassy
I have to do this client-side and can not group or summarize on the server.
Thanks in advance.
I think the only way to do this is to dynamically grouping the list. I have googled for some answers and figured out something similar to it from sencha forum. Its not the solution to your problem, but you can resolve it from the idea discussed there. Here is the link
http://www.sencha.com/forum/showthread.php?104400-Dynamically-adding-removing-grouped-amp-indexBar-to-from-a-List
Hope it will help...