Part 6 openDocument reports
(Created page with "<html> <p> We create an openDocument report and fill it with data. Also some tips and tricks on how to get help in constructing ocl expressions and how to see cross reference...")
 
No edit summary
(18 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<html>
<html>
<p> We create an openDocument report and fill it with data. Also some tips and tricks on
<h4>
how to get help in constructing ocl expressions and how to see cross reference
We create an openDocument report and fill it with data. Also some tips and tricks on how to get help in constructing ocl
where things are used throughout the model </p>
    expressions and how to see cross reference where things are used throughout the model  
</h4>


<style>
<p class="video-warn">
#video12 {
   <em>To make your experience more comfortable, we set the main tags mentioned in the video to the right bar menu of this mini
  position: relative;
     player. Choose the interesting subtitle on the list and immediately get to the exact theme navigation-itemplace in the video. Now
  padding-bottom: 75%;
     you can pick any topic to be instructed without watching the whole video.</em>
}
</p>
#video12 iframe {
  position: absolute;
  width: calc(100% - 300px);
  height: calc(100% - 300px);
}
#video12 div {
  position: absolute;
  top: 0;
   right: 0;
  width: 270px;
  height: 60%;
  padding: 10px;
  overflow-y: auto;
}
#video12 span {
     font-size: 18;
    display:block;
  padding: 10px;
    padding-bottom: 0.5;
     padding-top: 0.5;
  opacity: 0.7;
}
  #video12 span:hover {
  color: #0000FF;
  cursor: pointer;
}
#video12 span:focus {
  color: blue;
</style>


<div id="video12">
<div class="video">
<iframe width="560" height="300" src="https://youtu.be/embed/ru6iK6AFnnk" frameborder="0" allowfullscreen></iframe>
  <div class="video__wrapper">
  <div>
    <iframe src="https://www.youtube.com/embed/PbprP4RR19U?rel=0&autoplay=0" frameborder="0" allowfullscreen></iframe>
   <strong>View Model Editor:</strong>
    </div>
    <span data-video="ru6iK6AFnnk" tabindex="0" data-start="20"> Reports
   <div class="video__navigation">
    </span>
      <span class="navigation-item"data-video="PbprP4RR19U" data-start="25" tabindex="0"> Reports </span>
    <strong> View Model Editor: </strong>
      <strong> View Model Editor: </strong>
    <span data-video="ru6iK6AFnnk" tabindex="0" data-start="111"> &bull;Columns needed for Report </span>
      <span class="navigation-item" data-video="PbprP4RR19U" data-start="116" tabindex="0"> &bull; Columns needed for Report </span>
    <span data-video="ru6iK6AFnnk" tabindex="0" data-start="996"> &bull;Columns needed for Report </span>Template URL </span>
      <span class="navigation-item" data-video="PbprP4RR19U" data-start="1001" tabindex="0"> &bull; Template URL </span>
    <span data-video="ru6iK6AFnnk" tabindex="0" data-start="1278"> &bull;Columns needed for Report </span> Report File Name </span>
      <span class="navigation-item" data-video="PbprP4RR19U" data-start="1283" tabindex="0"> &bull; Report File Name </span>
    <span data-video="ru6iK6AFnnk" tabindex="0" data-start="453"> Model Access Form</span>
      <span class="navigation-item" data-video="PbprP4RR19U" data-start="458" tabindex="0"> Model Access Form</span>
    <span data-video="ru6iK6AFnnk" tabindex="0" data-start="1073"> Open document text </span>
      <span class="navigation-item" data-video="PbprP4RR19U" data-start="1078" tabindex="0"> Open document text </span>
    <span data-video="ru6iK6AFnnk" tabindex="0" data-start="1563"> Class action for show </span>
      <span class="navigation-item" data-video="PbprP4RR19U" data-start="1568" tabindex="0"> Class action for show </span>
    <span data-video="ru6iK6AFnnk" tabindex="0" data-start="1884"> >View model root object requirement </span>
      <span class="navigation-item" data-video="PbprP4RR19U" data-start="1889" tabindex="0"> View model root object requirement </span>
    <span data-video="ru6iK6AFnnk" tabindex="0" data-start="1960"> Open document report show command </span>
      <span class="navigation-item" data-video="PbprP4RR19U" data-start="1965" tabindex="0"> Open document report show command </span>
    <span data-video="ru6iK6AFnnk" tabindex="0" data-start="2160"> Tags in  odt template in Word </span>
      <span class="navigation-item" data-video="PbprP4RR19U" data-start="2165" tabindex="0"> Tags in odt template in Word </span>
    <span data-video="ru6iK6AFnnk" tabindex="0" data-start="2553"> Some expressions on setting the date </span>
      <span class="navigation-item" data-video="PbprP4RR19U" data-start="2558" tabindex="0"> Some expressions on setting the date </span>
    <span data-video="ru6iK6AFnnk" tabindex="0" data-start="2553"> “Used by” cross reference index </span>
      <span class="navigation-item" data-video="PbprP4RR19U" data-start="2558" tabindex="0"> “Used by” cross reference index </span>
    </div>
   </div>
   </div>
</div>


<script>
var IMG = document.querySelectorAll('#video12 span'),
    IFRAME = document.querySelector('#video12 iframe');
for (var i = 0; i < IMG.length; i++) {
  IMG[i].onclick = function() {
    IFRAME.src = 'http://www.youtube.com/embed/' + this.dataset.video + '?rel=0&autoplay=1';
    if(this.dataset.end) IFRAME.src = IFRAME.src.replace(/([\s\S]*)/g, '$1&end=' + this.dataset.end);
    if(this.dataset.start) IFRAME.src = IFRAME.src.replace(/([\s\S]*)/g, '$1&start=' + this.dataset.start);
    this.style.backgroundColor='rgba(0,0,0,.2)';
  }
}
</script>
</html>
</html>
[[Category:MDriven Designer]]
[[Category:MDriven Designer Sessions]]
[[Category:OCL]]
[[Category:Expressions]]
[[Category:Reports]]

Revision as of 21:37, 31 July 2018

We create an openDocument report and fill it with data. Also some tips and tricks on how to get help in constructing ocl expressions and how to see cross reference where things are used throughout the model

To make your experience more comfortable, we set the main tags mentioned in the video to the right bar menu of this mini player. Choose the interesting subtitle on the list and immediately get to the exact theme navigation-itemplace in the video. Now you can pick any topic to be instructed without watching the whole video.

Reports View Model Editor: • Columns needed for Report • Template URL • Report File Name Model Access Form Open document text Class action for show View model root object requirement Open document report show command Tags in odt template in Word Some expressions on setting the date “Used by” cross reference index

This page was edited 75 days ago on 02/10/2024. What links here