 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; SEU</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/seu/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Wed, 22 May 2013 12:34:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Colored CL Source</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/colored-cl-source/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/colored-cl-source/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 22:00:43 +0000</pubDate>
		<dc:creator>Farmboy69</dc:creator>
				<category><![CDATA[CL programming]]></category>
		<category><![CDATA[CL programs]]></category>
		<category><![CDATA[Programming Languages]]></category>
		<category><![CDATA[SEU]]></category>
		<category><![CDATA[SEU Editor]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[How do you insert a hexidecimal value in a CL program to change the color of the source using SEU?]]></description>
				<content:encoded><![CDATA[<p>How do you insert a hexidecimal value in a CL program to change the color of the source using SEU?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/colored-cl-source/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>SEU user defined Exit program problem</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/seu-user-defined-exit-program-problem/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/seu-user-defined-exit-program-problem/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 12:10:25 +0000</pubDate>
		<dc:creator>Cheekychimp</dc:creator>
				<category><![CDATA[AS/400]]></category>
		<category><![CDATA[Exit Program]]></category>
		<category><![CDATA[SEU]]></category>
		<category><![CDATA[SEU Editor]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have written a user exit program that when you press the F7 it will compile your program source interactively. However if I then subsequently add or delete a line of code the SEU program crashes and I get sent a &#8220;Error found on STRSEU command&#8221; and when I look into the joblog I see [...]]]></description>
				<content:encoded><![CDATA[<p>I have written a user exit program that when you press the F7 it will compile your program source interactively. However if I then subsequently add or delete a line of code the SEU program crashes and I get sent a &#8220;Error found on STRSEU command&#8221; and when I look into the joblog I see the following errors: Tried to refer to all or part of an object that no longer exists. Application error. MCH3402 unmonitored by QRNS4SEU at statement 0000000033, instruction X&#8217;0000&#8242;. The requested heap space operation is invalid. The pointer parameter passed to free or realloc is not valid. However; if I change my F7 to compile my source in batch there is no error. I am returning a value of 1 for outrecs and a &#8217;4&#8242; for the return code when returning back to SEU. I have tried other return codes like 1,2 and 3 but with the same result. If I change the F7 to execute any other common as400 command I do not have any problems.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/seu-user-defined-exit-program-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Problem in SEU User Defined Command Processing Program</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/problem-in-seu-user-defined-command-processing-program/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/problem-in-seu-user-defined-command-processing-program/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 07:41:45 +0000</pubDate>
		<dc:creator>mjaybharat</dc:creator>
				<category><![CDATA[SEU]]></category>
		<category><![CDATA[SEU Editor]]></category>
		<category><![CDATA[STRSEU]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi, I am facing a unique problem while executing a user defined line command processor pgm for SEU. On F8, the program again executes STRSEU command to open another SEU source. On pressing F3 on the second source, deletes the QTEMP/QSUSPC user space object. Due to this the pointer values are lost when control returns [...]]]></description>
				<content:encoded><![CDATA[<p>Hi, I am facing a unique problem while executing a user defined line command processor pgm for SEU. On F8, the program again executes STRSEU command to open another SEU source. On pressing F3 on the second source, deletes the QTEMP/QSUSPC user space object. Due to this the pointer values are lost when control returns back to the program resulting into error: Statement/Instruction . . . . . . . . . : /041E Program . . . . . . . . . . . . . . . . : QSUUSRLC Recursion level . . . . . . . . . . . . : 1 Tried to refer to all or part of an object that no longer exists. There are two ways to prevent this: 1) Prevent the deletion of QTEMP/QSUSPC when exiting from the second SEU source 2) Backup and Restore the Userspace after exiting from the second SEU source but at the same memory location(which is again a challenge). Wanted to know if any of the two ways can be implemented and if yes then how? The source Code for trial is as below: <br/><br/> h dftactgrp(*no) actgrp(*NEW) indent(*none)              //SEU InPut                                          D SEUInput        DS                  BASED(SEUInputP) D  StmtLength                   10i 0                  D  CurRec                       10i 0                  D  CurCol                       10i 0                  D  CCSID                        10i 0                  D  InputRecords                 10i 0                  D  SrcMbr                       10                     D  SrcFil                       10                     D  SrcLib                       10                     D  MbrType                      10                     D  FnKey                         1                     D  SEUMode                       1                     D  SplitSession                  1                     D  ReservedInp                   1                       //SEU OutPut                                         D SEUOutput       DS                  BASED(SEUOutputP) D  ReturnCode                    1                     D  ReservedOut1                  3                       D  OutputRecords                10i 0                    D  InsertedSeq                   7                       D  ReservedOut2                 21                         //Source statements.                                   D SEUSource       DS                  BASED(SEUSourceP)  D  LineCmd                       7                       D  LineRetCode                   1                       D  SourceSeq                     6                       D  SourceDate                    6                       D  SourceStmt                  256                        * API error structure                                   D ErrStruc        DS                  inz                D  ErrSSize                     10i 0 inz(%len(ErrStruc)) D  ErrSUse                      10i 0                    D  ErrSMsgID                     7                       D  ErrSResrv                     1                       D  ErrSData                     80                       DCmdString        S           2000A                        //Execute CL command                                 DExecmd           PR              N                           d                             2000A   Const                   d                               96A                           DSEUInputPParm    S               *                           DSEUOutputPParm   S               *                           DSEUSourcePParm   S               *                           C     *Entry        PLIST                                     C                   PARM                    SEUInputPParm     C                   PARM                    SEUOutputPParm    C                   PARM                    SEUSourcePParm    C                                                              /Free                                                          SEUInputP    = SEUInputPParm;                                 SEUOutputP   = SEUOutputPParm;                                If FnKey = &#8217;8&#8242;;                                               CmdString =                                                   &#8216;STRSEU SRCFILE(QTEMP/SEUQMQRY) SRCMBR(SEUQMQRY) OPTION(5)&#8217;;   CmdString = &#8216;CALL PGM(STRSEUCLP)&#8217;;                            CallP ExeCmd(CmdString:ErrStruc);                             EndIf;                                                        *InLr = *On;                                                       /End-Free                                                            //================================================================   //Execute CL command with QCAPCMD API                               //================================================================ PExecmd           b                                                 DExecmd           PI              N                                 dcmdString                    2000A   Const                         dErrorDS                        96A                                   //Prototype for QCAPCMD API                                       DExecuteCommand   PR                  EXTPGM(&#8216;QCAPCMD&#8217;)             D                             2000A                                 D                               10i 0                               D                               41A                                 D                               10i 0                               D                                8                                  D                                1                                  D                               10i 0                               D                               10i 0                               D                               96A                                   //Parameters for QCAPCMD API                                  dcommand          s           2000A                             dcmdlng           s             10i 0                           docb              ds                                            d type                          10i 0 inz(0)                    d DBCSdh                         1    inz(&#8217;0&#8242;)                  d prompt                         1    inz(&#8217;0&#8242;)                  d cmdsyntax                      1    inz(&#8217;0&#8242;)                  d msgrtvkey                      4    inz(x&#8217;00000000&#8242;)          d reserve1                       9    inz(x&#8217;000000000000000000&#8242;) docblength                      10i 0 inz(x&#8217;00000014&#8242;)          docbfmt                          8    inz(&#8216;CPOP0100&#8242;)           dchgcmd                          1    inz(&#8216; &#8216;)                  dlngchgcmd                      10i 0 inz(0)                    dlngchgrtn                      10i 0 inz(0)                      //API Error Data Structure                                    D ErrStruc        DS                  inz                       D  ErrSSize                     10i 0 inz(%len(ErrStruc))       D  ErrSUse                      10i 0                           D  ErrSMsgID                     7                              D  ErrSResrv                     1                          D  ErrSData                     80                           /Free                                                        //API Error Data Structure                                  command = cmdString;                                        cmdlng  = %Len(%trim(command));                             callp  executecommand(command:cmdlng:ocb:ocblength:ocbfmt:                 chgcmd:lngchgcmd:lngchgrtn:ErrStruc);         If ErrSUse &gt;  0;                                            //Dsply   ErrSMsgID;                                        ErrorDs = ErrStruc;                                         Return *On;                                                 Else;                                                       Return *Off;                                                EndIf;                                                     /End-Free                                                  PExecmd           e       <br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/problem-in-seu-user-defined-command-processing-program/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>WDSC featuer missing from SEU</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/wdsc-featuer-missing-from-seu/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/wdsc-featuer-missing-from-seu/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 18:45:52 +0000</pubDate>
		<dc:creator>ToddN2000</dc:creator>
				<category><![CDATA[AS/400]]></category>
		<category><![CDATA[SEU]]></category>
		<category><![CDATA[WDSc]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[When developing a new program with lots of daily changes tracking can be tough. The old SEU had a search by date feature. This was done with the F14 and entering a date. You could then search for code changes made &#60; , &#62; or = th the entered date. I cannot find a way [...]]]></description>
				<content:encoded><![CDATA[<p>When developing a new program with lots of daily changes tracking can be tough.</p>
<p>The old SEU had a search by date feature. This was done with the F14 and entering a date.<br />
You could then search for code changes made  &lt;  ,  &gt;  or = th the entered date.</p>
<p>I cannot find a way to do this in WDSC.. Is it possible?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/wdsc-featuer-missing-from-seu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Rules to use SEU</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/rules-to-use-seu/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/rules-to-use-seu/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 17:46:40 +0000</pubDate>
		<dc:creator>NA</dc:creator>
				<category><![CDATA[AS/400]]></category>
		<category><![CDATA[SEU]]></category>
		<category><![CDATA[SEU Editor]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi, i want to know the rules of using SEU editor , i always find errors when i write code:( can any body help Thanks]]></description>
				<content:encoded><![CDATA[<p>Hi,</p>
<p>i want to know the rules of using SEU editor , i always find  errors when i write code:(</p>
<p>can any body help</p>
<p>Thanks</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/rules-to-use-seu/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Maximum number of records limitations in SEU is only 32,764 records. Is there a way arround that?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/maximum-number-of-records-limitations-in-seu-is-only-32764-records-is-there-a-way-arround-that/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/maximum-number-of-records-limitations-in-seu-is-only-32764-records-is-there-a-way-arround-that/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 19:47:22 +0000</pubDate>
		<dc:creator>Nadernumair</dc:creator>
				<category><![CDATA[SEU]]></category>
		<category><![CDATA[SEU record limitation]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am implementing the NESTING concept which requires me to add more lines of code to the same module. This makes the size of my module exceeds 32,764 lines which is the maximum allowed by SEU. Is there anything that I can change on the defaults of SEU to allow the physical number of lines [...]]]></description>
				<content:encoded><![CDATA[<p>I am implementing the NESTING concept which requires me to add more lines of code to the same module. This makes the size of my module exceeds 32,764 lines which is the maximum allowed by SEU.</p>
<p>Is there anything that I can change on the defaults of SEU to allow the physical number of lines to be greater than 32,764?</p>
<p>Here is the error message I am getting in SEU:<br />
&#8220;Member CT110 in file NNNLIB/QCBLSRC exceeds 32764 records.&#8221;</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/maximum-number-of-records-limitations-in-seu-is-only-32764-records-is-there-a-way-arround-that/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>comments in dds source</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/comments-in-dds-source/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/comments-in-dds-source/#comments</comments>
		<pubDate>Wed, 06 May 2009 12:06:51 +0000</pubDate>
		<dc:creator>ten2008</dc:creator>
				<category><![CDATA[AS/400]]></category>
		<category><![CDATA[DDS]]></category>
		<category><![CDATA[DDS Source]]></category>
		<category><![CDATA[SEU]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[hi please tell me how to comment a group of lines of code at a time in the SEU.thanks]]></description>
				<content:encoded><![CDATA[<p>hi please tell me how to comment a group of lines of code at a time in the SEU.thanks</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/comments-in-dds-source/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/20 queries in 0.022 seconds using memcached
Object Caching 713/804 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-22 12:50:06 -->