<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: create a previous month field using a current date field. in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748167#M29514</link>
    <description>&lt;P&gt;Can this be done using a proc sql statement.&lt;/P&gt;</description>
    <pubDate>Tue, 15 Jun 2021 16:10:01 GMT</pubDate>
    <dc:creator>VALLY</dc:creator>
    <dc:date>2021-06-15T16:10:01Z</dc:date>
    <item>
      <title>create a previous month field using a current date field.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748062#M29499</link>
      <description>&lt;P&gt;i need to extract data from the previous month (lastday) using the current date (DLA).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VALLY_0-1623744697297.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/60402i1F53B08C1DDB74E3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VALLY_0-1623744697297.png" alt="VALLY_0-1623744697297.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;however the code is not assigning any values&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VALLY_1-1623744775698.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/60403i76A28F863DA5DD29/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VALLY_1-1623744775698.png" alt="VALLY_1-1623744775698.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 08:13:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748062#M29499</guid>
      <dc:creator>VALLY</dc:creator>
      <dc:date>2021-06-15T08:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: create a previous month field using a current date field.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748065#M29500</link>
      <description>&lt;P&gt;Please do NOT post text in pictures, use a code box for code.&lt;/P&gt;
&lt;P&gt;Your code assumes that DLA is a character variable, and with that, your code works:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input dla $8.;
datalines;
20210615
;

data test;
set have;
format lastday date9.;
lastday = intnx('month',input(dla,yymmdd8.),-1,'E');
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If DLA is in fact already a SAS date, this will fail. Maxim 2: Read the Log.&lt;/P&gt;
&lt;P&gt;So please post the log from your step by copy/pasting the whole text (code and messages) into a box opened with this button:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/54552i914D97BE1B0F21E5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 08:20:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748065#M29500</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-15T08:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: create a previous month field using a current date field.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748068#M29501</link>
      <description>&lt;P&gt;I need to create&amp;nbsp; a variable , that will show me today's date and the&amp;nbsp; previous month.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 08:46:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748068#M29501</guid>
      <dc:creator>VALLY</dc:creator>
      <dc:date>2021-06-15T08:46:36Z</dc:date>
    </item>
    <item>
      <title>Create a variable that shows today's date and previous 2 months</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748071#M29505</link>
      <description>&lt;P&gt;good day expects.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;am trying to create a variable with include today's date and the previous 2 months using the below code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATA TEST;&lt;/P&gt;&lt;P&gt;FORMAT LASTMONTH YYMMDD8.;&lt;BR /&gt;SET BRAC.FINAL_BRACC_ALL (OBS=10);&lt;BR /&gt;LASTMONTH =&lt;BR /&gt;INTNX ( 'MONTH', 'TODAY()',INPUT(PUT(DLA,8.),YYMMDD8.),-1, 'E');&lt;BR /&gt;;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However am getting the below results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VALLY_0-1623749794755.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/60404i06DB132BF9E7DA11/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VALLY_0-1623749794755.png" alt="VALLY_0-1623749794755.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 09:37:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748071#M29505</guid>
      <dc:creator>VALLY</dc:creator>
      <dc:date>2021-06-15T09:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: create a previous month field using a current date field.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748072#M29503</link>
      <description>&lt;P&gt;Post the log as requested.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 09:37:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748072#M29503</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-15T09:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Create a variable that shows today's date and previous 2 months</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748073#M29506</link>
      <description>&lt;P&gt;&lt;STRONG&gt;POST.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;THE.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;LOG.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 09:38:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748073#M29506</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-15T09:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create a variable that shows today's date and previous 2 months</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748074#M29507</link>
      <description>&lt;P&gt;Please do not post the same question in multiple messages. I had to merge them.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 09:40:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748074#M29507</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-15T09:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: create a previous month field using a current date field.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748076#M29508</link>
      <description>NOTE: Missing values were generated as a result of performing an operation on missing values.&lt;BR /&gt;Each place is given by: (Number of times) at (Line):(Column).&lt;BR /&gt;10 at 30:2&lt;BR /&gt;NOTE: There were 10 observations read from the data set BRAC.FINAL_BRACC_ALL.&lt;BR /&gt;NOTE: MVA_DSIO.OPEN_CLOSE| _DISARM| STOP| _DISARM| 2021-06-15T11:30:18,715+02:00| _DISARM| WorkspaceServer| _DISARM| SAS|&lt;BR /&gt;_DISARM| | _DISARM| 2344587| _DISARM| 24145920| _DISARM| 11| _DISARM| 19| _DISARM| 8| _DISARM| 6728496| _DISARM| 0.020000|&lt;BR /&gt;_DISARM| 0.751127| _DISARM| 1939368617.964187| _DISARM| 1939368618.715314| _DISARM| 0.010000| _DISARM| | _ENDDISARM&lt;BR /&gt;NOTE: The data set WORK.VIEW has 10 observations and 107 variables.&lt;BR /&gt;NOTE: Compressing data set WORK.VIEW decreased size by 0.00 percent.&lt;BR /&gt;Compressed is 2 pages; un-compressed would require 2 pages.&lt;BR /&gt;NOTE: MVA_DSIO.OPEN_CLOSE| _DISARM| STOP| _DISARM| 2021-06-15T11:30:18,716+02:00| _DISARM| WorkspaceServer| _DISARM| SAS|&lt;BR /&gt;_DISARM| | _DISARM| 10| _DISARM| 24145920| _DISARM| 11| _DISARM| 19| _DISARM| 264| _DISARM| 6728752| _DISARM| 0.010000|&lt;BR /&gt;_DISARM| 0.750341| _DISARM| 1939368617.966139| _DISARM| 1939368618.716480| _DISARM| 0.000000| _DISARM| | _ENDDISARM&lt;BR /&gt;NOTE: PROCEDURE| _DISARM| STOP| _DISARM| 2021-06-15T11:30:18,716+02:00| _DISARM| WorkspaceServer| _DISARM| SAS| _DISARM| |&lt;BR /&gt;_DISARM| 27033600| _DISARM| 24145920| _DISARM| 11| _DISARM| 19| _DISARM| 264| _DISARM| 6728752| _DISARM| 0.020000| _DISARM|&lt;BR /&gt;0.835480| _DISARM| 1939368617.881204| _DISARM| 1939368618.716684| _DISARM| 0.010000| _DISARM| | _ENDDISARM&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.83 seconds&lt;BR /&gt;user cpu time 0.01 seconds&lt;BR /&gt;system cpu time 0.01 seconds&lt;BR /&gt;memory 1548.28k&lt;BR /&gt;OS Memory 23840.00k&lt;BR /&gt;Timestamp 2021/06/15 11:30:18 AM&lt;BR /&gt;Step Count 27 Switch Count 2&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 158&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 34&lt;BR /&gt;Involuntary Context Switches 1&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 264&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;34&lt;BR /&gt;35 GOPTIONS NOACCESSIBLE;&lt;BR /&gt;36 %LET _CLIENTTASKLABEL=;&lt;BR /&gt;37 %LET _CLIENTPROCESSFLOWNAME=;&lt;BR /&gt;38 %LET _CLIENTPROJECTPATH=;&lt;BR /&gt;39 %LET _CLIENTPROJECTPATHHOST=;&lt;BR /&gt;40 %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;7 The SAS System 10:47 Tuesday, June 15, 2021&lt;BR /&gt;&lt;BR /&gt;41 %LET _SASPROGRAMFILE=;&lt;BR /&gt;42 %LET _SASPROGRAMFILEHOST=;&lt;BR /&gt;43&lt;BR /&gt;44 ;*';*";*/;quit;run;&lt;BR /&gt;45 ODS _ALL_ CLOSE;&lt;BR /&gt;46&lt;BR /&gt;47&lt;BR /&gt;48 QUIT; RUN;&lt;BR /&gt;49</description>
      <pubDate>Tue, 15 Jun 2021 09:46:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748076#M29508</guid>
      <dc:creator>VALLY</dc:creator>
      <dc:date>2021-06-15T09:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: create a previous month field using a current date field.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748082#M29509</link>
      <description>&lt;P&gt;Is it really so hard to read my posts?&lt;/P&gt;
