Topic by Sonali Rajwade
I'm trying to create a custom field called "sdc_store_fraud" of menu type and setting a value in it.
NamedID fraudNamedID = new NamedID();
ID fraudID = new ID();
fraudID.setId(Long.parseLong(values.get("FraudType").toString()));
fraudNamedID.setName("sdc_store_fraud");
fraudNamedID.setID(fraudID);
But I don't see this element in the request xml and also it not working.
Can you suggest any other way? Am I missing anything?
Thanks in Advance.
Sonali