<div><font size=2 color=navy face=Arial>
Thanks for that additional info -- I think I understand the problem. Let me state it again -- if the doc-char contains part 12844161 in any record then you do not want to select that doc-char. <br><br>If that is the case then you will need two passes through the data. The first pass should create a subfile with the key for the file and a flag indicating the existence of part 12844161. The second pass reads this subfile and gets the data for the desired records. <br><br>In Quiz you could do something like:<br>&gt;Acc apmisumi<br>&gt;Define d-want char*1 &amp;<br>&gt; = &quot;N&quot; if part = 12844161 &amp;<br>&gt; Else &quot;&quot;<br>&gt;Sort on doc-char on d-want<br>&gt;Set subfile name sf1 at doc-char<br>&gt;Report summary doc-char &amp;<br>&gt; D-want maximum<br><br>This will create a subfile with all of the doc-char values and a flag with either a blank or the letter &quot;N&quot;. If the flag is &quot;N&quot; then the part 12844161 was found for this doc-char value and you don't want records with this doc-char value. <br><br>In the second pass you would start with this subfile, select only the records with a blank d-want flag and link back to the original data file. Something like:<br><br>&gt;Acc *sf1 link to apmisumi<br>&gt;Select sf1 if &quot;&quot; = d-want<br><br>Hope this helps. <br><br>Regards,<br>JWP<br><br></font></div>
<br><div><hr size=2 width="100%" align=center tabindex=-1>
<font face=Tahoma size=2>
<b>From</b>: powerh-l-bounces+john.pickering=norbord.com@lists.sowder.com &lt;powerh-l-bounces+john.pickering=norbord.com@lists.sowder.com&gt; <br><b>To</b>: o.kappert@qc.aibn.com &lt;o.kappert@qc.aibn.com&gt; <br><b>Cc</b>: Nisha B Pawar &lt;nispawar@in.ibm.com&gt;; powerh-l@lists.sowder.com &lt;powerh-l@lists.sowder.com&gt; <br><b>Sent</b>: Sun Mar 14 04:31:48 2010<br><b>Subject</b>: Re: Problem in screen design <br></font><br></div>

<br><font size=2 face="sans-serif">Olav</font>
<br>
<br><font size=2 face="sans-serif">The doc-char which contains that part
should not be selected. &nbsp;Here the doc-char 000000000225071 contains
&nbsp;other parts along with 12844161 Hence it should not be selected.
Where as only doc-char 000000000301004 should be selected. </font>
<br>
<br>
<br>
<br>
<br><font size=2 face="sans-serif">Thanks &amp; Regards<br>
Pandurang Rajpurohit,<br>
-----------------------------------------------------------------<br>
Project Manager <br>
GM - Powerhouse Tower (DDS)<br>
IBM Global Services India Pvt. Ltd. Pune<br>
Contact No : +91 020 40116372<br>
Mobile No : +91 9049009973<br>
EMAIL : pandurang.rajpurohit@in.ibm.com <br>
<br>
</font>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td width=40%><font size=1 face="sans-serif"><b>o.kappert@qc.aibn.com</b>
</font>
<p><font size=1 face="sans-serif">03/14/2010 04:42 AM</font>
<table border>
<tr valign=top>
<td bgcolor=white>
<div align=center><font size=1 face="sans-serif">Please respond to<br>
o.kappert@qc.aibn.com</font></div></table>
<br>
<td width=59%>
<table width=100%>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">To</font></div>
<td><font size=1 face="sans-serif">Pandurang Rajpurohit/India/IBM@IBMIN</font>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">cc</font></div>
<td><font size=1 face="sans-serif">powerh-l@lists.sowder.com, Nisha B Pawar/India/IBM@IBMIN</font>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">Subject</font></div>
<td><font size=1 face="sans-serif">Re: Problem in screen design</font></table>
<br>
<table>
<tr valign=top>
<td>
<td></table>
<br></table>
<br>
<br>
<br><font size=3>Maybe I am missing something but....<br>
<br>
Based upon the info provided, &nbsp;</font><font size=2 face="sans-serif">part
12844161 is not in the report generated; therefore everything works as
you wanted it to.<br>
 <br>
