BUT000 table augrp filed need to update before save of BP transaction Urgen

Hi
I am working on the BDT. I project needs the BUT000 augrp field needs to filled with the it business relation partner augrp combination.
I am able to get the BUT000 data using FM 'BUP_MEMORY_BUT000_GET and not able to fill back into global memory when FM used here like FILL
When I tryed to put the code in DSAVC after BUP function module I am able to see the chages in the memory but when it is coming to DASVE at that time the memory is getiing OLD values NO NEW VALUES I FOUND
I need to know where i need to put this data i.e under which BDT event is DTAKE or DSAVC or DSAVE,
Please let me know any one worked on this or how we can update the value of BUT000-augrp value
Points garunted

I think that Business Data Toolset  is in All in one and not in Business One. If is it so, send question to right forum.

Similar Messages

  • I need to update EKPO-NETPR thru me32L transaction

    hi,
    i need to update EKPO-NETPR thru me32L transaction.
    In me32L if i give the scheduling agreement number->then select the particular item->select the item condition button->selecting validity period->updating the amount field in KONP-KBETR manually then the EKPO-NETPR is getting updated.
    where as if i try thru BDC its not getting.
    pls suggest me the solution.
    thanks

    Hi
    Its been answered in this thread checkout for badi here badi for me21n tcode
    A few other also here
    BBP_ME_CREATE_PO_ITEM_40B
    EXIT_SAPLMCP2_008       
    EXIT_SAPLMCP2_009       
    ME_CREATE_PO_ITEM       
    Reward if useful
    Regards
    Divya

  • TS3212 I got an error message thet MSScript.msi is old and I need an update before I can download Itunes.  Where do i get that file?

    I got a message that MY MSScript.msi was old and i need to update it.  How do I find and download this file?  I have limited success in downloads everyon want my credit card #
    Any ideas

    Please quote the exact error message, word-for-word, verbatim.
    What is your operating system?
    What version of Lightroom?

  • My itunes is saying it needs to update before I can download 7.0

    for my iphone 5. I updated itunes, restarted my computer twice, and everytime I click upgrade for ios7 it says itunes needs to upgrade, then if I click download update, it says its up to date... What do i do?!

    so it sounds like it hasn't updated yet (iTunes 11.1 is the latest)
    try downloading straight from
    http://apple.com/itunes/download

  • My ipod 5 is in recovery mode and i want me to restore it so i did and now it need to update before it can restore but it keeps asking me to update so im stuck help!!!!!!!!!!!!

    help

    Maybe:
    Restore loop (being prompted to restore again after a restore successfully completes)
    Troubleshoot your USB connection. If the issue persists, out-of-date or incorrectly configured third-party security software may be causing this issue. Please follow Troubleshooting security software issues. .
    Next try placing in DFU mode and then restoring.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    Then try restoring on another computer.
    Last, make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Status is not updated after Save in the transaction but after closing and

    Hi
    In CRM GUI and PCUI,
    1) Opening a transaction (say an Invoice)
    2) Changing the status from 'Open' to 'Completed'.
    3) Save it
    4) after save, the status shows as 'Open' (but it should show as completed) but if we come out of the transaction and come again to the same transaction, we can see now that it is in completed status.
    Is there any thing to be checked or SAP usually works like this?
    As whenever an user change the status from open to completed, an follow up activity is created, since here the user see the open status again in the same transatcion (after saving), he/she again change the status from open to completed and save.. so it now creates two follow-up activity..
    Please help.

    HI
    i had similar issue when I planned callback after saving document (function module with commit was doing sth).
    This commit caused that status displayed on my document was previous not actual. When entering document again status was ok.
    So check if there are any function modules with commit launched after you save document (of course I do not mean standard commit for saved document).
    Regards
    Radek

  • XD01 Custom screen for custom fields,need to update tables kna1,knvv

    Hi all,
             I have designed a custim screen for XD01 with four custom fields five from kna1 other one from knvv table.  i need to update the respective tables with these fields in badi GET_DATA of method IF_EX_CUSTOMER_ADD_DATA how to update the database table. Please help me in the same.

    see the help
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/4099948b8911d396b70004ac96334b/frameset.htm
    Regards
    Kiran Sure

  • Need to update corresponding columns in details table

    Hi,
    I have a header and lines table.
    In header table we have a comments field, requirement is whenever someone is updating comments in header it should update lines comment column as well.
    I tried using fire action on Comments field like as soon as user is entering something in Comments field I am capturing that event and firing and update statement for lines table
    but the problem here is, if user enters the comments and doesn't save it at header level it stills fire an update statement in lines and updating the comment field of lines table.
    I need to update header comments in lines level at Apply button.
    Please someone suggest something.
    Best Regards
    Ragni Gupta

    Hi Gurus/Expert,
    Please suggest something, its really urgent!!
    Thanks
    Ragni Gupta

  • Need to update multiple columns using another table

    I have 2 tables. and i need to update rows of 1 table using another table
    Table1
    Serial_no.     payment_date     Payment_amt
    101     22/11/2010     150
    101     18/03/2011      355
    102     15/04/2011      488
    103     20/05/2011      178
    102     14/06/2011      269
    101     28/06/2011      505
    Table2
    Serial_no     Charge_amt      Last_paymt_dt     Last_paymt_amt
    101     255
    102     648
    103     475
    I want to update Last_paymt_dt and Last_paymt_amt of table2 using Table1, I have written following update statement but it gives error that single row subquery return multiple row.
    Update Table2
    set (Last_paymt_dt,Last_paymt_amt) = (select max(payment_date, payment_amt) from table1
    where table1.Serial_no = table2.Serial_no group by payment_amt)
    kindly suggest how should i update.

    SQL> select * from table1
      2  /
    SERIAL_NO PAYMENT_DA PAYMENT_AMT
           101 22/11/2010         150
           101 18/03/2011         355
           102 15/04/2011         488
           103 20/05/2011         178
           102 14/06/2011         269
           101 28/06/2011         505
    6 rows selected.
    SQL> select * from table2
      2  /
    SERIAL_NO CHARGE_AMT LAST_PAYMT LAST_PAYMT_AMT
           101        255
           102        648
           103        475
    SQL> update  table2
      2     set  (last_paymt_dt,last_paymt_amt) = (
      3                                            select  max(payment_date),
      4                                                    max(payment_amt) keep(dense_rank last order by payment_date)
      5                                              from  table1
      6                                              where table1.serial_no = table2.serial_no
      7                                           )
      8  /
    3 rows updated.
    SQL> select * from table2
      2  /
    SERIAL_NO CHARGE_AMT LAST_PAYMT LAST_PAYMT_AMT
           101        255 28/06/2011            505
           102        648 14/06/2011            269
           103        475 20/05/2011            178
    SQL> SY.

  • Comparing Two tables with 300k records and update one table

    Could you let me know how to compare two tables having 300k records and update one table.below is the scenario.
    Table Tabl_1 has columns A,B and Tabl_2 has columns B,new_column.
    Column B has same data in both the tables.
    I need to update Tabl_2 in new_column with Tabl_1 A column data by comparing B column in both tables.
    I m trying to do using PLSQL Tables.
    Any suggestion?
    Thanks.

    Hi,
    Whenever you have a problem, please post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) from all tables involved, so that the people who want to help you can re-create the problem and test their ideas.
    Also post the results you want from that data, and an explanation of how you get those results from that data, with specific examples.
    If you're asking about a DML statement, such as UPDATE, the CREATE TABLE and INSERT statements should re-create the tables as they are before the DML, and the results  will be the contents of the changed table(s) when everything is finished.
    Always say which version of Oracle you're using (for example, 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002
    ef2019c7-080c-4475-9cf4-2cf1b1057a41 wrote:
    Could you let me know how to compare two tables having 300k records and update one table.below is the scenario.
    Table Tabl_1 has columns A,B and Tabl_2 has columns B,new_column.
    Column B has same data in both the tables.
    I need to update Tabl_2 in new_column with Tabl_1 A column data by comparing B column in both tables.
    I m trying to do using PLSQL Tables.
    Any suggestion?
    Thanks.
    Why are you trying to use PL/SQL tables?  If tabl_1 and tabl_2 are regular database tables, it will be much simpler and faster just to use them.
    Depending on your requirements, you can do an UPDATE or MERGE, either in SQL or in PL/SQL.

  • Updating Zfields in the BUT000 table

    Hi ,
    I have created new zfields for but000 table . Is there any FM present to Update the newly created Z fields  . ( here  business partner number  is already created using the FM CRM_ISA_REGISTER_CONSUMER .Now i want to update the Zfileds for this business partner created)
    Thanks
    Sruthi

    Hi! Sruthi
    You can use the follwing FM to update the Z fields in BP u jast have to pass the partner guid along with the field that u need to update.
          CALL FUNCTION 'BUPA_CENTRAL_CI_CHANGE'
            EXPORTING
              is_bus000_eew = new Z fields
              iv_xsave      = 'X'
            IMPORTING
              et_return     = return  table.
    Regards
    Mayank

  • To update BUSORT1 and BPKIND in BUT000 table

    I need to update the BUSORT1(search term1) and BPKIND in BUT000 table for a specific business partner, which is the best way to do it?? Do i have any BAPI or do i need to write a BDC, and i dont want to modify the record directly at table level. Can any body help me...
    Thanks,
    Naresh.

    Hello Jena,
                      The BAPI I used is BAPI_BUPA_CENTRAL_CHANGE to update the values in BUT000.
    Regards,
    Naresh.

  • Need to update table from Maintenance view (Very Urgent !!!)

    Hi Abap Guru's,
    I got a requirement where in I need to create a new Zprog so that it shld give  a call to view v_abc and thru this view I need to update the table abc if any duplicate entries are entered then I shld popup a message.
    Cld u plz help me out how to go further with this requirement and any suggestions...
    if we create a table maintenance generator for the table abc then it will check for the duplicate entries are not ? if it checks for the duplicate entries then my job is done esaily but how to assign the zt-code to the table maintenance ?
    awaiting for u r answer's and realyy appreciated with lots of points.
    Regards,
    Ravi V Ganji

    Hi,
       table generator will check duplicate entries as any
       other table .
        table maintanance Generator is used to manually
        input values using transaction sm30
        follow below steps
       1) go to se11 check table maintanance check box under
          attributes tab
       2) utilities-table maintanance Generator->
          create function group and assign it under
          function group input box.
          also assign authorization group default &NC& .
       3)
        select standard recording routine radio in table
        table mainitainence generator to move table
        contents to quality and production by assigning
        it to request.
       4) select maintaience type as single step.
       5) maintainence screen as system generated numbers
          this dialog box appears when you click on create
         button
        6) save and activate table
       using sm30 you can create entries manually.
    also check below thread to assign transaction code to
    table generator
    Re: Table Maintanance Generator  
    create transaction use se93
    select parameter transaction and give below attributes
      Transaction code      ZTX1                                                                               
    Transaction text      Maintain View ZSDCZTVIEW                                                                               
    Transaction        SM30            Screen             0           
                                              From module pool                                                                               
    Name of screen field           Value                                
       VIEWNAME                       ZSDCZTVIEW                           
       UPDATE                         X

  • I am told I need to update Flashplayer.  I have downloaded the update 5 times and installed it successfully on FireFox but Safari still says I need to update.  I have gone so far as to restart before re-opening Safari.  What am I not doing?

    I am told I need to update Flashplayer.  I have downloaded the update 5 times and installed it successfully on FireFox but Safari still says I need to update.  I have gone so far as to restart before re-opening Safari.  What am I not doing?

    Enable plug-ins.
        Safari > Preferences > Security
        Web content:
        Is the box next to "Enable plug-ins"  checked?
    Best.

  • In OWB I need to update the target table with same field for match/update

    In OWb I am trying to update the target table with the match and the update on the same field can this be done. I am getting a error match merge error saying you cannot update and match on the same field. But in SQl my select is
    Update table
    set irf = 0
    where irf = 1
    and process_id = 'TEST'
    Hwo do i do this in OWB.

    table name is temp
    fields in the table
    field1 number
    field2 varchar2(10)
    field3 date
    values in the table are example
    0,'TEST',05/29/2009
    9,'TEST',05/29/2009
    0,'TEST1',03/01/2009
    1,'TEST1',03/01/2009
    In the above example I need to update the first row field1 to 1.
    Update temp
    set field1 = 1
    where field1 = 0
    and field2 = 'TEST'
    when I run this I just need one row to be updated and it should look like this below
    1,'TEST',05/29/2009
    9,'TEST',05/29/2009
    0,'TEST1',03/01/2009
    1,'TEST1',03/01/2009
    But when I run my mapping I am getting the rows like below the second row with 9 also is getting updated to 1.
    1,'TEST',05/29/2009
    1,'TEST',05/29/2009
    0,'TEST1',03/01/2009
    1,'TEST1',03/01/2009

