<?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: ALV_dOUBT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569198#M256973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi could you check if this is coming because you are trying to call the enjoy transactions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you change you call transaction to the one below&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'VL33' and skip first screen.&lt;/P&gt;&lt;P&gt;and see if it works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Oct 2006 13:14:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-04T13:14:38Z</dc:date>
    <item>
      <title>ALV_dOUBT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569195#M256970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A strange thing is happening in my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using an interactive ALV that is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when the user selects the &lt;/P&gt;&lt;P&gt;Sales document then it goes to VA03 &lt;/P&gt;&lt;P&gt;Delivery document then it goes to VL03&lt;/P&gt;&lt;P&gt;Billing document then it goes to VF03&lt;/P&gt;&lt;P&gt;I/B Delivery document then it goes to VL33N&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My logic is working fine for all the documents but not for i/b deliveries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of i/b deliveries , when I am clicking the second record it still takes some previous document number and displays it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Giving a snippet of my code:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      elseif vit_nast_final-kappl = 'E1'&lt;/P&gt;&lt;P&gt;      and NOT rs_selfield-value IS INITIAL&lt;/P&gt;&lt;P&gt;     and rs_selfield-sel_tab_field NE 'VIT_NAST_FINAL-PROCESS_OUTPUT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        SET PARAMETER ID   'VL'     FIELD vit_nast_final-objky.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION   'VL33N'  and skip first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Sales orders&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      elseif vit_nast_final-kappl = 'V1'&lt;/P&gt;&lt;P&gt;      and NOT rs_selfield-value IS INITIAL&lt;/P&gt;&lt;P&gt;     and rs_selfield-sel_tab_field NE 'VIT_NAST_FINAL-PROCESS_OUTPUT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        SET PARAMETER ID   'AUN'    FIELD vit_nast_final-objky.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION   'VA03'  and skip first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    deliveries&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      elseif vit_nast_final-kappl = 'V2'&lt;/P&gt;&lt;P&gt;      and NOT rs_selfield-value IS INITIAL&lt;/P&gt;&lt;P&gt;     and rs_selfield-sel_tab_field NE 'VIT_NAST_FINAL-PROCESS_OUTPUT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        SET PARAMETER ID   'VL'    FIELD vit_nast_final-objky.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION   'VL03N'  and skip first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    invoices / billing&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      elseif vit_nast_final-kappl = 'V3'&lt;/P&gt;&lt;P&gt;      and NOT rs_selfield-value IS INITIAL&lt;/P&gt;&lt;P&gt;     and rs_selfield-sel_tab_field NE 'VIT_NAST_FINAL-PROCESS_OUTPUT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        SET PARAMETER ID   'VF'    FIELD vit_nast_final-objky.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION   'VF03'  and skip first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    shipments / transport documents&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      elseif vit_nast_final-kappl = 'V7'&lt;/P&gt;&lt;P&gt;      and NOT rs_selfield-value IS INITIAL&lt;/P&gt;&lt;P&gt;     and rs_selfield-sel_tab_field NE 'VIT_NAST_FINAL-PROCESS_OUTPUT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        SET PARAMETER ID   'TNR'    FIELD vit_nast_final-objky.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION   'VT03N'  and skip first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think its because I need to refresh the session memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 12:53:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569195#M256970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T12:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: ALV_dOUBT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569196#M256971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Place a break point at the set parameter id statement and see if the value of vit_nast_final-objky is indeed the selected line.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 12:57:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569196#M256971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T12:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: ALV_dOUBT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569197#M256972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes...its always the selected one....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working fine with all the other docs...but only i/b deliveries are giving problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569197#M256972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: ALV_dOUBT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569198#M256973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi could you check if this is coming because you are trying to call the enjoy transactions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you change you call transaction to the one below&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'VL33' and skip first screen.&lt;/P&gt;&lt;P&gt;and see if it works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:14:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569198#M256973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: ALV_dOUBT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569199#M256974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with Parameter id VLB.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:18:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569199#M256974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: ALV_dOUBT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569200#M256975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried using teh parameter VLB ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Buts its the same thing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:25:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569200#M256975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: ALV_dOUBT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569201#M256976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dominic..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'VL33' and skip first screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also doesn't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:28:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569201#M256976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: ALV_dOUBT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569202#M256977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Subhash,&lt;/P&gt;&lt;P&gt; I think the problem arises when we pass an invalid Inbound delivery number.&lt;/P&gt;&lt;P&gt;to corroborate this i have done this&lt;/P&gt;&lt;P&gt;1) First pass a valid Outbound delivery number in the set parameter id.&lt;/P&gt;&lt;P&gt;2) Then pass an invalid outb del num.&lt;/P&gt;&lt;P&gt;in second case also, it is going to the last valid outbound delivery number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, you have to validate the delivery number that is being passed to the transaction before you give it to the set parameter id statement.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:34:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569202#M256977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: ALV_dOUBT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569203#M256978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ravi...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I am not sure about your point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please elaborate a little more?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if that is the case then why is it only giving for i/b delivery  and not for others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover I am passing a valid i/b delivery number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:37:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569203#M256978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: ALV_dOUBT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569204#M256979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with parameter id VLM.&lt;/P&gt;&lt;P&gt;activate.&lt;/P&gt;&lt;P&gt;Log off from sap.&lt;/P&gt;&lt;P&gt;Re login and test.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:48:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569204#M256979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: ALV_dOUBT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569205#M256980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks..its working fine now..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But please please tell me how and from where did you come to know about this parameter VLM?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:55:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569205#M256980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: ALV_dOUBT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569206#M256981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Subhash,&lt;/P&gt;&lt;P&gt;   Go to the main program of the Vl33n transaction i.e&lt;/P&gt;&lt;P&gt;SAPMV50A. In that make a search for "Get parameter id".&lt;/P&gt;&lt;P&gt;The code you have to look at is line 120-125 in the includeMV50AF0T_TRANSAKTION_INIT.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;Debug the vl33n transaction for the first screen.&lt;/P&gt;&lt;P&gt;Put a break point at the get statements. It will stop at the correct get statement.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 08:54:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/1569206#M256981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-05T08:54:51Z</dc:date>
    </item>
  </channel>
</rss>