&lt;P&gt;Quote:&lt;/P&gt;
&lt;P&gt;So please post the log from your step by copy/pasting the &lt;FONT color="#FF0000"&gt;whole&lt;/FONT&gt; text (&lt;FONT color="#FF0000"&gt;code&lt;/FONT&gt; and messages) into a box opened with this button:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first message points to log line 30, which I need to see to point out where your mistake is; and since there might be other important things, it is always imperative to post the whole log from a step.&lt;/P&gt;
&lt;P&gt;And do not skip using a code box for the log, as the positioning of markers within the log is crucial, and the main posting window destroys that. Use the button indicated in the picture (maxi-sized hint: do not respond to posts directly from a mail, go to communities.sas.com in your browser &lt;EM&gt;on your computer&lt;/EM&gt; (not a mobile device) and navigate to the thread there, and use the "Reply" button; the interface from the mail and the mobile interface do not offer all the necessary options.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 10:18:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748082#M29509</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-15T10:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: create a previous month field using a current date field.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748084#M29510</link>
      <description>&lt;P&gt;&lt;BR /&gt;1 ;*';*";*/;quit;run;&lt;BR /&gt;2 OPTIONS PAGENO=MIN;&lt;BR /&gt;3 %LET _CLIENTTASKLABEL='Program';&lt;BR /&gt;4 %LET _CLIENTPROCESSFLOWNAME='Process Flow';&lt;BR /&gt;5 %LET _CLIENTPROJECTPATH='';&lt;BR /&gt;6 %LET _CLIENTPROJECTPATHHOST='';&lt;BR /&gt;7 %LET _CLIENTPROJECTNAME='';&lt;BR /&gt;8 %LET _SASPROGRAMFILE='';&lt;BR /&gt;9 %LET _SASPROGRAMFILEHOST='';&lt;BR /&gt;10&lt;BR /&gt;11 ODS _ALL_ CLOSE;&lt;BR /&gt;12 OPTIONS DEV=PNG;&lt;BR /&gt;13 GOPTIONS XPIXELS=0 YPIXELS=0;&lt;BR /&gt;14 FILENAME EGSR TEMP;&lt;BR /&gt;15 ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR&lt;BR /&gt;16 STYLE=HtmlBlue&lt;BR /&gt;17 STYLESHEET=(URL="file:///C:/Program%20Files/SASHome/SASEnterpriseGuide/7.1/Styles/HtmlBlue.css")&lt;BR /&gt;18 NOGTITLE&lt;BR /&gt;19 NOGFOOTNOTE&lt;BR /&gt;20 GPATH=&amp;amp;sasworklocation&lt;BR /&gt;21 ENCODING=UTF8&lt;BR /&gt;22 options(rolap="on")&lt;BR /&gt;23 ;&lt;BR /&gt;NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR&lt;BR /&gt;24&lt;BR /&gt;25 GOPTIONS ACCESSIBLE;&lt;BR /&gt;26 DATA VIEW;&lt;BR /&gt;27 FORMAT LASTMONTH YYMMDD8.;&lt;BR /&gt;28 SET BRAC.FINAL_BRACC_ALL (OBS=10);&lt;BR /&gt;29 LASTMONTH =&lt;BR /&gt;30 INTNX ( 'MONTH', 'today()',INPUT(PUT(DLA,8.),YYMMDD8.),-1, 'E');&lt;BR /&gt;31&lt;BR /&gt;32 ;&lt;BR /&gt;33 RUN;&lt;/P&gt;&lt;P&gt;NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).&lt;BR /&gt;30:19&lt;BR /&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;BR /&gt;30:57&lt;BR /&gt;NOTE: Invalid numeric data, 'today()' , at line 30 column 19.&lt;BR /&gt;LASTMONTH=. AccNrSer=19000 NEW_ACC=19 AccountsForThisBP=1 MultipleSerials= MultipleSerials_ForOpened= MultipleSerials_ForClosed=&lt;BR /&gt;AE_NO=0044162 BA_NAME=CANYON SPRINGS INVES BOL=Using BOL BOL_BP=BP using BOL BP_ID=502771114 BPKND=ZRET BPCAT=2 - Enterprize&lt;BR /&gt;CashMan=Not using CashMan CashMan_BP=BP Not using CashMan CARR=Not using CARR CARR_BP=BP Not using CARR CDI=Not using CDI&lt;BR /&gt;CDI_BP=BP Not using CDI COYY=Not using COYY COYY_BP=BP Not using COYY CENTRE=14255 DATE_CLOSED=9999-01-01 DATE_OPENED=2008-01-10&lt;BR /&gt;DLA=20210610 DORM= DORM_DESC= DormCodeDescr= E3=Not using E3 E3_BP=BP Not using E3 GROUP_NO=0 BOOK_BAL=314397.87 IBTNO=02-05&lt;BR /&gt;IDNUMBER=2007/034034/07 ID_TYPE=ZFS003 KYC=Y MISC1=1 MKT_SEG=552 BP_MKT_SEG=552&lt;BR /&gt;BP_MKT_SEG_DESC=BUSINESS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Business_Area=Business Banking Portfolio=CIB&lt;BR /&gt;LEGAL_NAME=CANYON SPRINGS INVESTMENTS 146 (PTY) LTD LEGAL_ENTITY=07 LEGAL_ENTITY_DESC=Private Company&lt;BR /&gt;MultipleAccountsPerBP=Only 1 acc for this BP NegotiatedPricingAcc=Acc not using Neg Pricing&lt;BR /&gt;NegotiatedPricingBP=BP Not using Neg Pricing NP_Cheque_Serve_Min_Serv_Fee=Not using Cheque Serve Fee and Minimum Service F&lt;BR /&gt;NP_Cash_Deposit_Fee=Not using Cash Deposit Fee NP_Monthly_Management_Fee_Ind=Not using Monthly Management Fee&lt;BR /&gt;NP_Cheque_Deposit_Encash_Ind=Not using Cheque Deposit and Cheque Encashment NP_Dishonour_Fee_Ind=Not using Dishonour Fee&lt;BR /&gt;NP_Automatic_Clear_Facility_Ind=Not using Automatic Clearing Facility NP_Nominated_Fee_Acc_Ind=Not using Nominated Fee Accounts&lt;BR /&gt;NP_Overdraft_Service_Fee_Ind=Not using Overdraft Service Fee NP_Initiation_Fee_Ind=Not using Initiation Fee&lt;BR /&gt;NP_Unutilised_Facility_Fee_Ind=Not using Unutilised Facility Fee NP_Honour_Fee_Ind=Not using Honour Fee&lt;BR /&gt;NP_Statement_Fee_Ind=Not using Statement Enquiry Fee NP_Stop_Payment_Fee_Ind=Not using Stop Payment Fee&lt;BR /&gt;TestingAndTrainingBranch=Not a Testing and Training account OpenOrClosed=Open UsingNomination=Not Use Nomination&lt;BR /&gt;PRODUCT=LEGACY BUSINESS CURRENT ACCOUNT PRODUCT_CODE=0161 ProdCodeDescr=0161 - LEGACY BUSINESS CURRENT ACCOUNT RB_CODE=84209&lt;BR /&gt;2 The SAS System 10:47 Tuesday, June 15, 2021&lt;/P&gt;&lt;P&gt;NEW_SERIAL=0 STATUS=UK STYLE=ORD STYLE_DESC=CURRENT ACCOUNT StyleCodeDescr=ORD - CURRENT ACCOUNT TPFA=Not using TPFA&lt;BR /&gt;TPFA_BP=BP Not using TPFA ACCOUNT_TYPE=Cheque Account ACNT_DESCRIPTION=CURRENT ACCOUNTS M_TYPE=0 TypeDesc=Transactional&lt;BR /&gt;RSKGP_N=42140 E3_RISK_GROUPS=Managed M_OD_INSURANCE=N PLPP_Description=Closed Account PLPPDescr=N - Closed Account&lt;BR /&gt;Suite_Description=BA02 - FRE CSA_OVERDRAFT_LIMIT=0 OD_1ST_RATE=17.7 OD_1ST_LIMIT=0 OD_2ND_RATE=0 OD_2ND_LIMIT=0 OD_3RD_RATE=0&lt;BR /&gt;OD_3RD_DECIMALS=0 PLEDGE_IND=Account does not have Pledge LAST_ACTIVE_BUCKET=1 week DATE_LAST_ACTIVE=2021-06-10 MATURITY_DATE=&lt;BR /&gt;MATURITY_DATE_YEAR_MONTH= FUNDS_UNDER_NOTICE= AB_EXTERNAL_FUNDING= DATETIME_OPENED=2008/01/10 00:00:00&lt;BR /&gt;BP_SYST_IND=BP is only BRACC CAPITAL_DISPOSAL= CAPITAL_DISPOSAL_BP_FLAG= INTEREST_DISPOSAL= INTEREST_DISPOSAL_BP_FLAG=&lt;BR /&gt;DISPOSAL_INSTRUCTION= _ERROR_=1 _N_=1&lt;BR /&gt;NOTE: Invalid numeric data, 'today()' , at line 30 column 19.&lt;BR /&gt;LASTMONTH=. AccNrSer=86000 NEW_ACC=86 AccountsForThisBP=1 MultipleSerials= MultipleSerials_ForOpened= MultipleSerials_ForClosed=&lt;BR /&gt;AE_NO= BA_NAME=NATIONAL SPRING RETI BOL=Using BOL BOL_BP=BP using BOL BP_ID=451579695 BPKND=ZCIB BPCAT=2 - Enterprize&lt;BR /&gt;CashMan=Using CashMan CashMan_BP=BP using CashMan CARR=Not using CARR CARR_BP=BP Not using CARR CDI=Not using CDI&lt;BR /&gt;CDI_BP=BP Not using CDI COYY=Not using COYY COYY_BP=BP Not using COYY CENTRE=144 DATE_CLOSED=9999-01-01 DATE_OPENED=1980-01-01&lt;BR /&gt;DLA=20210526 DORM= DORM_DESC= DormCodeDescr= E3=Not using E3 E3_BP=BP Not using E3 GROUP_NO=0 BOOK_BAL=25026474.72 IBTNO=02-05&lt;BR /&gt;IDNUMBER= ID_TYPE= KYC=Y MISC1=1 MKT_SEG=704 BP_MKT_SEG=704 BP_MKT_SEG_DESC=CORPORATE PARASTATAL&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Business_Area=CIB Portfolio=CIB LEGAL_NAME=NATIONAL SPRING RETIR BEN FUND LEGAL_ENTITY=YO LEGAL_ENTITY_DESC=Other&lt;BR /&gt;MultipleAccountsPerBP=Only 1 acc for this BP NegotiatedPricingAcc=Acc using Neg Pricing NegotiatedPricingBP=BP using Neg Pricing&lt;BR /&gt;NP_Cheque_Serve_Min_Serv_Fee=Negotiated Pricing - Cheque Serve Fee and Minimum Service F&lt;BR /&gt;NP_Cash_Deposit_Fee=Negotiated Pricing - Cash Deposit Fee NP_Monthly_Management_Fee_Ind=Negotiated Pricing - Monthly Management Fee&lt;BR /&gt;NP_Cheque_Deposit_Encash_Ind=Negotiated Pricing - Cheque Deposit and Cheque Encashment NP_Dishonour_Fee_Ind=Not using Dishonour Fee&lt;BR /&gt;NP_Automatic_Clear_Facility_Ind=Not using Automatic Clearing Facility NP_Nominated_Fee_Acc_Ind=Not using Nominated Fee Accounts&lt;BR /&gt;NP_Overdraft_Service_Fee_Ind=Not using Overdraft Service Fee NP_Initiation_Fee_Ind=Not using Initiation Fee&lt;BR /&gt;NP_Unutilised_Facility_Fee_Ind=Not using Unutilised Facility Fee NP_Honour_Fee_Ind=Not using Honour Fee&lt;BR /&gt;NP_Statement_Fee_Ind=Not using Statement Enquiry Fee NP_Stop_Payment_Fee_Ind=Not using Stop Payment Fee&lt;BR /&gt;TestingAndTrainingBranch=Not a Testing and Training account OpenOrClosed=Open UsingNomination=Not Use Nomination&lt;BR /&gt;PRODUCT=LEGACY BUSINESS CURRENT ACCOUNT PRODUCT_CODE=0161 ProdCodeDescr=0161 - LEGACY BUSINESS CURRENT ACCOUNT RB_CODE=64231&lt;BR /&gt;NEW_SERIAL=0 STATUS=EF STYLE=ORD STYLE_DESC=CURRENT ACCOUNT StyleCodeDescr=ORD - CURRENT ACCOUNT TPFA=Not using TPFA&lt;BR /&gt;TPFA_BP=BP Not using TPFA ACCOUNT_TYPE=Cheque Account ACNT_DESCRIPTION=CURRENT ACCOUNTS M_TYPE=0 TypeDesc=Transactional RSKGP_N=.&lt;BR /&gt;E3_RISK_GROUPS=Not in a Risk Group M_OD_INSURANCE=N PLPP_Description=Closed Account PLPPDescr=N - Closed Account&lt;BR /&gt;Suite_Description=BA02 - FRE CSA_OVERDRAFT_LIMIT=0 OD_1ST_RATE=7 OD_1ST_LIMIT=0 OD_2ND_RATE=0 OD_2ND_LIMIT=0 OD_3RD_RATE=0&lt;BR /&gt;OD_3RD_DECIMALS=0 PLEDGE_IND=Account does not have Pledge LAST_ACTIVE_BUCKET=2-3 weeks DATE_LAST_ACTIVE=2021-05-26 MATURITY_DATE=&lt;BR /&gt;MATURITY_DATE_YEAR_MONTH= FUNDS_UNDER_NOTICE= AB_EXTERNAL_FUNDING= DATETIME_OPENED=1980/01/01 00:00:00&lt;BR /&gt;BP_SYST_IND=BP is only BRACC CAPITAL_DISPOSAL= CAPITAL_DISPOSAL_BP_FLAG= INTEREST_DISPOSAL= INTEREST_DISPOSAL_BP_FLAG=&lt;BR /&gt;DISPOSAL_INSTRUCTION= _ERROR_=1 _N_=2&lt;BR /&gt;NOTE: Invalid numeric data, 'today()' , at line 30 column 19.&lt;BR /&gt;LASTMONTH=. AccNrSer=116000 NEW_ACC=116 AccountsForThisBP=1 MultipleSerials= MultipleSerials_ForOpened=&lt;BR /&gt;MultipleSerials_ForClosed= AE_NO=0044108 BA_NAME=NO 39 SPRINGWOOD CLO BOL=Not using BOL BOL_BP=BP Not using BOL BP_ID=531295479&lt;BR /&gt;BPKND=ZRET BPCAT=2 - Enterprize CashMan=Not using CashMan CashMan_BP=BP Not using CashMan CARR=Not using CARR&lt;BR /&gt;CARR_BP=BP Not using CARR CDI=Not using CDI CDI_BP=BP Not using CDI COYY=Not using COYY COYY_BP=BP Not using COYY CENTRE=16286&lt;BR /&gt;DATE_CLOSED=9999-01-01 DATE_OPENED=2016-02-22 DLA=20210601 DORM= DORM_DESC= DormCodeDescr= E3=Not using E3 E3_BP=BP Not using E3&lt;BR /&gt;GROUP_NO=0 BOOK_BAL=16775.72 IBTNO=02-05 IDNUMBER=1998/071282/23 ID_TYPE=ZFS003 KYC=Y MISC1=0 MKT_SEG=552 BP_MKT_SEG=552&lt;BR /&gt;BP_MKT_SEG_DESC=BUSINESS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Business_Area=Business Banking Portfolio=CIB&lt;BR /&gt;LEGAL_NAME=NO 39 SPRINGWOOD CLOSE CORPORATION LEGAL_ENTITY=01 LEGAL_ENTITY_DESC=CC (Close Corporation)&lt;BR /&gt;MultipleAccountsPerBP=Only 1 acc for this BP NegotiatedPricingAcc=Acc not using Neg Pricing&lt;BR /&gt;NegotiatedPricingBP=BP Not using Neg Pricing NP_Cheque_Serve_Min_Serv_Fee=Not using Cheque Serve Fee and Minimum Service F&lt;BR /&gt;NP_Cash_Deposit_Fee=Not using Cash Deposit Fee NP_Monthly_Management_Fee_Ind=Not using Monthly Management Fee&lt;BR /&gt;NP_Cheque_Deposit_Encash_Ind=Not using Cheque Deposit and Cheque Encashment NP_Dishonour_Fee_Ind=Not using Dishonour Fee&lt;BR /&gt;NP_Automatic_Clear_Facility_Ind=Not using Automatic Clearing Facility NP_Nominated_Fee_Acc_Ind=Not using Nominated Fee Accounts&lt;BR /&gt;NP_Overdraft_Service_Fee_Ind=Not using Overdraft Service Fee NP_Initiation_Fee_Ind=Not using Initiation Fee&lt;BR /&gt;NP_Unutilised_Facility_Fee_Ind=Not using Unutilised Facility Fee NP_Honour_Fee_Ind=Not using Honour Fee&lt;BR /&gt;NP_Statement_Fee_Ind=Not using Statement Enquiry Fee NP_Stop_Payment_Fee_Ind=Not using Stop Payment Fee&lt;BR /&gt;TestingAndTrainingBranch=Not a Testing and Training account OpenOrClosed=Open UsingNomination=Not Use Nomination&lt;BR /&gt;PRODUCT=LEGACY BUSINESS CURRENT ACCOUNT PRODUCT_CODE=0161 ProdCodeDescr=0161 - LEGACY BUSINESS CURRENT ACCOUNT RB_CODE=84209&lt;BR /&gt;NEW_SERIAL=0 STATUS=UK STYLE=ORD STYLE_DESC=CURRENT ACCOUNT StyleCodeDescr=ORD - CURRENT ACCOUNT TPFA=Not using TPFA&lt;BR /&gt;TPFA_BP=BP Not using TPFA ACCOUNT_TYPE=Cheque Account ACNT_DESCRIPTION=CURRENT ACCOUNTS M_TYPE=0 TypeDesc=Transactional&lt;BR /&gt;RSKGP_N=29753 E3_RISK_GROUPS=Managed M_OD_INSURANCE=N PLPP_Description=Closed Account PLPPDescr=N - Closed Account&lt;BR /&gt;Suite_Description=BA02 - FRE CSA_OVERDRAFT_LIMIT=0 OD_1ST_RATE=17.7 OD_1ST_LIMIT=0 OD_2ND_RATE=0 OD_2ND_LIMIT=0 OD_3RD_RATE=0&lt;BR /&gt;OD_3RD_DECIMALS=0 PLEDGE_IND=Account does not have Pledge LAST_ACTIVE_BUCKET=1-2 weeks DATE_LAST_ACTIVE=2021-06-01 MATURITY_DATE=&lt;BR /&gt;3 The SAS System 10:47 Tuesday, June 15, 2021&lt;/P&gt;&lt;P&gt;MATURITY_DATE_YEAR_MONTH= FUNDS_UNDER_NOTICE= AB_EXTERNAL_FUNDING= DATETIME_OPENED=2016/02/22 00:00:00&lt;BR /&gt;BP_SYST_IND=BP is only BRACC CAPITAL_DISPOSAL= CAPITAL_DISPOSAL_BP_FLAG= INTEREST_DISPOSAL= INTEREST_DISPOSAL_BP_FLAG=&lt;BR /&gt;DISPOSAL_INSTRUCTION= _ERROR_=1 _N_=3&lt;BR /&gt;NOTE: Invalid numeric data, 'today()' , at line 30 column 19.&lt;BR /&gt;LASTMONTH=. AccNrSer=124000 NEW_ACC=124 AccountsForThisBP=1 MultipleSerials= MultipleSerials_ForOpened=&lt;BR /&gt;MultipleSerials_ForClosed= AE_NO=0073M66 BA_NAME=THE VALKEN FAMILY TR BOL=Not using BOL BOL_BP=BP Not using BOL BP_ID=24191849&lt;BR /&gt;BPKND=ZRET BPCAT=2 - Enterprize CashMan=Not using CashMan CashMan_BP=BP Not using CashMan CARR=Not using CARR&lt;BR /&gt;CARR_BP=BP Not using CARR CDI=Not using CDI CDI_BP=BP Not using CDI COYY=Not using COYY COYY_BP=BP Not using COYY CENTRE=19119&lt;BR /&gt;DATE_CLOSED=9999-01-01 DATE_OPENED=1974-09-14 DLA=20210108 DORM= DORM_DESC= DormCodeDescr= E3=Not using E3 E3_BP=BP Not using E3&lt;BR /&gt;GROUP_NO=0 BOOK_BAL=48613.45 IBTNO=02-05 IDNUMBER=IT1301/86 ID_TYPE=ZFS003 KYC=Y MISC1=1 MKT_SEG=400 BP_MKT_SEG=400&lt;BR /&gt;BP_MKT_SEG_DESC=LIFESTYLE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Business_Area=Small enterprise Portfolio=CIB&lt;BR /&gt;LEGAL_NAME=THE VALKEN FAMILY TRUST LEGAL_ENTITY=ZO LEGAL_ENTITY_DESC=Living Inter Vivos Trust&lt;BR /&gt;MultipleAccountsPerBP=Only 1 acc for this BP NegotiatedPricingAcc=Acc not using Neg Pricing&lt;BR /&gt;NegotiatedPricingBP=BP Not using Neg Pricing NP_Cheque_Serve_Min_Serv_Fee=Not using Cheque Serve Fee and Minimum Service F&lt;BR /&gt;NP_Cash_Deposit_Fee=Not using Cash Deposit Fee NP_Monthly_Management_Fee_Ind=Not using Monthly Management Fee&lt;BR /&gt;NP_Cheque_Deposit_Encash_Ind=Not using Cheque Deposit and Cheque Encashment NP_Dishonour_Fee_Ind=Not using Dishonour Fee&lt;BR /&gt;NP_Automatic_Clear_Facility_Ind=Not using Automatic Clearing Facility NP_Nominated_Fee_Acc_Ind=Not using Nominated Fee Accounts&lt;BR /&gt;NP_Overdraft_Service_Fee_Ind=Not using Overdraft Service Fee NP_Initiation_Fee_Ind=Not using Initiation Fee&lt;BR /&gt;NP_Unutilised_Facility_Fee_Ind=Not using Unutilised Facility Fee NP_Honour_Fee_Ind=Not using Honour Fee&lt;BR /&gt;NP_Statement_Fee_Ind=Not using Statement Enquiry Fee NP_Stop_Payment_Fee_Ind=Not using Stop Payment Fee&lt;BR /&gt;TestingAndTrainingBranch=Not a Testing and Training account OpenOrClosed=Open UsingNomination=Not Use Nomination&lt;BR /&gt;PRODUCT=LEGACY BUSINESS CURRENT ACCOUNT PRODUCT_CODE=0161 ProdCodeDescr=0161 - LEGACY BUSINESS CURRENT ACCOUNT RB_CODE=74323&lt;BR /&gt;NEW_SERIAL=0 STATUS=U STYLE=ORD STYLE_DESC=CURRENT ACCOUNT StyleCodeDescr=ORD - CURRENT ACCOUNT TPFA=Not using TPFA&lt;BR /&gt;TPFA_BP=BP Not using TPFA ACCOUNT_TYPE=Cheque Account ACNT_DESCRIPTION=CURRENT ACCOUNTS M_TYPE=0 TypeDesc=Transactional RSKGP_N=.&lt;BR /&gt;E3_RISK_GROUPS=Not in a Risk Group M_OD_INSURANCE=N PLPP_Description=Closed Account PLPPDescr=N - Closed Account&lt;BR /&gt;Suite_Description=BA02 - FRE CSA_OVERDRAFT_LIMIT=0 OD_1ST_RATE=15 OD_1ST_LIMIT=0 OD_2ND_RATE=0 OD_2ND_LIMIT=0 OD_3RD_RATE=0&lt;BR /&gt;OD_3RD_DECIMALS=0 PLEDGE_IND=Account does not have Pledge LAST_ACTIVE_BUCKET=Greater than 12 weeks DATE_LAST_ACTIVE=2021-01-08&lt;BR /&gt;MATURITY_DATE= MATURITY_DATE_YEAR_MONTH= FUNDS_UNDER_NOTICE= AB_EXTERNAL_FUNDING= DATETIME_OPENED=1974/09/14 00:00:00&lt;BR /&gt;BP_SYST_IND=BP is only BRACC CAPITAL_DISPOSAL= CAPITAL_DISPOSAL_BP_FLAG= INTEREST_DISPOSAL= INTEREST_DISPOSAL_BP_FLAG=&lt;BR /&gt;DISPOSAL_INSTRUCTION= _ERROR_=1 _N_=4&lt;BR /&gt;NOTE: Invalid numeric data, 'today()' , at line 30 column 19.&lt;BR /&gt;LASTMONTH=. AccNrSer=132000 NEW_ACC=132 AccountsForThisBP=1 MultipleSerials= MultipleSerials_ForOpened=&lt;BR /&gt;MultipleSerials_ForClosed= AE_NO= BA_NAME=ELECTRO SERVICE RB S BOL=Not using BOL BOL_BP=BP Not using BOL BP_ID=531268671&lt;BR /&gt;BPKND=ZRET BPCAT=2 - Enterprize CashMan=Not using CashMan CashMan_BP=BP Not using CashMan CARR=Not using CARR&lt;BR /&gt;CARR_BP=BP Not using CARR CDI=Not using CDI CDI_BP=BP Not using CDI COYY=Not using COYY COYY_BP=BP Not using COYY CENTRE=13788&lt;BR /&gt;DATE_CLOSED=9999-01-01 DATE_OPENED=2016-02-19 DLA=20210609 DORM= DORM_DESC= DormCodeDescr= E3=Not using E3 E3_BP=BP Not using E3&lt;BR /&gt;GROUP_NO=0 BOOK_BAL=2258.79 IBTNO=02-05 IDNUMBER=J40/27177 ID_TYPE=ZFS003 KYC=Y MISC1=1 MKT_SEG=400 BP_MKT_SEG=400&lt;BR /&gt;BP_MKT_SEG_DESC=LIFESTYLE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Business_Area=Small enterprise Portfolio=CIB&lt;BR /&gt;LEGAL_NAME=ELECTRO SERVICE RB SRL LEGAL_ENTITY=YO LEGAL_ENTITY_DESC=Other MultipleAccountsPerBP=Only 1 acc for this BP&lt;BR /&gt;NegotiatedPricingAcc=Acc not using Neg Pricing NegotiatedPricingBP=BP Not using Neg Pricing&lt;BR /&gt;NP_Cheque_Serve_Min_Serv_Fee=Not using Cheque Serve Fee and Minimum Service F NP_Cash_Deposit_Fee=Not using Cash Deposit Fee&lt;BR /&gt;NP_Monthly_Management_Fee_Ind=Not using Monthly Management Fee&lt;BR /&gt;NP_Cheque_Deposit_Encash_Ind=Not using Cheque Deposit and Cheque Encashment NP_Dishonour_Fee_Ind=Not using Dishonour Fee&lt;BR /&gt;NP_Automatic_Clear_Facility_Ind=Not using Automatic Clearing Facility NP_Nominated_Fee_Acc_Ind=Not using Nominated Fee Accounts&lt;BR /&gt;NP_Overdraft_Service_Fee_Ind=Not using Overdraft Service Fee NP_Initiation_Fee_Ind=Not using Initiation Fee&lt;BR /&gt;NP_Unutilised_Facility_Fee_Ind=Not using Unutilised Facility Fee NP_Honour_Fee_Ind=Not using Honour Fee&lt;BR /&gt;NP_Statement_Fee_Ind=Not using Statement Enquiry Fee NP_Stop_Payment_Fee_Ind=Not using Stop Payment Fee&lt;BR /&gt;TestingAndTrainingBranch=Not a Testing and Training account OpenOrClosed=Open UsingNomination=Not Use Nomination&lt;BR /&gt;PRODUCT=LEGACY BUSINESS CURRENT ACCOUNT PRODUCT_CODE=0161 ProdCodeDescr=0161 - LEGACY BUSINESS CURRENT ACCOUNT RB_CODE=929&lt;BR /&gt;NEW_SERIAL=0 STATUS=UN STYLE=ORD STYLE_DESC=CURRENT ACCOUNT StyleCodeDescr=ORD - CURRENT ACCOUNT TPFA=Not using TPFA&lt;BR /&gt;TPFA_BP=BP Not using TPFA ACCOUNT_TYPE=Cheque Account ACNT_DESCRIPTION=CURRENT ACCOUNTS M_TYPE=0 TypeDesc=Transactional RSKGP_N=.&lt;BR /&gt;E3_RISK_GROUPS=Not in a Risk Group M_OD_INSURANCE=N PLPP_Description=Closed Account PLPPDescr=N - Closed Account&lt;BR /&gt;Suite_Description=BA02 - FRE CSA_OVERDRAFT_LIMIT=0 OD_1ST_RATE=17.7 OD_1ST_LIMIT=0 OD_2ND_RATE=0 OD_2ND_LIMIT=0 OD_3RD_RATE=0&lt;BR /&gt;OD_3RD_DECIMALS=0 PLEDGE_IND=Account does not have Pledge LAST_ACTIVE_BUCKET=1 week DATE_LAST_ACTIVE=2021-06-09 MATURITY_DATE=&lt;BR /&gt;MATURITY_DATE_YEAR_MONTH= FUNDS_UNDER_NOTICE= AB_EXTERNAL_FUNDING= DATETIME_OPENED=2016/02/19 00:00:00&lt;BR /&gt;BP_SYST_IND=BP is only BRACC CAPITAL_DISPOSAL= CAPITAL_DISPOSAL_BP_FLAG= INTEREST_DISPOSAL= INTEREST_DISPOSAL_BP_FLAG=&lt;BR /&gt;DISPOSAL_INSTRUCTION= _ERROR_=1 _N_=5&lt;BR /&gt;NOTE: Invalid numeric data, 'today()' , at line 30 column 19.&lt;BR /&gt;4 The SAS System 10:47 Tuesday, June 15, 2021&lt;/P&gt;&lt;P&gt;LASTMONTH=. AccNrSer=140000 NEW_ACC=140 AccountsForThisBP=1 MultipleSerials= MultipleSerials_ForOpened=&lt;BR /&gt;MultipleSerials_ForClosed= AE_NO=0072C39 BA_NAME=DITSHEGO AR BOL=Not using BOL BOL_BP=BP Not using BOL BP_ID=452360497 BPKND=ZRET&lt;BR /&gt;BPCAT=1 - Individual CashMan=Not using CashMan CashMan_BP=BP Not using CashMan CARR=Not using CARR CARR_BP=BP Not using CARR&lt;BR /&gt;CDI=Not using CDI CDI_BP=BP Not using CDI COYY=Not using COYY COYY_BP=BP Not using COYY CENTRE=13435 DATE_CLOSED=9999-01-01&lt;BR /&gt;DATE_OPENED=2016-02-19 DLA=20210524 DORM= DORM_DESC= DormCodeDescr= E3=Not using E3 E3_BP=BP Not using E3 GROUP_NO=0&lt;BR /&gt;BOOK_BAL=-120623.5 IBTNO=02-05 IDNUMBER=7304205618084 ID_TYPE=ZFS001 KYC=Y MISC1=1 MKT_SEG=136 BP_MKT_SEG=136&lt;BR /&gt;BP_MKT_SEG_DESC=PRESTIGE BANKING&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Business_Area=Personal Portfolio=Prestige LEGAL_NAME= LEGAL_ENTITY=&lt;BR /&gt;LEGAL_ENTITY_DESC= MultipleAccountsPerBP=Only 1 acc for this BP NegotiatedPricingAcc=Acc not using Neg Pricing&lt;BR /&gt;NegotiatedPricingBP=BP Not using Neg Pricing NP_Cheque_Serve_Min_Serv_Fee=Not using Cheque Serve Fee and Minimum Service F&lt;BR /&gt;NP_Cash_Deposit_Fee=Not using Cash Deposit Fee NP_Monthly_Management_Fee_Ind=Not using Monthly Management Fee&lt;BR /&gt;NP_Cheque_Deposit_Encash_Ind=Not using Cheque Deposit and Cheque Encashment NP_Dishonour_Fee_Ind=Not using Dishonour Fee&lt;BR /&gt;NP_Automatic_Clear_Facility_Ind=Not using Automatic Clearing Facility NP_Nominated_Fee_Acc_Ind=Not using Nominated Fee Accounts&lt;BR /&gt;NP_Overdraft_Service_Fee_Ind=Not using Overdraft Service Fee NP_Initiation_Fee_Ind=Not using Initiation Fee&lt;BR /&gt;NP_Unutilised_Facility_Fee_Ind=Not using Unutilised Facility Fee NP_Honour_Fee_Ind=Not using Honour Fee&lt;BR /&gt;NP_Statement_Fee_Ind=Not using Statement Enquiry Fee NP_Stop_Payment_Fee_Ind=Not using Stop Payment Fee&lt;BR /&gt;TestingAndTrainingBranch=Not a Testing and Training account OpenOrClosed=Open UsingNomination=Not Use Nomination&lt;BR /&gt;PRODUCT=REVOLVING CREDIT PLAN LOAN PRODUCT_CODE=0008 ProdCodeDescr=0008 - REVOLVING CREDIT PLAN LOAN RB_CODE=110 NEW_SERIAL=0&lt;BR /&gt;STATUS=SUK STYLE=RCA STYLE_DESC=REVOLVING CREDIT PLAN StyleCodeDescr=RCA - REVOLVING CREDIT PLAN TPFA=Not using TPFA&lt;BR /&gt;TPFA_BP=BP Not using TPFA ACCOUNT_TYPE=Lending ACNT_DESCRIPTION=CURRENT ACCOUNTS M_TYPE=0 TypeDesc=Lending RSKGP_N=.&lt;BR /&gt;E3_RISK_GROUPS=Not in a Risk Group M_OD_INSURANCE=D PLPP_Description=Death,Disability,Dread Disease and Retrenchment&lt;BR /&gt;PLPPDescr=D - Death,Disability,Dread Disease and Retrenchment Suite_Description=BA02 - FRE CSA_OVERDRAFT_LIMIT=-130000&lt;BR /&gt;OD_1ST_RATE=12.77 OD_1ST_LIMIT=0 OD_2ND_RATE=0 OD_2ND_LIMIT=0 OD_3RD_RATE=0 OD_3RD_DECIMALS=0&lt;BR /&gt;PLEDGE_IND=Account does not have Pledge LAST_ACTIVE_BUCKET=3-4 weeks DATE_LAST_ACTIVE=2021-05-24 MATURITY_DATE=&lt;BR /&gt;MATURITY_DATE_YEAR_MONTH= FUNDS_UNDER_NOTICE= AB_EXTERNAL_FUNDING= DATETIME_OPENED=2016/02/19 00:00:00&lt;BR /&gt;BP_SYST_IND=BP has both SAP and BRACC CAPITAL_DISPOSAL= CAPITAL_DISPOSAL_BP_FLAG= INTEREST_DISPOSAL= INTEREST_DISPOSAL_BP_FLAG=&lt;BR /&gt;DISPOSAL_INSTRUCTION= _ERROR_=1 _N_=6&lt;BR /&gt;NOTE: Invalid numeric data, 'today()' , at line 30 column 19.&lt;BR /&gt;LASTMONTH=. AccNrSer=159000 NEW_ACC=159 AccountsForThisBP=3 MultipleSerials= MultipleSerials_ForOpened=&lt;BR /&gt;MultipleSerials_ForClosed= AE_NO=0046320 BA_NAME=SIBEKO GS BOL=Using BOL BOL_BP=BP using BOL BP_ID=450756066 BPKND=ZRET&lt;BR /&gt;BPCAT=1 - Individual CashMan=Not using CashMan CashMan_BP=BP Not using CashMan CARR=Not using CARR CARR_BP=BP Not using CARR&lt;BR /&gt;CDI=Not using CDI CDI_BP=BP Not using CDI COYY=Not using COYY COYY_BP=BP Not using COYY CENTRE=13440 DATE_CLOSED=9999-01-01&lt;BR /&gt;DATE_OPENED=2002-03-13 DLA=20210603 DORM= DORM_DESC= DormCodeDescr= E3=Not using E3 E3_BP=BP Not using E3 GROUP_NO=0&lt;BR /&gt;BOOK_BAL=-126548.1 IBTNO=02-05 IDNUMBER=7907065310087 ID_TYPE=ZFS001 KYC=Y MISC1=1 MKT_SEG=140 BP_MKT_SEG=140&lt;BR /&gt;BP_MKT_SEG_DESC=PRIVATE BANKING&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Business_Area=Personal Portfolio=Private Banking LEGAL_NAME=&lt;BR /&gt;LEGAL_ENTITY= LEGAL_ENTITY_DESC= MultipleAccountsPerBP=Multiple Accs for this BP NegotiatedPricingAcc=Acc not using Neg Pricing&lt;BR /&gt;NegotiatedPricingBP=BP Not using Neg Pricing NP_Cheque_Serve_Min_Serv_Fee=Not using Cheque Serve Fee and Minimum Service F&lt;BR /&gt;NP_Cash_Deposit_Fee=Not using Cash Deposit Fee NP_Monthly_Management_Fee_Ind=Not using Monthly Management Fee&lt;BR /&gt;NP_Cheque_Deposit_Encash_Ind=Not using Cheque Deposit and Cheque Encashment NP_Dishonour_Fee_Ind=Not using Dishonour Fee&lt;BR /&gt;NP_Automatic_Clear_Facility_Ind=Not using Automatic Clearing Facility NP_Nominated_Fee_Acc_Ind=Not using Nominated Fee Accounts&lt;BR /&gt;NP_Overdraft_Service_Fee_Ind=Not using Overdraft Service Fee NP_Initiation_Fee_Ind=Not using Initiation Fee&lt;BR /&gt;NP_Unutilised_Facility_Fee_Ind=Not using Unutilised Facility Fee NP_Honour_Fee_Ind=Not using Honour Fee&lt;BR /&gt;NP_Statement_Fee_Ind=Not using Statement Enquiry Fee NP_Stop_Payment_Fee_Ind=Not using Stop Payment Fee&lt;BR /&gt;TestingAndTrainingBranch=Not a Testing and Training account OpenOrClosed=Open UsingNomination=Not Use Nomination&lt;BR /&gt;PRODUCT=PRIVATE BANKING PLUS CURRENT ACCOUNT PRODUCT_CODE=0644 ProdCodeDescr=0644 - PRIVATE BANKING PLUS CURRENT ACCOUNT RB_CODE=110&lt;BR /&gt;NEW_SERIAL=0 STATUS=UK STYLE=GLP STYLE_DESC=PRIVATE BANKING CURRENT ACCOUNT StyleCodeDescr=GLP - PRIVATE BANKING CURRENT ACCOUNT&lt;BR /&gt;TPFA=Not using TPFA TPFA_BP=BP Not using TPFA ACCOUNT_TYPE=Cheque Account ACNT_DESCRIPTION=CURRENT ACCOUNTS M_TYPE=0&lt;BR /&gt;TypeDesc=Transactional RSKGP_N=. E3_RISK_GROUPS=Not in a Risk Group M_OD_INSURANCE=A&lt;BR /&gt;PLPP_Description=Death,Disability,Dread Disease and Retrenchment PLPPDescr=A - Death,Disability,Dread Disease and Retrenchment&lt;BR /&gt;Suite_Description=BA02 - FRE CSA_OVERDRAFT_LIMIT=-126600 OD_1ST_RATE=8.5 OD_1ST_LIMIT=0 OD_2ND_RATE=0 OD_2ND_LIMIT=0 OD_3RD_RATE=0&lt;BR /&gt;OD_3RD_DECIMALS=0 PLEDGE_IND=Account does not have Pledge LAST_ACTIVE_BUCKET=1-2 weeks DATE_LAST_ACTIVE=2021-06-03 MATURITY_DATE=&lt;BR /&gt;MATURITY_DATE_YEAR_MONTH= FUNDS_UNDER_NOTICE= AB_EXTERNAL_FUNDING= DATETIME_OPENED=2002/03/13 00:00:00&lt;BR /&gt;BP_SYST_IND=BP has both SAP and BRACC CAPITAL_DISPOSAL= CAPITAL_DISPOSAL_BP_FLAG= INTEREST_DISPOSAL= INTEREST_DISPOSAL_BP_FLAG=&lt;BR /&gt;DISPOSAL_INSTRUCTION= _ERROR_=1 _N_=7&lt;BR /&gt;NOTE: Invalid numeric data, 'today()' , at line 30 column 19.&lt;BR /&gt;LASTMONTH=. AccNrSer=175000 NEW_ACC=175 AccountsForThisBP=2 MultipleSerials= MultipleSerials_ForOpened=&lt;BR /&gt;MultipleSerials_ForClosed= AE_NO=0046CW8 BA_NAME=WAJA J BOL=Not using BOL BOL_BP=BP Not using BOL BP_ID=451566318 BPKND=ZRET&lt;BR /&gt;BPCAT=1 - Individual CashMan=Not using CashMan CashMan_BP=BP Not using CashMan CARR=Not using CARR CARR_BP=BP Not using CARR&lt;BR /&gt;CDI=Not using CDI CDI_BP=BP Not using CDI COYY=Not using COYY COYY_BP=BP Not using COYY CENTRE=10878 DATE_CLOSED=9999-01-01&lt;BR /&gt;5 The SAS System 10:47 Tuesday, June 15, 2021&lt;/P&gt;&lt;P&gt;DATE_OPENED=1996-07-22 DLA=20210526 DORM= DORM_DESC= DormCodeDescr= E3=Not using E3 E3_BP=BP Not using E3 GROUP_NO=205780&lt;BR /&gt;BOOK_BAL=-60968.83 IBTNO=02-05 IDNUMBER=6410170030089 ID_TYPE=ZFS001 KYC=Y MISC1=1 MKT_SEG=988 BP_MKT_SEG=988&lt;BR /&gt;BP_MKT_SEG_DESC=STAFF ACCOUNTS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Business_Area=Staff Portfolio=Staff LEGAL_NAME= LEGAL_ENTITY=&lt;BR /&gt;LEGAL_ENTITY_DESC= MultipleAccountsPerBP=Multiple Accs for this BP NegotiatedPricingAcc=Acc not using Neg Pricing&lt;BR /&gt;NegotiatedPricingBP=BP Not using Neg Pricing NP_Cheque_Serve_Min_Serv_Fee=Not using Cheque Serve Fee and Minimum Service F&lt;BR /&gt;NP_Cash_Deposit_Fee=Not using Cash Deposit Fee NP_Monthly_Management_Fee_Ind=Not using Monthly Management Fee&lt;BR /&gt;NP_Cheque_Deposit_Encash_Ind=Not using Cheque Deposit and Cheque Encashment NP_Dishonour_Fee_Ind=Not using Dishonour Fee&lt;BR /&gt;NP_Automatic_Clear_Facility_Ind=Not using Automatic Clearing Facility NP_Nominated_Fee_Acc_Ind=Not using Nominated Fee Accounts&lt;BR /&gt;NP_Overdraft_Service_Fee_Ind=Not using Overdraft Service Fee NP_Initiation_Fee_Ind=Not using Initiation Fee&lt;BR /&gt;NP_Unutilised_Facility_Fee_Ind=Not using Unutilised Facility Fee NP_Honour_Fee_Ind=Not using Honour Fee&lt;BR /&gt;NP_Statement_Fee_Ind=Not using Statement Enquiry Fee NP_Stop_Payment_Fee_Ind=Not using Stop Payment Fee&lt;BR /&gt;TestingAndTrainingBranch=Not a Testing and Training account OpenOrClosed=Open UsingNomination=Not Use Nomination&lt;BR /&gt;PRODUCT=STAFF REVOLVING CREDIT (RCC) PLAN LOAN PRODUCT_CODE=0235 ProdCodeDescr=0235 - STAFF REVOLVING CREDIT (RCC) PLAN LOAN&lt;BR /&gt;RB_CODE=110 NEW_SERIAL=0 STATUS=SUVK STYLE=RCC STYLE_DESC=STAFF REVOLVING CREDIT PLAN&lt;BR /&gt;StyleCodeDescr=RCC - STAFF REVOLVING CREDIT PLAN TPFA=Not using TPFA TPFA_BP=BP Not using TPFA ACCOUNT_TYPE=Lending&lt;BR /&gt;ACNT_DESCRIPTION=CURRENT ACCOUNTS M_TYPE=0 TypeDesc=Lending RSKGP_N=. E3_RISK_GROUPS=Not in a Risk Group M_OD_INSURANCE=A&lt;BR /&gt;PLPP_Description=Death,Disability,Dread Disease and Retrenchment PLPPDescr=A - Death,Disability,Dread Disease and Retrenchment&lt;BR /&gt;Suite_Description=BA02 - FRE CSA_OVERDRAFT_LIMIT=-87500 OD_1ST_RATE=4.5 OD_1ST_LIMIT=0 OD_2ND_RATE=0 OD_2ND_LIMIT=0 OD_3RD_RATE=0&lt;BR /&gt;OD_3RD_DECIMALS=0 PLEDGE_IND=Account does not have Pledge LAST_ACTIVE_BUCKET=2-3 weeks DATE_LAST_ACTIVE=2021-05-26 MATURITY_DATE=&lt;BR /&gt;MATURITY_DATE_YEAR_MONTH= FUNDS_UNDER_NOTICE= AB_EXTERNAL_FUNDING= DATETIME_OPENED=1996/07/22 00:00:00&lt;BR /&gt;BP_SYST_IND=BP has both SAP and BRACC CAPITAL_DISPOSAL= CAPITAL_DISPOSAL_BP_FLAG= INTEREST_DISPOSAL= INTEREST_DISPOSAL_BP_FLAG=&lt;BR /&gt;DISPOSAL_INSTRUCTION= _ERROR_=1 _N_=8&lt;BR /&gt;NOTE: Invalid numeric data, 'today()' , at line 30 column 19.&lt;BR /&gt;LASTMONTH=. AccNrSer=256000 NEW_ACC=256 AccountsForThisBP=1 MultipleSerials= MultipleSerials_ForOpened=&lt;BR /&gt;MultipleSerials_ForClosed= AE_NO= BA_NAME=AF COLL S4 (5) A28 C BOL=Using BOL BOL_BP=BP using BOL BP_ID=31207508 BPKND=ZCIB&lt;BR /&gt;BPCAT=2 - Enterprize CashMan=Using CashMan CashMan_BP=BP using CashMan CARR=Not using CARR CARR_BP=BP Not using CARR&lt;BR /&gt;CDI=Not using CDI CDI_BP=BP Not using CDI COYY=Using COYY COYY_BP=BP using COYY CENTRE=144 DATE_CLOSED=9999-01-01&lt;BR /&gt;DATE_OPENED=1996-05-23 DLA=20210614 DORM= DORM_DESC= DormCodeDescr= E3=Not using E3 E3_BP=BP Not using E3 GROUP_NO=0&lt;BR /&gt;BOOK_BAL=4670770.96 IBTNO=02-05 IDNUMBER= ID_TYPE= KYC=Y MISC1=1 MKT_SEG=704 BP_MKT_SEG=704&lt;BR /&gt;BP_MKT_SEG_DESC=CORPORATE PARASTATAL&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Business_Area=CIB Portfolio=CIB&lt;BR /&gt;LEGAL_NAME=ALEX FORBES IMPREST COLL ACC 2 LEGAL_ENTITY=YO LEGAL_ENTITY_DESC=Other MultipleAccountsPerBP=Only 1 acc for this BP&lt;BR /&gt;NegotiatedPricingAcc=Acc using Neg Pricing NegotiatedPricingBP=BP using Neg Pricing&lt;BR /&gt;NP_Cheque_Serve_Min_Serv_Fee=Negotiated Pricing - Cheque Serve Fee and Minimum Service F&lt;BR /&gt;NP_Cash_Deposit_Fee=Negotiated Pricing - Cash Deposit Fee NP_Monthly_Management_Fee_Ind=Negotiated Pricing - Monthly Management Fee&lt;BR /&gt;NP_Cheque_Deposit_Encash_Ind=Negotiated Pricing - Cheque Deposit and Cheque Encashment NP_Dishonour_Fee_Ind=Not using Dishonour Fee&lt;BR /&gt;NP_Automatic_Clear_Facility_Ind=Not using Automatic Clearing Facility NP_Nominated_Fee_Acc_Ind=Not using Nominated Fee Accounts&lt;BR /&gt;NP_Overdraft_Service_Fee_Ind=Not using Overdraft Service Fee NP_Initiation_Fee_Ind=Not using Initiation Fee&lt;BR /&gt;NP_Unutilised_Facility_Fee_Ind=Not using Unutilised Facility Fee NP_Honour_Fee_Ind=Not using Honour Fee&lt;BR /&gt;NP_Statement_Fee_Ind=Not using Statement Enquiry Fee NP_Stop_Payment_Fee_Ind=Not using Stop Payment Fee&lt;BR /&gt;TestingAndTrainingBranch=Not a Testing and Training account OpenOrClosed=Open UsingNomination=Not Use Nomination&lt;BR /&gt;PRODUCT=LEGACY BUSINESS CURRENT ACCOUNT PRODUCT_CODE=0161 ProdCodeDescr=0161 - LEGACY BUSINESS CURRENT ACCOUNT RB_CODE=64231&lt;BR /&gt;NEW_SERIAL=0 STATUS=E STYLE=ORD STYLE_DESC=CURRENT ACCOUNT StyleCodeDescr=ORD - CURRENT ACCOUNT TPFA=Not using TPFA&lt;BR /&gt;TPFA_BP=BP Not using TPFA ACCOUNT_TYPE=Cheque Account ACNT_DESCRIPTION=CURRENT ACCOUNTS M_TYPE=0 TypeDesc=Transactional RSKGP_N=.&lt;BR /&gt;E3_RISK_GROUPS=Not in a Risk Group M_OD_INSURANCE=N PLPP_Description=Closed Account PLPPDescr=N - Closed Account&lt;BR /&gt;Suite_Description=BA02 - FRE CSA_OVERDRAFT_LIMIT=0 OD_1ST_RATE=7 OD_1ST_LIMIT=0 OD_2ND_RATE=0 OD_2ND_LIMIT=0 OD_3RD_RATE=0&lt;BR /&gt;OD_3RD_DECIMALS=0 PLEDGE_IND=Account does not have Pledge LAST_ACTIVE_BUCKET=1 week DATE_LAST_ACTIVE=2021-06-14 MATURITY_DATE=&lt;BR /&gt;MATURITY_DATE_YEAR_MONTH= FUNDS_UNDER_NOTICE= AB_EXTERNAL_FUNDING= DATETIME_OPENED=1996/05/23 00:00:00&lt;BR /&gt;BP_SYST_IND=BP is only BRACC CAPITAL_DISPOSAL= CAPITAL_DISPOSAL_BP_FLAG= INTEREST_DISPOSAL= INTEREST_DISPOSAL_BP_FLAG=&lt;BR /&gt;DISPOSAL_INSTRUCTION= _ERROR_=1 _N_=9&lt;BR /&gt;NOTE: Invalid numeric data, 'today()' , at line 30 column 19.&lt;BR /&gt;LASTMONTH=. AccNrSer=259000 NEW_ACC=259 AccountsForThisBP=2 MultipleSerials= MultipleSerials_ForOpened=&lt;BR /&gt;MultipleSerials_ForClosed= AE_NO= BA_NAME=SU BEE Funding SPV BOL=Not using BOL BOL_BP=BP Not using BOL BP_ID=535337179 BPKND=ZCIB&lt;BR /&gt;BPCAT=2 - Enterprize CashMan=Not using CashMan CashMan_BP=BP using CashMan CARR=Not using CARR CARR_BP=BP Not using CARR&lt;BR /&gt;CDI=Not using CDI CDI_BP=BP Not using CDI COYY=Not using COYY COYY_BP=BP Not using COYY CENTRE=144 DATE_CLOSED=2019-02-22&lt;BR /&gt;DATE_OPENED=2018-12-06 DLA=20190222 DORM= DORM_DESC= DormCodeDescr= E3=Not using E3 E3_BP=BP Not using E3 GROUP_NO=0 BOOK_BAL=0&lt;BR /&gt;IBTNO=02-05 IDNUMBER=2018/550917/07 ID_TYPE=ZFS003 KYC=Y MISC1=9 MKT_SEG=701 BP_MKT_SEG=701&lt;BR /&gt;BP_MKT_SEG_DESC=SMALL CORPORATE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Business_Area=CIB Portfolio=CIB&lt;BR /&gt;LEGAL_NAME=SU BEE Funding SPV (RF) (Pty) Ltd. LEGAL_ENTITY=07 LEGAL_ENTITY_DESC=Private Company&lt;BR /&gt;6 The SAS System 10:47 Tuesday, June 15, 2021&lt;/P&gt;&lt;P&gt;MultipleAccountsPerBP=Multiple Accs for this BP NegotiatedPricingAcc=Acc using Neg Pricing NegotiatedPricingBP=BP using Neg Pricing&lt;BR /&gt;NP_Cheque_Serve_Min_Serv_Fee=Negotiated Pricing - Cheque Serve Fee and Minimum Service F&lt;BR /&gt;NP_Cash_Deposit_Fee=Not using Cash Deposit Fee NP_Monthly_Management_Fee_Ind=Not using Monthly Management Fee&lt;BR /&gt;NP_Cheque_Deposit_Encash_Ind=Not using Cheque Deposit and Cheque Encashment NP_Dishonour_Fee_Ind=Not using Dishonour Fee&lt;BR /&gt;NP_Automatic_Clear_Facility_Ind=Not using Automatic Clearing Facility NP_Nominated_Fee_Acc_Ind=Not using Nominated Fee Accounts&lt;BR /&gt;NP_Overdraft_Service_Fee_Ind=Not using Overdraft Service Fee NP_Initiation_Fee_Ind=Not using Initiation Fee&lt;BR /&gt;NP_Unutilised_Facility_Fee_Ind=Not using Unutilised Facility Fee NP_Honour_Fee_Ind=Not using Honour Fee&lt;BR /&gt;NP_Statement_Fee_Ind=Not using Statement Enquiry Fee NP_Stop_Payment_Fee_Ind=Not using Stop Payment Fee&lt;BR /&gt;TestingAndTrainingBranch=Not a Testing and Training account OpenOrClosed=Closed UsingNomination=Not Use Nomination&lt;BR /&gt;PRODUCT=LEGACY BUSINESS CURRENT ACCOUNT PRODUCT_CODE=0161 ProdCodeDescr=0161 - LEGACY BUSINESS CURRENT ACCOUNT RB_CODE=84209&lt;BR /&gt;NEW_SERIAL=0 STATUS=TU STYLE=ZZZ STYLE_DESC=CLOSED ACCOUNT StyleCodeDescr=ZZZ - CLOSED ACCOUNT TPFA=Not using TPFA&lt;BR /&gt;TPFA_BP=BP Not using TPFA ACCOUNT_TYPE=Cheque Account ACNT_DESCRIPTION=CURRENT ACCOUNTS M_TYPE=0 TypeDesc=Transactional RSKGP_N=.&lt;BR /&gt;E3_RISK_GROUPS=Not in a Risk Group M_OD_INSURANCE=N PLPP_Description=Closed Account PLPPDescr=N - Closed Account&lt;BR /&gt;Suite_Description=BA02 - FRE CSA_OVERDRAFT_LIMIT=0 OD_1ST_RATE=0 OD_1ST_LIMIT=0 OD_2ND_RATE=0 OD_2ND_LIMIT=0 OD_3RD_RATE=0&lt;BR /&gt;OD_3RD_DECIMALS=0 PLEDGE_IND=Account does not have Pledge LAST_ACTIVE_BUCKET=Greater than 12 weeks DATE_LAST_ACTIVE=2019-02-22&lt;BR /&gt;MATURITY_DATE= MATURITY_DATE_YEAR_MONTH= FUNDS_UNDER_NOTICE= AB_EXTERNAL_FUNDING= DATETIME_OPENED=2018/12/06 00:00:00&lt;BR /&gt;BP_SYST_IND=BP is only BRACC CAPITAL_DISPOSAL= CAPITAL_DISPOSAL_BP_FLAG= INTEREST_DISPOSAL= INTEREST_DISPOSAL_BP_FLAG=&lt;BR /&gt;DISPOSAL_INSTRUCTION= _ERROR_=1 _N_=10&lt;BR /&gt;NOTE: Missing values were generated as a result of performing an operation on missing values.&lt;BR /&gt;Each place is given by: (Number of times) at (Line):(Column).&lt;BR /&gt;10 at 30:2&lt;BR /&gt;NOTE: There were 10 observations read from the data set BRAC.FINAL_BRACC_ALL.&lt;BR /&gt;NOTE: MVA_DSIO.OPEN_CLOSE| _DISARM| STOP| _DISARM| 2021-06-15T11:30:18,715+02:00| _DISARM| WorkspaceServer| _DISARM| SAS|&lt;BR /&gt;_DISARM| | _DISARM| 2344587| _DISARM| 24145920| _DISARM| 11| _DISARM| 19| _DISARM| 8| _DISARM| 6728496| _DISARM| 0.020000|&lt;BR /&gt;_DISARM| 0.751127| _DISARM| 1939368617.964187| _DISARM| 1939368618.715314| _DISARM| 0.010000| _DISARM| | _ENDDISARM&lt;BR /&gt;NOTE: The data set WORK.VIEW has 10 observations and 107 variables.&lt;BR /&gt;NOTE: Compressing data set WORK.VIEW decreased size by 0.00 percent.&lt;BR /&gt;Compressed is 2 pages; un-compressed would require 2 pages.&lt;BR /&gt;NOTE: MVA_DSIO.OPEN_CLOSE| _DISARM| STOP| _DISARM| 2021-06-15T11:30:18,716+02:00| _DISARM| WorkspaceServer| _DISARM| SAS|&lt;BR /&gt;_DISARM| | _DISARM| 10| _DISARM| 24145920| _DISARM| 11| _DISARM| 19| _DISARM| 264| _DISARM| 6728752| _DISARM| 0.010000|&lt;BR /&gt;_DISARM| 0.750341| _DISARM| 1939368617.966139| _DISARM| 1939368618.716480| _DISARM| 0.000000| _DISARM| | _ENDDISARM&lt;BR /&gt;NOTE: PROCEDURE| _DISARM| STOP| _DISARM| 2021-06-15T11:30:18,716+02:00| _DISARM| WorkspaceServer| _DISARM| SAS| _DISARM| |&lt;BR /&gt;_DISARM| 27033600| _DISARM| 24145920| _DISARM| 11| _DISARM| 19| _DISARM| 264| _DISARM| 6728752| _DISARM| 0.020000| _DISARM|&lt;BR /&gt;0.835480| _DISARM| 1939368617.881204| _DISARM| 1939368618.716684| _DISARM| 0.010000| _DISARM| | _ENDDISARM&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.83 seconds&lt;BR /&gt;user cpu time 0.01 seconds&lt;BR /&gt;system cpu time 0.01 seconds&lt;BR /&gt;memory 1548.28k&lt;BR /&gt;OS Memory 23840.00k&lt;BR /&gt;Timestamp 2021/06/15 11:30:18 AM&lt;BR /&gt;Step Count 27 Switch Count 2&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 158&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 34&lt;BR /&gt;Involuntary Context Switches 1&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 264&lt;/P&gt;&lt;P&gt;34&lt;BR /&gt;35 GOPTIONS NOACCESSIBLE;&lt;BR /&gt;36 %LET _CLIENTTASKLABEL=;&lt;BR /&gt;37 %LET _CLIENTPROCESSFLOWNAME=;&lt;BR /&gt;38 %LET _CLIENTPROJECTPATH=;&lt;BR /&gt;39 %LET _CLIENTPROJECTPATHHOST=;&lt;BR /&gt;40 %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;7 The SAS System 10:47 Tuesday, June 15, 2021&lt;/P&gt;&lt;P&gt;41 %LET _SASPROGRAMFILE=;&lt;BR /&gt;42 %LET _SASPROGRAMFILEHOST=;&lt;BR /&gt;43&lt;BR /&gt;44 ;*';*";*/;quit;run;&lt;BR /&gt;45 ODS _ALL_ CLOSE;&lt;BR /&gt;46&lt;BR /&gt;47&lt;BR /&gt;48 QUIT; RUN;&lt;BR /&gt;49&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 10:28:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748084#M29510</guid>
      <dc:creator>VALLY</dc:creator>
      <dc:date>2021-06-15T10:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: create a previous month field using a current date field.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748087#M29511</link>
      <description>&lt;P&gt;So everything happens here:&lt;/P&gt;
&lt;PRE&gt;30 INTNX ( 'MONTH', 'today()',INPUT(PUT(DLA,8.),YYMMDD8.),-1, 'E');&lt;/PRE&gt;
&lt;P&gt;Note how the code box (which I expressly &lt;STRONG&gt;URGED&lt;/STRONG&gt; you to use!) makes the code more readable because of the non-proportional font.&lt;/P&gt;
&lt;PRE&gt;NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).
30:19&lt;/PRE&gt;
&lt;P&gt;tells you that, since the INTNX function expects a number as its second argument, the string(!) 'today()' needs to be converted to a number.&lt;/P&gt;
&lt;PRE&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).
30:57&lt;/PRE&gt;
&lt;P&gt;tells you that the -1 (which you supplied as the&amp;nbsp;&lt;EM&gt;fourth&lt;/EM&gt; argument to INTNX) needs to be converted to character, as that is what INTNX expects as its fourth argument.&lt;/P&gt;
&lt;P&gt;Both of these happen during the data step compilation phase.&lt;/P&gt;
&lt;PRE&gt;NOTE: Invalid numeric data, 'today()' , at line 30 column 19.&lt;/PRE&gt;
&lt;P&gt;is a consequence of the first NOTE and happens during the execution phase.&lt;/P&gt;
&lt;P&gt;The listing for DLA:&lt;/P&gt;
&lt;PRE&gt;DLA=20210610&lt;/PRE&gt;
&lt;P&gt;lets me suspect that yo really have a "date" value stored in the stupid way that forces you to do a conversion on the fly. Next maxi-size hint: NEVER (as in&amp;nbsp;&lt;FONT size="5"&gt;&lt;STRONG&gt;NEVER&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT size="3"&gt;) store dates in this way. Always do such a conversion as soon as you import data into SAS as part of the cleaning during ETL.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;But since you have such data at the moment, let's keep the conversion in there. To correctly use the INTNX function, you need only &lt;EM&gt;four&lt;/EM&gt; arguments (see documentation - Maxim 1! - &lt;A href="https://documentation.sas.com/doc/de/pgmsascdc/9.4_3.4/lefunctionsref/p10v3sa3i4kfxfn1sovhi5xzxh8n.htm" target="_blank" rel="noopener"&gt;here&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;lastmonth = intnx('month',input(put(DLA,8.),yymmdd8.),-1,'E');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;The arguments are:&lt;/FONT&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;FONT size="3"&gt;interval (character)&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="3"&gt;start value (numeric)&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="3"&gt;number of intervals (numeric)&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="3"&gt;alignment (character)&lt;/FONT&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 10:54:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748087#M29511</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-15T10:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: create a previous month field using a current date field.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748094#M29512</link>
      <description>&lt;P&gt;Unless there is some enhancement to the software that I don't know about, nothing in your code suggests subsetting observations.&amp;nbsp; You would need an IF statement to do that.&amp;nbsp; So try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if INTNX ( 'MONTH', today(),-1, 'B') &amp;lt;= input(put(dla,8.), yymmdd8.) &amp;lt;= INTNX('MONTH', today(), -1, 'E');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The middle part of the expression (the INPUT function) is a guess that depends on what is really contained in the variable DLA.&amp;nbsp; It seems to be a character string that needs to be converted to an actual SAS date.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 11:34:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748094#M29512</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2021-06-15T11:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: create a previous month field using a current date field.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748167#M29514</link>
      <description>&lt;P&gt;Can this be done using a proc sql statement.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 16:10:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748167#M29514</guid>
      <dc:creator>VALLY</dc:creator>
      <dc:date>2021-06-15T16:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: create a previous month field using a current date field.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748193#M29515</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/270266"&gt;@VALLY&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Can this be done using a proc sql statement.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;In SQL, you create a new variable with&lt;/P&gt;
&lt;PRE&gt;&amp;lt;calculation&amp;gt; as &amp;lt;name&amp;gt; &amp;lt;attributes&amp;gt;&lt;/PRE&gt;
&lt;P&gt;which translates to this in your case&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;intnx('month',input(put(DLA,8.),yymmdd8.),-1,'E') as lastmonth format=yymmdd8.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Jun 2021 18:36:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748193#M29515</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-15T18:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: create a previous month field using a current date field.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748203#M29516</link>
      <description>&lt;P&gt;While I subscribe to the opinion that learners (of any subject) have to ultimately judge what are the most important&amp;nbsp; aspects of a subject for them to master, I think that starting out by paying attention to advice given in response to the learner's question should not be discarded immediately.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So when&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;suggests&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;posting the log (including the code as well as the notes/warnings)&lt;/LI&gt;
&lt;LI&gt;using the &amp;lt;/&amp;gt; icon&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;it is meant to help us help you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It might be the best skill one learns on this forum.&amp;nbsp; It was for me.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 18:59:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-a-previous-month-field-using-a-current-date-field/m-p/748203#M29516</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2021-06-15T18:59:15Z</dc:date>
    </item>
  </channel>
</rss>

