Purchase Order and Fixed Asset Module.

Hi all,
I want to print my purchase order of fixed asset for record purposes.  But the thing, I can't link purchase order or any of A/P documents to my fixed asset.
Meaning, if A/P invoice has been added into the system, it will not update my fixed asset master data.
Therefore, I have to use PO for printing, since there's no way to print Fixed Acquisition as a document. By doing this, i need to maintain both Item Master Data and Fixed Asset Master Data with Fixed Asset items, which i find tedious.
Is there a solution for this, like perhaps there's a way to copy info from PO to FA acquisition, or Posted A/P Invoice that contains Fixed Asset item will be linked to FA Acquisition, or perhaps there's a way to print FA Acquisition (like a PLD) that i am not aware of?
Please do help.
Thanks upfront!
Rgrds,
Kevin
Edited by: Kevin Lau Sieh Huo on May 20, 2008 7:25 AM

Hi Kevin,
I am afraid to inform you that the print layout function is not
supported for Fixed asset transactions such as acquisition.
As you mentioned, if you want to use it as PO document, you will need to create PO in business one since no integration is realized between Purchasing in business one and acquisition in Fixed asset addon.
If you think this will have critical impact on your business process, please post your requirement in our SAP Business One Product Development Collaboration.
/community [original link is broken]
Please refer to SAP Note 1028874
https://service.sap.com/sap/support/notes/1028874
Regards,
Ivy Zhang
SAP Business One Forums Team

