<?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: SAS MAINFRAME in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541027#M149320</link>
    <description>&lt;P&gt;The message is clear:&lt;/P&gt;&lt;P&gt;ADDRESS_ID is a numeric.&lt;/P&gt;&lt;P&gt;The input function expects a string. Hence the message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;gt; i tried to convert the pib to char by using INPUT function&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;The put function does that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, try to type complete words please (not plz).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 07 Mar 2019 09:51:13 GMT</pubDate>
    <dc:creator>VRKiwi</dc:creator>
    <dc:date>2019-03-07T09:51:13Z</dc:date>
    <item>
      <title>SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541023#M149317</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I facing some issue with the sas jcl coding&lt;/P&gt;&lt;P&gt;i used to print my ls_addres_id in PIB format (in the input for reading purpose&amp;nbsp; )&lt;/P&gt;&lt;P&gt;and i want to the output&amp;nbsp; in $char12 format (for writing purpose )&lt;/P&gt;&lt;P&gt;i tried to convert the pib to char by using INPUT function but unble get the exact results&lt;/P&gt;&lt;P&gt;i'm getting ls_address_id already difined has numeric , plz find below the code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATA RAM_;&lt;BR /&gt;INFILE karli2a DSD;&lt;BR /&gt;INPUT @1 TEXT $CHAR60.&lt;BR /&gt;@61 LS_ADDRESS_ID PIB4.;&lt;BR /&gt;LS_ADDRESS_ID = INPUT(ADDRESS_ID,12.);&lt;BR /&gt;RUN;&lt;BR /&gt;DATA VIG_;&lt;BR /&gt;SET RAM_;&lt;BR /&gt;FILE SYSOUT;&lt;BR /&gt;PUT @1 TEXT $CHAR60.&lt;BR /&gt;@61 LS_ADDRESS_ID 12.;&lt;BR /&gt;RUN;&lt;BR /&gt;PROC PRINT DATA = VIG_; RUN;&lt;/P&gt;&lt;P&gt;WARNING: Variable LS_ADDRESS_ID has already been defined as numeric.&lt;BR /&gt;14 RUN;&lt;/P&gt;&lt;P&gt;plz give sum suggestions to find out the results&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;N muralikrishna&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2019 09:30:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541023#M149317</guid>
      <dc:creator>rohitkrishna</dc:creator>
      <dc:date>2019-03-07T09:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541027#M149320</link>
      <description>&lt;P&gt;The message is clear:&lt;/P&gt;&lt;P&gt;ADDRESS_ID is a numeric.&lt;/P&gt;&lt;P&gt;The input function expects a string. Hence the message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;gt; i tried to convert the pib to char by using INPUT function&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;The put function does that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, try to type complete words please (not plz).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2019 09:51:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541027#M149320</guid>
      <dc:creator>VRKiwi</dc:creator>
      <dc:date>2019-03-07T09:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541028#M149321</link>
      <description>I think you looking for:&lt;BR /&gt;&lt;BR /&gt;ADDRESS_ID = PUT(LS_ADDRESS_ID, 12.);&lt;BR /&gt;&lt;BR /&gt;The results will be right-hand justified, so consider whether it is appropriate to apply the LEFT function as well.</description>
      <pubDate>Thu, 07 Mar 2019 09:52:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541028#M149321</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-03-07T09:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541029#M149322</link>
      <description>&lt;P&gt;Or, to left-align:&lt;/P&gt;&lt;P&gt;ADDRESS_ID_CHAR = put( LS_ADDRESS_ID, 12.&lt;STRONG&gt; &lt;FONT color="#3366FF"&gt;-L&lt;/FONT&gt; &lt;/STRONG&gt;);&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2019 09:57:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541029#M149322</guid>
      <dc:creator>VRKiwi</dc:creator>
      <dc:date>2019-03-07T09:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541031#M149324</link>
      <description>Hi Astounding&lt;BR /&gt;thanks for the reply i tried the left align but still i not getting what i expecting&lt;BR /&gt;basically the input file have 2 fields for the second field ls_address_d has encrypted values like its a hex values so on that scenario i need read it in a pib format and after reding i want to print the output to the encrypted format only so it was suteble to print by using $char12. but while using that format in put statment i'm getting the above warning like ls_address_id has already defined as numeric so how do i get the output what i expecting&lt;BR /&gt;thanks &amp;amp; regards&lt;BR /&gt;N muralikrishna&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Mar 2019 10:11:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541031#M149324</guid>
      <dc:creator>rohitkrishna</dc:creator>
      <dc:date>2019-03-07T10:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541032#M149325</link>
      <description>Hi Vrkiwi,&lt;BR /&gt;thanks for the quick reply&lt;BR /&gt;i tried those functions what you mention above comment but still i unable to get the results what i expecting&lt;BR /&gt;Thnaks &amp;amp; regards&lt;BR /&gt;N muralikrishna&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Mar 2019 10:14:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541032#M149325</guid>
      <dc:creator>rohitkrishna</dc:creator>
      <dc:date>2019-03-07T10:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541049#M149335</link>
      <description>&lt;P&gt;Take care of which type your variables and values are:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA RAM_;