Maybe you are looking for

  • Budget and performance report

    Hi, I'm new to webi. Please tell me the most suitable approach for comparing budget and performance on webi report. Each approach has good points and bad points? Environment : BO XI 3.1 webi Requirement : Comparison of budget and performance on one r

  • G5 2Ghz Powermac shuts off at power on, unless I hold the button

    G5 Dual 2 Ghz, 4 GB RAM ATI X 800 Xt. Have had it for almost one year, no problems. Now when I hit the power button to turn it on, it immediately powers off after chime. However, IF I hold the power button, it will boot to some firmware prompt wherei

  • Working With 2 Forms On One Page

    Currently, I have a situation where I need to have 2 forms on the same page. - the main form - and secondary form - the secondary form is a small search box - whose mysql query result fills a separate table on the page. From there, the user can click

  • External Editor and Export Preferences failing

    I'm unable to set an External Photo Editor in the prefernces pane.  When I hit the "Choose" button it greys out for a moment; nothing happens; and then it returns with no change.  In addition, I'm not able to Export any photo - Original or Version.

  • Lightroom mobile subscription expired

    I logged into LR 5.4 to use the new mobile features.  My Creative Cloud subscription is current.  But LR 5.4 is showing me the message "Lightroom mobile subscription expired" - in orange letters above my name in the upper left corner of LR. Obviously