📄 jco.parameterlist.html
字号:
appendValue</H3>
<PRE>
public void <B>appendValue</B>(java.lang.String name, int type, int length, int decimals, int value)</PRE>
<DL>
<DD><B>Deprecated.</B> <I>Internal use only. This method will be removed in the next release.</I>
<P>
<DD>Adds an integer value to the parameter list <em>Note:</em> This API cannot be used for communication with unicode enabled backend system. Please create first a <tt>MetaData</tt> object and then a <tt>ParameterList</tt>.<br> The preffered way to create parameter list should be to use <tt>JCO.Repository</tt>. In this case the meta data fetched by repository is correct independent on having unicode and non unicode backend.<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - Field name for identifying this data field<DD><CODE>type</CODE> - Data field type<DD><CODE>length</CODE> - Data field internal length in bytes<DD><CODE>decimals</CODE> - Data field number of decimals (only necessary for the data types JCO.TYPE_BCD and JCO.TYPE_FLOAT)<DD><CODE>value</CODE> - Data field value<DT><B>Throws:</B><DD><CODE><A HREF="../../../../com/sap/mw/jco/JCO.ConversionException.html">JCO.ConversionException</A></CODE> - thrown if the value could not be converted to its internal representation</DL>
</DD>
</DL>
<HR>
<A NAME="appendValue(java.lang.String, int, int, int, double)"><!-- --></A><H3>
appendValue</H3>
<PRE>
public void <B>appendValue</B>(java.lang.String name, int type, int length, int decimals, double value)</PRE>
<DL>
<DD><B>Deprecated.</B> <I>Internal use only. This method will be removed in the next release.</I>
<P>
<DD>Adds a double value to the parameter list <em>Note:</em> This API cannot be used for communication with unicode enabled backend system. Please create first a <tt>MetaData</tt> object and then a <tt>ParameterList</tt>.<br> The preffered way to create parameter list should be to use <tt>JCO.Repository</tt>. In this case the meta data fetched by repository is correct independent on having unicode and non unicode backend.<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - Field name for identifying this data field<DD><CODE>type</CODE> - Data field type<DD><CODE>length</CODE> - Data field internal length in bytes<DD><CODE>decimals</CODE> - Data field number of decimals (only necessary for the data types JCO.TYPE_BCD and JCO.TYPE_FLOAT)<DD><CODE>value</CODE> - Data field value<DT><B>Throws:</B><DD><CODE><A HREF="../../../../com/sap/mw/jco/JCO.ConversionException.html">JCO.ConversionException</A></CODE> - thrown if the value could not be converted to its internal representation</DL>
</DD>
</DL>
<HR>
<A NAME="appendValue(java.lang.String, int, int, int, byte[])"><!-- --></A><H3>
appendValue</H3>
<PRE>
public void <B>appendValue</B>(java.lang.String name, int type, int length, int decimals, byte[] value)</PRE>
<DL>
<DD><B>Deprecated.</B> <I>Internal use only. This method will be removed in the next release.</I>
<P>
<DD>Adds a ByteArray value to the parameter list <em>Note:</em> This API cannot be used for communication with unicode enabled backend system. Please create first a <tt>MetaData</tt> object and then a <tt>ParameterList</tt>.<br> The preffered way to create parameter list should be to use <tt>JCO.Repository</tt>. In this case the meta data fetched by repository is correct independent on having unicode and non unicode backend.<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - Field name for identifying this data field<DD><CODE>type</CODE> - Data field type<DD><CODE>length</CODE> - Data field internal length in bytes<DD><CODE>decimals</CODE> - Data field number of decimals (only necessary for the data types JCO.TYPE_BCD and JCO.TYPE_FLOAT)<DD><CODE>value</CODE> - Data field value<DT><B>Throws:</B><DD><CODE><A HREF="../../../../com/sap/mw/jco/JCO.ConversionException.html">JCO.ConversionException</A></CODE> - thrown if the value could not be converted to its internal representation</DL>
</DD>
</DL>
<HR>
<A NAME="appendValue(java.lang.String, int, int, int, java.lang.Object)"><!-- --></A><H3>
appendValue</H3>
<PRE>
public void <B>appendValue</B>(java.lang.String name, int type, int length, int decimals, java.lang.Object value)</PRE>
<DL>
<DD><B>Deprecated.</B> <I>Internal use only. This method will be removed in the next release.</I>
<P>
<DD>Adds an Object value to the parameter list <em>Note:</em> This API cannot be used for communication with unicode enabled backend system. Please create first a <tt>MetaData</tt> object and then a <tt>ParameterList</tt>.<br> The preffered way to create parameter list should be to use <tt>JCO.Repository</tt>. In this case the meta data fetched by repository is correct independent on having unicode and non unicode backend.<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - Field name for identifying this data field<DD><CODE>type</CODE> - Data field type<DD><CODE>length</CODE> - Data field internal length in bytes<DD><CODE>decimals</CODE> - Data field number of decimals (only necessary for the data types JCO.TYPE_BCD and JCO.TYPE_FLOAT)<DD><CODE>value</CODE> - Data field value<DT><B>Throws:</B><DD><CODE><A HREF="../../../../com/sap/mw/jco/JCO.ConversionException.html">JCO.ConversionException</A></CODE> - thrown if the value could not be converted to its internal representation</DL>
</DD>
</DL>
<HR>
<A NAME="setActive(boolean, int)"><!-- --></A><H3>
setActive</H3>
<PRE>
public void <B>setActive</B>(boolean active, int index)</PRE>
<DL>
<DD>Sets the marshall/unmashall behavior of a table or structure parameter. If <tt>false</tt> the parameter's content will never be sent or fetched from the remote system. The default value is <tt>true</tt>, i.e. always get and sent the parameter contents. The setting of this flags has only influence on table or structure parameters (except structures of type 1).<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>active</CODE> - <tt>true</tt> if the contents of this parameter should be sent or fetched during a JCO call, <tt>false</tt> if not.<DD><CODE>index</CODE> - the index of the field</DL>
</DD>
</DL>
<HR>
<A NAME="setActive(boolean, java.lang.String)"><!-- --></A><H3>
setActive</H3>
<PRE>
public void <B>setActive</B>(boolean active, java.lang.String name)</PRE>
<DL>
<DD>Sets the marshall/unmashall behavior of an optional table parameter. If <tt>false</tt> the table's content will never be sent or fetched from the remote system. The default value is <tt>true</tt>, i.e. always get and sent the table contents. The setting of this flags has no influence on other than optional table parameters:<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>active</CODE> - <tt>true</tt> if the contents of this table should be sent or fetched during a JCO call, <tt>false</tt> if not.<DD><CODE>name</CODE> - the field's name<DT><B>Throws:</B><DD><CODE><A HREF="../../../../com/sap/mw/jco/JCO.Exception.html">JCO.Exception</A></CODE> - thrown if a field with the specified name does not exist</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/JCO.ParameterList.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../com/sap/mw/jco/JCO.MetaData.html"><B>PREV CLASS</B></A>
<A HREF="../../../../com/sap/mw/jco/JCO.Pool.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="JCO.ParameterList.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: INNER | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -