EKBE table data

Acutally I am fetching data from EKBE table for a given EBELN. Here I am getting all the GR and IR number for a EBELN. I have to fileter those GR which have IR. It means for a BELNR if the IR is raised, then the reference document (LFBNR) will be GR no. When I am going to ouput I am getting the IR and GR. I want to bring want to get oneline. If the IR is not raised for GR then it has to dispaly one line item.
Ex: EBELN - BELNR - BWETP - LFBNR
4100000000 - 5000000200 - E - 5000000200   
4100000000 - 5000000201 - E - 5000000201
4100000000 - 5100000501 - Q - 5000000200
4100000000 - 5100000502 - Q - 5000000200
OUTPUT EXPECTED:
4100000000 - 5000000201 - E - 5000000201
4100000000 - 5100000501 - Q - 5000000200
4100000000 - 5100000502 - Q - 5000000200
E - GR & Q - IR.
for an E if IR is not there, it has to pick. See the Belnr 5000000201
This is my Prob.
Regards
Ram

HI
try with this code
data : begin of wa_pur_itm occurs 0,
         ebeln like ekpo-ebeln,
         ebelp like ekpo-ebelp,
         loekz like ekpo-loekz,
         aedat like ekpo-aedat,
         matkl like ekpo-matkl,
         matnr like ekbe-matnr,
         shkzg like ekbe-shkzg,
         bewtp like ekbe-bewtp,
         bwart like ekbe-bwart,
         wrbtr like ekbe-wrbtr,
         waers like ekbe-waers,
         belnr like ekbe-belnr,
         menge like ekbe-menge,
         buzei like ekbe-buzei,
         lfbnr like ekbe-lfbnr,
         hkont like bseg-hkont,
         xncop like bseg-xncop,
         maktx type makt-maktx,
         BEWTK type T163C-bewtk,
       end of wa_pur_itm.
DATA : t_pur_itm   like wa_pur_itm occurs 0 with header line,
       t_pur_itm1  like wa_pur_itm occurs 0 with header line,
       t_pur_itm2  like wa_pur_itm occurs 0 with header line,
       t_pur_itm3  like wa_pur_itm occurs 0 with header line.
select aebeln aebelp aloekz aaedat amatkl amatnr
       bshkzg bbewtp bbwart bwrbtr bwaers bbelnr
       bmenge bbuzei b~lfbnr
   into (t_pur_itm1-ebeln, t_pur_itm1-ebelp,
        t_pur_itm1-loekz, t_pur_itm1-aedat,
        t_pur_itm1-matkl, t_pur_itm1-matnr,
        t_pur_itm1-shkzg, t_pur_itm1-bewtp,
        t_pur_itm1-bwart, t_pur_itm1-wrbtr,
        t_pur_itm1-waers, t_pur_itm1-belnr,
        t_pur_itm1-menge, t_pur_itm1-buzei,
        t_pur_itm1-lfbnr)
       from ekpo as a
       inner join ekbe as b
       on aebeln eq bebeln and
          aebelp eq bebelp
     where a~aedat in s_aedat and
           a~matkl eq s_matkl and
           a~loekz eq space and
           a~bstyp eq 'F' and
           b~gjahr eq s_gjahr and
           b~bewtp eq 'E'.
append t_pur_itm1.
endselect.
loop at t_pur_itm2.
  loop at t_pur_itm1 where ebeln eq t_pur_itm2-ebeln and
                           ebelp eq t_pur_itm2-ebelp and
                           lfbnr eq t_pur_itm2-lfbnr and
                           bewtp eq 'E'.
    t_pur_itm-ebeln = t_pur_itm1-ebeln.
    t_pur_itm-ebelp = t_pur_itm1-ebelp.
    t_pur_itm-bewtp = t_pur_itm1-bewtp.
    t_pur_itm-loekz = t_pur_itm1-loekz.
    t_pur_itm-aedat = t_pur_itm1-aedat.
    t_pur_itm-matkl = t_pur_itm1-matkl.
    t_pur_itm-matnr = t_pur_itm1-matnr.
    t_pur_itm-shkzg = t_pur_itm1-shkzg.
    t_pur_itm-bwart = t_pur_itm1-bwart.
   if t_pur_itm1-bewtp eq 'R'.
     t_pur_itm-wrbtr = t_pur_itm1-wrbtr.
   elseif t_pur_itm1-bewtp eq 'Q'.
   t_pur_itm-wrbtr = - t_pur_itm1-wrbtr.
   endif.
    t_pur_itm-wrbtr = t_pur_itm1-wrbtr.
    t_pur_itm-waers = t_pur_itm1-waers.
    t_pur_itm-belnr = t_pur_itm1-belnr.
    t_pur_itm-menge = t_pur_itm1-menge.
    t_pur_itm-buzei = t_pur_itm1-buzei.
    t_pur_itm-lfbnr = t_pur_itm1-lfbnr.
    append t_pur_itm.
  endloop.
