Last update vendor details.

I wanted to know the details of all the suppliers who has changed the phone number or location or bank account etc from last friday to this friday. Is there any query that i could use to find it?

Hello.
You can use the Audit Trail feature to achieve your goal.
Octavio

Similar Messages

  • BAPI or Function Module to Update Vendor Details

    Hi Friends,
    I need to update Vendor Details (Street) in my program using a BAPI or Function Module. Is there such thing available which can do my job?
    Regards,
    Raju...

    Hi,
    Thanks for the Reply.
    I tried to use the FM Vendor_Update... It updates the adrress field in the table LFA1. But it is not reflected in the transaction FK02.
    So, Is there any thing that I have to do after the FM Vendor_Update is called so that the address field is also get reflected in address field of FK02 transaction.?
    Regards,
    Raju...

  • REG:  FM/BAPTI to update Vendor Details

    Hi ,
    The requirement is update the Tax number and Bank account number for the vendor ( SAP  transaction for this is FK02)
    through a Z program.
    Please let me know about the BAPI/FM that can be used for this.
    Best Regards,
    Vivek

    Check this FM.
    VENDOR_UPDATE.

  • Sales Opportunity Stage Tab - Want last updated row details in query

    Dear Experts,
    I have a query as under :
    SELECT T1.Name, T1.OpprId, T1.OpenDate, T0.Step_Id, T0.Line, T0.OpprId, T0.U_status, T2.Name FROM OPR1 T0  INNER JOIN OOPR T1 ON T0.OpprId = T1.OpprId INNER JOIN [dbo].[@STAGE]  T2 ON T0.U_status = T2.Code WHERE T1.Name = 'ORDER'
    Now I want that this query should give me the last row detail in the Stage TAb of Sales opportunity. Now this query is giving me every row stage details which are put in the Stage Tab. For example in the Stage Tab of Sales Opportunity there are 4 rows of Stages, its giving me all the 4 row stages in the query. I want that only the last stage should be displayed in the query may be it's on 2 second stage or 3 rd ot 4 th. I want only last stage to be shown.
    Please advise what I need to do for the above query.
    Regards,
    Kamlesh

    Hi All,
    I have been working in a query to generate the last stage details in the query but still not able to resolve it.
    SELECT T0.Status,T0.OpprId, max(T1.Line) 'Stage',T0.OpenDate, T0.CardCode, T0.CardName, T0.Territory, T0.CloPrcnt,T1.OpprId, T1.Line, T1.OpenDate, max(T1.OpenDate) 'Open Date',T1.CloseDate, T1.Step_Id,T2.descript, T3.Name, T0.MaxSumLoc, T4.U_swl, T0.MaxSumSys, T0.U_eqno, T0.MaxSumLoc, T4.U_partno, T4.U_desc, T4.U_unit, T4.U_amt, T4.U_qty, T4.U_amt, T4.U_span FROM OOPR T0  INNER JOIN OPR1 T1 ON T0.OpprId = T1.OpprId INNER JOIN OTER T2 ON T0.Territory = T2.territryID INNER JOIN [dbo].[@STAGE]  T3 ON T1.U_status = T3.Code, [dbo].[@SALES_ENQ_ITEM]  T4 WHERE T0.OpprId = T4.U_opprNo AND T0.Status = 'O' group by T0.Status,T0.OpprId, T0.OpenDate, T0.CardCode, T0.CardName, T0.Territory, T0.CloPrcnt,T1.OpprId, T1.Line, T1.OpenDate, T1.CloseDate, T1.Step_Id,T2.descript, T3.Name, T0.MaxSumLoc, T4.U_swl, T0.MaxSumSys, T0.U_eqno, T0.MaxSumLoc, T4.U_partno, T4.U_desc, T4.U_unit, T4.U_amt, T4.U_qty, T4.U_amt, T4.U_span
    The above query is generating and giving me the Last Stage through max(T1.Line) 'Stage' field. But I want to have if any opportunity Number has 1,2,3 Stage then only Max should should which is 3 but in this query all 3 are showing.
    As per Noratam ''There are other options by checking max of the start-date and stage-key fields of the sage table''.
    I can use the Start Date which seems to be max(T1.OpenDate) 'Open Date' but how to give a formula or write a query by which only Max Date is selected as per the stage in the query.
    I think I am not able to use the Max funtion properly. Please help what is wrong with it.
    Can you please help in this regard.
    Regards,
    kamlesh
    Edited by: Kamlesh Gupta on Mar 22, 2009 11:33 PM

  • Send Back An Interactive Form with updated Vendor Details

    Dear SDN,
                   We have a requirement of sending back an Adobe Form after the user updates some fields as an email or to the universal work list of the sender?
    The step is:-
    1. Receive Adobe form.
    2. Update Fields.
    3. Send back to the sender as an email//UWL.
    The receiver of the Adobe Forms  may not have SAP Access so whats the work around? Can javaMail API be used without the Dynpro ? Can Guided procedure help ? Or may be a webservice to send the mail ?
    Please suggest.
    Anirban.

    Hi,
    Well, as stated in the blog, it depends on your scenario. So there's no howto guide at the moment.
    Business logic and PDF (by email) sending has to be developed on your backend side. I suggest you to read the Interactive Forms tutorials in the Webdynpro for Java section for first steps.
    It's also possible to trigger a guided procedure with the help of an interactive form (with the help of a posting on a address specific to the GP). For this, you can check the CAF (Composite Application Framework) tutorials here on SDN.
    Regards,
    Francois

  • Vendor ID, Last Update Date, Invoice Details - Query

    For each Supplier, we would like to know the vendor ID, vendor number, vendor name, vendor site code, Created Date, Last Update Date, last invoice date, last payment date, total number of invoices and total $ amount of invoices for each supplier.
    1) How do i find the last payment date and supplier catagory?
    2) As i have to use sum(invoice_amount), count(invoice_amount), max(payment_date) which point to 3 different tables, i am not sure how to use "group by" based on the Vendor_id alone while i select lot of fields from different table. Could you please help me with this?
    3) Please help me to get this query fixed.

    1) You can get last_payment_date by joining vendor_id to ap_invoices_all and the joining invoice_id with ap_invoice_payments_all to get the max accounting_date (i.e. last payment date)
    2) You are partially right. Invoice_amount and invoice_count are from the same table so you have to join 2 tables. Best way is to do a select in the select.
    e.g SELECT   pv.vendor_name, COUNT (1), SUM (invoice_amount), pv.vendor_id,
             (SELECT MAX (aipa.accounting_date)
                FROM ap_invoice_payments_all aipa, ap_invoices_all aia2
               WHERE aia2.vendor_id = pv.vendor_id
                 AND aia2.invoice_id = aipa.invoice_id) latest_payment
        FROM ap_invoices_all aia, po_vendors pv
       WHERE aia.vendor_id = pv.vendor_id
    GROUP BY pv.vendor_name, pv.vendor_idSandeep Gandhi

  • I have install last update for i pod(ios5) but during installation there was one problem....i have restore my ipod and now i have lost all my buyed music!!Is not possible download it....?What are the details, including any error messages, related to your

    I have install last update for i pod(ios5) but during installation there was one problem....i have restore my ipod and now i have lost all my buyed music!!Is not possible download it....?What are the details, including any error messages, related to your question?

    Have you not got the music on your computer and/or on backups on, for example, external drives or CDs/DVDs ?

  • To update vendor and customer details in BP transaction

    I have created a donor in the BP transaction . i need to update the vendor and customer details for the reated donor.
    please can someone suggest some BAPI's or FM's which are available to do the same.

    Hello Om,
    You can get vendor/costumer number and their names in FBL3N when you get bank ledger's line item.
    You must use BTE functions.
    I don't your techinal skills about SAP but if you don't know ABAP or ABAP dictionary details, you can get help your ABAPer.
    I will explain step by step.
    First of all, if you don't use BTE before, You must create a product on FIBF.
    Call FIBF transaction -> Settings -> Products -> ...of a customer
    Create a new line,
    Product : ZFI
    Text : BTE Products for FI Exit
    Product active : tick check fro activation.
    Then you must call SE11 for structure RFPOS.
    You must use append structure function for this structure and you can define ZFI_RFPOS append structure.
    Define 4 fields.
    Component : KUNNR - Component type : KUNNR
    Component : NAMED - Component type : NAME1
    Component : LIFNR - Component type : LINFR
    Component : NAMEK - Component type : NAME1
    Then save and active your RFPOS structure.
    After that, you must do same step for structure RFPOSX.
    Then go to SE37 and copy from SAMPLE_INTERFACE_00001650 to ZFI_INTERFACE_00001650 FM.
    After copy action, you must uncomment this line on ZFI_INTERFACE_00001650 FM's source code. It's very very important;
    E_POSTAB = I_POSTAB.
    Then you should add some ABAP code for getting customer & vendor details.
    I give you some examples, you can use it. (next message on this thread, please check)
    Then save and active FM.
    Call FIBF transaction again.
    FIBF -> Settings -> Process Modules -> ...of a customer
    Define a new line.
    Process : 00001650
    Function Module : ZFI_INTERFACE_00001650
    Product : ZFI
    and this customizing.
    Then you go to SE38 transaction.
    start report RFPOSXEXTEND. After starting, a pop-up appears, you must click YES.
    After those operations, you can see customer/vendor code and their names on FBL3N.
    I hope it helps to you.
    Regards,
    Burak.

  • Vendor details update with ISIDE_SM_VENDOR_DETAILS_UPDATE

    Dear all,
    I am using BAPI --> ISIDE_SM_VENDOR_DETAILS_UPDATE to update the details of vendor for transaction XK02.
    I have used total 5 tables.
    IT_VENDOR-- vendor no and name.
    IT_BAPIAD1VL-- contact per name, street, address (str_suppl1,2,3), postal code, city, country, region.
    IT_BAPIADTEL-- telephone
    IT_BAPIADFAX -- fax
    IT_BAPIADSMTP -- email.
    ET_BAPIAD1VL          }
    ET_BAPIADTEL           }  same details as above.
    ET_BAPIADFAX          }
    ET_BAPIADSMTP        }
    ETX_BAPIAD1VL               }
    ETX_BAPIADTEL                }  'X' wherever there are values for above fields in the tabs.
    ETX_BAPIADFAX               }
    ETX_BAPIADSMTP             }
    After testing the FM, it gives this message in return tab
    T      ID                   NUM               MESSAGE
    E       AM                   164             Specify address object type and key
    Regards,
    Sumit Nene.

    DATA: WA_ISL_VENDOR TYPE ISI_SM_SEL_RECORD.
    CALL FUNCTION 'ISIDE_SM_VENDOR_DETAILS_UPDATE'
        EXPORTING
    *    IT_RETURN           =
        IS_SEL_VENDOR       =  IT_ISL_VENDOR
          IS_VMDATA            = IT_VMDATA
    IMPORTING
       ET_RETURN           =   it_return
    *   ES_VMDATA           =
    this is my code.
    IT_ISL_VENDOR --> im passing vendor no in lifnr field of this tab.
    IT_VMDATA--> all the vendor related data that i wish to update.
    Regards,
    Sumit Nene.

  • SRM-SUS 7.0 - Updating Vendor Bank from BP Bank Details

    Hi SRM Gurus,
    We are implementing SUS (SRM7.0) and part of the requirement is that we need to update vendor bank details in our ECC6.0 backend once our vendors have updated it in our SUS portal. We have used BBPGETVD to transfer data from our ECC to SUS. Now my question is how to bring updates such as bank details back into ECC from SUS. I am not sure if this need a custom solution or ALE or PI.
    If you can provide documentations / guide it will be most helpful.
    Thanks.
    Kind Regards,
    Darwin

    Actually SUS does provide a standard update of bank data. What I am unsure about is whether this update is handled also in SUS (XI) - MM (IDoc CREMAS) mapping and finally update of the vendor data in MM via IDoc inbound processing.
    In order to enable this you basically just need at least one entry in the bank table (bnka) in the SUS server, which can be created manually via transactionf FI01 or imported from files provided by difffering providers depending on the country for which you want bank data.
    regards Thomas

  • Vendor details. IDOC help.

    We have two different SAP Systems. By using the message type ADRMAS we
    are sending Vendor address details to another system ( Used ALE Cocept) 
    Now i want to block the updation of telephone number, email, fax in the receiving system.
    the inbound idoc is being processed by  IDOC_INPUT_ADRMAS.
    I am unable to find user exit or BADI for the inbound idoc function module. Is there any way to block the updation
    of vendor details on the receiving system.
    Please help.

    Hi,
    1. Create a rule, by giving your Segment name(Give the segment where in your field exists).
    2. Choose Maintain Rule(Select your rule which was created in above step).
    3. Now all the fields which are avlbl in your segment will appear.
    4. Double-click on the field for which  conversion rule to be maintained.
    5. Choose option (Convert sender fields) and Under Rule type give your SAP field name. Click on Conditions give the value to be maintained, if you want space to be populated then give slash (/) . Come back to main screen.
    6. Now the last step,Assign message type for newly create rule. here you need to maintain the source and destination systems names along with segment type and conversion rule.

  • Official 2009 Lenovo T61/T61p Nvidia Video Drivers: Please Consider One Last Update for the Road

    The title of this new thread says it all ..... 3 years since the last offical Lenovo T61/T61p Nvidia Video Driver Package release ..... a virtual lifetime in computer science years.
    I'm looking for advice on how to best lobby the technical folks at Lenovo (by phone or here on the Forums) for one last official Lenovo "Nvidia" video driver update for our T61 and T61p units.
    Lenovo's most current "ancient" 2009 Nvidia driver packages (found here),
    http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS001342
    http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS003876
    http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS003605
    all leave quite a bit of 3D (and some 2D) performance laying out there on the table based on my own testing with current modern Nvidia reference drivers on a cloned test mule hard drive (and never once crashed with the newer Nvidia reference drivers under WinXP 32-bit or Win7 32 bit).
    Most all the major 3D gaming benchmarks were nearly doubled, and most importantly, my real world qualitative performance experience seemed even greater than the nearly doubled quantitative benchmark results.
    I'm wondering if starting this new thread would be of any benefit to encourage the good folks at Lenovo to consider one last update after 3+ years?
    Before I go to the trouble of posting my results, it is my hope that Lenovo could simply try the latest Nvidia reference drivers for themselves, tweak them (if even necessary) and then issue one last offical T61/T61p Nivida driver package update for the road .... hundreds of thousands, if not millions, of T61/T61p w/Nvidia GPU units are still in reliable daily service.
    http://www.geforce.com/drivers
    Something to please consider.
    Two (I used to have Five) - T61p 15.4" WS T9300 2.5Ghz units, August 08/08 Builds with FX570M Nvidia Graphics; ... One W520 i7-2860QM w/2000M Nvidia Graphics (most recent acquisition and stupidly fast); .... One - T42 4:3 15" Flexview 1.8GHz with ATI Graphics (still perfect for traveling); ... Two - T500 15.4" units both with ATI HD3650 Graphics.

    Hi eecon
    It is considered fortunate that Lenovo provides newer driver for newer OS even after the system was phased out. From what I know, most of the OEM / manufacturers do not provide drivers for newer version of Windows when the product is phased out.
    Furthermore, graphic card vendors (e.g. NVIDIA, Intel, AMD, etc.) oftenly release new drivers and it is hard for manufacturers to catch up with them. Usually, the purpose of OEM providing new driver is to resolve existing issues. If you need performance, get newer drivers directly from vendors website.
    Have a nice day!
    Peter
    W520 (4284-A99)
    Does someone’s post help you? Give them kudos as a reward, as they will do better to improve | Mark it as solved if the solution works for you, so it could be reference for others in the future
    =====================================
    Sound Enthusiast and Enhancement (Post comments, share mixes, etc.)
    http://forums.lenovo.com/t5/General-Discussion/Dol​by-Home-Theater-v4-for-most-Lenovo-Laptops/td-p/6...
    http://forums.lenovo.com/t5/IdeaPad-Slate-Tablets/​IdeaPad-Tablet-Sound-Enhancement-Thread/td-p/7150

  • Can not update payment details

    I've been a CC subscriber since it began and last month funds were not in my account for the monthly subscription. Since then I have had an email to ask me to update my payment details. I know I probably shouldn't of done but I've waited until the last minute to do this. I have two days to make a payment so decided to update my details. I went to My Account - Plan Information - Update Payment info. I was asked for my password which I entered then proceeded to enter my payment details which are the same as previously. Then when you press save, nothing. Nothing happens. A message is at the top of page saying -
    We are still processing your payment.  Please check back in a few minutes or contact Customer Support.
    After I waited for an age, I checked back and the payment information hasn't changed. It has my card number checked out except the last 4 digits. My name isn't there and it says Amsterdam as my city which it isn't. I must of filled in the information 10 or more times and it doesn't change.
    I've tried Customer Services- chat and spoke to someone who said I will receive a call back. Still no call back after 3 hours when  I was told 10-15 mins.
    Any ideas what's going on? Is there any customer support I can contact directly?

    Change Payment Information
    Settings>iTunes and App Stores>Apple ID>View Apple ID>Sign-in>Payment Information

  • Address Book repetitive crashes since last updates ?

    Hello,
    I do apologize for the length of this post but I don't know how to shorten it without removing some details useful to understand the problem encountered.
    My sister has got an intel iMac with Tiger 10.4.10 and since last updates (10.4.9 and/or 10.4.10) she cannot use AB more than some seconds. It crashes consistently everytime it is open, even if no other action is done. There are also problems with iChat, iCal, Safari and Mail (but less than with AB).
    When I visited her recently, I had a look to the console (even though I'm far from being an expert myself but I tried to find a track before asking here).
    I noticed that for both crashes (Safari and AB), there was this mention :
    quote
    +CFPropertyListCreateFromXMLData(): plist parse failed; the data is not proper UTF-8. The file name for this data could be:+
    + /Users/nnnnn/Library/Caches/com.apple.AddressBook/MetaData/.info+
    + The parser will retry as in 10.2, but the problem should be corrected in the plist.+
    +Error in createMutableDictionaryValue:1012 for property 'URLs' 'XML parser error:+
    + Unexpected character = at line 1+
    +Old-style plist parser error:+
    + Unexpected character '0x3d' at line 1+
    +Aug 23 19:03:07 Ordinateur-2-nnnnn crashdump[465]: Exited process crashed+
    +Aug 23 19:03:07 Ordinateur-2-nnnnn crashdump[465]: crash report written to: /Library/Logs/CrashReporter/Exited process.crash.log+
    unquote
    because of the "+not proper UTF8+" I tried to change it in AB preferences/vCard/encodage in "+proper UTF8+" and because of "+Old-style plist parser: error Unexpected character+" I tried to check and validate fonts of Fontbook. Unsuccessfully.
    Back home, I searched on the web and read somewhere that there could be a problem with the "catalog" that could only be repaired by DiskUtility from the install disk. That was done today but the "*hard disk seems to be OK*" and AB crashed as usual when open.
    there were two crash reports, one for AB and one for ABsync (? curious since she has no .mac account and does not sync her mobile phone).
    The AB crashlog(1) finishes so :
    quote
    +Thread 3 Crashed:+
    +0 <<00000000>> 0xffff0b54 __memcpy + 948 (cpu_capabilities.h:228)+
    +1 ...apple.AddressBook.framework 0x9478a9f7 c4_Column::FetchBytes(long, int, c4_Bytes+
    unquote
    and the ABSync crashlog(2) :
    quote
    +Thread 0 Crashed:+
    +0 <<00000000>> 0xffff0af6 __memcpy + 854 (cpu_capabilities.h:228)+
    +1 ...apple.AddressBook.framework 0x9478a9f7 c4_Column::FetchBytes(long, int, c4_Bytes+
    unquote
    and finally when I asked her for a screenshot of her ~/Library/Application Support/AddressBook, I was surprised (comparing with my folder) to find she has three ABPerson.skIndexInverted files (I have only one) the second file is ABPerson.skIndexInverted.218 and the third ABPerson.skIndexInverted.286.
    I suppose two are toomuch but which ones have to be delete ...
    Sorry for this (too) long post and hope the light will come from some reader better educated in hard and softwares than us.
    (1) (2) I have a longer version of these crashlogs but this post is already very long and I'll post them only on request (if needed)!

    Hello Josy.
    After fixing the filesystem issues, which you say you’ve already done, try re-creating the Address Book files that may have become corrupt, one at a time, as follows — or restore them from a backup if you have one:
    1. Quit Address Book, Mail, and any other applications that might use Address Book for something. Or just quit all applications to be on the safe side.
    2. In the Finder, go to ~/Library/Application Support/AddressBook/. Make a backup copy of this folder, e.g. by dragging it to the Desktop while holding the Option (Alt) key down. This is where all your contacts are stored.
    3. Go to ~/Library/Preferences/. Move com.apple.AddressBook.plist and com.apple.AddressBook.abd.plist (if it exists) out of there (e.g. to the Desktop). Check whether the problem is fixed.
    4. If Address Book keeps crashing, go to ~/Library/Caches/ and move the Address Book and com.apple.AddressBook folders to the Trash (there is no need to empty the Trash yet). Check whether the problem is fixed.
    5. If Address Book keeps crashing, go to ~/Library/Application Support/AddressBook/ and trash any ABPerson.skIndex files you may see there. Check whether the problem is fixed.
    6. If Address Book keeps crashing, try again trashing both AddressBook.data and any ABPerson.skIndex files that may have been re-created, then rename AddressBook.data.previous to AddressBook.data.
    7. If Address Book keeps crashing, try moving the entire AddressBook folder out of ~/Library/Application Support/.
    The above procedure may introduce synchronization issues if you use .Mac or iSync to synchronize your Address Book with other computers or devices, so be sure to back up your Address Book data now if the problem is fixed.
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. You can easily locate any of the folders referred to in this post by copying the folder path here, doing Go > Go to Folder in the Finder, and pasting the folder path there.

  • How can I add a Last Update to a web page with a web app.

    I would like to know how to update a webpage whenever a web app item has been added or updated last.
    I have the tag {tag_lastupdatedate}  but it only works is only for the web app list or details page.
    I want to be able to add the date and time as to when the entire list was last updated. Any suggestions? thanks!

    Hi DLSAgency,
    There is a module called {module_lastupdated} and it will display the date when the web page it's on has been last updated, but there is no module that will display when the web app list inside that page was last updated. There no such functionality in BC.
    Cheers,
    Mario

Maybe you are looking for