Olav.</font><font size=3><br>
<br>
Pandurang Rajpurohit wrote: </font>
<br><font size=2 face="sans-serif"><br>
All</font><font size=3> <br>
</font><font size=2 face="sans-serif"><br>
I am on screen design where a record which do not contain data passed are
only be selected. Could you please help with query how can achieve.</font><font size=3>
<br>
</font><font size=2 face="sans-serif"><br>
Here is example</font><font size=3> <br>
<br>
</font><font size=2 face="sans-serif"><br>
&gt; acc apmisumi</font><font size=3> </font><font size=2 face="sans-serif"><br>
&gt; show item</font><font size=3> <br>
</font><font size=2 face="sans-serif"><br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; INPUT OUTPUT</font><font size=3> </font><font size=2 face="sans-serif"><br>
APMISUMI &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TYPE SCALE SCALE &nbsp;DEC
PICTURE</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;APMISUMI-KEY &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHAR &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;X(43)</font><font size=3> </font><font size=2 face="sans-serif"><br>
* .DOC-CHAR &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CHAR &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;X(15)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;.SOURCE-CODE &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHAR &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;X(16)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;.GM-PART &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHAR &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;X(12)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;DOC-TYPE &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHAR &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;X(2)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;ORD-NUM &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CHAR &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;X(13)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;CUST-ORD &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHAR &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;X(20)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;ORD-TYPE &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHAR &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;X(2)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;ORD-PART &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHAR &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;X(20)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;PART-QTY &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NUM &nbsp; &nbsp; 0 &nbsp;
&nbsp; 0 &nbsp; &nbsp;0 &nbsp;^.^^^.^^^</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;WHM-QTY-ORD &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NUM &nbsp; &nbsp; 0 &nbsp; &nbsp; 0
&nbsp; &nbsp;0 &nbsp;^^^^^^^^</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;WHM-QTY-REC &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NUM &nbsp; &nbsp; 0 &nbsp; &nbsp; 0
&nbsp; &nbsp;0 &nbsp;^^^^^^^^</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;SHIP-DATE &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; DATE &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;YYYY/MM/DD</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;WHM-REC-DATE &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DATE &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;YYYY/MM/DD</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;FLAG-905 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHAR &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;X(1)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;PRIC-UNIT &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NUM &nbsp; &nbsp; 3 &nbsp; &nbsp;
0 &nbsp; &nbsp;3 &nbsp;^.^^^.^^^.^^...</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;VAT-CODE &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHAR &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;X(2)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;CURR-CODE &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CHAR &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;X(3)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;ACT-COST-L &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NUM &nbsp; &nbsp; 4 &nbsp; &nbsp;
0 &nbsp; &nbsp;4 &nbsp;^^^.^^^.^^^,...</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;ACT-COST-F &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NUM &nbsp; &nbsp; 4 &nbsp; &nbsp;
0 &nbsp; &nbsp;4 &nbsp;^^^.^^^.^^^,...</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;AVC-COST &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NUM &nbsp; &nbsp; 3 &nbsp;
&nbsp; 0 &nbsp; &nbsp;3 &nbsp;^.^^^.^^^.^^...</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;BEAF-INV &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHAR &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;X(1)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;LOC-CUST &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHAR &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;X(9)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;TOT-LINES &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NUM &nbsp; &nbsp; 0 &nbsp; &nbsp;
0 &nbsp; &nbsp;0 &nbsp; ^.^^^</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;WHM-PLAN-CODE &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; CHAR &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp;X(4)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;WHM-IN-TYPE &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CHAR &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp;X(4)</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;FILLER &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHAR &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;X(42)</font><font size=3> <br>
<br>
</font><font size=2 face="sans-serif"><br>
&gt; acc apmisumi</font><font size=3> </font><font size=2 face="sans-serif"><br>
&gt; select if source-code = &quot;632654450&quot; and gm-part = &quot;
&nbsp; &nbsp;12844161&quot;</font><font size=3> </font><font size=2 face="sans-serif"><br>
&gt; rep doc-char source-code gm-part flag-905</font><font size=3> </font><font size=2 face="sans-serif"><br>
&gt; go</font><font size=3> </font><font size=2 face="sans-serif"><br>
2010/03/13 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;OPEL
P&amp;A DATA DICTIONARY &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; PAGE &nbsp; 1</font><font size=3> <br>
</font><font size=2 face="sans-serif"><br>
 &nbsp;Document number &nbsp;SOURCE CODE &nbsp; &nbsp; &nbsp; Gm Part &nbsp;
&nbsp; &nbsp; Flag</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; 905</font><font size=3> <br>
</font><font size=2 face="sans-serif"><br>
 &nbsp;000000000225071 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; 12844161 &nbsp; C</font><font size=3> <br>
<br>
<br>
</font><font size=2 face="sans-serif"><br>
&gt; acc apmisumi</font><font size=3> </font><font size=2 face="sans-serif"><br>
&gt; select if source-code = &quot;632654450&quot; and gm-part &lt;&gt;
&quot; &nbsp; &nbsp;12844161&quot; and (flag-905=&quot;P&quot; or flag-905=&quot;C&quot;)</font><font size=3>
</font><font size=2 face="sans-serif"><br>
&gt; rep doc-char source-code gm-part &nbsp;flag-905</font><font size=3>
</font><font size=2 face="sans-serif"><br>
&gt; go</font><font size=3> </font><font size=2 face="sans-serif"><br>
2010/03/13 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;OPEL
P&amp;A DATA DICTIONARY &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; PAGE &nbsp; 1</font><font size=3> <br>
</font><font size=2 face="sans-serif"><br>
 &nbsp;Document number &nbsp;SOURCE CODE &nbsp; &nbsp; &nbsp; Gm Part &nbsp;
&nbsp; &nbsp; Flag</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; 905</font><font size=3> <br>
</font><font size=2 face="sans-serif"><br>
 &nbsp;000000000225071 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;4726568 &nbsp; C</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000225071 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;5064431 &nbsp; C</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000225071 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;5325626 &nbsp; C</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000225071 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;5409420 &nbsp; C</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000225071 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;9121795 &nbsp; P</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000225071 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; 12790592 &nbsp; C</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000225071 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; 13219393 &nbsp; C</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000225071 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; 13253738 &nbsp; C</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000301004 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;5333794 &nbsp; P</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000301004 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; 11609598 &nbsp; P</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000301004 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; 12762510 &nbsp; P</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000301004 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; 12767670 &nbsp; P</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000301004 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; 12797804 &nbsp; P</font><font size=3> </font><font size=2 face="sans-serif"><br>
 &nbsp;000000000302065 &nbsp;632654450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;9270120 &nbsp; P</font><font size=3> <br>
<br>
<br>
</font><font size=2 face="sans-serif"><br>
I need select only doc-char which does not contain part &nbsp;12844161
for source code 632654450 but with this query the doc-char 000000000225071
is also selected even though it contain part 12844161</font><font size=3>
<br>
</font><font size=2 face="sans-serif"><br>
Can any one &nbsp;help me</font><font size=3> <br>
</font><font size=2 face="sans-serif"><br>
Thanks &amp; Regards<br>
Pandurang Rajpurohit,<br>
-----------------------------------------------------------------<br>
Project Manager <br>
GM - Powerhouse Tower (DDS)<br>
IBM Global Services India Pvt. Ltd. Pune<br>
Contact No : +91 020 40116372<br>
Mobile No : +91 9049009973<br>
EMAIL : </font><a href=mailto:pandurang.rajpurohit@in.ibm.com><font size=2 color=blue face="sans-serif"><u>pandurang.rajpurohit@in.ibm.com</u></font></a><font size=2 face="sans-serif">
<br>
</font>
<br>