<?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: Sap script Change program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231489#M139472</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to get the values out of ADDRESS - ENDADDRESS.&lt;/P&gt;&lt;P&gt;But they do not work in address command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Mar 2006 22:03:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-20T22:03:34Z</dc:date>
    <item>
      <title>Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231474#M139457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I m trying to modify the standard program of Purchase order sapfm06p. I copied the program from se38 and also function group from se80 into ypomedruck. I also duplicated include LMEDRUCKF0C and wrote the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM read_address USING p_parvw LIKE nast-parvw&lt;/P&gt;&lt;P&gt;                        p_parnr LIKE nast-parnr&lt;/P&gt;&lt;P&gt;            CHANGING    s_ekko  LIKE ekko.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Lesen Lieferantendaten ----------------------------------------------*&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;die Adressnummer wird immer in ekko-adrnr übernommen, falls ekko-adrnr&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;nicht gefüllt ist werden die lfa1-Felder ausgegeben&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF s_ekko-lifnr NE space.&lt;/P&gt;&lt;P&gt;    CLEAR ekpa.&lt;/P&gt;&lt;P&gt;    IF p_parnr NE space AND p_parnr NE s_ekko-lifnr.&lt;/P&gt;&lt;P&gt;      CLEAR: s_ekko-verkf, s_ekko-ihrez.&lt;/P&gt;&lt;P&gt;      ekpa-lifn2 = p_parnr.&lt;/P&gt;&lt;P&gt;      SELECT SINGLE * FROM lfa1 WHERE lifnr = ekpa-lifn2.&lt;/P&gt;&lt;P&gt;      SELECT SINGLE verkf FROM  lfm1 INTO (s_ekko-verkf)&lt;/P&gt;&lt;P&gt;             WHERE  lifnr       = ekpa-lifn2&lt;/P&gt;&lt;P&gt;             AND    ekorg       = s_ekko-ekorg.&lt;/P&gt;&lt;P&gt;      s_ekko-adrnr = lfa1-adrnr.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'MM_ADDRESS_GET'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          i_ekko = s_ekko&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          e_sadr = sadr&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          OTHERS = 1.&lt;/P&gt;&lt;P&gt;sadr-name1 = 'Vijay group of Industries Pvt Ltd.'.&lt;/P&gt;&lt;P&gt;          modify sadr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MOVE-CORRESPONDING sadr TO lfa1.&lt;/P&gt;&lt;P&gt;      update lfa1.&lt;/P&gt;&lt;P&gt;      IF s_ekko-adrnr IS INITIAL.&lt;/P&gt;&lt;P&gt;        s_ekko-adrnr = lfa1-adrnr.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Lesen Lieferwerk ----------------------------------------------------*&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF s_ekko-reswk NE space.&lt;/P&gt;&lt;P&gt;    SELECT SINGLE * FROM t001w WHERE werks EQ s_ekko-reswk.&lt;/P&gt;&lt;P&gt;    IF t001w-adrnr IS INITIAL.&lt;/P&gt;&lt;P&gt;      MOVE-CORRESPONDING t001w TO lfa1.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      CLEAR addr1_sel.&lt;/P&gt;&lt;P&gt;      addr1_sel-addrnumber = t001w-adrnr.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'ADDR_GET'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          address_selection = addr1_sel&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          sadr              = sadr&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          OTHERS            = 1.&lt;/P&gt;&lt;P&gt;      IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      sadr-name1 = 'Vijay group of Industries Pvt Ltd.'.&lt;/P&gt;&lt;P&gt;          modify sadr.&lt;/P&gt;&lt;P&gt;        MOVE-CORRESPONDING sadr TO lfa1.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        MOVE-CORRESPONDING t001w TO lfa1.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      s_ekko-adrnr = t001w-adrnr.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    CLEAR t001w.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  break-point.&lt;/P&gt;&lt;P&gt;  lfa1-name1 = 'Vijay Inc'.&lt;/P&gt;&lt;P&gt;  modify lfa1.&lt;/P&gt;&lt;P&gt;  break-point.&lt;/P&gt;&lt;P&gt;ENDFORM.                               " READ_ADDRESS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am trying to do here exactly is getting address from standard tables and changing that in the program Also I wanted the new address to be displayed in the print preview. But I couldn't understand where it is going wrong. Please go through the code and inform me the error. I couldn't understand how the inofrmation is retrieved from standard tables and through which variables it is send to the form layout set. If you can  please explain this concept also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 19:13:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231474#M139457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T19:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231475#M139458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u need to do modifications in the sapscript MEDRUCK( by copying it into zform)..this is the FORM for PO print.. chk the address box in this form n change the address variables accordingly..&lt;/P&gt;&lt;P&gt;Hope it helps,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;BIkash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 19:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231475#M139458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T19:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231476#M139459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Agarwal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did that I copied medruck ino ypomedruck. But still it is the same problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 19:20:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231476#M139459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T19:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231477#M139460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Varun,&lt;/P&gt;&lt;P&gt;  Why dont you move these values into a internal table &amp;amp; then use those tables for the values.I guess we cannot change the SAP tables data.Even if you try to change ,it retains the original picked data as we are not commiting the job.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 19:22:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231477#M139460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T19:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231478#M139461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did not understand how the data is transfered from print program to the script. If you go through the code in the editor of address window he has written as &amp;amp;lfa1-name1&amp;amp;. What is he referring actually ? Is he referring the standard tables  or internal tables in the program. I think he is using standard table because when I debug I did not come across internal table with name lfa1. Moreover I dont have a clear picture of how data is transfered from print program to the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 19:30:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231478#M139461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T19:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231479#M139462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LFA1 is the structure which has the vendor information.The code selects this information in the same strcuture name LFA1 &amp;amp; passes to the sapscript. The best way to chk this is see the Text Element under which ur data is written in ur sapscript. Then goto ur program, search where that Text element is being called(write_form) put a breakpoint at that function module n run ur transaction...at this stage c the values of the variables (LFA1 structure in ur case)..u ll c how they r gettin transferred.&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Bikash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 19:38:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231479#M139462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T19:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231480#M139463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun,&lt;/P&gt;&lt;P&gt; He is using the Header of the standard table.&lt;/P&gt;&lt;P&gt;He does select * from lfa1 where kunnr = xxx.&lt;/P&gt;&lt;P&gt;So even when you use update or modify it doesnt matter,as its only the header which is used.so the data wont change.If you want your data to be printed,then you have to move it to an internal table &amp;amp; also change in the layout to write that information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 19:41:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231480#M139463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T19:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231481#M139464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I declared a variable called zname1 of type lfa1-name1 and assignned the  value to it and then I changed the code in the editor window of address of form ypomedruck in the following manner :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF &amp;amp;PAGE&amp;amp; EQ 1.                   &lt;/P&gt;&lt;P&gt;INCLUDE &amp;amp;T024E-TXADR&amp;amp; OBJECT TEXT &lt;/P&gt;&lt;P&gt;                                  &lt;/P&gt;&lt;P&gt;ENDIF.                            &lt;/P&gt;&lt;P&gt;                                  &lt;/P&gt;&lt;P&gt;IF &amp;amp;EKKO-ADRNR(K)&amp;amp; EQ '          '&lt;/P&gt;&lt;P&gt;ADDRESS PARAGRAPH AS                                                                                &lt;/P&gt;&lt;P&gt;NAME     &amp;amp;ZNAME1&amp;amp;, &amp;amp;LFA1-NAME2&amp;amp;,&lt;/P&gt;&lt;P&gt;  STREET   &amp;amp;LFA1-STRAS&amp;amp;           &lt;/P&gt;&lt;P&gt;  POBOX    &amp;amp;LFA1-PFACH&amp;amp;  CODE &amp;amp;LFA&lt;/P&gt;&lt;P&gt;  CITY     &amp;amp;LFA1-ORT01&amp;amp;, &amp;amp;LFA1-ORT&lt;/P&gt;&lt;P&gt;  POSTCODE &amp;amp;LFA1-PSTLZ&amp;amp;           &lt;/P&gt;&lt;P&gt;  COUNTRY  &amp;amp;LFA1-LAND1&amp;amp;           &lt;/P&gt;&lt;P&gt;  REGION   &amp;amp;LFA1-REGIO&amp;amp;           &lt;/P&gt;&lt;P&gt;  FROMCOUNTRY &amp;amp;T001-LAND1&amp;amp;        &lt;/P&gt;&lt;P&gt;ENDADDRESS                        &lt;/P&gt;&lt;P&gt;ELSE                              &lt;/P&gt;&lt;P&gt;ADDRESS PARAGRAPH AS              &lt;/P&gt;&lt;P&gt;  TITLE    &amp;amp;ZNAME1&amp;amp;               &lt;/P&gt;&lt;P&gt;  ADDRESSNUMBER &amp;amp;EKKO-ADRNR(K)&amp;amp;   &lt;/P&gt;&lt;P&gt;  FROMCOUNTRY &amp;amp;T001-LAND1&amp;amp;        &lt;/P&gt;&lt;P&gt;ENDADDRESS                        &lt;/P&gt;&lt;P&gt;ENDIF                             &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still the value of zname1 is not displayed in the print review. I dont see any reason as why this is not working . Can anyone please explain me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 20:15:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231481#M139464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T20:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231482#M139465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun,&lt;/P&gt;&lt;P&gt;  I think the 2nd part is getting triggered.Put a break-point &amp;amp; check.ie&lt;/P&gt;&lt;P&gt;ADDRESS PARAGRAPH AS &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;TITLE &amp;amp;ZNAME1&amp;amp;&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;ADDRESSNUMBER &amp;amp;EKKO-ADRNR(K)&amp;amp; &lt;/P&gt;&lt;P&gt;FROMCOUNTRY &amp;amp;T001-LAND1&amp;amp; &lt;/P&gt;&lt;P&gt;ENDADDRESS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp; title is not the field zname1.thats why i think you are getting space.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 20:23:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231482#M139465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T20:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231483#M139466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phani ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This still doesn't work for me. What do these signify in the address command :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Title,Street etc.,&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even I used Break-point in the ediotr of window but it doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 20:30:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231483#M139466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T20:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231484#M139467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun, &lt;/P&gt;&lt;P&gt;  Break point wont work in editor.You need to activate the debugger in the SE71 &amp;amp; then debug the script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 20:32:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231484#M139467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T20:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231485#M139468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i specify the value in the editor as &amp;amp;ZNMAE1&amp;amp; this is getting printed in print review but when I specify it as title &amp;amp;ZNAME1&amp;amp; in the address command it disapppears. I am not able to understand how address command works even if I go through the documentation. Can you please explain me how it works and what should be the reason for not getting printed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 20:55:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231485#M139468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T20:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231486#M139469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun,&lt;/P&gt;&lt;P&gt;  The ADDRESS-ENDADDRESS command formats addresses according to the postal norms of the recipient's country, as defined in the country parameter.&lt;/P&gt;&lt;P&gt;So if the parameterdoesnt match then you will not get any thing.declare the zname as lfa1-anred &amp;amp; yoou will get the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 21:04:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231486#M139469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T21:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231487#M139470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even though I modified the code as this way in the editor of window still I am not able to display the value of zname1 in my program. I declared it as zname1 type lfa1-anred. If I dont include in paragraph it is displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF &amp;amp;PAGE&amp;amp; EQ 1.                                                         &lt;/P&gt;&lt;P&gt;INCLUDE &amp;amp;T024E-TXADR&amp;amp; OBJECT TEXT ID ADRS LANGUAGE &amp;amp;EKKO-SPRAS&amp;amp;         &lt;/P&gt;&lt;P&gt;ENDIF.                                                   IF &amp;amp;EKKO-ADRNR(K)&amp;amp; EQ '          '                                      &lt;/P&gt;&lt;P&gt;ADDRESS                                                    TITLE &amp;amp;ZNAME1&amp;amp;                                                        &lt;/P&gt;&lt;P&gt;NAME &amp;amp;LFA1-NAME2&amp;amp;, &amp;amp;LFA1-NAME3&amp;amp;, &amp;amp;LFA1-NAME4&amp;amp;                           &lt;/P&gt;&lt;P&gt;  STREET   &amp;amp;LFA1-STRAS&amp;amp;                                                 &lt;/P&gt;&lt;P&gt;  POBOX    &amp;amp;LFA1-PFACH&amp;amp;  CODE &amp;amp;LFA1-PSTL2&amp;amp;                              &lt;/P&gt;&lt;P&gt;  CITY     &amp;amp;LFA1-ORT01&amp;amp;, &amp;amp;LFA1-ORT02&amp;amp;                                   &lt;/P&gt;&lt;P&gt;  POSTCODE &amp;amp;LFA1-PSTLZ&amp;amp;                                                 &lt;/P&gt;&lt;P&gt;  COUNTRY  &amp;amp;LFA1-LAND1&amp;amp;                                                 &lt;/P&gt;&lt;P&gt;  REGION   &amp;amp;LFA1-REGIO&amp;amp;                                                 &lt;/P&gt;&lt;P&gt;  FROMCOUNTRY &amp;amp;T001-LAND1&amp;amp;                                              &lt;/P&gt;&lt;P&gt;ENDADDRESS                                                              &lt;/P&gt;&lt;P&gt;ELSE                                                     ADDRESS                                                                 &lt;/P&gt;&lt;P&gt;  TITLE &amp;amp;ZNAME1&amp;amp;                                                        &lt;/P&gt;&lt;P&gt;  ADDRESSNUMBER &amp;amp;EKKO-ADRNR(K)&amp;amp;                                         &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 21:24:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231487#M139470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T21:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231488#M139471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun,&lt;/P&gt;&lt;P&gt;  I am not too sure,but i think we should not specify the variables in the ADDRESS &amp;amp; END-ADDRESS.Remove them &amp;amp; see if you are able to get the value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 21:48:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231488#M139471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T21:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Sap script Change program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231489#M139472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to get the values out of ADDRESS - ENDADDRESS.&lt;/P&gt;&lt;P&gt;But they do not work in address command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 22:03:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-change-program/m-p/1231489#M139472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T22:03:34Z</dc:date>
    </item>
  </channel>
</rss>

