Hello everyone,
I am new to COC and need a suggestion. I have static method with some variables and I have implemented COC on same method.
My question here is, is there any way to access the variables from original method ?
protected static void packItem()
{
WHSSerialId serialId;
WHSCreateSerialNumber whsCreateSerialNumber;
//Logic
}
now have created a new class/method.
[ExtensionOf(tableStr(TableName))]
public final class WHSContainerTableDbt_Extension
{
protected static void packItem()
{
next packItem()
//Logic
//I need variable whsCreateSerialNumber in this method
}
Please help