Sterling OMS Random Useful Query and Tips
Wish you happy new year every one. After long break we are coming with post. Here is few useful tips. Please share your feedback.
Sterling OMS Random Useful Query and Tips
How to find associated transactions to given agent server ?
select distinct yt.TRANNAME,yt.PROCESS_TYPE_KEY from YFS_AGENT_CRITERIA yac, yfs_server ys, yfs_transaction yt
where
ys.server_key=yac.server_key and
ys.SERVER_NAME=’SearchAgent’ and
yt.TRANSACTION_KEY = yac.TRANSACTION_KEY and
ys.server_type=’01’; — agent server
How to find associated service names to given integration server ?
select yf.flow_name, yf.FLOW_GROUP_NAME from yfs_flow yf, yfs_sub_flow ysf, yfs_server ys
where
ys.server_key=ysf.server_key and
yf.flow_key = ysf.flow_key and
ys.SERVER_NAME=’CreateOrderServer’ and –server name
ys.server_type=’00’; –integration server
How to find all the integration servers ?
select server_name, transport_type_key from yfs_server where server_type=’00’;
How to find all the agent servers ?
select server_name, transport_type_key from yfs_server where server_type=’01’;
How to find all the active running servers ?
select * from YFS_HEARTBEAT where status=’00’;
- 00 — Running
- 01 — Stopped
- 02 –Terminated
Note : To get correct result make sure heartbeat monitor is running
How to find the services calls createOrder standard API ?
select yf.flow_name, yf.FLOW_GROUP_NAME from yfs_flow yf, yfs_sub_flow ysf where ysf.config_xml like ‘%createOrder%’
and ysf.FLOW_KEY = yf.FLOW_KEY;
Note: You can use the same query to find which are all the services uses your email address.
What is the use of YFS_GRAPH_UI table ?
This table stores X, Y position information of service (SFD) components. When service opened, places the components same place as saved.
How to give more memory to Java Applet and make configuration load faster ?
How to check applet loading status and error details ?
- Enable Tracing
- Enable logging
- Show Console
How to find which Java version used to compile jar file ?
Open the Jar file Jar decompiler and look for Manifest file, this file holds Java version used for creating jar file
If manifest file not present you can move the jar file to Linux environment and type command file <File name>

From Google
If you have any question or suggestion please email to : support@activekite.com
Nice and useful
Thanks pls keep sharing your feedback
happy new year , after very long break, but useful.
Thanks
Happy new year Sir ji, Very use ful info. Thank you so much !!!
You are welcome. Please keep sharing your feedback to improve as better. Thanks once again
Hey ActiveKite , Whats your email id
Ankush
Here is our email address support@activekite.com
Thank u. Good information