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

We Value Your Feedback!
Could you please spare a few minutes to share your thoughts on Cloud Connected vs On-Premise Services. Your feedback can help us shape the future of services.
Learn more about the survey or Click here to Launch the survey
Schneider Electric Services Innovation Team!

Temp_UM parameter is inaccessible from Programming and Display on TM172

Industry Automation and Control Forum

This forum is addressing industrial automation design & engineering, operations, asset performance, cyber security and digital transformation for Plants & Machines.

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
  • Industrial Automation
  • Industry Automation and Control Forum
  • Temp_UM parameter is inaccessible from Programming and Display on TM172
Options
  • 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
Bastian_Schmitz
Admiral Bastian_Schmitz Admiral
32
LeTomas
Lt. Commander LeTomas Lt. Commander
11
RoozeeR
Lt. Commander RoozeeR Lt. Commander
6
JerryBartlemay
Lieutenant JG JerryBartlemay Lieutenant JG
6
View All
Related Products
product field
Schneider Electric
EcoStruxure™ Machine Expert - HVAC

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to Industry Automation and Control Forum
Solved
obscuresc
Lieutenant JG obscuresc
Lieutenant JG

Posted: ‎2020-09-15 09:38 PM

0 Likes
2
2783
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • 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: ‎2020-09-15 09:38 PM

Temp_UM parameter is inaccessible from Programming and Display on TM172

Hi all,

 

I am setting up user configurable temperature and pressure unit support on a TM172DCLWTHP via EcoStruxure Machine Expert - HVAC.

 

I'm looking at changing the 'Temp_UM' parameter to change the on-board temperature reading and the sensor reading is directly tied to an edit box on the HMI. I have tried to write to it using the parameter link 'sysPar_Temp_UM' and the parameter name directly (Temp_UM) but I am receive no change in sensor values. I can change Temp_UM via Commissioning and it works just fine in changing unit type and the displayed value, and I can successfully read from sysPar_Temp_UM' in Programming.

 

During compile, I receive errors such as the following (when using sysPar_Temp_UM in Programming);

 

PROGRAM_MAIN(41) - error G0008: ST => Invalid access to variable

 

Or when I attempt using 'Temp_UM' in Programming;

 

PROGRAM_MAIN(39) - error A4097: TEMP_UM => Object not found

 

How do I go about fixing this so that I have access to 'Temp_UM'?

 

 

Cheers,

Jack

 

 

  • Tags:
  • english
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
LeTomas
Lt. Commander LeTomas Lt. Commander
Lt. Commander

Posted: ‎2020-09-16 12:51 AM

0 Likes
1
2769
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • 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: ‎2020-09-16 12:51 AM

Dear @obscuresc ,

 

I have used the following code in the programming tab of the TM172D:

 

IF xPET_Select_C THEN

xAux := sysWriteParUINT(ADR(sysPar_Temp_UM), 0); //C
xPET_Select_C := FALSE;
xPET_Select_F := FALSE;
END_IF;

 

IF xPET_Select_F THEN

xAux := sysWriteParUINT(ADR(sysPar_Temp_UM), 1); //F
xPET_Select_C := FALSE;
xPET_Select_F := FALSE;
END_IF;

 

You can check the behaviour in the next video:

https://schneider-electric.box.com/s/5emuv4ach0vwj0e9kx28qg2zqc6r2jm1

https://schneider-electric.box.com/s/5emuv4ach0vwj0e9kx28qg2zqc6r2jm1 

 

Let us know if this works for you.

 

Best regards,

 

Leandro

See Answer In Context

  • Tags:
  • english
Reply

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

Replies 2
LeTomas
Lt. Commander LeTomas Lt. Commander
Lt. Commander

Posted: ‎2020-09-16 12:51 AM

0 Likes
1
2770
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • 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: ‎2020-09-16 12:51 AM

Dear @obscuresc ,

 

I have used the following code in the programming tab of the TM172D:

 

IF xPET_Select_C THEN

xAux := sysWriteParUINT(ADR(sysPar_Temp_UM), 0); //C
xPET_Select_C := FALSE;
xPET_Select_F := FALSE;
END_IF;

 

IF xPET_Select_F THEN

xAux := sysWriteParUINT(ADR(sysPar_Temp_UM), 1); //F
xPET_Select_C := FALSE;
xPET_Select_F := FALSE;
END_IF;

 

You can check the behaviour in the next video:

https://schneider-electric.box.com/s/5emuv4ach0vwj0e9kx28qg2zqc6r2jm1

https://schneider-electric.box.com/s/5emuv4ach0vwj0e9kx28qg2zqc6r2jm1 

 

Let us know if this works for you.

 

Best regards,

 

Leandro

  • Tags:
  • english
Reply

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

obscuresc
Lieutenant JG obscuresc
Lieutenant JG

Posted: ‎2020-09-16 04:20 PM

In response to LeTomas
0 Likes
0
2752
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • 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: ‎2020-09-16 04:20 PM

Hi @LeTomas,

 

Thanks for you help, I had forgotten these functions existed.

I ported your solution to the Display tab and it worked as expected.

 

Cheers,

Jack

  • Tags:
  • english
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