Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

Join our "Ask Me About" community webinar on May 20th at 9 AM CET and 5 PM CET to explore cybersecurity and monitoring for Data Center and edge IT. Learn about market trends, cutting-edge technologies, and best practices from industry experts.
Register and secure your Critical IT infrastructure

Executing Logic Block From another Logic Block

EcoStruxure Geo SCADA Expert Forum

Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • Remote Operations
  • EcoStruxure Geo SCADA Expert Forum
  • Executing Logic Block From another Logic Block
Options
  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
sbeadle
Kirk sbeadle Kirk
307
AndrewScott
Admiral AndrewScott
96
BevanWeiss
Spock BevanWeiss
90
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
36
View All
Related Products
product field
Schneider Electric
EcoStruxure™ Geo SCADA Expert

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to EcoStruxure Geo SCADA Expert Forum
Solved
MichaelAur
Ensign MichaelAur
Ensign

Posted: ‎2024-03-26 01:46 AM

0 Likes
3
724
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-03-26 01:46 AM

Executing Logic Block From another Logic Block

I apologise is this is a simple question. But I cant seem to find a programming manual/database for the functions and and keywords available in logic modules specifically structured text.

 

For my we have some logic blocks that we only want executed on specific (and slightly complex) conditions.

 

Is it possible to call this logic block from another logic block eg something like below. I know I could nest this into the existing code. But this would require me to manual edit hundreds of already cluttered function blocks. Where as with this I could do some simple copy pasting and set the execution interval to 0s. 

 

 

 

PROGRAM NewStructuredTextProgram
	VAR
		wOldValue: REAL;
	END_VAR
	VAR
		wCurValue AT %I(...Mapping.VARS.Control.xxx) : WORD;
		xLostComms AT %I(.LostComms): BOOL;
	END_VAR
	METHOD
		Exec AT %M(.MySecondayLogic.Execute): BOOL;
	END_METHOD
(*If value changed and not lost comms call other logic module*)
	IF(Not(xLostComms) AND  (wOldValue <> wCurValue )THEN
                %M(.MySecondayLogic.Execute)
                wOldValue:= wCurValue;
        END_IF
	
END_PROGRAM

 

 

 

 

For reference Geo SCADA Expert 2021 (Build 84.8650)

Labels
  • Labels:
  • Logic
  • ViewX
  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
geoffpatton
Captain geoffpatton
Captain

Posted: ‎2024-03-26 07:08 AM

1 Like
1
717
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-03-26 07:08 AM

You can declare a METHOD that references a logic program.Execute and then execute it.

You can also pass parameters if you declare them in the logic program you are executing.

 

This one just checks comm status to decide if it should execute the next logic.

PROGRAM NewStructuredTextProgram

METHOD
Exec_Next_Logic RL AT %M(.My Next ST.Execute);

END_METHOD

VAR
DNP_OSState AT %I(....Comms.Outstation.DNP Outstation.State) : REAL;
END_VAR

IF DNP_OSState <> 0 AND DNP_OSState <> 1 AND DNP_OSState <> 2 AND DNP_OSState <> 3 AND DNP_OSState <> 4 THEN
Exec_Next_Logic();
END_IF;

END_PROGRAM

 

This one passes a path to the next logic which has

VAR_INPUT
ParentFolderInput : STRING;
END_VAR

defined in it.

 

PROGRAM NewStructuredTextProgram

METHOD
MyExec AT %M(.My Logic ST.Execute):STRING;
END_METHOD
VAR
ParentFolder AT %M(..FullName) : STRING;
END_VAR

VAR_INPUT
ParentFolderInput : STRING;
END_VAR

ParentFolderInput := CONCAT(ParentFolder, '.DI.%');

MyExec(ParentFolderInput);

END_PROGRAM

See Answer In Context

Reply

Link copied. Please paste this link to share this article on your social media post.

Replies 3
geoffpatton
Captain geoffpatton
Captain

Posted: ‎2024-03-26 07:08 AM

1 Like
1
718
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-03-26 07:08 AM

You can declare a METHOD that references a logic program.Execute and then execute it.

You can also pass parameters if you declare them in the logic program you are executing.

 

This one just checks comm status to decide if it should execute the next logic.

PROGRAM NewStructuredTextProgram

METHOD
Exec_Next_Logic RL AT %M(.My Next ST.Execute);

END_METHOD

VAR
DNP_OSState AT %I(....Comms.Outstation.DNP Outstation.State) : REAL;
END_VAR

IF DNP_OSState <> 0 AND DNP_OSState <> 1 AND DNP_OSState <> 2 AND DNP_OSState <> 3 AND DNP_OSState <> 4 THEN
Exec_Next_Logic();
END_IF;

END_PROGRAM

 

This one passes a path to the next logic which has

VAR_INPUT
ParentFolderInput : STRING;
END_VAR

defined in it.

 

PROGRAM NewStructuredTextProgram

METHOD
MyExec AT %M(.My Logic ST.Execute):STRING;
END_METHOD
VAR
ParentFolder AT %M(..FullName) : STRING;
END_VAR

VAR_INPUT
ParentFolderInput : STRING;
END_VAR

ParentFolderInput := CONCAT(ParentFolder, '.DI.%');

MyExec(ParentFolderInput);

END_PROGRAM

Reply

Link copied. Please paste this link to share this article on your social media post.

geoffpatton
Captain geoffpatton
Captain

Posted: ‎2024-03-26 12:24 PM

0 Likes
0
704
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-03-26 12:24 PM

The Help has references to functions and Function blocks. FBD and ST are covered in the same sections. Sometimes it is easier to create your basic logic in a FBD, then "Compile it with Diagnostics", highlight and copy the generated program, that is displayed at the bottom of the FBD window, to a ST program.

Built-in Functions, Function Blocks, and Conversions 

https://tprojects.schneider-electric.com/GeoSCADAHelp/Geo%20SCADA%202022/Default.htm#LogicGuide/Buil...

 

Reply

Link copied. Please paste this link to share this article on your social media post.

MichaelAur
Ensign MichaelAur
Ensign

Posted: ‎2024-03-27 12:19 AM

In response to geoffpatton
1 Like
0
674
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-03-27 12:19 AM

Thanks so much. Nice and simple

Reply

Link copied. Please paste this link to share this article on your social media post.

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of