Showing posts with label Fetch Property value from JSP code in IBM Sterling WMS. Show all posts
Showing posts with label Fetch Property value from JSP code in IBM Sterling WMS. Show all posts

Thursday, March 26, 2020

Fetch Sterling Property value from JSP code in IBM Sterling WMS

Approach #1

<%@ page import="com.yantra.yfc.util.YFCConfigurator"%>
String sShowTaskInfoDtls = YFCConfigurator.getInstance().getProperty("yfs.displayTaskInfoDetails","N");

Approach #2

<%@ page import="com.yantra.yfs.core.YFSSystem" %>
String svalue = YFSSystem.getProperty("yfs.print.lookuplimit");

Popular Posts