Assets (Investment profile): Transfer value from AuC to Fixed asset

Good afternoon all,
We have implemented Assets across investments profile. The settlement of investment is u201CSummary settlementu201D and we do not have u201CList of Originsu201D.
We have created a project and then a WBS that automatically creates the AuC (asset under construction).  Transaction code CJ20N.
Then we have created the purchase order (ME21N) and afterwards we have carried out an entry sheet (ML81N) where we have informed the WBS previously created.
Through CJ88 we have done the settlement of the WBS and we have checked it.
Now we have created the fixed asset and we would like to transfer the value of the AuC to the fixed asset. I am not able and I am a bit lost. I do not how to perform it.
Any idea?
Many thanks and regards in advance. Daniel

Hi Renfe,
If the asset is an asset under construction belonging to an investment measure, then the transaction code KO88 needs to be used.
Warm regards,
Murukan Arunachalam

Similar Messages

  • Transfer values from one search help to another

    Is it possible to transfer values from screen of one search help to another. For example if I have the vendor master search help (XK02) and I go to the elementary search help "Vendors by Material" . On this screen I enter some data in the Material number field. Now  when I do an F4 on the material field on this search help I will get the collective search help for Material number. My requirement is to have the material number from the first search help to be carried over to the second search help. Is there any way possible. I am manipulating my custom search helps through the search help exits(fetching data etc).

    Hi Deepak,
    Not very sure, but I think if you write code in search help exit, this may be possible. Use GET PARAMETER... SET .. in the exit to pass the values between search help.
    Regards,
    Atish

  • BBP_PO_INBOUND_BADI:Transfer value from SRM to ECC PO custom field

    Hello, everyone
         Our SRM version is 7.13 with classic scenario,  ECC version is 6.17.  transferring quotation data to ECC for creating PO by PI.
        I created a custom field such as Z1 for PO in ECC ,  I need transfer someone value from SRM to Z1 when press 'create PO' in quotation,
    So  I have to use BADI:BBP_PO_INBOUND_BADI in ECC before PO generating,  but I found the breakpoint can not  reach this BADI, Why ?  how should I do?
    I used to apply normally  this BADI in SRM7.02 and ECC6.05  without PI  with extend classic scenario.
    Thanks very much
      Jesse.

    Hi Jesse,
    I think the BBP_PO_INBOUND_BADI  is used to enhance the data when the PO is sent via BAPI.
    Please check the PI interface name that you are using and find out the Proxy name (in Tcode: SPROXY) and find an Enhancement spot (either in SRM or in ECC).
    Regards
    Venkat

  • Transfer value from one VI to another over a network?

    Hi,
    What is the best/easiest way to send a numeric value from one VI to another over a LAN.  I only need one number to be sent every time the first vi is run which won't be that many, I then need to run the other VI and access that data.  I could save the value to file and then open that file from the other VI, this I thought is a bit messy and wondered if LabVIEW accommodates this through property nodes etc rather than writing to file?  Also by saving to file etc the reading VI needs to execute after the first one has written obviously, this could cause timing issues and to have something like a property node would be far better.
    Many Thanks 

    Use DataSockets. The simplest, although not necessarily the fastest.
    Check out the examples.
    Basically, you "connect" a control on one VI (on one machine) to another control (possibly on different VI, possibly on different machine.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

  • Transfer values from change attributes

    Hi All,
    I have created custom field on change attribute screen, need to pass the value from this field to shopping cart full function screen field(same custom field on full function screen).
    Please let me know, what badi should I use and method, and what structure should I need to update with this field if required.
    Also internet service object for change attributes .
    Thanks in advance
    jog

    Hi
    <u>HTML - Internet Services (using Transaction SE80)</u>
    BBPATTRMAINT
    BBPDYNATTR
    <u>Try the BADIs -></u>
    BBP_DOD_CHANGE_BADI
    BBP_DETERMINE_DYNATR
    <u>Related links -></u>
    Re: unable to change the attributes of the user.
    Manager is not able to change attribute
    Re: Change password using service BBPAT04
    http://help.sap.com/saphelp_srm50/helpdata/en/b8/bdfc373db56203e10000009b38f842/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/05/45796b2b88fa4eb49fb4bc781a7d50/frameset.htm
    Hope this will help.
    Regards
    - Atul

  • Transfer Costs from AUC to Work Order

    Hi,
    Pre go-live balaces where loaded directly to the AUC, as opposed to the Work Order then settled to the AUC.
    All of our capital reporting is done at work order level, therefore I want to transfer the balance from the AUC to the work order and then re-settle the work order back to the AUC. At present we cannot see the legacy costs relating to the capital project against the work order.
    Is it possible to transfer costs off the AUC back to the Work Order?
    Thanks
    Jonski

    Andres,
      Yes you could accomplish it through the process you had mentioned.It would probably be the simplest way to accomplish your requirement as well.
    Regards
    Narasimhan

  • PLD. How to transfer value from Repetetive area to Start of Report

    Hi.
    Is it possible to get data fromfield in  Repetetive Area to field  Start of Report. I need to get value of some user field in Start of Report. I can get it in Repeptetive area but I can't in Start of Report.
    With regards,
    Maxim Grunis

    Hi Maxim Grunis,
    The answer is:  there are no way to transfer them.  PLD works from top down to the end of report.  It is building printing file on the fly.  The Start of Report know nothing about the other areas.
    Thanks,
    Gordon

  • Transfer value from global automatic activity in Aqualogic BPM Suite

    Hi, I am new to Aqualogic BMP suite and stuck with the following problem :
    In aqualogic bpm suite, if we are setting some values to some variables in a global automatic activity in a process how to get those values back in some other activities (say an Interactive activity) in the same process or how to assign the values to some instance variables in the Begin activity ??
    We have a scenario where we are creating some process instances from the Global Automatic activity using the following :
    args["name"] = abc
    create ProcessInstance using parameters = args
    Now how to get the value "abc" and assign this value to an instance variable in the Begin activity(/access the value "abc" in an interactive activity)within the same process.
    Thanks,
    Suman.

    Hi,
    Let's say you have an Argument Set defined in your Begin activity called BeginIn. The arguments in this Argument Set can be "a", "b" and "c" of type String, Int and boolean accordingly.
    If you want to use the ProcessInstance.create method, then you would need to have a PBL script like this one:
    args[] = [ "a" : "SomeStringLiteral", "b" : 1234, "c" : true ];
    ProcessInstance.create(processId : "/MyProcess", arguments : args, argumentsSetName : "BeginIn");
    HTH,
    eduardoc.

  • Need to transfer value from BADI to program/smartform

    Hi Guys,
    I have to add 3 fields from Infotype/table PA0041 to the smartform generated by this Program "Employer Statement (RPLERCC0)". I have implemented a BADI and written my code in the method get_output_strucuture. But how will I transfer my data to the program/smartform. If anyone has worked in the same then please provide your suggestions.
    Thanks in Advance.
    Manoj

    Hi,
    Do an export/import.
    * In the Badi
    EXPORT ZQTY
                  ZMATNR
         to memory id 'ZTEST'.
    * in the report program
    IMPORT ZQTY
                 ZMATNR
      from memory id 'ZTEST'.
    FREE MEMORY ID 'ZTEST'.
    Best regards,
    Prashant

  • Transfer values from ITS to Dynpro

    Hi!
    My system is srm 5.0.
    use BBP_CUF_BADI BADI for enhance bid with put_data and get_data.
    After put_data i can see the value by WEB.
    But after it's change i can't get new value of the field - it stays the same when i put it!
    Try'd
    call function 'ITS_IMPORT_CONTEXT'
          tables
            context           = gt_context
          exceptions
            its_not_available = 1
            others            = 2.
    in PAI of my screen - didn't help. There is no such field in gt_context.
    Thanks for any ideas gus!!
    Edited by: vaflya on Aug 14, 2009 11:40 AM

    Hi Srikanth,
    Can you please explain us how you were able to get and set the values.
    And may i know what for you have developed a Internet Service ie Scenario...?
    If you have any help documents for developing ITS application... plz forward it to this mail id...
    [email protected]
    Thanks
    Srinivasan K

  • Transfer from AUC to Asset

    Hi
    I have small problem in settlement.
    1.We ran settlement using KO88 for single order and posted to AUC using "Automatic settlement".Then ran "Full setllement" and posted value from AUC to Asset successsfully.
    2.But we want to reverse the same.
    So went to KO88 again and selected "Full settlement" and reversed from Asset to AUC.The again selected "Automatic settlement" and reversed from AUC to Internal order successfully.
    Now we want to again run stellement and post to final asset with REGULAR PROCEDURE with KO88..But getting problem in step2 as mentioned below.
    Step1: ran KO88 with "Automatic settlement" and transfered value to AUC successfully.
    <b>Step2: ran KO88 with "Full settlemet".But getting the error "No transaction data posted since last settlement".</b>
    Now Internal order any way has no value(as per message) but AUC has the value.
    But under the same scenario original postings were successfull(i.e when ran "Full settlelemt"under KO88 even that time also value was not there in Internal order??)
    Tested couple of settlelements with some other orders.It works for original settlements BUT 2ND STEP WILL NOT WORK WHEN WE TRY TO REPOST AFTER REVERSALS.
    Can some please advise what is the reason for this?
    In precise I want to reverse some settlements from Asset-AUC-Internal order and repost to same asset or other asset.
    regards

    Hi
    Sorry, this problem got resolved.Only mistake I was doing  was checking the box "check transaction data" -
    hence the error.
    When I removed that it worked fine.

  • Values from Structure used in Form to be transferred to a Business Object

    Hello,
    I have defined a structure (zcsks) in the workflow container. This structure is used in two forms (Change and Approve).
    With the approval (button pressed on approve form) the data entered in the structure zcsks has to be transferred to the business object ZBUS0012 in the workflow container, so that the business object method CREATE can be executed automatically.
    The values for the structure ZCSKS is already transferred from the form to the workflow container automatically.
    My question now is how I can transfer values from ZCSKS to ZBUS0012 and execute its method CREATE automatically ?
    Thank you in advance!

    Hello,
    "Value of expression '&_WI_OBJECT_ID.COSTCENTER&' cannot be used as the target of an assignment"
    This is because you are trying to assign a value to an attribute of the main object of a workflow (_WI_OBJECT_ID).
    That won't work. I thought you meant you had an object in the workflow container and wanted to
    instantiate that.
    When the workflow is created the main object is already instantiated so you can't change it.
    regards
    Rick Bakker
    Hanabi Technology

  • Passing Value from one File to Another !!!

    Hi Friends,
    I have an issue, I have two different Swing programs (two seperate java files). I want to transfer value from one file to the another. Like we do in Servlets or JSP, we use sessions or Hiddenfields. The same way I want to retriev value in a new file from a previous one.
    Hope that all u champs out there have the answer to my query.
    Thanks,
    [email protected]

    This is a B2B comms question...
    A quick and dirty method is to use Socket/ServerSocket and use a basic protocol to do the transfer, if you are feeling heroic then use XML as the message format...
    A lot depends on whether your applications are running on separate boxes, i.e. do you need to communicate across a network...
    If not, if they are always going to be on the same "box" then you could just use well-known places for files...not portable but effective...

  • Transfer partial asset values from completed asset to AUC/other asset

    Hi All
    Is it possible to transfer partial asset values from completed asset to AUC/other asset.
    if yes please let me know how to do that?

    I already checked T code ABUMN
    But by using this code whole asset value is transferred ; I want to transfer only partial value.
    eg. If i postasset value of Rs. 1000 to a machine & capitalise it. But after posting i found that actual asset value is only Rs. 600 and balance is of another asset.
    then how can i transfer balance asset value of Rs. 400 to another asset card.

  • Ko88 results in zero value - trying from AuC to Asset (full settlement)

    Hi everybody,
    I´m getting a zero value doing a settle by KO88 from AUC to a final asset.
    Previously i have made the settle for AUC from expense with no ploblem.
    The problem is that when i make the settle with KO88 (full settlement option) to pass the value from the AUC to the final asset, the AUC balance is zero and the final assets (2 of them) also show zero. So the money is lost.
    Please if anyone can help me, we will appreciate a lot.
    Best Regards!

    This is the error when i try to use the AIAB transaction:
    Line item settlement is not possible for asset IA01 38000816 0
    Message no. AW050
    Diagnosis
    You want to carry out line item settlement of an asset under construction. This transaction can only be carried out for assets with active line item management.
    However, line item settlement is not active in the asset class of asset 38000816 0 (company code IA01).
    If the asset is an asset under construction belonging to an investment measure, then you should carry out the settlement using order or project settlement.
    Procedure
    Check the setting for 'status of AuC' in the definition of the asset class.

Maybe you are looking for