endloop.
sort t_pur_itm by ebeln ebelp bewtp belnr buzei.
loop at t_pur_itm1.
  loop at t_pur_itm2 where ebeln eq t_pur_itm1-ebeln and
                           ebelp eq t_pur_itm1-ebelp and
                           bewtp eq 'Q'.
    t_pur_itm-ebeln = t_pur_itm2-ebeln.
    t_pur_itm-ebelp = t_pur_itm2-ebelp.
    t_pur_itm-bewtp = t_pur_itm2-bewtp.
    t_pur_itm-loekz = t_pur_itm2-loekz.
    t_pur_itm-aedat = t_pur_itm2-aedat.
    t_pur_itm-matkl = t_pur_itm2-matkl.
    t_pur_itm-matnr = t_pur_itm2-matnr.
    t_pur_itm-shkzg = t_pur_itm2-shkzg.
    t_pur_itm-bwart = t_pur_itm2-bwart.
    if t_pur_itm2-bewtp eq 'R'.
      t_pur_itm-wrbtr = t_pur_itm2-wrbtr.
    elseif t_pur_itm2-bewtp eq 'Q'.
    t_pur_itm-wrbtr = - t_pur_itm2-wrbtr.
    endif.
   t_pur_itm-wrbtr = t_pur_itm2-wrbtr.
    t_pur_itm-waers = t_pur_itm2-waers.
    t_pur_itm-belnr = t_pur_itm2-belnr.
    t_pur_itm-menge = t_pur_itm2-menge.
    t_pur_itm-buzei = t_pur_itm2-buzei.
    t_pur_itm-lfbnr = t_pur_itm2-lfbnr.
    select single maktx into maktx from makt
        where matnr eq t_pur_itm2-matnr and
              spras eq 'EN'.
    select single bewtk into bewtk from T163C
        where bewtp eq t_pur_itm2-bewtp and
              spras eq 'EN'.
    concatenate t_pur_itm2-belnr s_gjahr into awkey.
    select single belnr into t_belnr from bkpf
      where awkey eq awkey and
            gjahr eq s_gjahr.
    concatenate t_belnr s_gjahr into t_zuonr.
    select single hkont
        into t_pur_itm2-hkont
        from bseg
        where belnr eq t_belnr and
              gjahr eq s_gjahr and
              zuonr eq t_zuonr.
    t_pur_itm-maktx = maktx.
    t_pur_itm-bewtk = bewtk.
    t_pur_itm-hkont = t_pur_itm2-hkont.
    append t_pur_itm.
  endloop.
endloop.
sort t_pur_itm by ebeln ebelp bewtp belnr buzei bwart lfbnr hkont.
DELETE ADJACENT DUPLICATES FROM t_pur_itm.
if s_opt = 'X'.
  loop at t_pur_itm.
    if t_pur_itm-BEWTP eq 'E'.
      move-corresponding t_pur_itm to t_pur_itmE.
      append t_pur_itmE.
      sort t_pur_itmE by ebeln ebelp bewtp belnr bwart lfbnr hkont.
    elseif t_pur_itm-BEWTP eq 'Q'.
      move-corresponding t_pur_itm to t_pur_itmQ.
      append t_pur_itmQ.
      sort t_pur_itmQ by ebeln ebelp bewtp belnr bwart lfbnr hkont.
    endif.
  endloop.

