Examples of OCExchangePlanSelection


Examples of com.ipc.oce.objects.OCExchangePlanSelection

    OCMetadataExchangePlanCollection planCollection = cfgMeta.getExchangePlans();
    for (OCExchangePlanMetadataObject mo : planCollection) {
      System.out.println(mo.toString());
    }
    OCExchangePlanManager manager = app.getExchangePlanManager("ОбменРозницаБухгалтерия");
    OCExchangePlanSelection selection = manager.select();
    selection.next();
    OCExchangePlanRef ref = selection.getRef();
    OCExchangePlanMetadataObject refMo = ref.getMetadata();
    System.out.println("* " + refMo.getFullName());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.