PSInq
API Reference
>
PSInq
| SoapAction | n/a |
| Input Name | PSInq |
| Output Name | PSInqResponse |
| Input Namespace | n/a |
| Group Name | Xperience |
| Container | XP_MsgBus.xsd |
// NOTE: Ignore Index not found
// See PSAdd for special notes on the ConsumerEnv element of the PSIdx.
List errors = new List(){new ErrOvrRd_CType(){ErrCode = "2108"}};
PSInqRq_MType request = new PSInqRq_MType()
{
ErrOvrRdInfoArray = errors.ToArray(),
PSSecKey = this.securityKey,
PSIdx = new PSIdx_CType()
{
PSApp = Application.ApplicationId,
PSFinInst = Constants.FinInst,
PSKey = Environment.UserName + "2",
PSProd = Application.ApplicationId,
PSUsr = Environment.UserName,
PSConsumerEnv = “2013-TEST”
},
var errorsToIgnore = new Array();
var errorOvr = new jackHenry.xperience.businessObjects.ErrOvrRd_CType();
errorOvr.ErrCode = "2108";
errorsToIgnore.push(errorOvr);
var request = new jackHenry.xperience.businessObjects.PSInq();
request.ErrOvrRdInfoArray = new jackHenry.xperience.businessObjects.ErrOvrRdInfoArrayType();
request.ErrOvrRdInfoArray.ErrOvrRd = errorsToIgnore,
request.PSSecKey = securityKey;
request.PSIdx = new jackHenry.xperience.businessObjects.PSIdx_CType();
request.PSIdx.PSApp = lastAddedEntry.PSApp;
request.PSIdx.PSConsumerEnv = lastAddedEntry.PSConsumerEnv;
request.PSIdx.PSFinInst = lastAddedEntry.PSFinInst;
request.PSIdx.PSKey = lastAddedEntry.PSKey;
request.PSIdx.PSProd = lastAddedEntry.PSProd;
request.PSIdx.PSUsr = lastAddedEntry.PSUsr;
sampleXPWebProductAngular.Helper.FillHeader(request);
var responseCallback = jackHenry.xperience.messageBus.send(request).registerResponseHandler(onInquireEntryCallback);
Did this page help you?
Why was this page helpful?
Why wasn't this page helpful?
Thank you for your feedback!
Last updated Mon Dec 9 2024