Similar Messages

  • Internal table data issue

    i have a internal table i_final in program 1 and this internal table data need to be input of other program, so how i need to pass the i_final data to other program.

    this is the code in program 1:
      ENDIF.
    **appending work area to internal table.
        APPEND wa_final TO i_final.
      ENDLOOP.
      EXPORT i_final to memory id 'zfinal'.
    this is the code in program 2:
    TYPES: BEGIN OF t_final,
          bukrs TYPE bkpf-bukrs,
          belnr TYPE bkpf-belnr,
          blart TYPE bkpf-blart,
          xblnr TYPE bkpf-xblnr,
          ebeln TYPE ekbe-ebeln,
          ebelp TYPE ekbe-ebelp,
          belnr1 TYPE ekbe-belnr,
          xblnr1 TYPE ekbe-xblnr,
          ebeln1 TYPE ekko-ebeln,
          exnum TYPE ekko-exnum,
          lands TYPE ekko-lands,
          stceg_l TYPE ekko-stceg_l,
          END OF t_final.
    DATA: i_final TYPE STANDARD TABLE OF t_final WITH HEADER LINE.
    DATA: wa_final TYPE t_final.
    IMPORT i_final from memory ID 'zfinal'.
    write: i_final.
    its giving Dump.

  • Qty field addtion based on item no. for ekbe table

    Hi experts,
                      below is my code..
    LOOP AT IT_EKKO.
      READ TABLE IT_LFA1 WITH KEY LIFNR = IT_EKKO-LIFNR.
       MOVE: IT_LFA1-NAME1 TO IT_DISPLAY-NAME1.
       MOVE: IT_EKKO-LIFNR TO IT_DISPLAY-LIFNR,
             IT_EKKO-AEDAT TO IT_DISPLAY-AEDAT,
             IT_EKKO-ERNAM TO IT_DISPLAY-ERNAM,
             IT_EKKO-EKGRP TO IT_DISPLAY-EKGRP.
    READ TABLE IT_EKPO WITH KEY EBELN = IT_EKKO-EBELN.
       MOVE: IT_EKPO-EBELN TO IT_DISPLAY-EBELN,
             IT_EKPO-MATNR TO IT_DISPLAY-MATNR,
             IT_EKPO-MENGE TO IT_DISPLAY-MENGE.
             LOOP AT IT_EKBE where ebeln eq it_ekko-ebeln.
                loop at it_ekbe." WHERE ebelp eq it_ekbe-ebelp.
             IT_DISPLAY-QTY = IT_DISPLAY-QTY + IT_EKBE-MENGE.
             AT END OF EBELP.
            APPEND IT_DISPLAY.
             CONTINUE.
             ENDAT.
             ENDLOOP.
             endloop.
             APPEND IT_DISPLAY.
             CLEAR IT_EKKO.
             ENDLOOP.
    my requirement is to display lifnr,ernam,ekgrp.....etc....
    but the condition is in ekbe table i hav to take purachse document no. from ekko table..based on this ebeln if suppose
    the item no. ebelp in ekbe has value say 10,10, den 20,20..for a single ebeln...then for same item no(10). the qty field should be added
    and for (20) item no. the qty field should be added.
    plz help...
    hw can i acheive this requirement.
    thanks n regards,
    Ashmita Singh.

    Hi Ashmita,
    Do the following changes in your program.
    Define it_lfa1 table as Hashed table with unique key on lifnr.
    Sort table it_ekpo before the loop start on ebeln and used binary search to read data from table.
    Define it_ekbe as sorted table with non-unique key on ebeln and EBELP use single loop.
    Write the following statement before main loop start. (ie it_ekko)
    delete ADJACENT DUPLICATES FROM it_ekbe COMPARING eblen EBELP.
    LOOP AT it_ekko.
    * Define it_lfa1 table as Hashed table with unique key
      READ TABLE it_lfa1 WITH KEY lifnr = it_ekko-lifnr.
      MOVE: it_lfa1-name1 TO it_display-name1.
      MOVE: it_ekko-lifnr TO it_display-lifnr,
      it_ekko-aedat TO it_display-aedat,
      it_ekko-ernam TO it_display-ernam,
      it_ekko-ekgrp TO it_display-ekgrp.
    * Sort table it_ekpo on ebeln and used binary search
      READ TABLE it_ekpo WITH KEY ebeln = it_ekko-ebeln.
      MOVE: it_ekpo-ebeln TO it_display-ebeln,
      it_ekpo-matnr TO it_display-matnr,
      it_ekpo-menge TO it_display-menge.
    * Define it_ekbe as sorted table with non unique key on ebeln and use single loop.
      LOOP AT it_ekbe WHERE ebeln EQ it_ekko-ebeln.
          it_display-qty = it_display-qty + it_ekbe-menge.
      ENDLOOP.
      APPEND it_display.
      CLEAR it_ekko.
    ENDLOOP.
    Kind Rgds
    Ravi Lanjewar

  • EKBE table for Generic Delta

    Hi Gurus,
    Good Day to all. I just like to inquire some details for creating generic datasource with delta enabled. I have created a view table with fields from EKBE table, and created generic datasource that reads the view table I have created from EKBE, now it needs delta process with CPUDT as delta specific field name, seeing the data type of CPUDT, it is DATS with 8 length.
    I would like to assure if what will be use as marker of delta, timestamp utc, timestamp local, calendar day and numeric pointer?
    And if I use one of the above, what settings that needs to be use for the safety interval upper and lower limit?
    Thank you for your inputs and really appreciate it.

    Hi,
    use the CALDAY as a generic delta pointer.
    i would like to recommend as: Safety Interval for Upper Limit as 1 and Safety Interval for lower Limit as ZERO
    i think your are using the DSO as a staging layer no worry about duplicates.
    Thanks,
    Phani.

  • 2LIS_02_SCL - need Doc Currency Amount (WRBTR) from EKBE table

    Problem:  We are using the 2LIS_02_SCL to get our purchasing order data.  The problem is that instead of sending over the Doc Value Amounts found in the EKBE table, SAP is doing a calculation based on the the local currency.  They are then using the Exchange rate from the PO Header.  Our users are complaining, because they expect it to match up with what is in the purchase order history.
    I was planning to create a new amount field and and in my transfer rules write ABAP code to take the following fields from 2LIS_02_SCL:
    BW:CValLC(BWGEO), Local cur.(HWAER), Posting Date, Currency(WAERS)
    Use this Date to go back to TCURR to get the correct exchange rate that is used and do my calculation to doc currency (basically replicating the data as viewed in PO History).
    I ran into an issue however.  The Currency (WAERS) field is being filled with the value from EKKO.  I have a below example where in EKBE, the PO was invoiced in a currency other than the DOC Currency. 
    Data in R/3 from EKBE (History per PO)
    PO:                           1
    Amount in Local Currency(DMBTR):     250,01
    Local Currency (HSWAE):            USD
    Amount in Doc Currency(WRBTR):     250,01
    Doc Currency (WAERS):          USD
    Data in R/3 from EKKO (Purchase Order Header)
    PO:                         1
    WAERS:                    DKK
    In this scenario, I am unable to populate the correct value (as seen in purchase order history).
    I don’t see of a way that I can get around this.  Does anyone have any ideas?
    Thanks

    Hi Jiri,
    You can suggest the RRI from cube built on SCL report to cube built on EKBE based on PO.
    Also check if this can be solved by using a multi-cube on these 2 cubes.
    I have done a RRI when I was facing the same issue.
    Regards,
    Niraj

  • Use of EKBE table

    Hi,
    can any one please solve my questions.
    What type of data saved in EKBE table.
    and total number of entries in EKPO and EKBE are same?
    OR
    for all the entries in ekpo, are same header and item details exist in EKBE?
    points will be rewarded.
    Thanks in Advance,
    Eswar

    hi,
    EKBE table is used to give details of po history document.
    i.e it gives details like whether goods receipt is done or invoice is done for aparticular po.
    the total entries of ekbe and ekpo cannot be same.
    because ekpo stores data when po is created .but in ekbe diifferent records r maintained for gr and vre...
    reward points if hlpful.

  • EKBE posting date

    hi,
    may i know in ekbe table, posting date is referring to PO posting date or material document posting date?
    this table does not explain the date is for which document.
    need help.
    thanks

    This will be material document date only.

  • Create XML file from table data

    Dear All,
    with dataservice 4.0, I want to create an XML file from a table data.
    Table have a single column but more record, for example:
    0001000488;100;EUR;
    0001000489;200;EUR;
    0001000450;300;EUR;
    My desired XML output:
    <Data>
      0001000488;100;GBP;
      0001000489;200;EUR;
      0001000450;300;EUR;
    </Data>
    I try with a sample query but the sistem write only the last record in XML file:
    <Data>
      0001000450;300;EUR;
    </Data>
    Can everyone help me?
    Thank in advance.
    Simone

    Hello
    That is a very simple (also odd) XML document structure, and as such doesn't require use of the XML target.  It can be easily acheived by writing a normal file with a header and footer, which is acheived using a row_generation and a query to generate the hard coded open and close tags.
    Michael

  • Table data does not refresh

    Using LV2010.
    A table displays the test configuration that has been selected by the user.  This appeared to work fine until recently. 
    Nothing in that area of the code has changed .
    The issue is that although valid data exists on the wire and it even gets written to file, nothing is displayed in the table.
    The operator can click multiple times and nothing is displayed.  Even when running with highlight execution turned ON, the table does not get refreshed.
    Unfortunately, each time the operator click the button to insert the configuration, it does.  But it is not displayed.  The same list goes to the table.  You would expect the subsequent attempts would cause all the items to be displayed when it finally does, but no... only the last selection gets displayed.
    I've recently taken over the project and did notice that a previously working feature was not working.  That feature was to allow multiple selections to be inserted at once.  I suspect the feature still workes, but the table only displays a single line of data.
    I did find a thread that started to discuss a similar behavior with a link to a description of the bug, but that page appears to have dissappeared from the website.  It was discussed in 2005.
    Is there a way to force a refresh display on a table?  Another thought... Could it be that the table is displaying data from a portion further down the list which makes it appear as if there is no data?  As I said earlier, this section of code was not touched and it is the only area where the table data is updated and the display refreshed..
    Has anyone else seen this behavior?
    As can be seen above, the probe does "see" the data on the wire.  The screen capture was taken after the data flow had completed the entire state. The wire itself claims to have a 2D array of 1 X 11 elements.  Normally, this data would be displayed.  I can't think of why it wouldn't be displayed.  If I could, I wouldn't be posting this.. 
    I am curious if this is a LV bug...
    Attachments:
    TableDataInvisible.PNG ‏21 KB

    You know me & locals... 
    Plus the property node was used for something else.
    I fear using the VI Analyzer would... well... euh..  hummm...  how to say this,...
    blow up.. 
    LOL!! 

  • Unable to display table data in Review View

    Hi Experts,
    I have one main view and one review View .In my main view i have one table (Normal Table) and several other input feilds and text views....
    If i click on review button in my main view, am able to see all the data in review view except table data.
    How can i get the table data which i have entered in main view.. the same should display in review view.
    I binded the same node in both main and review. and node is defined under component controller.
    Any ideas?
    Regards
    Farooq.

    Hi,
    I think you already binded in review view also with same node. right? So data will move automatically and display in
    review view also. In WDDOINIT of review veiw read data from that node and use bind_Table.
    Cheers,
    Kris.

  • How to loop and read repeating table data of infoPath form in Visual studio workflow.

    Hi,
    I am trying to read info Path form repeating table data in Visual studio workflow.
    could anyone elaborate me in brief how to loop through repeating table and read all rows value one by one in workflow.
    any help would be more then welcome. 
    Thanks...

    Hi Rohan,
    According to your description, my understanding is that you want to create a Visual Studio workflow to get data from info path repeating table.
    I suggest you can submit Repeating Table to a SharePoint List and then you can create a .NET workflow to read data from the SharePoint List.
    Here are some detailed articles for your reference:
    Codeless submitting InfoPath repeating table to a SharePoint list
    Create a Workflow using Visual Studio 2010
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • Excel issues with importing CSV or HTML table data from URL - Sharepoint? Office365?

    Greetings,
    We have a client who is having issues importing CSV or HTML table data as one would do using Excel's Web Query import from a reporting application.  As the error message provided by Excel is unhelpful I'm reaching out to anyone who can help us begin to
    troubleshoot problems affecting what is normal standard Excel functionality.  I'd attach the error screenshot, but I can't because my account is not verified....needless to say it says "Microsoft Excel cannot access  the file https://www.avantalytics.com/reporting_handler?func=wquery&format=csv&logid=XXXX&key=MD5
    Where XXXX is a number and MD5 is an md5 code.  The symptoms stated in the error message are:
    - the file name or path does not exist
    -The file is being used by another program
    -The workbook you are trying to save has the same name as a currently open workbook.
    None of these symptoms are the case, naturally. The user encountered this with Excel2010, she was then upgraded to Excel2013 and is still experiencing the same issue. The output of this URL in a browser (IE, Chrome, Firefox) is CSV data for the affected
    user, so it is not a network connectivity issue.  In our testing environment using both Excel2010 or 2013 this file is imported successfully, so we cannot replicate.  The main difference I can determine between our test environment and the end-user
    is they have a Sharepoint installation and appear to have Office365 as well.
    So,  my question might more appropriately be for Sharepoint or Office365 folks, but I can't be sure they're  a culprit.  Given this - does anyone have any knowledge of issues which might cause this with Sharepoint or Office365 integrated with
    Excel and/or have suggestions for getting more information from Excel or Windows other than this error message?  I've added the domain name as a trusted publisher in IE as I thought that might be the issue, but that hasn't solved anything.  As you
    can see its already https and there is no authentication or login - the md5 key is the authentication.  The certificate for the application endpoint is valid and registered via GoDaddy CA.
    I'm at a loss and would love some suggestions on things to check/try.
    Thanks  -Ross

    Hi Ross,
    >> In our testing environment using both Excel 2010 and 2013 this file is imported successfully, so we cannot replicate.
    I suspect it is caused by the difference of web server security settings.
    KB: Error message when you use Web query to a secure Web page (HTTPS://) in Excel: "Unable to open"
    Hope it will help.
    By the way, this forum is mainly for discussing questions about Office Development (VSTO, VBA and Apps for Office .etc.). For Office products feature specific questions, you could consider posting them on
    Office IT Pro forum or Microsoft Office Community.
    Regards,
    Jeffrey
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Help for Adding table data to list

    Dear Folk,
    How can i add table data to a list. I tried following but not successfull
    Populate_List('OTHER.GROUPLIST', 'GROUP_LIST');
    Help me..

    V_RECORDGROUP :=FIND_GROUP(I_RECORDGROUPNAME);
    V_QUERY:='SELECT data FROM tablea';
    V_RECORDGROUP :=CREATE_GROUP_FROM_QUERY(I_RECORDGROUPNAME,V_QUERY);
    V_TEMP:=POPULATE_GROUP(V_RECORDGROUP);
    POPULATE_LIST(I_ITEM_NAME,V_RECORDGROUP);

  • Can we delete the archived RS tables data in unix path?

    Hi Experts
    As you all know that when we perform RS table archiving we setup a Logical file path 'ARCHIVE_GLOBAL_PATH' pointing to the physical path '/usr/sap/<SYSID>/SYS/global/<FILENAME>' in unix system.
    Here we have our RS table data in the unix path and this logical path will make sure that there are no problems with requests status.
    Now our unix path has grown in size hence we would like to delete some archived data from this path. Could you pls confirm if we delete the data from this unix path will there be any problems with the requests status?
    Simply can we delete the RS table archived data from the unix file path??
    Thanks!!

    Hi All
    Any idea about this would be appreciated.
    Thanks!!

  • PO number from EKBE Table

    Hi Experts,
    I want to prepare a new custom report in which the PO number should appear. I was advised to use EKBE table. On checking I found that I can pass only Material doc# and Fiscal Year and No company code field is found. Is it reliable to use only to input values and try to fetch the PO number? I am not sure if there could be more documents across company codes since the number range is set as company code level. Can you suggest any alternative?
    I have already searched for similar topic but could not find the correct answer.
    Please help.
    Thanks in advance.
    Sunil

    Hi Both,
    If I use MSEG table, I must use GR-MM document. As per my knowledge, IR document (MM/FI) won't reflect in MSEG table.
    If GR entry is done first, then I can fetch the AWKEY field from IR-FI doc to get the MM doc#. If the IR entry is done first, (without GR entry posted on PO line) then it is not very easy to fetch the GR-MM document number at a later point of time also.
    If the PO# is unique, independent from company code and year, then there are no issues, the below logic will work.
    Pass the IR-FI Document number to BKPF with BUKRS&GJAHR and take get IR-MM document (AWKEY - 10 +4). Then pass this to EKBE table with BELNR and GJAHR then pick the EBELN (PO#) and EBELP (line item).
    Please correct if I am not right.
    Thanks in advance!

Maybe you are looking for

  • Dynamic Filename

    Hi i am using the variable substitution method in file adapter for dynamic filenam.e But the adapter is throwing error saying "Message processing failed: Error during variable substitution: com.sap.aii.adapter.file.varsubst.VariableDataSourceExceptio

  • Error on office for mac

    hi purchased a new macbook, initital set up was via firewire from my powerbook, then loaded in office mac 2004 all ok except this message when i load up excel and powerpoint 'an unexpected error occured while trying to load microsoft framework' can a

  • Reports / intranet/ In some detail,  the user will input a date range from and 2 and will out put the records in the int

    Hello there, I am totally green in web development. my goal is to, for the user will input a date range from and to and will out put the records in the intranet when they press a button. However, the good news is: I have experience in programming. I

  • Apple Care Agreement

    Hi, I was trying to register my Apple Care Agreement online they are asking a registration Number and a Hardware Product Serial Number but I can not find it I have my invoice but non of the numbers won't work and description was not the same compaire

  • Flashback Table

    All dependent objects are retrieved when you perform a Flashback Drop, just as the objects are all added to the Recycle Bin when the base table is dropped. Emp is dependent on dept table , here i go SQL> drop table dept cascade constraints   2  / Tab