Hi, I'm trying to use Parm methods to store a variable in a method in class A, and I want to get that value in a method in class B, however, when I try to get the value, it comes empty, I'm not really familiar with Parm methods, could you help me out? this is what I have right now:
public InventTransferId parmInventTransferId(InventTransferId _inventTransferId = inventTransferId)
{
inventTransferId = _inventTransferId;
return inventTransferId;
}
I use parmInventTransferId("value") in class A, and I try to get the value back in class B by using inventParmInventTransferId() but I get nothing, I set the parm method in the class where I'm trying to receive the value, and also in a separated class, but the result is the same, could you help me out please? thanks!!
*This post is locked for comments