Skip to main content

Trading History of LOTCHEM in Pakistan Stock Exchange Market November 2020

 Historical Data, Bid Trends and Statistics of Lotte Chemical Pakistan Limited in PSX - Pakistan Stock Exchange

Company Name: Lotte Chemical Pakistan Limited

Listed in Sector: CHEMICAL

Trading History of LOTCHEM in Pakistan Stock Exchange Market October 2020




About:

Lotte Chemical Pakistan Ltd is a world-class supplier of purified terephthalic acid, an essential raw material used in the polyester industry. Lotte, the South Korean conglomerate, acquired the majority shareholdings in Pakistan PTA Limited (PPTA) in September 2009. Subsequently, the name of the Company was changed to Lotte Chemical Pakistan Ltd.

Lotte Chemical Pakistan Ltd is the single largest foreign direct investment to date (US$ 490 million) in Pakistan’s petrochemical industry. The plant at Port Qasim, Karachi was built using ICI’s state-of-the-art technology when it was commissioned in 1998. It produces Purified Terephthalic Acid (PTA), an essential raw material for Pakistan’s textile and PET packaging industries and forms the backbone of the polyester chain, including Polyester Staple Fibre, Filament Yarn and PET (bottle grade) resin.

In addition to its own manufacturing facilities, the Company has helped create a large infrastructure network at the Port Qasim vicinity, which includes a chemical jetty, raw water pipeline and manufacture of industrial gases through third party contracts. It has therefore been a trendsetter in industrial investment in Pakistan.

The PTA plant was constructed in 1996/97 and started production in June 1998. Within a short time, PPTA’s dedicated and highly motivated team of professional engineers proved that it could run this complex plant to world standards of safety, environmental care, product quality and process efficiency. Since 2002 the plant has operated above its nameplate capacity of 400,000 tons per annum and following minor de-bottlenecking and process improvements, is capable of ramping that up to 500,000 tons per annum. The plant remains one of the most advanced facilities in its class in the region.

The company maintains its competitive edge by virtue of being a local manufacturer and major supplier for the domestic Polyester and PET industries with short delivery times, consistent quality and excellent customer service.

https://www.lottechem.pk/

Disclaimer: Investors are advised in their own interest to carefully do research and study before making any investment decision, above data is taken from one of PSX Broker so human error and data issue might be possible.

Comments

Popular posts from this blog

How to set Profile Attribute in Siebel Workflow

For setting the Profile Attribute in Siebel Workflow, follow below steps: Add Business Service box in workflow. Open Business Service properties. Set  SessionAccessService in Business Service Name. Set  SetProfileAttr in Method Name. Then click on Business Service and set Input Arguments as below: Against Name argument you will add your profile attribute name and against Value argument you will add value for the new profile attribute, it could be from Process Property or Literal.

How to call Popup Applet through Server Script in Siebel

Background: Based on the requirements you need to show data or reports on a popup applet. You can invoke popup applet using workflow (below business service will be used in business service step), applet server script or browser script and using vanilla method and setting field user properties. Procedure: Below is the script for calling popup applet through server script: if (MethodName == "MethodName") { var oServiceAF = TheApplication().GetService("SLM Save List Service"); var inputPropAF = TheApplication().NewPropertySet(); var outputPropAF = TheApplication().NewPropertySet(); inputPropAF.SetProperty("Applet Name","ABC Popup Applet"); inputPropAF.SetProperty("Applet Mode","6"); inputPropAF.SetProperty("Applet Height", "700"); inputPropAF.SetProperty("Applet Width", "700"); oServiceAF.InvokeMethod("LoadPopupApplet", inputPropAF, outputPropAF) return (CancelOperati...

How to create and publish Inbound Web Service in Siebel based on Workflow

Inbound Web Services: The Inbound Web Service allows an external system to call a Siebel published Web Service. You can publish a business service or a business process as a Web Service and generate a Web Service Definition Language (WSDL) file that an external system can import. The Inbound Web Services can only be published from Siebel C using SOAP-RPC binding. Source: Oracle Docs What Is The Difference Between Web Services and APIs? An API is an interface that allows you to build on the data and functionality of another application, while a web service is a network-based resource that fulfills a specific task. Yes, there’s overlap between the two: all web services are APIs, but not all APIs are web services. Both web services and APIs are — at their core — very useful and very much used today. However, it’s the web services associated with SOAP and/or Service Oriented Architecture which are falling out of favor. Source: NordicApis Process: Prepare the workflow which will serve as Si...