1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
- "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
- <sect1 id="LogicalFileSuperOwners">
- <title>LogicalFileSuperOwners</title>
- <para><emphasis role="bold">STD.File.LogicalFileSuperOwners<indexterm>
- <primary>STD.File.LogicalFileSuperOwners</primary>
- </indexterm><indexterm>
- <primary>File.LogicalFileSuperOwners</primary>
- </indexterm><indexterm>
- <primary>LogicalFileSuperOwners</primary>
- </indexterm>(</emphasis> <emphasis> </emphasis> <emphasis role="bold">
- </emphasis> <emphasis>filename </emphasis> <emphasis role="bold">
- )</emphasis></para>
- <informaltable colsep="0" frame="none" rowsep="0">
- <tgroup cols="2">
- <colspec colwidth="80.50pt" />
- <colspec />
- <tbody>
- <row>
- <entry><emphasis>filename</emphasis></entry>
- <entry>A null-terminated string containing the logical name of the
- file.</entry>
- </row>
- <row>
- <entry>Return:<emphasis> </emphasis></entry>
- <entry>LogicalFileSuperOwners returns a dataset in the following
- format:</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- <programlisting>EXPORT FsLogicalFileNameRecord := RECORD
- STRING name;
- END;</programlisting>
- <para>The <emphasis role="bold">LogicalFileSuperOwners </emphasis>function
- returns a list of the logical filenames of all the SuperFiles that contain
- the <emphasis>filename</emphasis> as a sub-file.</para>
- <para>This function is not included in a superfile transaction.</para>
- <para>Example:</para>
- <programlisting format="linespecific">OUTPUT(STD.File.LogicalFileSuperowners('~CLASS::RT::SF::Daily1'));
- //returns all SuperFiles that “own” the Daily1 file</programlisting>
- </sect1>
|