INFILE karli2a DSD;
INPUT
  @1 TEXT $CHAR60.
  @61 ADDRESS_ID PIB4.
;
/* you now have a numeric variable, the values of which were read with a binary format */
LS_ADDRESS_ID = PUT(ADDRESS_ID,12.);
/* the new variable is of type character with a length of 12, and contains a human-readable number */
RUN;

DATA VIG_;
SET RAM_;
FILE SYSOUT;
PUT
  @1 TEXT $CHAR60.
  @61 LS_ADDRESS_ID $char12.
;
/* since LS_ADDRESS_ID is character, use a character format */
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Mar 2019 11:50:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541049#M149335</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-03-07T11:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541050#M149336</link>
      <description>&lt;P&gt;PS the fact that you're working on a computing dinosaur does not mean you &lt;EM&gt;must&lt;/EM&gt; write ugly spaghetti code that hurts the eyes. Proper code formatting is a virtue on every platform.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2019 11:52:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541050#M149336</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-03-07T11:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541056#M149337</link>
      <description>Hi kurtbremser,&lt;BR /&gt;thanks for the replay , i tried what you mention but i geeting the same error&lt;BR /&gt;"SET RAM_;&lt;BR /&gt;FILE SYSOUT;&lt;BR /&gt;PUT&lt;BR /&gt;@I_ TEXT $CHAR60.&lt;BR /&gt;@61 LS_ADDRESS_ID&lt;BR /&gt;WARNING: Variable LS_ADDRESS_ID .&lt;BR /&gt;$CHAR12.; . been defined as numeric. has already&lt;BR /&gt;ERROR 48-59: The format CHAR was not found or cou ld not be loaded.&lt;BR /&gt;ERROR 48-59: The format CHAR was not found or&lt;BR /&gt;cou ld not be loaded.&lt;BR /&gt;ERROR 48-59: The format CHAR&lt;BR /&gt;was not found or cou ld not be loaded. "&lt;BR /&gt;sorry for the heavy coding&lt;BR /&gt;thanks &amp;amp; regards&lt;BR /&gt;n muralikrishhna&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Mar 2019 12:20:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541056#M149337</guid>
      <dc:creator>rohitkrishna</dc:creator>
      <dc:date>2019-03-07T12:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541058#M149338</link>
      <description>&lt;P&gt;Please post the log of BOTH steps. Use the {i} button for posting logs, and the "little running man" for code. Both buttons appear when posting in Rich Text.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am asking because my code (first data step) would define LS_ADDRESS_ID as character, while your ERROR implies that it is numeric.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2019 12:25:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541058#M149338</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-03-07T12:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541065#M149341</link>
      <description>Hi, Kurtbremser,&lt;BR /&gt;Thanks for the replay&lt;BR /&gt;sorry to say that i'm new to this technology&lt;BR /&gt;{WARNING: The Base Product product with which DATASTEP is associated will expire installation representative to have it renewed.&lt;BR /&gt;2 INFILE kirlaA DSD;&lt;BR /&gt;3 INPUT&lt;BR /&gt;4 V1 TEXT $CHAR60.&lt;BR /&gt;5 @61 LS_ADDRESS_ID PIB4.;&lt;BR /&gt;6 LS_ADDRESS_ID = PUT(ADDRESS_ID,12.);&lt;BR /&gt;7 RUN;&lt;BR /&gt;NOTE: Character values have been converted to numeric values at the places given 6:18 NOTE: Variable ADDRESS ID is uninitialized.}&lt;BR /&gt;Lrecl=27998,Re&lt;BR /&gt;{cfm=VB&lt;BR /&gt;E: 3 records were read from the infile kirlaA. }&lt;BR /&gt;{DATA VIG ; wARnING: The Base Product product with which DATASTEP is associated will expire installation representative to have it renewed.&lt;BR /&gt;SET RAM ;&lt;BR /&gt;0 FILE SYSOUT;&lt;BR /&gt;1 PUT&lt;BR /&gt;2 @I_ TEXT $CHAR60.&lt;BR /&gt;3 @61 LS_ADDRESS_ID $CHAR12.;&lt;BR /&gt;48&lt;BR /&gt;waARnING: Variable LS ADDRESS_ID has already been defined as numeric.&lt;BR /&gt;ERROR 48-59: The format CHAR was not found or could not be loaded.&lt;BR /&gt;ERROR 48-59: The format CHAR was not found or could not be loaded.&lt;BR /&gt;ERROR 48-59: The format CHAR was not found or could not be loaded.}&lt;BR /&gt;i hope it's fine right, those the errors exactly geeting from my end&lt;BR /&gt;please suggest the right format for that&lt;BR /&gt;Thanks &amp;amp; regards&lt;BR /&gt;N muralikrishna&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Mar 2019 13:15:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541065#M149341</guid>
      <dc:creator>rohitkrishna</dc:creator>
      <dc:date>2019-03-07T13:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541068#M149344</link>
      <description>&lt;P&gt;You must be more careful in copying code from here to your environment.&lt;/P&gt;
