Need to update trading partner from T-code: FINTAP or FINT

Hi all,
When i run T-Code FINTAP(Item Interest Calculation) or FINT(Item Interest Calculation), i need to update Trading Partner automatically.
Kindly let me know is there any BTE's or User Exit for the same.
Regards,
Rohini

Hi all,
When i run T-Code FINTAP(Item Interest Calculation) or FINT(Item Interest Calculation), i need to update Trading Partner automatically.
Kindly let me know is there any BTE's or User Exit for the same.
Regards,
Rohini

Similar Messages

  • Unable to update Partner Unit in Eccs with Trading Partner from FI

    Hi,
    I had removed the Breakdown category from the FS item Master (CX14) for a reco Acct by mistake .Now when i update the master table in CX14 with the same Break down Category(0110 - Partner Unit (break down Type-4) + Translation Currency (break down type -2)) the sytem than gives a pop up window showing the "Report for Transaction Check" where it asks for the Default Value of Partner Unit to be entered.Once i maintain the default value of partner unit all the document for the reco account gets updated with default Partner unit.However in FI module each of the documents posted for this account have diffrent Trading Partner due to which im unable to do the Interunit Elimination.
    Kindly let me know how do i update Partner unit in all the documents in Consolidation with the trading Partner from FI module.
    thanks
    Karan

    Once i maintain the default value of partner unit all the document for the reco account gets updated
    this system behavior makes sense as you are trying to change configuration after loading transaction data. what happens if you go back to the underlying accounts and change TP back to what FI is showing? if u have to deal with a lot of documents u may want to set up a BDC session to do the mass update.

  • Updating Trading Partner in VF44

    Hello Experts,
    During VF44 i have to update the trading partner into the accounting documents line items.
    ie need to update BSEG-VBUND from KNA1-VBUND.
    Any views or opinions on this.please provide your valuable feedback would be highly appreciable.
    Regards,
    Ranjith Nambiar

    Resloved by myself
    Used enhancement point in the FM FI_DOCUMENT_POSTgetting used in this transaction.
    Thanks and Regards,
    Ranjith

  • Migrating Trading Partner from test  to Production environment

    Hi,
    My Production environment has configuration for two trading partner.
    I need to migrate one more trading partner from test environment to (the existing) production environment.
    I see Agreement level export, TP level export, Config level export options in Oracle B2B.
    Can you please suggests as to which is the fastest and most accurate way to migrate new trading partner configuration?
    Regards,
    Ravi Shah

    There is nothing as preferred option. However you can keep few things in mind.
    1. Agreement Export - Preferred option , if you would like to export only specific Trading Partner and Agreement details.
    2. Repository Export - For full repository export.
    3. Trading Partner Export - This option do not keep any TP in mind while taking the export, hence you may not information about Delivery channel and Agreement. This provides information about Trading partner profiles and Supported Document defition of the trading partner.
    Let me know.

  • Need to update to Itunes 11.1 and also need to update my OSX from 10.5.8 to a higher version to support itunes 11.1.

    Need to update to Itunes 11.1 and also need to update my OSX from 10.5.8 to a higher version to support itunes 11.1.
    Thanks for the help.

    Click here, buy the DVD, install it, and run Software Update twice.
    (95649)

  • How to update trading partner (BSEG-VBUND) in tr.code FB01/FB02?

    Hi,
    I need, under some circumstances, to update value of trading partner code (field BSEG-VBUND) to all items in the FI document, created/changed with transaction FB01/FB02.
    I checked available user exits and bussiness events, but didn't found one, which could do the trick.
    In fact, in bussiness transaction event #00001430 (CHANGE DOCUMENT: Field substitution header/line - Checks prior to posting change completed) - for FB02 I have access to the internal table T_BSEG, but it seems this table is used as import parameter only and any changes didn't take efect at the end.
    Any help how can I do the trick? And this is while I'm in a transaction FB01/FB02.
    My system is 4.6c.
    Many thanks in advance.
    Regards,
    Ivaylo Mutafchiev

    Svetlin, Max,
    what I did until now is:
    1) followed matrix substitution = callup point 3 (complete document) - I checked for existance of correct substitution field(s) in the GB01 table, and re-generated substitution code (as noticed in note 42615). That added my field in the list of fields for substtitution which are considered at the end of substtitution - in forms:
    FORM EXP_REC_015                      
            USING                        
              DATA_CHANGED TYPE GB002_015
            CHANGING                     
              DATA_OUT TYPE GB002_015.
    and
    FORM EXP_TAB_015_BSEG                   
             USING                          
               IN_ORIG STRUCTURE        BSEG
            CHANGING                        
               OUT_RESULT STRUCTURE     BSEG
               B_RESULT.
    both forms are in main generated program GBTAAFI0.
    My field (VBUND) is taken in account - added to the structure:
    DATA:  BEGIN OF TEMP_STRUCT,                          
            VBUND                          LIKE   BSEG-VBUND
            ZFBDT                          LIKE   BSEG-ZFBDT
            END OF TEMP_STRUCT.                            
    here ZFBDT was the other field defined in GB01 for substitution from someone esle - perhaps by default, I don't know.
    Further (in the include MF05LFB0),
    almost all of the structures which contain my changes are cleared (below is extract from the code):
    LOOP AT beltab WHERE xarch NE char_x.                   "Note 0383125
    REFRESH xbseg.                                                     
      REFRESH ybseg.                                                     
      REFRESH xbsec.                                                     
      REFRESH ybsec.                                                     
      REFRESH xbsed.                                                     
      REFRESH ybsed.                                                     
      REFRESH xbset.                                                     
      REFRESH ybset.                                                     
      REFRESH t_bsegco.                                                  
      REFRESH t_fmfich.                                                  
    Further, the logic proceed with the program SAPFF011 and form 'import_*beleg', where my changes were overwritten with original data - before substitution.
    2) Tried Max's proposal - and extended structure BSEG_SUBST with field VBUND, further populated the substitution table in the related BTE 1430 accordingly.
    Unfortunately the flow-logic proceeded further to the same form 'import_*beleg' in the program SAPFF011 and my changes dissapeared.
    I'm at dead-end - have no idea where and what is the problem...
    Checked few OSS notes - 42615, 386896, 513891, 391309, 438076. Everything which is related to my exact situation is set correctly - as far as I found :-).
    Just for tests I tried both ways (BTE and matrix substitution) with another field ==> BSEG-XREF3, and it was updated correctly - accorging to my logic.
    Thanks guys, your suggestions were right at the time and valuable, but they didn't help me to solve my problem. Perhaps there is something messed in our system - I can't be sure. What I can say for sure is that we have working BTE-s (1430 is used in our system - I just added piece of code into it), and validations are working also.
    Thanks again.
    Regards,
    Ivaylo
    P.S. If you have any suggestions, I'll be glad to hear them from you.

  • I need to update my MacBook from 10.5.8 to 10.6 or higher.

    I need to upgrade my MacBook from 10.5.8 to at least 10-6 so I can use a new printer.  I don't know how old my laptop is but I will guess 2007 or 2008.

    Upgrading to Snow Leopard
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mavericks if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s iCloud services; fees and
               terms apply.
    Upgrading to Mavericks
    You can upgrade to Mavericks from Lion or directly from Snow Leopard. Mavericks can be downloaded from the Mac App Store for FREE.
    Upgrading to Mavericks
    To upgrade to Mavericks you must have Snow Leopard 10.6.8 or Lion installed. Download Mavericks from the App Store. Sign in using your Apple ID. Mavericks is free. The file is quite large, over 5 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
        OS X Mavericks- System Requirements
          Macs that can be upgraded to OS X Mavericks
             1. iMac (Mid 2007 or newer) - Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) - Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) - Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) - Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) - Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) - Model Identifier 3,1 or later
             7. Xserve (Early 2009) - Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
         Are my applications compatible?
             See App Compatibility Table - RoaringApps.
    Upgrading to Lion
    If your computer does not meet the requirements to install Mavericks, it may still meet the requirements to install Lion.
    You can purchase Lion at the Online Apple Store. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.

  • Update USR table from Java Code outside OIM

    Hi,
    I want to update a particular field in the USR table using the update query specifically from the java code. I dont want use updateUser api.
    I have written the code which works fine for some userids. But for some user ids it gets the tcUtility object successfully but when trying to execute the update query, it throws the tcDatasetException with message as Data Access Error.
    Please let me know how can i achieve this.
    Also let me know the groups the userid should be member to execute a update query on OIM DB from external java code..
    TIA...

    You are performing an unsupported process. I suggest you correctly code a connection to OIM, and perform the update correctly.
    If you need to update the database directly, use jdbc java connection and run the update. You can do a google search for jdbc and java to find plenty of samples.
    -Kevin

  • Go-live in EC-CS:update trading partner and transaction type on Balances

    Hi collegues,
    We are on a go-live this december for EC-CS (consolidation) but never have used trading partner nor consolidation transaction type so there are not GL account balances differenciated by these two items on our FMGLFLEXT database for the operative ledger.
    Which is the best option for the data to be collected into our consolidation ledger in EC-CS (ECMCT database) when data transfer for all our consolidation units will be realtime update from FI?
    I really don't know if I must correct the balance on FMGLFLEXT throught FI postings or if just adjustments on EC-CS it's the best option. I'm thinking on the posibility of extracting the Financial Statement at any time from F.01 tx...
    Is there any transaction on FI to authomatically update at least the trading partner on GL accounts positions/balances?
    Thanks in advance!
    Regards,
    Rushid

    Hi David,
    In fact there has never existed any entry for trading partners on GL, AR, AP master data. So consequenly, no balance in FAGLFLEXT/ nor documents on BSEG have ever had these fields populated.
    My question is: which is the common option for a go live in such situation? Our users will distribute the current GL balances into "sub-balances" (GLAcctTxtypetradpartner) in an excell file but I do not really know what to do with this data:
    - direct postings on BSEG cancelling the previous totals,
    - rollup into a Special ledger of the new gl,
    - rollup into the Preparations for Consolidation Ledger,
    - corrections on ECMCT after the periodic extract...
    What would choose? 
    Thanks!

  • Need to update out put tax classifcation code for a range of items in Orac

    Hi,
    I need to update out put tax code for a range of items in Oracle EBS. At the moment we update tax code for individual items manually ubder invoice tab. Is there a better way to do this.
    Regards

    Where can I find the mtl_system_items_interface table?Under INV schema.
    R12 -- INV.MTL_SYSTEM_ITEMS_INTERFACE
    http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=MTL_SYSTEM_ITEMS_INTERFACE&c_owner=INV&c_type=TABLE
    11i -- INV.MTL_SYSTEM_ITEMS_INTERFACE
    http://etrm.oracle.com/pls/trm11510/etrm_pnav.show_object?c_name=MTL_SYSTEM_ITEMS_INTERFACE&c_owner=INV&c_type=TABLE
    Thanks,
    Hussein

  • Need to setup Trading Partner specific CorrelationID

    Hi Gurus,
    I have a requirement in Oracle 1g to setup correlation IDs based on the Trading Partner-Document Type combination.
    We use the generic ftp communication protocol. Is this possible. If yes, how?
    Any help would be highly appreciated.
    Thanks,
    Sambhav.

    Need to correllationsets in B2B for correllating two different documents.

  • HT4623 I need to update my software from iOS 4.2.1 to iOS 6. Please help?!!!

    I need to update my iphone 3G's software, and currently using iOS 4.2.1? Can someone please direct me on how to aquire and facillitate the process of updating my phone! Please and thank you!

    You trying to show your mom and dad that you have to upgrade to get the new iOS 6
    (USCG Mechanic with an Apple problem)

  • I need to update my OS from 10.5.8 to snow leopard, should I back up my data beforehand or should it be okay to update straight away?

    My laptop has recently stopped updating all of the software on it because it is too out of date, but I'm yet to try and update my laptop. I have the disc for Snow Leopard, but I don't have a harddrive to potentially back up all my data to protect it from getting lost when updating the OS. Should I back up my data before updating? Or just wing it and do the update anyways? Thanks!

    Yes, you should definitely backup your data. And, before doing that you should repair your hard drive and permissions.
    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    After installing Snow Leopard download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store.
    Then should you wish to go further:
    Upgrading from Snow Leopard to Lion or Mountain Lion
    You can upgrade to Mountain Lion from Lion or directly from Snow Leopard. Mountain Lion can be downloaded from the Mac App Store for $19.99.
    If you sign into the App Store and try to purchase Mountain Lion but the App Store says your computer is not compatible then you may still be able to upgrade to Lion per the following information.
    A. Upgrading to Mountain Lion
    To upgrade to Mountain Lion you must have Snow Leopard 10.6.8 or Lion installed. Purchase and download Mountain Lion from the App Store. Sign in using your Apple ID. Mountain Lion is $19.99 plus tax. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mountain Lion - System Requirements
           Macs that can be upgraded to OS X Mountain Lion
             1. iMac (Mid 2007 or newer) - Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) - Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) - Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) - Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) - Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) - Model Identifier 3,1 or later
             7. Xserve (Early 2009) - Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
         Are my applications compatible?
             See App Compatibility Table - RoaringApps.
         For a complete How-To introduction from Apple see Upgrade to OS X Mountain Lion.
    B. Upgrading to Lion
    If your computer does not meet the requirements to install Mountain Lion, it may still meet the requirements to install Lion.
    You can purchase Lion by contacting Customer Service: Contacting Apple for support and service - this includes international calling numbers. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.

  • Trading Partner for Company Code

    Hi Need to figure out the list of all Trading partnets for a given Company Code.
    Which table should i look into
    Thanks,
    Ravi.

    Ravi,
    Check the table T880.
    Thanks
    Giridhar

  • Need to extract Order Quantity from T-code COIO

    Hi,
    We are having a Datasource build over the table RESB (generic datasource). And User came with a requirement, that they need to have Order Quantity and Batch from the T-Code COIO to be used in the same BI report.
    I cant find the backend table of T-Code COIO. Is there any possibilities to use those fields in the same datasource.
    Kindly share your ideas.
    Thanks,
    Satish.

    hi,
    Take abap expert help and find the possible relations. if relations are possible between COIO. and RESB then you happily enhance your data source.
    for data source enhancement logic you can get form your abap expert.
    you can add required field to your extract structure of data source thru by appending.
    unhide it at RSA6.
    Thanks

Maybe you are looking for

  • ITunes does not launch with new User Account (Vista)

    One of my limited user accounts on Windows Vista because corrupt, so I created a new limited User Account and copied ALL of the files from the old to new. Now, when I try to launch itunes on the new user account, it will not open at all. Itunes works

  • LaserJet Pro 200 color MFP Touch screen totally blank

    Hi I have a Laserjet Pro 200 color MFP 276n which was working fine on friday - printing via a USB and photocopying using the screen. I've come to use it this morning and the printer has nothing on the touch screen and nothing around the screen. I get

  • How do I watch movies in Spanish?

    Is there a spanish language option on the movies I have purchased through itunes? If yes, how do I access it?  If no, how can I buy Spanish language movies?

  • Itunes Library.xml save automatically?

    Is there a way that the itunes library.xml file that you export when clicking the export library button under the file menu can be saved automatically without having to click it everytime? Thanks

  • HOWTO?  Make JSP tags small in JDev Design

    I use the JDev Design view to quickly navigate around my JSP pages. However the visual tags become huge and make it hard to use. Is there a way to make the visual tags small; Say show only the type of tag? Thanks A