cancel
Showing results for 
Search instead for 
Did you mean: 

Data type similar to Select-options in ABSL

former_member190818
Active Contributor
0 Kudos

Hello,

I want to fill SelectionByBusinessPartnerRoleCode element in FindByElements in QueryAccounts WSDL. When I'm trying to fill, it is asking for collection line. I'm not able to find the selection range data type for it.

We have to fill like shown below in SOAP UI. Similarly, I need to have selection range data type in ABSL to fill the content and Add to the element.


<SelectionByBusinessPartnerRoleCode>

   <InclusionExclusionCode>I</InclusionExclusionCode>

   <IntervalBoundaryTypeCode>1</IntervalBoundaryTypeCode>

   <LowerBoundaryRoleCode>Z00001</LowerBoundaryRoleCode>

</SelectionByBusinessPartnerRoleCode>

Could you please let me know if anyone knows which data type needs to be used?

Thanks.

Regards,

MB

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

You can use the repository explorer to find this information out. Open it, click on data types, type in the data type name and then in the appendix are the code values.

Regards,

Will

former_member190818
Active Contributor
0 Kudos

Hello Will,

I've seen in Repository Explorer. I do not want the code values. I need to range data type where I can fill like below.

var businessrolecode:  ?????

businessrolecode.InclusionExclusionCode = "I";

businessrolecode.IntervalBoundaryTypeCode = "1";

businessrolecode.LowerBoundaryRoleCode = "Z00002";

businessrolecode.Add();


Something similar to the above code. For that I need the data type which I've marked in "?????".


Regards,

MB

sunil_parvatikar
Employee
Employee
0 Kudos

There is a datatype called SelectionByCode and NOSC_SelectionByCode.

Maybe you can check if these datatypes help.

Best regards,

Sunil

former_member190818
Active Contributor
0 Kudos

Hello Sunil,

I tried all SelectionByCode data types, but still it is not taking it. But it has all the necessary elements in it. Not sure why this is behaving odd.

Thanks.

Regards,

MB

Former Member
0 Kudos

Hi Mohan,

Check below code and follow like this.

Regards,

Shiva G

former_member190818
Active Contributor
0 Kudos

Thank you Siva !!!

Answers (1)

Answers (1)

former_member190818
Active Contributor
0 Kudos

Hello All,

Any idea on this?

Regards,

MB