PI.SFSF Integration.DOC – Successfactors communication channel supports UDF based Lookups. [SFSF Lookup]
Document Objective: Objective of this document is to providing information about that “SFSF SOAP Channel supports for UDF based Lookups”.
This document provides an example on implementation of SFSF lookup UDF in PI Enterprise Service Repository.
Connectivity add on | 1.0 |
Patch | Lastest sca files :PICOASUF and PIADAPTERS.sca |
Entity Type: | SOAP |
Entity Name: | User |
Operation Type | Query |
LookUp Query | Select id from User where externalId in (<dynamicValues>) |
Brief about Technical Scenario:
For each person_id_external Lookup Query will bring back the id from SFSF User Entity.
E.g. Input <external-Id > 346 and Output < id > would be USR-22.
Step I. Include following packages.
Step II. add UDF with following paramters.
Step III. UDF Code.
AbstractTrace trace = container.getTrace();
String Var_Username =””;
for (int inlen = 0; inlen < Var_ExternalID.length; inlen++)
{
Var_Username = Var_Username+”,”+”‘”+Var_ExternalID[inlen]+”‘”;
}
Var_Username = Var_Username.substring(1,Var_Username.length());
try
{
Payload SOAPOutPayload = null;
String SysName =””;
String BuisnessSysName =””;
BuisnessSysName = “SUCCESS_FACTORS_DEV”;
Channel channel = LookupService.getChannel( BuisnessSysName,”Common_SF_SFAPI_Receiver”);
SystemAccessor accessor = LookupService.getSystemAccessor(channel);
String SOAPxml =”<?xml version=\”1.0\” encoding=\”UTF-8\”?><ns0:query
xmlns:ns0=\”urn:sfobject.sfapi.successfactors.com\”><ns0:queryString>Select id,externalId from User where externalId in ( “+Var_Username+”)</ns0:queryString></ns0:query>”;
InputStream inputStream =new ByteArrayInputStream(SOAPxml.getBytes());
XmlPayload payload = LookupService.getXmlPayload(inputStream);
SOAPOutPayload = accessor.call(payload);
InputStream inp = SOAPOutPayload.getContent();
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document document = builder.parse(inp);
document.getDocumentElement().normalize();
NodeList list = document.getElementsByTagName(“id”);
NodeList Elist = document.getElementsByTagName(“externalId”);
for (int temp =0; temp < list.getLength(); temp++)
{
Node node = list.item(temp);
Node Enode = Elist.item(temp);
if (node != null)
{
node = node.getFirstChild();
Enode = Enode.getFirstChild();
if (node != null)
{
result.addValue(node.getNodeValue()+”||”+Enode.getNodeValue());
}
}
}
}
catch (Exception e)
{
trace.addWarning(“Error” + e);
result.addValue(e);
}
Step IV: Communication Channel.
Step V : Testing and UDF Execution
Request Message to Successfactors
Response back from Successfactors
Please do write back your comments and Queries.
Great one , can the same be done using REST adapter as well ? A similar example would be great .
Yes . SF OData Adapter also supports Lookup 🙂
Cheerz
Great blog Prabhat and any idea on achieving dynamic SFSF channel configuration like one in SOAP?
Hi Prabhat,
Nice Blog!
I am looking to fetch Job function for a set of Job codes from Success Factors. I have posted a query https://answers.sap.com/questions/323345/look-up-in-success-factors-from-sap-po-graphical-m.html as well. I think the UDF way you suggested can help achieve this. Not sure if the Select will retrieve the Job functions in sequence from the Job Codes passed as SELECT JOB_FUNCTION from FO_JOBCODE where JOBCODE IN (multiple values of Job codes).
Hope I was able to explain the requirement.
thanks
Ambrish
Hi Prabhat,
Just to update you… It gave me an error when I tried to the query “SELECT JOB_FUNCTION from FO_JOBCODE where externalCode IN (multiple values of Job codes)”
externalCode is Jobcode in FO_JOBCODE.
The error message in SF says “Query failure! Error: IN for externalCode field is not supported”
any ideas on how to overcome this ?
thanks
Ambrish