&lt;P&gt;This is the code I gave you:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA RAM_;
INFILE karli2a DSD;
INPUT
  @1 TEXT $CHAR60.
  @61 ADDRESS_ID PIB4.
;
/* you now have a numeric variable, the values of which were read with a binary format */
LS_ADDRESS_ID = PUT(ADDRESS_ID,12.);
/* the new variable is of type character with a length of 12, and contains a human-readable number */
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and this is the corresponding part in your log:&lt;/P&gt;
&lt;PRE&gt;2 INFILE kirlaA DSD;
3 INPUT
4 V1 TEXT $CHAR60.
5 @61 LS_ADDRESS_ID PIB4.;
6 LS_ADDRESS_ID = PUT(ADDRESS_ID,12.);
7 RUN;&lt;/PRE&gt;
&lt;P&gt;Note which variable is read with the pib4. informat.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2019 13:24:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541068#M149344</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-03-07T13:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541070#M149345</link>
      <description>Hi, Kurtbremser,&lt;BR /&gt;Thanks for the replay&lt;BR /&gt;ya i missplaced (;)&lt;BR /&gt;i ran that after the correction and it shows&lt;BR /&gt;{@61 LS_ADDRESS_ID $CHAR12.;&lt;BR /&gt;48&lt;BR /&gt;waARnING: Variable LS ADDRESS_ID has already been defined as numeric.&lt;BR /&gt;ERROR 48-59: The format CHAR was not found or could not be loaded.&lt;BR /&gt;ERROR 48-59: The format CHAR was not found or could not be loaded.&lt;BR /&gt;ERROR 48-59: The format CHAR was not found or could not be loaded.}&lt;BR /&gt;i hope it's fine right, those the errors exactly geeting from my end&lt;BR /&gt;please suggest the right format for that&lt;BR /&gt;Thanks &amp;amp; regards&lt;BR /&gt;N muralikrishna&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Mar 2019 13:31:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541070#M149345</guid>
      <dc:creator>rohitkrishna</dc:creator>
      <dc:date>2019-03-07T13:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541071#M149346</link>
      <description>sorry its ; (semicolon )</description>
      <pubDate>Thu, 07 Mar 2019 13:32:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541071#M149346</guid>
      <dc:creator>rohitkrishna</dc:creator>
      <dc:date>2019-03-07T13:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541075#M149349</link>
      <description>&lt;P&gt;You really MUST now start to follow our advice. PLEASE (and I mean that!!!!) USE THE {i} BUTTON FOR POSTING LOGS!&lt;/P&gt;
