<?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: abap -SHIFT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257670#M146695</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how about the Contains string variant:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF ZAUS02 CS 'Operation'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Mar 2006 00:03:28 GMT</pubDate>
    <dc:creator>former_member186741</dc:creator>
    <dc:date>2006-03-22T00:03:28Z</dc:date>
    <item>
      <title>abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257649#M146674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have small confusion with the use of SHIFT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when do you use 'LEFT DELETING LEADING' and 'RIGHT DELETING TRAILING' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because I have a character variable &lt;/P&gt;&lt;P&gt;z1 = Operation# and I need to get rid of  the '#'. I have declared z1 as char type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to get it clarified once for all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:00:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257649#M146674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T22:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257650#M146675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinu,&lt;/P&gt;&lt;P&gt; The best explanation is given in F1 help with example..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Shifts the contents of c to the left or right for as long as the string begins or ends with a character contained in c1. &lt;/P&gt;&lt;P&gt;If c does not begin or end with a character from c1, it remains unchanged. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;DATA: ALPHABET(15) VALUE '     ABCDEFGHIJ', &lt;/P&gt;&lt;P&gt;      M1(4)        VALUE 'ABCD', &lt;/P&gt;&lt;P&gt;      M2(6)        VALUE 'BJJCA '. &lt;/P&gt;&lt;P&gt;SHIFT ALPHABET LEFT DELETING LEADING M1. &lt;/P&gt;&lt;P&gt;The field ALPHABET remains unchanged. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIFT ALPHABET LEFT DELETING LEADING SPACE. &lt;/P&gt;&lt;P&gt;The field ALPHABET now has the following contents: &lt;/P&gt;&lt;P&gt;'ABCDEFGHIJ     '. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIFT ALPHABET RIGHT DELETING TRAILING M2. &lt;/P&gt;&lt;P&gt;ALPHABET now has the following contents: &lt;/P&gt;&lt;P&gt;'      ABCDEFGHI'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257650#M146675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T22:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257651#M146676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
myvariable = 'xxx123'.
SHIFT myvariable LEFT DELETING LEADING 'x'.
WRITE:/ myvariable.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output in this case will be '123'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
myvariable = '123xxx'.
SHIFT myvariable RIGHT DELETING TRAILING 'x'.
WRITE:/ myvariable.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output in this case will be &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;'   123'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:07:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257651#M146676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T22:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257652#M146677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you use SHIFT (LEFT/RIFGT) pl note that the left or right of the field is then padded with blanks. If you do not want the blanks, you are better off moving the field contents using offsets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:08:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257652#M146677</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-03-21T22:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257653#M146678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is that really a '#' or is it some special character like tab that got uploaded from a file? When you upload a file that has special characters, you will see '#' in the contents, but when you try to remove it using any of the string operations you will not be able to do it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:09:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257653#M146678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T22:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257654#M146679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please take a look at this link for sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.kabai.com/abaps/z82.htm" target="test_blank"&gt;http://www.kabai.com/abaps/z82.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:10:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257654#M146679</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2006-03-21T22:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257655#M146680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: TEXT(10) VALUE 'Operation#'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIFT TEXT RIGHT DELETING TRAILING '#'.&lt;/P&gt;&lt;P&gt;write:/ TEXT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:15:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257655#M146680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T22:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257656#M146681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not just use REPLACE:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: z1(20) VALUE 'Operation#'.

REPLACE '#' WITH '' INTO z1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:24:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257656#M146681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T22:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257657#M146682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks but the syntax is not working in the program when I am trying to remove the trailing '#' sign.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZAUS02 = itab_in-aus02 ( the value is Operation#)&lt;/P&gt;&lt;P&gt;and aus02 is CHAR(10) declared in the itab.&lt;/P&gt;&lt;P&gt;SHIFT ZAUS02 RIGHT DELETING TRAILING '#'.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that I have to compare the value in ZAUS02 USING if CONDITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF ZAUS02 = 'Operation'&lt;/P&gt;&lt;P&gt;  .&lt;/P&gt;&lt;P&gt;  ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I hope you got the point here.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:25:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257657#M146682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T22:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257658#M146683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You would have to shift it back to the left removing leading spaces. Try using replace instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:29:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257658#M146683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T22:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257659#M146684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Infact I tried that but it did not work, so I came to this, It's so simple but what am I missing here? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:39:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257659#M146684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T22:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257660#M146685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you se the code I posted? You can just cut and paste it to see if it does what you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:41:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257660#M146685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T22:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257661#M146686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Srinivas, you are right, it comes from the external file in the .csv format, hecne I am not able to remove it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in a similar case in a different program I was able to remove the leading '##' signs using 'left DELETING leading' syntax for the value getting from the flat file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why not here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:45:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257661#M146686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T22:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257662#M146687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why not change the if to:&lt;/P&gt;&lt;P&gt;IF ZAUS02(9) = 'Operation'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:58:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257662#M146687</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-03-21T22:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257663#M146688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then try:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : code TYPE x VALUE '09'.
REPLACE code WITH '' INTO z1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 23:02:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257663#M146688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T23:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257664#M146689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Folks, I got the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help with the logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the field 'ZAUS02' i AM READING THE VALUE from flat file the length of the field is CHAR10. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when the value is less than 10 it reads the value as with a trailing '#' like in 'Operation#'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only in such case I need to get rid of the '#' sign and when the value of the field is equal to the size 10 no '#' sign is displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then i go it works fine to check the IF condition..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Foe example:&lt;/P&gt;&lt;P&gt;ZAUS02 = Functional&lt;/P&gt;&lt;P&gt;it is fine&lt;/P&gt;&lt;P&gt; if ZAUS02 = 'Functional'&lt;/P&gt;&lt;P&gt; .&lt;/P&gt;&lt;P&gt;  .&lt;/P&gt;&lt;P&gt; elseif ZAUS02 = 'Operation' (for this ZAUS02 needs to get rid of the # sign)&lt;/P&gt;&lt;P&gt; .&lt;/P&gt;&lt;P&gt; . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what I am trying to achieve here.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;P&gt; . &lt;/P&gt;&lt;P&gt;that's fine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 23:07:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257664#M146689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T23:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257665#M146690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming the # is really a tab, the (second) code I posted should work. It did when i tested it. If it's not a tab, you'll have to find out the hex value of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 23:12:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257665#M146690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T23:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257666#M146691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sorry Rob, I did not understand the 'code' can you elaborate on it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 23:22:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257666#M146691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T23:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257667#M146692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The variable CODE is a one byte hex field with the value X'09' (which I believe is the value of a tab). If you replace any instances of X'09' with a blank or null, it should get rid of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do a F1 on DATA-&amp;gt;Simple field definition-&amp;gt;Addition 1 (type). It's discussed there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this help:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : tab TYPE x VALUE '09'.
REPLACE tab WITH '' INTO z1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rob Burbank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 23:28:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257667#M146692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T23:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: abap -SHIFT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257668#M146693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Rob, both did not work, I find it really strange, because for an earlier program I used the 'SHIFT' command to eliminate the leading '#' for the values and was able to upload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That was a Numeric char variable and this is a char variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks foryour help. Let me know if You have any leads to it, I shall continue working on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I shall ward the points and keep the thread open.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 23:43:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-shift/m-p/1257668#M146693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T23:43:44Z</dc:date>
    </item>
  </channel>
</rss>

