use of pl.x3E.adInterface.DocAction in project adempiere by adempiere.
the class ADServiceImpl method getDocAction.
public DocActionDocument getDocAction(int WindowNo, int TabNo, int RowNo, String ColName) throws XFireFault {
authenticate(webServiceName, "getDocAction");
DocActionDocument ret = DocActionDocument.Factory.newInstance();
DocAction da = ret.addNewDocAction();
WWindowStatus ws = WWindowStatus.get(WindowStatusMap, WindowNo, true, TabNo, true, RowNo);
if (ws != null) {
LookupValues lvs = da.addNewAction();
Process.renderDocActionOptions(lvs, ws.curTab);
}
return ret;
}
Aggregations