&lt;P&gt;And post the WHOLE(!) log from these steps. The snippets you supply are useless for diagnosing what's wrong. Especially since you seem to be typing them off a screen. SAS will never issue a&lt;/P&gt;
&lt;PRE&gt;waARnING:&lt;/PRE&gt;
&lt;P&gt;it's always a&lt;/P&gt;
&lt;PRE&gt;WARNING&lt;/PRE&gt;
&lt;P&gt;!&lt;/P&gt;
&lt;P&gt;Just copy/paste the log text. We need to see the truth, the whole truth, and nothing but the truth.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Take your time copying code; if possible at all, do a copy/paste from here to your code editor to prevent typos.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2019 13:39:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541075#M149349</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-03-07T13:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541084#M149356</link>
      <description>Hi, Kurtbremser,&lt;BR /&gt;Thanks for the replay&lt;BR /&gt;below the exact code in log&lt;BR /&gt;&lt;BR /&gt;{1 DATA RAM_;&lt;BR /&gt;WARNING: The Base Product product with which DATASTEP is associated will expire&lt;BR /&gt;installation representative to have it renewed.&lt;BR /&gt;2 INFILE kerlaA DSD;&lt;BR /&gt;3 INPUT&lt;BR /&gt;4 @1 TEXT $CHAR60.&lt;BR /&gt;5 @61 LS_ADDRESS_ID PIB4.&lt;BR /&gt;6 ;&lt;BR /&gt;7 LS_ADDRESS_ID = PUT(ADDRESS_ID,12.);&lt;BR /&gt;8 RUN;&lt;BR /&gt;Character values have been converted to numeric values at the places give&lt;BR /&gt;7:18&lt;BR /&gt;9 DATA VIG_;&lt;BR /&gt;10 SET RAM_;&lt;BR /&gt;11 FILE SYSOUT;&lt;BR /&gt;12 PUT&lt;BR /&gt;13 @1 TEXT $CHAR60.&lt;BR /&gt;14 @61 LS_ADDRESS_ID $CHAR12.&lt;BR /&gt;+ ________&lt;BR /&gt;+ ________&lt;BR /&gt;+ ________&lt;BR /&gt;48&lt;BR /&gt;+ 48&lt;BR /&gt;+ 48&lt;BR /&gt;ERROR 48-59: The format CHAR was not found or could not be loaded.&lt;BR /&gt;+ERROR 48-59: The format CHAR was not found or could not be loaded.&lt;BR /&gt;+ERROR 48-59: The format CHAR was not found or could not be loaded.&lt;BR /&gt;&lt;BR /&gt;15 ;&lt;BR /&gt;WARNING: Variable LS_ADDRESS_ID has already been defined as numeric. }&lt;BR /&gt;thanks &amp;amp; regards&lt;BR /&gt;N muralikrishna&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Mar 2019 14:06:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541084#M149356</guid>
      <dc:creator>rohitkrishna</dc:creator>
      <dc:date>2019-03-07T14:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541086#M149357</link>
      <description>&lt;P&gt;You still have not corrected your first data step.&lt;/P&gt;