Similar Messages

  • How to relate the Fixed Asset module to Purchase Order?

    Hello experts,
    Good day!
    How can I relate the fixed assets to purchase order? Is there a ways, so that we can't create different item code for purchase cycle and fixed asset module...
    2nd, how to Increase the net  value of fixed assets ( vehicle, machines) without affecting Profit and Loss? what is the SAP process to do this? Please help me on this..
    Thanks,
    Mari

    Hi Mari,
    First I suggest you add a lot more info. Are you doing this in Crsytal Report Designer or are you referring to one of the SAP applications? If an SAP app then please mark this case as answered and post your question to the SAP forums.
    If you are using Crystal Reports then need more info like the version and what those tables are and if you can use a common link?
    Thank you
    Don

  • How to link asset with purchase order and PO Item.

    Hello,
           I have to generate a report which contains columns
    Asset No , po no(ebeln) ,PO Item(ebelp),Material no etc
    My query is how to link asset with purchase order and      PO Item.
    I am selecting asset and po no. from anla  but how to get
    po item no(ebelp)?
    po line item is important in this report because every line item has differrent asset and material no.
    i tried to match asset no in mseg table but i am not getting asset no in mseg .
    how should i proceed ?

    Thanks Thomas & Srimanta for the quick response.
    When I checked EKKN table by entering PO there is no asset no. in anln1 field.
    Also I would like to add that, In me23n for a PO, account assignment category we are entering 'F' for internal order settlement.
    Where can i find the link between asset and po no(ebeln) and po item(ebelp)?
    Regards,
    Rachel
    Edited by: Rachel on Aug 11, 2008 7:23 AM

  • I am trying to generate purchase order and i create a BAPI also which is active. But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)".

    i am trying to generate purchase order and i create a BAPI also which is active.
    But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)".

    Hi,
    Yeah i tried my Z_BAPI in R3 and then giving some ERROR.
    This is my CODE-
    FUNCTION ZBAPIPOTV2.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(POHD) TYPE  ZPOHD OPTIONAL
    *"     VALUE(POITEM) TYPE  ZPOITEM OPTIONAL
    *"  TABLES
    *"      RETURN STRUCTURE  BAPIRET1 OPTIONAL
    data: ls_pohd type bapimepoheader,
             ls_pohdx TYPE bapimepoheaderx,
             lt_poit TYPE TABLE OF bapimepoitem,
             lt_poitx TYPE TABLE OF bapimepoitemx,
             ls_poit TYPE bapimepoitem,
             ls_poitx TYPE bapimepoitemx.
       MOVE-CORRESPONDING pohd to ls_pohd.
       MOVE-CORRESPONDING poitem to ls_poit.
       ls_pohdx-comp_code = 'x'.
       ls_pohdx-doc_type = 'x'.
       ls_pohdx-vendor = 'x'.
       ls_pohdx-purch_org = 'x'.
       ls_pohdx-pur_group = 'x'.
       ls_poit-po_item = '00010'.
       APPEND ls_poit to lt_poit.
       ls_poitx-po_item = '00010'.
       ls_poitx-po_itemx = 'x'.
       ls_poitx-material = 'x'.
       ls_poitx-plant = 'x'.
       ls_poitx-quantity = 'x'.
       APPEND ls_poitx to lt_poitx.
    CALL FUNCTION 'BAPI_PO_CREATE1'
       EXPORTING
         POHEADER                     = ls_pohd
        POHEADERX                    =  ls_pohdx
    *   POADDRVENDOR                 =
    *   TESTRUN                      =
    *   MEMORY_UNCOMPLETE            =
    *   MEMORY_COMPLETE              =
    *   POEXPIMPHEADER               =
    *   POEXPIMPHEADERX              =
    *   VERSIONS                     =
    *   NO_MESSAGING                 =
    *   NO_MESSAGE_REQ               =
    *   NO_AUTHORITY                 =
    *   NO_PRICE_FROM_PO             =
    *   PARK_COMPLETE                =
    *   PARK_UNCOMPLETE              =
    * IMPORTING
    *   EXPPURCHASEORDER             =
    *   EXPHEADER                    =
    *   EXPPOEXPIMPHEADER            =
      TABLES
        RETURN                       = return
        POITEM                       = lt_poit
        POITEMX                      = lt_poitx
    *   POADDRDELIVERY               =
    *   POSCHEDULE                   =
    *   POSCHEDULEX                  =
    *   POACCOUNT                    =
    *   POACCOUNTPROFITSEGMENT       =
    *   POACCOUNTX                   =
    *   POCONDHEADER                 =
    *   POCONDHEADERX                =
    *   POCOND                       =
    *   POCONDX                      =
    *   POLIMITS                     =
    *   POCONTRACTLIMITS             =
    *   POSERVICES                   =
    *   POSRVACCESSVALUES            =
    *   POSERVICESTEXT               =
    *   EXTENSIONIN                  =
    *   EXTENSIONOUT                 =
    *   POEXPIMPITEM                 =
    *   POEXPIMPITEMX                =
    *   POTEXTHEADER                 =
    *   POTEXTITEM                   =
    *   ALLVERSIONS                  =
    *   POPARTNER                    =
    *   POCOMPONENTS                 =
    *   POCOMPONENTSX                =
    *   POSHIPPING                   =
    *   POSHIPPINGX                  =
    *   POSHIPPINGEXP                =
    *   SERIALNUMBER                 =
    *   SERIALNUMBERX                =
    *   INVPLANHEADER                =
    *   INVPLANHEADERX               =
    *   INVPLANITEM                  =
    *   INVPLANITEMX                 =
    ENDFUNCTION.
    i am trying to generate purchase order and i create a BAPI also which is active. But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)". 

  • Documentation for Asset Purchase orders and Servicess

    Hi,
    Plz give me documentation for Asset Purchase orders and Servicess

    Hey check it in Building block library
    http://help.sap.com/bp_bblibrary/600/BBlibrary_start.htm
    Regards,
    Raman

  • I want to check/see the total quantity of items from fixed asset module

    Dear All,
    When I create purchase requisitions or purchase order, at the time of selection of items (Printer etc)…
    I want to check/see the total quantity of items from fixed asset module.
    Please guide, me how can I see the total items are available in fixed assets, on purchase order
    Product Detail
    Database Server
    RDBMS : 10.2.0.5.0
    Oracle Applications : 11.5.10.2
    Machine : ofadb.thecityschool.edu.pk
    User : APPS
    Oracle SID : PROD
    System Date : 16-APR-2012 13:27:37
    Database Server PID : 13485
    Session SID : 1437
    SERIAL# : 12175
    AUDSID : 32767692
    Database CPU Usage (in secs) : 0.69
    Regards

    Oracle does not offer this functionality.
    You will have to write a personalization that will query FA based on the item and display the message to the user.
    To invoke this personalization, the user may have to go to tools > show FA. This Show FA is a new option you create by personalization.
    Sandeep Gandhi

  • Migrate Open items - Sales orders/ purchase orders and unbilled deliveries

    Hello All
    Can you please tell me the best practice to migrate open sales orders, purchase orders and deliveries due for billing at Cutover to the new system?
    Also how can the historical data be migrated? What all comes under historical data?
    Many Thanks
    CM

    The way the sales order data is migrated is largely dependent on the number of orders you are intending to migrate. 'Best practice' would suggest you do the following:
    1) Do not migrate any completed orders (they should be kept as 'read only' in the legacy system)
    2) Get the business to close as many orders as possible before the cutover 
    3) Stop entry of any new orders during the cutover the period - hold them back and enter them directly into SAP.
    Once you have a manageable numebr of orders to migrate you really have two options:
    Upload the basic order into SAP (we have usually done this from a spreadsheet using ALE or some similar tool). The basic data is confirmed to order type, order number, order date, customer number, material code and quantity. Any data in addition to this is then added manually to the system by the users e.g. pricing info (this is really important as pricing data is really difficult to map). To do this you will need to have sequenced this correctly e.g. ensuring that the data and config for both the materials and customers are all already in the system before you load the orders.
    The second option would be to load them all completely manually - which is why I said at the beginning that really, the best approach is determined by the quantity of orders you need to migrate.
    I am sure other people will have used other methods but these two are the ones we usually use.
    (edit) P.S. you must remember that 'open' sales orders are any orders that are not yet billed so even if an order is delivered in your legacy system if it has not been invoiced you MAY need to migrate it. But as I metioned at the beginning - it would really be better to complete that order (i.e. bill it) before you close the legacy system so that it does not need to be migrated.
    ========
    For deliveries - again, there is no simple fix for this. Because the migration of a delivery demands the migration of an open sales order, the best approach is probably to load the sales order basic data, get the users to complete the sales orders (as described above) and then run the delivery due lists or manually and individually deliver each sales order item.  
    You cannot migrate ONLY the deliveries, you need to migrate the preceeding order(s) as well. But, again, if you take the approach of closing as many as possible in the legacy system, it will be much easier than migrating them.
    Edited by: charlieclown on Jun 25, 2009 4:19 PM

  • Creating a Purchase Order for the Asset

    Hi,
    Please see the following steps:
    1.Create a purchase order for the asset.
    2. Post a goods receipt from this PO.
    3. Quantity of asset will be transfered from goods receipt.
    But I find quantity of asset(AS02) was not be transfered and still was equal to 0.
    Could you help me?
    Thanks and Regards,
    Colin.

    see the field status varient for the gl account see the qty field is optional field or not
    and check in the asset group also qty field is the optional field
    Assign point if useful
    Regards
    A.k

  • Urgent -open purchase orders existed in asset how to remove from the asset

    Hi,
    Some assets I am going to delete if the open purchase orders existed how to remove the open purchase orders from the asset  what is the t/code to view the open purchase ordes.
    Can any body give the details please.
    Regards,
    Prabhakar.

    Use ME2N and give the required paramets in field Selection Parameters.  Some of the available choices are
    Open invoices
    Open target value
    Open issue quantity
    Issue quantity reversible
    Open goods receipt
    PO AA link is established through Account Assignment Category A mentioned in PO.  Select the PO with above and change the PO through ME22N

  • No Purchase order and sales order from trading contact

    Hi Gurus,
    I am new to this module and i am trying to create a Trading contract. As I understand that the trading contract should create Purchase order and Sales order automatically. But in my case, this didn't happen.
    In this regard, I want to know,
    i. Are info records mandatory or mentioning the required purchasing and sales data during contract creation is sufficient.
    ii. What are the configurations required to do for GTM functionality and which are the points should I check for this.
    help me out.

    HI
    there are some status that is required to be set while you save a  trading contract.
    your trading contract must be approved or released..only then follow-on docs will be created.
    regards,
    Yadesh

  • Please send me fm regarding to get purchase order and change purchase order

    Hi,
    Please send me fm regarding to get purchase order and change purchase order .
    Regards,
    Gurprit Bhatia

    Hi,
    Function module to get the purchase order details:
    BAPI_PO_GETDETAIL.
    data: po_items type table of bapiekpo with header line.
    parameters: p_ebeln type ekko-ebeln.
    call function 'BAPI_PO_GETDETAIL'
      exporting
        purchaseorder                    = p_ebeln
      ITEMS                            = 'X'
      ACCOUNT_ASSIGNMENT               = ' '
      SCHEDULES                        = ' '
      HISTORY                          = ' '
      ITEM_TEXTS                       = ' '
      HEADER_TEXTS                     = ' '
      SERVICES                         = ' '
      CONFIRMATIONS                    = ' '
      SERVICE_TEXTS                    = ' '
      EXTENSIONS                       = ' '
    IMPORTING
      PO_HEADER                        =
      PO_ADDRESS                       =
    tables
      PO_HEADER_TEXTS                  =
       po_items                         = po_items
      PO_ITEM_ACCOUNT_ASSIGNMENT       =
      PO_ITEM_SCHEDULES                =
      PO_ITEM_CONFIRMATIONS            =
      PO_ITEM_TEXTS                    =
      PO_ITEM_HISTORY                  =
      PO_ITEM_HISTORY_TOTALS           =
      PO_ITEM_LIMITS                   =
      PO_ITEM_CONTRACT_LIMITS          =
      PO_ITEM_SERVICES                 =
      PO_ITEM_SRV_ACCASS_VALUES        =
      RETURN                           =
      PO_SERVICES_TEXTS                =
      EXTENSIONOUT                     =
    check sy-subrc  = 0.
    loop at po_items.
      write:/ po_items.
    endloop.
    Check this program too:
    RFFMFG_INV_CANC_ALL for BAPi_PO_GET_DETAIL.
    Hope it helps you.
    Regards,
    Anjali

  • Is it possible to RESET Fixed Asset Module to the first day we installed it

    Hi All,
    We setup our Fixed Assets module months ago and now realised that we need to have a clean FA Module, so that we can restructure it the way we need. (New categories, new assets, etc.)
    I was wondering if there is a concurrent program or another kind of program to basically RESET the FA (Like resetting it to default).
    I know, this sounds something almost impossible, but I would appreciate any kind of help.
    Thanks,
    Sinan Topuz

    Is there any way to cancle previous apple ID and create a new apple ID. Please help

  • Integration with EBS HR & Fixed Asset module

    Let me know the integration possibilities between:
    a) Oracle's EBS's HRMS module and Workforce Planning
    b) Oracle's EBS's Fixed Assets module and Workforce Capex Planning
    c) Oracle's EBS's AP module and Financial Planning

    I am assuming you are implementing Hyperion Workforce/Capex out of the box, right?
    In either case (out of the box/custom)... you have (at least) options.
    1) Export a flat file from the EBS HRMS/Fixed Asset system and load via FDM.
    2) Have FDM connect (via an FDM script) to the EBS HRMS/Fixed Asset database system and pull the correct data needed. This option is assuming you know the HRMS/Fixed Asset database table structure.
    I know this is a FDM forum but another option is Oracle Data Integrator (ODI).

  • Accounting entries process in Fixed Asset Module

    Dear all,
    I don't know Accounting entries process in Fixed Asset Module. I don't know how to post accounting entries and manage fixed assets
    Anyone can share me documents that is relevant to business transaction in  fixed asset module.
    My ID: [email protected]
    Thank in advance
    Minh
    Edited by: Tran Binh Minh on Apr 21, 2008 5:04 AM

    Hi,
    Good Morning,
    We are using Oracle R 12 Version 12.1.3
    and the issue i m facing Corporate Book as we have not yet started Tax Book
    The Addition posted period is closed, but I want to change life in Open Period Mar 12 ( latest open period).
    Yes Depreciation Run for March 12.
    Please help
    Regards
    Anant Danve
    9820077180

  • Multiple depreceation areas in Fixed asset module

    Hi All
    My customer wishes to implement the fixed asset module and is currently running three separate books in his asset register.
    Each asset has a separate net book value for each book (i.e. depreciation area) since they are depreciated at different rates.
    Now i need to upload all the fixed assets but need to upload the three different net book values per asset based on the depreciation area selected - but cant seem to find a way to do this.
    If i create a new asset and then depreciate it, SAP shows the different net book values - so the system obviously supports the process. But how can i put in the assets?
    Any assistance would be appreciated.
    Thanks
    Wendy

    Hi,
    Good Morning,
    We are using Oracle R 12 Version 12.1.3
    and the issue i m facing Corporate Book as we have not yet started Tax Book
    The Addition posted period is closed, but I want to change life in Open Period Mar 12 ( latest open period).
    Yes Depreciation Run for March 12.
    Please help
    Regards
    Anant Danve
    9820077180

