<?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: need help!!!!!!!!!!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138722#M113900</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx for ur quick reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it is not picking up from vbuk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to know from hwre its picking in vf03 t-code.&lt;/P&gt;&lt;P&gt;when we enter invoice no. and then see the documentation flow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i have hundereds of invoice numbers i can not run this t-code again and angain so i want to right a program which will find the invoice no.'s which r having the document status as clearned&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there anything to do with these tables like BSIS OR BSIK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WAITING FOR UR REPLY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;MAQSOOD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Feb 2006 09:14:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-14T09:14:04Z</dc:date>
    <item>
      <title>need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138719#M113897</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;i want to know the logic for writing a program in which it reads the invoice numbers from a flat file and checks for its accounting document status. if the status is "cleared" then it should record that invoice no. in another flat file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the main part is i want to know is that whats tables are to be used and what fields and the relation between those tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;maqsood&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 07:54:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138719#M113897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T07:54:03Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138720#M113898</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;what you have to do is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use GUI_UPLOAD to load the data from the flat file to the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use the table vbrk,vbrp,vbuk for billing documents win which VBUK is the status. vbeln-&amp;gt;documetn number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tehn use GUI_download to write to the flat file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code:&lt;/P&gt;&lt;P&gt;tables vbrp,vbuk,bseg,bsad.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data: i_belnr like bseg-belnr.&lt;/P&gt;&lt;P&gt;data: begin of record occurs 0.&lt;/P&gt;&lt;P&gt;      vbeln like vbrp-vbeln.&lt;/P&gt;&lt;P&gt;      end of record.&lt;/P&gt;&lt;P&gt;data: begin of rec_confirmed occurs 0.&lt;/P&gt;&lt;P&gt;      vbeln like vbrp-vbeln.----&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;&amp;gt;invoice number&lt;/P&gt;&lt;P&gt;      belnr like bsad-belnr.----&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;&amp;gt;billing document&lt;/P&gt;&lt;P&gt;      augdt like bsad-augdt. -&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt;&amp;gt; cleared date&lt;/P&gt;&lt;P&gt;      augbl like bsad-augbl .----&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;&amp;gt;clearing document&lt;/P&gt;&lt;P&gt;      end of record.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;data: i_vbuk like vbuk occurs 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME                      = 'D:\Personal\invoice.txt'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; FILETYPE                      = 'DAT'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   HAS_FIELD_SEPARATOR           = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HEADER_LENGTH                 = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  READ_BY_LINE                  = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DAT_MODE                      = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CODEPAGE                      = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IGNORE_CERR                   = ABAP_TRUE&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  REPLACEMENT                   = '#'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CHECK_BOM                     = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FILELENGTH                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HEADER                        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    DATA_TAB                      = RECORD&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   FILE_OPEN_ERROR               = 1&lt;/P&gt;&lt;P&gt;   FILE_READ_ERROR               = 2&lt;/P&gt;&lt;P&gt;   NO_BATCH                      = 3&lt;/P&gt;&lt;P&gt;   GUI_REFUSE_FILETRANSFER       = 4&lt;/P&gt;&lt;P&gt;   INVALID_TYPE                  = 5&lt;/P&gt;&lt;P&gt;   NO_AUTHORITY                  = 6&lt;/P&gt;&lt;P&gt;   UNKNOWN_ERROR                 = 7&lt;/P&gt;&lt;P&gt;   BAD_DATA_FORMAT               = 8&lt;/P&gt;&lt;P&gt;   HEADER_NOT_ALLOWED            = 9&lt;/P&gt;&lt;P&gt;   SEPARATOR_NOT_ALLOWED         = 10&lt;/P&gt;&lt;P&gt;   HEADER_TOO_LONG               = 11&lt;/P&gt;&lt;P&gt;   UNKNOWN_DP_ERROR              = 12&lt;/P&gt;&lt;P&gt;   ACCESS_DENIED                 = 13&lt;/P&gt;&lt;P&gt;   DP_OUT_OF_MEMORY              = 14&lt;/P&gt;&lt;P&gt;   DISK_FULL                     = 15&lt;/P&gt;&lt;P&gt;   DP_TIMEOUT                    = 16&lt;/P&gt;&lt;P&gt;   OTHERS                        = 17&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;loop at record.&lt;/P&gt;&lt;P&gt;select belnr into i_belnr from BSEG where vbeln = record-vbeln.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="7" type="ul"&gt;&lt;P&gt;selecting the closed items&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;select belnr augdt augbl into i_bsad from BSAD where belnr = i_belnr.&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;loop at i_bsad.&lt;/P&gt;&lt;P&gt;rec_confirmed-vbeln = record-vbeln.&lt;/P&gt;&lt;P&gt;rec-confirmet-belnr = i_bsad-belnr.&lt;/P&gt;&lt;P&gt;rec-confirmet-augdt = i_bsad-augdt.&lt;/P&gt;&lt;P&gt;rec-confirmet-augdl = i_bsad-augdl.&lt;/P&gt;&lt;P&gt;append rec_confirmed.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;******************similarly you can collect the open *****items from BSID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  BIN_FILESIZE                    =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    FILENAME                        = &amp;lt;file name&amp;gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FILETYPE                        = 'DAT'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  APPEND                          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WRITE_FIELD_SEPARATOR           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HEADER                          = '00'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TRUNC_TRAILING_BLANKS           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WRITE_LF                        = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  COL_SELECT                      = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  COL_SELECT_MASK                 = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DAT_MODE                        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CONFIRM_OVERWRITE               = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_AUTH_CHECK                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CODEPAGE                        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IGNORE_CERR                     = ABAP_TRUE&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  REPLACEMENT                     = '#'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WRITE_BOM                       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TRUNC_TRAILING_BLANKS_EOL       = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FILELENGTH                      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    DATA_TAB                        = rec_confirmed&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FIELDNAMES                      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FILE_WRITE_ERROR                = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_BATCH                        = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GUI_REFUSE_FILETRANSFER         = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INVALID_TYPE                    = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_AUTHORITY                    = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  UNKNOWN_ERROR                   = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HEADER_NOT_ALLOWED              = 7&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SEPARATOR_NOT_ALLOWED           = 8&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FILESIZE_NOT_ALLOWED            = 9&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HEADER_TOO_LONG                 = 10&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DP_ERROR_CREATE                 = 11&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DP_ERROR_SEND                   = 12&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DP_ERROR_WRITE                  = 13&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  UNKNOWN_DP_ERROR                = 14&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ACCESS_DENIED                   = 15&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DP_OUT_OF_MEMORY                = 16&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DISK_FULL                       = 17&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DP_TIMEOUT                      = 18&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FILE_NOT_FOUND                  = 19&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATAPROVIDER_EXCEPTION          = 20&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CONTROL_FLUSH_ERROR             = 21&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                          = 22&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&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;kishore&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replay if you want more&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Harikishore Sreenivasulu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Harikishore Sreenivasulu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 08:04:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138720#M113898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T08:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138721#M113899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi maqsood &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it will be useful&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;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 08:18:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138721#M113899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T08:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138722#M113900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx for ur quick reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it is not picking up from vbuk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to know from hwre its picking in vf03 t-code.&lt;/P&gt;&lt;P&gt;when we enter invoice no. and then see the documentation flow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i have hundereds of invoice numbers i can not run this t-code again and angain so i want to right a program which will find the invoice no.'s which r having the document status as clearned&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there anything to do with these tables like BSIS OR BSIK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WAITING FOR UR REPLY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;MAQSOOD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 09:14:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138722#M113900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T09:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138723#M113901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI maqsood&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually you have to link VBRP-vbeln(sales document number or invoice number) with bseg-vbeln(sales document number) and get the bseg-belnr(Billing document number) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use the tables BSAD and BSID.&lt;/P&gt;&lt;P&gt;BSAD-&amp;gt;Closed items.&lt;/P&gt;&lt;P&gt;BSID-&amp;gt;opened items.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the belnr is present in BSAD you have the cleared date &lt;/P&gt;&lt;P&gt;the document is present in BSID then the document is not cleared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;I have made the changes. this logic might work. notify me if there is a change&amp;lt;/b&amp;gt;&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;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 10:11:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138723#M113901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T10:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138724#M113902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think ur on the right path.&lt;/P&gt;&lt;P&gt;but when i try to execute ur logic through se16 its taking long time to respond i think we have to enter the other key fields also inorder to execute it fast as this query i have to run on a stand by production server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And by the way i have to record the uncleared invoice no. not the cleared one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry i gave wrong info before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;maqsood&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 10:40:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138724#M113902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T10:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138725#M113903</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;just check out this logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in BKPF table enter these values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AWTYPE: VBRK&lt;/P&gt;&lt;P&gt;AWKEY: invoice no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get the BELNR field value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enter the BLENR field value in BSID table .&lt;/P&gt;&lt;P&gt;here i need to know the values for other key fields so that accessing will be fast.&lt;/P&gt;&lt;P&gt;i have the company code field value and how to find the rest of the key fields values&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;maqsood&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 10:54:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138725#M113903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T10:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138726#M113904</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;&lt;/P&gt;&lt;P&gt;ya, BSEG will take more amount time bcoz it is the biggest table in sap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ya your logic will be faster. You can get the customer number KUNNR from vbrk and BLART document type as 'RV'-&amp;gt;sales document&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;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 11:09:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138726#M113904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T11:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138727#M113905</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;what about using bsas and bsis tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;maqsood&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 11:27:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138727#M113905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T11:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138728#M113906</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;In vf03 vbdkr-&amp;gt;header view for billing&lt;/P&gt;&lt;P&gt;adn vbdpr-.item view for billing is used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you will most of the values in that view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can get the Customer number in the BSID as i said earlier from the  Bill-to-party in the view vbdkr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 11:27:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138728#M113906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T11:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138729#M113907</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;BSIS &amp;amp; BSAS are the open items &amp;amp; closed items for the General ledger which contians not only the sales data it contains all the Bills which is very complicated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whereas&lt;/P&gt;&lt;P&gt;BSAD &amp;amp; BSID is for Customer bills i.e sales&lt;/P&gt;&lt;P&gt;BSIK &amp;amp; BSAK is for vendor bills i.e purchasing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 11:31:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138729#M113907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T11:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138730#M113908</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;IS YOUR PROBLEM SOLVED. REPLY FOR ANY HELP&lt;/P&gt;&lt;P&gt;&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;KISHORE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 18:40:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138730#M113908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T18:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138731#M113909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maqsood&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what happened? Is your problem solved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes please close the thread.&lt;/P&gt;&lt;P&gt;&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;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 05:30:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138731#M113909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T05:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138732#M113910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI maqsood&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please close this thread. &lt;/P&gt;&lt;P&gt;&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;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 08:24:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138732#M113910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T08:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: need help!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138733#M113911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have send my report to my seniors and was waiting for their replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ways thanx a lot guys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i will close this tread now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;maqsood&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2006 12:44:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help/m-p/1138733#M113911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-16T12:44:11Z</dc:date>
    </item>
  </channel>
</rss>