&lt;P&gt;Please &lt;U&gt;READ&lt;/U&gt; my posts &lt;U&gt;CAREFULLY&lt;/U&gt;, and copy the code &lt;U&gt;AS I SUPPLY IT&lt;/U&gt;!&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2019 14:09:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541086#M149357</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-03-07T14:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541089#M149358</link>
      <description>Hi, Kurtbremser,&lt;BR /&gt;Thanks for the replay&lt;BR /&gt;{ya i changed the infile name what i mention above code , but still its a error }&lt;BR /&gt;{1 DATA RAM_;&lt;BR /&gt;WARNING: The Base Product product with which DATASTEP is associated will expire&lt;BR /&gt;installation representative to have it renewed.&lt;BR /&gt;2 INFILE karli2a DSD;&lt;BR /&gt;3 INPUT&lt;BR /&gt;4 @1 TEXT $CHAR60.&lt;BR /&gt;5 @61 LS_ADDRESS_ID PIB4.&lt;BR /&gt;6 ;&lt;BR /&gt;7 LS_ADDRESS_ID = PUT(ADDRESS_ID,12.);&lt;BR /&gt;8 RUN;&lt;BR /&gt;Character values have been converted to numeric values at the places give&lt;BR /&gt;7:18&lt;BR /&gt;9 DATA VIG_;&lt;BR /&gt;10 SET RAM_;&lt;BR /&gt;11 FILE SYSOUT;&lt;BR /&gt;12 PUT&lt;BR /&gt;13 @1 TEXT $CHAR60.&lt;BR /&gt;14 @61 LS_ADDRESS_ID $CHAR12.&lt;BR /&gt;+ ________&lt;BR /&gt;+ ________&lt;BR /&gt;+ ________&lt;BR /&gt;48&lt;BR /&gt;+ 48&lt;BR /&gt;+ 48&lt;BR /&gt;ERROR 48-59: The format CHAR was not found or could not be loaded.&lt;BR /&gt;+ERROR 48-59: The format CHAR was not found or could not be loaded.&lt;BR /&gt;+ERROR 48-59: The format CHAR was not found or could not be loaded.&lt;BR /&gt;&lt;BR /&gt;15 ;&lt;BR /&gt;WARNING: Variable LS_ADDRESS_ID has already been defined as numeric. }&lt;BR /&gt;thanks &amp;amp; regards&lt;BR /&gt;N muralikrishna&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Mar 2019 14:16:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541089#M149358</guid>
      <dc:creator>rohitkrishna</dc:creator>
      <dc:date>2019-03-07T14:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541091#M149359</link>
      <description>&lt;P&gt;You obviously don't read what I post. I'm out of here.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2019 14:21:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541091#M149359</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-03-07T14:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAS MAINFRAME</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541102#M149363</link>
      <description>Hi, Kurtbremser,&lt;BR /&gt;Thanks for the replay&lt;BR /&gt;sorry for that just now i copeied you're code and it's working and i have small query regarding the output&lt;BR /&gt;õUA000000001250545 |&lt;BR /&gt;UA000000002009688 | &amp;gt; those are the input Ls_address_id (values) non readble format&lt;BR /&gt;þUA000000002009855 | &amp;gt; but while using pib4 i can read the ls_address_id&lt;BR /&gt;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++&lt;BR /&gt;below the results after using pib4 format&lt;BR /&gt;&lt;BR /&gt;LS_ADDRESS_&lt;BR /&gt;ID&lt;BR /&gt;&lt;BR /&gt;4042322160 +&lt;BR /&gt;4042322160 + &amp;gt; those are the exact results i got by using pib4 format&lt;BR /&gt;4042322160 +&lt;BR /&gt;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++&lt;BR /&gt;but what is my requirement i need after reading and printing the results i want to print the exact input ls_address_id format it mens {UA000000001250545 }&lt;BR /&gt;i want print asties in the input record to output file&lt;BR /&gt;so kindly suggest and sorry for the less understanding ( i hope you understood the requirement)&lt;BR /&gt;Thanks &amp;amp; regards&lt;BR /&gt;N muralikrishna</description>
      <pubDate>Thu, 07 Mar 2019 14:50:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-MAINFRAME/m-p/541102#M149363</guid>
      <dc:creator>rohitkrishna</dc:creator>
      <dc:date>2019-03-07T14:50:54Z</dc:date>
    </item>
  </channel>
</rss>

