Realtionship between J_1IEXCHDR and VBAP or VBAK

Hi All Expert,
Hw ru.
Please help me regarding relation ship between J_1IEXCHDR and VBAK or VBAP table.
currently i am using rdoc in J_1IEXCHDR table but cant fetch data.
PLease guide me which field i can use for relation ship.
*SELECT *
*    FROM J_1IEXCHDR
*    INTO TABLE it_J_1IEXCHDR
*    FOR ALL ENTRIES in IT_VBRK
*    where rdoc = it_vbrk-VBELN.
OR
select single exnum from J_1IEXCHDR into itab-exnum
  where rdoc = it_vbak-vbeln.
  itab-exnum = J_1IEXCHDR-exnum.
Thanking U,
Bhavesh Panchal.

Hi,
Excise invoice is posted with reference to Billing document and not sales order. Hence, you would find billing doc no in J_1IEXCHDR-RDOC. To trace back to sales order no use VBFA(Sales document flow) table.
Check FM SD_DOCUMENT_FLOW_GET
Regards,
Amit
Edited by: Amit Iyer on Aug 28, 2009 12:09 PM

Similar Messages

  • Link between Prps and Vbap table

    Hi all,
    How can i link PRPS and VBAP table .
    Please suggest.
    Thanks and regrads
    Neha Kapoor

    hi,
    neha try this.
    PRPS-PSPNR = VBAP-PS_PSP_PNR
    rgds
    anver

  • Relation between J_1IEXCHDR and rbkp and rseg

    Hii all ..i'm developing alv report for purchase register and i have to fetch taxes frm J_1IEXCHDR table...
    i'm able to fetch data frm rbkp and rseg tables but not able to fetch taxes from  J_1IEXCHDR table..can anyone help me hw to relate the exicse table to anyone table which i used above...below r the fields which i want to print in report program
    RBKP-BELNR,  RBKP-BUDAT,  RBKP-LIFNR ,  RBKP-RMWWR,  RBKP-GSBER ,   RBKP-WMWST1,  Rseg-wrbtr,  RSEG-BELNR,
    RSEG-MATNR,  RSEG-WERKS, RSEG-BUKRS,  RSEG-MENGE, J_1IEXCHDR-exbed,  J_1IEXCHDR-exaed,  J_1IEXCHDR-ecs,
    J_1IEXCHDR-exaddtax1....
    Edited by: venkat akella on Sep 12, 2009 1:40 PM

    Hi, 
    I Have done this report Just go through it..
    *& Report               :ZEXISMATCH
    *& ABAP Developer      :Manish Prakash
    *& Functional Analyst  :Mr. Suresh Yadav
    report  zexismatch.
    type-pools : slis.
    **************************************DATA Decleration*********************************
    data: fcat_it type slis_t_fieldcat_alv with header line.
    data: fcat_layout type slis_layout_alv.
    data: wa_event type slis_alv_event,
         i_event  type slis_t_event,
         i_listheader     type slis_t_listheader,
         l_sort           type slis_t_sortinfo_alv,
         wa_sort          type slis_sortinfo_alv,
         i_print          type slis_print_alv.
    data it_lfa1 like standard table of lfa1 with header line.
    tables: j_1iexchdr, j_1ipart2, rseg, bkpf, bsis.
    data: begin of wa,
          fawref type j_1ifawref,
          rdoc2 type j_1iexchdr-rdoc,
          budat type budat,
          lifnr type lifnr,
          exbed type j_1iexcbed,
          exaed type j_1iexcbed,
          ecs   type j_1iexcbed,
          exaddtax1 type j_1iexcbed,
          tottax type j_1iexcbed,
          belnr type bsis-belnr,
          dmbtr type dmbtr,
          exnum type j_1iexcdtl-exnum,
      name1 type lfa1-name1,
      end of wa.
      data: it_part2 like standard table of wa with header line.
      data: it_part23 like standard table of wa with header line.
      data it_rseg like standard table of rseg with header line.
      data: begin of bk.
        include structure bkpf.
        data lfbnr type rseg-lfbnr.
        data end of bk.
      data it_bkpf like standard table of bk with header line.
      data it_bkf like standard table of bk with header line.
      data off type i value 6.
      data: begin of bss.
        include structure bsis.
        data lfbnr type rseg-lfbnr.
        data end of bss.
      data it_bsis like standard table of bss with header line.
      data it_b like standard table of bsis with header line.
      data wa_b like line of it_b.
    ***************************Selection Screem*************************************************************
    selection-screen begin of block a with frame.
    select-options: s_date for j_1ipart2-budat,
                    s_typ  for j_1ipart2-trntyp,
                    s_yer  for j_1ipart2-docyr,
                    s_exg  for j_1ipart2-exgrp.
    selection-screen end of block a.
      select a~fawref a~budat b~rdoc2 b~lifnr b~exbed b~exaed b~ecs b~exaddtax1 b~exnum
        into corresponding fields of table it_part2 from j_1ipart2 as a inner join j_1iexcdtl as b
        on a~exgrp = b~exgrp
        and a~trntyp = b~trntyp
        and a~docno = b~docno
        and a~docyr = b~docyr where a~budat in s_date and a~trntyp in s_typ and a~docyr in s_yer and a~exgrp in s_exg.
    loop at it_part2 .
      it_part23-fawref = it_part2-fawref.
      it_part23-budat = it_part2-budat.
      it_part23-rdoc2 = it_part2-rdoc2.
      it_part23-lifnr = it_part2-lifnr.
      it_part23-exnum = it_part2-exnum.
      it_part23-exbed = it_part2-exbed.
      it_part23-exaed = it_part2-exaed.
      it_part23-ecs = it_part2-ecs.
      it_part23-exaddtax1 = it_part2-exaddtax1.
    collect it_part23.
    clear it_part2.
    endloop.
    refresh it_part2.
    it_part2[] = it_part23[].
        loop at it_part2 .
        it_part2-tottax = it_part2-exbed + it_part2-exaddtax1 + it_part2-exaed + it_part2-ecs.
        modify it_part2 transporting tottax.
        endloop.
       select belnr lfbnr from rseg into corresponding fields of table it_rseg
         for all entries in it_part2 where lfbnr = it_part2-rdoc2.
    select * from bkpf into corresponding fields of table it_bkpf
       where  bukrs = '7000' and gjahr in s_yer and tcode = 'MIRO' ."AND BLART = 'RE'.
    sort it_bkpf by awkey.
    data : w_len type i.
    loop at it_bkpf .
    w_len = strlen( it_bkpf-awkey ).
    w_len = w_len - 4.
    it_bkpf-awkey = it_bkpf-awkey+0(10).
    modify it_bkpf transporting awkey.
    endloop.
    sort it_rseg by belnr.
    sort it_bkpf by awkey.
    loop at it_bkpf .
    read table it_rseg with key belnr = it_bkpf-awkey.
    if sy-subrc = 0.
       it_bkpf-lfbnr = it_rseg-lfbnr.
       modify it_bkpf transporting lfbnr.
       else.
       delete it_bkpf.
    endif.
    *CLEAR it_bkpf.
    endloop.
    it_bkf[] = it_bkpf[].
    select bukrs hkont augdt augbl zuonr gjahr buzei belnr  shkzg dmbtr from bsis
      into corresponding fields of table it_b for all entries in it_bkpf
      where belnr = it_bkpf-belnr and bukrs = '7000'   and gjahr in s_yer "AND HKONT eq '6113'
       and ( hkont = '0000006113' or hkont = '0000006123' ).
    APPEND wa_b to it_b.
    loop at it_b .
      it_bsis-belnr = it_b-belnr.
    it_bsis-belnr = it_b-belnr.
      case it_b-shkzg .
        when 'S'.
          it_bsis-dmbtr = it_b-dmbtr.
        when 'H'.
           it_bsis-dmbtr = - it_b-dmbtr.
         WHEN OTHERS.
      endcase.
    collect it_bsis.
    endloop.
    sort it_bkpf by belnr.
    loop at it_bsis .
    read table it_bkpf with key belnr = it_bsis-belnr.
    if sy-subrc = 0.
      it_bsis-lfbnr = it_bkpf-lfbnr.
    modify it_bsis transporting lfbnr.
    endif.
    endloop.
    sort it_bsis by lfbnr.
    loop at it_part2 .
    read table it_bsis with key lfbnr = it_part2-rdoc2.
    if sy-subrc = 0.
      it_part2-belnr = it_bsis-belnr.
      it_part2-dmbtr = it_bsis-dmbtr.
    modify it_part2 transporting belnr dmbtr.
    endif.
    clear: it_part2, it_bsis.
    endloop.
    select * from lfa1 into corresponding fields of table it_lfa1
      for all entries in it_part2 where lifnr = it_part2-lifnr.
    loop at it_part2 .
    read table it_lfa1 with key lifnr = it_part2-lifnr.
    if sy-subrc = 0.
    it_part2-name1 = it_lfa1-name1.
    modify it_part2 transporting name1.
    clear it_lfa1.
    endif.
    endloop.
    *SORT it_part2 by belnr.
    perform get.
    fcat_layout-colwidth_optimize = 'X'.
    call function 'REUSE_ALV_GRID_DISPLAY'
      exporting
        i_callback_program     = sy-repid
        i_grid_title           = ''
        is_layout              = fcat_layout
        it_fieldcat            = fcat_it[]
        it_events              = i_event[]
        it_sort                = l_sort
        i_save                 = 'A'
        i_callback_top_of_page = 'TOP_OF_PAGE'
      tables
        t_outtab               = it_part2 " IT_PART2
      exceptions
        program_error          = 1
        others                 = 2.
    *&      Form  set_pf_status
          text
         -->RT_EXTAB   text
    form set_pf_status using rt_extab type slis_t_extab.
      set pf-status 'STANDARD_4'.
    endform.                    "set_pf_status
    *&      Form  get
          text
    form get.
      clear fcat_layout.
    fcat_layout-colwidth_optimize = 'X'.
      fcat_layout-zebra     = 'X'.
      fcat_layout-no_keyfix = 'X'.
      " SET_CELL_COLOURS
      clear fcat_it.
      fcat_it-fieldname = 'FAWREF'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
      fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Ex Doc. No.'.
      append  fcat_it.
       clear fcat_it.
      fcat_it-fieldname = 'EXNUM'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
      fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Invoice No.'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'BUDAT'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Excise Dt.'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'LIFNR'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Vendor Code'.
      append  fcat_it.
    clear fcat_it.
      fcat_it-fieldname = 'NAME1'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Vendor Name'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'TOTTAX'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Excise'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'BELNR'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'MIRO Doc. No.'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'DMBTR'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'MIRO Excise'.
      append  fcat_it.
    endform.                    "get
    *&      Form  eventtab_build
          text
         -->LT_EVENTS  text
    form eventtab_build changing lt_events type slis_t_event.
      constants:
      gc_formname_top_of_page type slis_formname value 'TOP_OF_PAGE'.
    gc_formname_end_of_list TYPE slis_formname VALUE 'END_OF_LIST'.
      data: ls_event type slis_alv_event.
      call function 'REUSE_ALV_EVENTS_GET'
        exporting
          i_list_type = 0
        importing
          et_events   = lt_events.
      read table lt_events with key name =  slis_ev_top_of_page
                               into ls_event.
      if sy-subrc = 0.
        move gc_formname_top_of_page to ls_event-form.
        append ls_event to lt_events.
      endif.
    READ TABLE lt_events WITH KEY name =  slis_ev_end_of_list
                                INTO ls_event.
    IF sy-subrc = 0.
       MOVE gc_formname_end_of_list TO ls_event-form.
       APPEND ls_event TO lt_events.
    ENDIF.
    endform.                    "EVENTTAB_BUILD
    *&      Form  top_of_page
          text
    form top_of_page.
    *ALV Header declarations
      data del(150) type c.
      data del1(150) type c.
      data: t_header type slis_t_listheader,
            wa_header type slis_listheader,
              wa_header1 type slis_listheader,
              wa_header2 type slis_listheader,
               wa_header3 type slis_listheader,
                 wa_header4 type slis_listheader,
              t_line like wa_header-info,
            ld_lines type i,
            ld_linesc(100) type c.
      wa_header-typ  = 'H'.
      wa_header1-typ  = 'S'.
      wa_header2-typ  = 'S'.
      wa_header3-typ = 'H'.
      wa_header4-typ = 'H'.
      wa_header-info = 'HINDUSTAN PULVERISING MILLS'.
      wa_header1-info = '209-210 Anupam Bhawan ,  Azadpur, Delhi - 110033'.
      wa_header2-info = '----
      wa_header3-info = ld_linesc.
      wa_header4-info = del1.
      append wa_header  to t_header.
      append wa_header1 to t_header.
      append wa_header2 to t_header.
      append wa_header3 to t_header.
      append wa_header4 to t_header.
      clear wa_header.
      wa_header-typ  = 'S'.
      wa_header-info = t_line.
      append wa_header to t_header.
      clear: wa_header, t_line.
      append wa_header to t_header.
      wa_header-typ  = 'S'.
      append wa_header to t_header.
      clear: wa_header.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary = t_header.
      I_LOGO                   = 'ENJOYSAP_LOGO'.
      I_END_OF_LIST_GRID       =
      I_ALV_FORM               =
    endform.                    "top_of_page
    *slis_ev_end_of_list

  • Relationship between IBIN and VBAP

    Hi...
    Pls let me know what is the relationship or PROCESS FLOW between IBIN , IBINVALUES to other tables like VBAP to IBINSYMBOL to IBINVALUES..
    Help..Any useful inputs will be rewarded.
    Rgds
    Lakshmiraj

    Hi..
    Thanks
    But My requirement is .....what is purpose of IBIB - Installed Base/Ibase  ?????  How it is linked with SD module tables....
    wat is the functional process flow???....
    Pls help.
    Rgds
    Lakshmiraj

  • Contract Sign Date from VBAK and VBAP and VEDA.

    Hi ,
    I need to fetch the Sales Document from VBAK and VBAP and VEDA with the contract sign date for sales document line item .
    Contract sign date is in selection screen as select options.
    Please let me know how to fetch the sales Document per line item from these 3 tables considering that A sales document could have many line items and each can have a different sign date.
    Thanks
    Sachin

    Hi,
    The link between all the tables VBAK, VBAP and VEDA is VBELN i.e sales document number.
    However, while fetching from VBAP and VEDA you would need to consider POSNR as well.
    As your ABAPer to code the logic using 'for all entries' method.
    Regards,
    Amit
    Edited by: Amit Iyer on Jun 23, 2011 12:28 PM

  • Joining VBAK and VBAP

    Hi Guys,
    Can you pls check the query and suggest best approch to improve the performance as its going for dump.
    VBAP as 2,22,34,404
    VBAK as 25,54,345
    and
    r_matnr as 96,000 records.
      SELECT vbapmatnr SUM( vbapkwmeng )
        FROM vbak INNER JOIN vbap ON vbakvbeln = vbapvbeln
        INTO TABLE t_xx
       WHERE audat BETWEEN w_pstdat AND w_inidat
         AND vkorg IN r_vkorg
         AND auart IN r_auart
         AND vbap~matnr IN r_matnr
         AND vbap~werks EQ p_werks
         AND vbap~pstyv IN s_pstyv
         GROUP BY vbap~matnr.
    Regards,
    Srinivas M

    > Check for the View on VBAP AND VBAK that will help to increase the preformence
    > instead of inner join
    oh, a new option is recommended frequently in recent positing, after FAE is supported so much anymore.
    BUT the View is only a dictionary defintion of a join, they are 100% identical on the database
    There is not clear limit for the size of the ranges, usually in the order of 1000 or 2000. It will dump when whole resultings statement is above a limit, which is hard tto specify.
    WHERE audat BETWEEN w_pstdat AND w_inidat
    AND vkorg IN r_vkorg
    AND auart IN r_auart
    AND vbap~matnr IN r_matnr
    AND vbap~werks EQ p_werks
    AND vbap~pstyv IN s_pstyv
    GROUP BY vbap~matnr.
    This are actually several statements, which can be completely different. It depends which IN-Lists/Ranges are filled.
    The join can react on that, it uses different accesses, if there are more conditions on vbak or
    more vbap.
    For the FAE you must programm two versions, one startung with vbak and one with vbak. And
    you must determine which one will use. I doubt that you will better than the optimzer in the database.
    Siegfried

  • Performance problems selecting form vbak and vbap

    Hello,
    I am try to select data from the vbak and vbap databasetables. The tables have more than a million of entries. I tried my best with two related selectstatements and the 'FOR All ENTRIES' syntax. The query takes more than 30 minutes. Is there a more efficient way than the following query, for example an inner join?. Tanks.
    Regards, Lars.
    FORM firstselect.
       SELECT  kvkorg kvtweg kspart kauart k~kunnr
              kvsbed kaugru kvbeln kmandt
      FROM VBAK AS k
      INTO CORRESPONDING FIELDS OF TABLE t_outtab1
      WHERE  k~vkorg IN s_vkorg AND
             k~vtweg IN s_vtweg AND
             k~spart IN s_spart AND
             k~auart IN s_auart AND
             k~kunnr IN s_kunnr AND
             k~vsbed IN s_vsbed AND
             k~augru IN s_augru AND
             k~vbeln IN s_vbeln.
    ENDFORM.
    FORM secondselect.
         SELECT  pposnr pvstel p~werks
                  pabgru pmatnr p~kwmeng
                  pzzurmeng pvrkme pmandt pvbeln
          FROM VBAP AS p
          INTO CORRESPONDING FIELDS OF TABLE t_outtab2
              FOR ALL ENTRIES IN t_outtab1
          WHERE
              p~vstel IN s_vstel AND
              p~werks IN s_werks AND
              p~matnr IN s_matnr AND
              p~abgru IN s_abgru AND
             t_outtab1-mandt = p~mandt AND
              p~vbeln = t_outtab1-vbeln.
    ENDFORM.

    FORM firstselect.
    SELECT vkorg
           vtweg
           spart
           auart
           kunnr
           vsbed
           augru
           vbeln
           mandt
           FROM VBAK 
           INTO TABLE t_outtab1
    WHERE vkorg IN s_vkorg AND
    vtweg IN s_vtweg AND
    spart IN s_spart AND
    auart IN s_auart AND
    kunnr IN s_kunnr AND
    vsbed IN s_vsbed AND
    augru IN s_augru AND
    vbeln IN s_vbeln.
    ENDFORM.
    FORM secondselect.
    SELECT posnr
           vstel
           werks
           abgru
           matnr
           kwmeng
           zzurmeng
           vrkme
           mandt
          vbeln
      FROM VBAP TABLE t_outtab2
    FOR ALL ENTRIES IN t_outtab1
    WHERE  vbeln = t_outtab1-vbeln
    AND vstel IN s_vstel AND
    werks IN s_werks AND
    matnr IN s_matnr AND
    abgru IN s_abgru .
    ENDFORM.
    Hope this helps u.
    I will get u back with more answers.
    One more important thing see that the order which u r using in the select query is the same as that in the table this will affect the performs a lot.
    <i><b>The first field should be the vbeln and then see the order and change that first and the same order should be in the internal table taht u r defining also.
    If u do these things surely u can improve performance.</b></i>
    Message was edited by: Judith Jessie Selvi

  • OBJNR is blank at VBAK and VBAP tables

    Dear collegues,
    There´s a strange situation on customer´s system. When end-user create a new quotation, the OBJNR field at VBAK and VBAP tables doesn´t fill itself, it remains blank. I believed that the field was filled when the document was saved. What´s wrong?
    Regards, Otávio.

    Hi,
    This might  be due to many reasons.Please check if there any dumps related to it in ST22/SM21.
    Also check if there any enough dialog/bckg work process to process the job.
    filling up takes more time depending on the no of records in the application tables.
    regards
    Nagaraju

  • Performance issue with joins on table VBAK, VBEP, VBKD and VBAP

    hi all,
    i have a report where there is a join on all 4 tables VBAK, VBEP, VBKD and VBAP.
    the report is giving performance issues because of this join.
    all the key fields are used for the joining of tables. but some of the non-key fields like vbap-vstel, vbap-abgru and vbep-wadat are also part of select query and are getting filled.
    because of these there is a performance issue.
    is there any way i can improve the performance of the join select query?
    i am trying "for all entries" clause...
    kindly provide any alternative if possible.
    thanks.

    Hi,
    Pls perform some of the below steps as applicable for the performance improvement:
    a) Remove join on all the tables and put joins only on header and item (VBAK & VBAP).
    b) code should have separate select for VBEP and VBKD.
    c) remove the non key fields from the where clause. Once you retrieve data from the database into the internal table, sort the table and delete the entries which are not part of the non-key fields like vstel, abgru and wadat.
    d) last option is you can create index in the VBAP & VBEP table with respect to the fields vstel, abgru & wadat ( not advisable)
    e) buffering option on database tables also possible.
    f) select only the fields into the internal table that are applicable for the processing logic and also the select query should contaian the field names in the same order as mentioned in the database table.
    Hope this helps.
    Regards
    JLN

  • Relation between LQUA and VBAK

    Hi gurus,
    Is there any relationship between LQUA and VBAK. I think it is not stable to relate this tables with LQUA-SONUM = VBAK-VBELN and with stability i can not get any data with those parameters. How can i get KUNNR for the warehouse stocks?
    Thx.

    Solved,
    Thx,

  • Data Reconciliation between BI and R/3 systems

    Hi Gurus,
    I want to know how to reconciliation the data between BI and R/3 systems.
    is there any easy mentods to reconcile the data.i have also gone through the HOW TO GUIDE document, that document dosen't help me out.
    Regards
    Sreenivas.Y

    1) Either we can reconcile using standard R3 tables eg VBAK , VBAP for sales .
    2) You can go for automatic reconcillation where you will have to create a reconcillation data source and extract it to BW using virtual cube (Virtual cube would extract real time data from R3).
    Include original cube and this virtual cube in a multiprovider .
    Make a report taking keyfigures from both the infoproviders and add a column for difference .If there is 0 difference it means BW data matches with R3 .

  • Difference between TKOMV and XKOMV.

    Hallo All,
    Can anyone please tell me difference between TKOMV and XKOMV.
    Thanks & regards,
    Cheruku.

    hi raymond,
    I want to move tkomv-mwsk1 value into vbap and vbak databse tables. If i do it using Xkomv like
    * include mv45afzz
    FORM USEREXIT_MOVE_FIELD_TO_VBAK.
    vbak-zz_mwsk1 = XKOMV-mwsk1
    endform.
    it is working
    but when i keep tkomv it is showing error there is no tkomv.
    vbak-zz_mwsk1 = tKOMV-mwsk1 (not working).
    error:
    Field "TKOMV-MWSK1" is unknown. It is neither in one of the specified 
    tables nor defined by a "DATA" statement. "DATA" statement. 

  • Relation between GDM and dtlogin ?

    Hi !
    I'm wondering what is the exact relation between gdm and dt ? I assume that on a fresh (vanilla) install of Solaris 10 (x86 and Sparc, as I've tried both) the only reference to a graphical login is /etc/init.d/dtlogin. How then is gdm invoked ? The login invite seems to be a gdm one.
    I've tried modifying gdm.conf (manually and with gdmsetup) without seeing any modifs taking effect, even after a reboot the following day.
    What am I missing badly ? :)
    On a side-note, I'm trying to setup XDMCP so that other boxen will be able to graphically login onto that Sun box.
    Thanks,
    Jeff

    Dear Phani,
    http://help.sap.com/saphelp_erp2005/helpdata/en/70/a7853478616434e10000009b38f83b/frameset.htm
    VBUK .... Sales Document: Header Status and Administrative Data
    VBUP ....Sales Document: Item Status
    VBUK contains header status where as VBUP contains individual item status of the header. Similar to VBAK and ABAP where VBAK contains Sales Document header data and VBAP contains Sales document item data.
    Hope this will help.
    Regards,
    Naveen.

  • Relation between vbuk and vbup tables?

    relation between vbuk and vbup tables?
    regards phani

    Dear Phani,
    http://help.sap.com/saphelp_erp2005/helpdata/en/70/a7853478616434e10000009b38f83b/frameset.htm
    VBUK .... Sales Document: Header Status and Administrative Data
    VBUP ....Sales Document: Item Status
    VBUK contains header status where as VBUP contains individual item status of the header. Similar to VBAK and ABAP where VBAK contains Sales Document header data and VBAP contains Sales document item data.
    Hope this will help.
    Regards,
    Naveen.

  • Relation between RESB and AUFM tables

    can any one tell me how to build the relation between the above two tables
    first i am getting the data from resb
    now i need to get the data from  aufm
    but there are no common key fields
    while selecting the data from aufm i want to put the where conditon on key fields only

    hi
    good
    use this process to know the details.
    Go to SQVI transaction... Create a qucik view.. ztest.. give desc..etc
    Select data source as table join.... enter
    now one screen will come with blank data (blue scrren)
    in that application toolbar second button .. click that.. enter VBAK..
    click that again.. enter VBAP.. now an image will come with links b/w vbak and vbap.. you can use any no. of tables there....
    thanks
    mrutyun^

Maybe you are looking for