cancel
Showing results for 
Search instead for 
Did you mean: 

Guided Procedures Issue with Old Requests

Former Member
0 Kudos

Hi Experts,

We have made changes to the existing GP Input/Output parameter structure and the new requests are working fine.

When we open the old requests(Completed) which does not have new parameter structure is not opening since the structure is changed.

It throws GP Invocation Exception and structure with name and namespace null.

Any of you experienced the same issue? How can we fix this?

Appreciate your quick help.

Thanks in advance.

Regards,

Senthil

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi All,

We have got the answer through the SAP messgae.

Solution:

Always perform the Null check for the structure before get/set any value in the GP interface.

For example:

if(businessPartnerOut.getStructureInfo().getStructure("StructureName") != null)

{

//do something here

}

if(businessPartnerIn.getStructureInfo().getAttribute("AttributeName") != null)

{

//do something

}

Thanks.

Regards,

Senthil

Answers (0)