Maybe you are looking for

  • Outlook 2011 for Mac - No Reply Arrow When Replying From A Delegated Mailbox

    Hello, I previously posted this in the 'Outlook for Mac' forum but was asked to move it (http://answers.microsoft.com/thread/d8912456-1e00-4b30-af17-13d150a88ea5).  Perhaps someone here wouldn't mind trying to create the same behaviour in their envir

  • Zen neeon problem...pleas, he

    i have my neenon about one month. so far it worked quite well until a few days ago. every time i plug it to the usb the computer seems to have a problem to identify the device and it gets stuck on this window (the window image is in hebrew):it seems

  • Alternative for BW Open HUb Services.

    Hi All, We have recently implemented Open Hub Services solution for our clients, where data is being extracted from BW CUBEs to FLAT FILES. Now we came to know that we need separate License to use Open Hub Services. In the current context it's not po

  • Copy of a standard sapscritp to a Z

    Hi; I have this problem, in development mandant i´m trying to copy a standard sapscript to a Z.. F140_CASH-_DOC_01 to Z140_CASH_DOC_01. i did this: 1) place the name Z140_CASH_DOC_01 2) click in Create 3) then FORM -> TAKE 4) place the name F140_CASH

  • Tab between panels in develop

    This is my third (and last) request (in no particular order) related to better keyboard navigation in the develop module (see also Snap exposure adjustment to round number and Use Tab to move between adjustment brush settings). My preferred way to wo