How to upload the CWIP asset balances at the time of cutover

Hi all,
I want to upload the CWIP assets balances and I tried the same in AS91, but in TAKEOVER VALUE tab all the fields are greyed out (Acq. Value).
Then I clicked on TRANSACTION tab but the Asset value date is in greyed out.
Kindly guide me on the same.
Regards
JS

Hi
Go to the asset class for which you are creating a asset master. In that there should not be tick for "line item settlement". If there is a tick, remove it & put it on "No AuC or summary management of AuC"
But your is for CWIP (i.e. AuC). So you cannot remove the tick. In this case, you will have to create a master in AS01 & then post a transaction for each AuC in F-02. Posting Key will be '70' for assets & '50' for upload balance asset A/c. If number of assets is more, create a LSMW for F-02 for assets.
Revert back if it solved ypur problem
Edited by: Deepak Agrawal on Oct 7, 2009 8:48 PM

Similar Messages

  • How To Upload OPening or Closing Balance In RG1 Register.

    How To Upload OPening or Closing Balance In RG1 Register.in this table with the help of bdc J_2IRG1BAL.
    I had seen all the links in sdn but didnt get.
    Edited by: Pritesh kumar on Apr 3, 2011 12:20 PM

    How To Upload OPening or Closing Balance In RG1 Register.in this table with the help of bdc J_2IRG1BAL.
    I had seen all the links in sdn but didnt get.
    Edited by: Pritesh kumar on Apr 3, 2011 12:20 PM

  • How to upload words, exel, PDF file from the pc via itune to the iPad, and where will the uploaded file be saved? In the apps?

    How to upload words, exel, PDF file from the pc via itune to the iPad, and where will the uploaded file be saved? In the apps?

    You will need an app (or apps) on your iPad that is capable of reading the documents, as they will be saved with the app - if you don't have such an app then there is nothing to transfer them to or to read/access them.
    One method of transferring them is toconnect your iPad to your computer's iTunes, select it's app tab, and then scroll to the bottom of it - you should the apps That you've got that are capable of file-sharing (if you've got any).  Selecting/high-lighting one of them should then allow you to add files to it via the box to the right of it.
    An alternative way to get the documents onto your iPad is if the app that you want to transfer them to has a wifi setting, which will then allow you to transfer the documents wirelessly. You can also send the documents to yourself as attachments and then use Mail's 'open in' facility to copy them into your chosen app.
    Edit : more info on file sharing from the manual :
    File Sharing lets you transfer files between iPad and your computer. You can share files created with a compatible app and saved in a supported format.
    Apps that support file sharing appear in the File Sharing Apps list in iTunes. For each app, the Files list shows the documents that are on iPad. See the app’s documentation for how it shares files; not all apps support this feature.
    Connect iPad to your computer.
    In iTunes, select iPad in the Devices list, then click Apps at the top of the screen.
    In the File Sharing section, select an app from the list on the left.
    On the right, select the file you want to transfer, then click “Save to” and choose a destination on your computer.
    Transfer a file from your computer to iPad:
    Connect iPad to your computer.
    In iTunes, select iPad in the Devices list, then click Apps at the top of the screen.
    In the File Sharing section, click Add.
    Select a file, then click Choose (Mac) or OK (PC).
    The file is transferred to your device and can be opened using an app that supports that file type. To transfer more than one file, select each additional file.
    Delete a file from iPad: Select the file in the Files list, then tap Delete.
    Message was edited by: King_Penguin

  • How to fetch the customer debit balances form the KNC1 database table

    Hi Experts,
    I am creating a ABAP report which would dispaly the customer credit balances for the currenct fiscal year.
    I am fetching the values form KNC1 database table.....But in this table values are stored year wise.
    But I want to display for the current fiscal year that means if teh user selects the 07/2011 as the month on the sleection screen then the debit balances from 072010 to 062011 should be dispalyed.
    Could anyone please help me out to fetch this the debit balaces form KNC1 database table in the above format.
    Or is there any other way to solve this problem?
    Awating your urgent reply.
    Many Thanks,
    Komal.

    Hi Komal,
    First, you have to compute the initial period and the final period.
    Next, you must read table KNC1 for the years comprised between these two periods.
    Last, you must read the fields of table KNC1. For that, you should compose dynamically the name of the field, and then ASSIGN it to a FIELD-SYMBOL.
    Now, just add up the values!
    Please try the following code:
    FIELD-SYMBOLS: <fs>.
    DATA: t_knc1 TYPE TABLE OF knc1 WITH HEADER LINE.
    DATA: d_debits LIKE knc1-um01s.
    PARAMETERS: p_kunnr LIKE knc1-kunnr,
                p_bukrs LIKE knc1-bukrs,
                p_spmon TYPE spmon.
    DATA: l_fieldname(20) TYPE c.
    DATA: l_date LIKE sy-datum,
          l_date_from LIKE sy-datum,
          l_date_to LIKE sy-datum.
    DATA: l_period(2) TYPE n.
    DATA: l_num_times TYPE i.
    START-OF-SELECTION.
    "Compute the initial and final periods
      CONCATENATE p_spmon '01' INTO l_date.
      CALL FUNCTION 'RE_ADD_MONTH_TO_DATE'
        EXPORTING
          months  = '-1'
          olddate = l_date
        IMPORTING
          newdate = l_date_to.
      CALL FUNCTION 'RE_ADD_MONTH_TO_DATE'
        EXPORTING
          months  = '-12'
          olddate = l_date
        IMPORTING
          newdate = l_date_from.
    "Read table KNC1
      SELECT *
        INTO CORRESPONDING FIELDS OF TABLE t_knc1
        FROM knc1
        WHERE kunnr = p_kunnr
          AND bukrs = p_bukrs
          AND gjahr BETWEEN l_date_from(4) AND l_date_to(4).
    "this will yield at most 2 records, one for present year, and another one for the previous year.
    "but if you select i.e. period '01.2012', initial_date = '01.01.2011' and final_date = '31.12.2011'
    " --> thus only one year --> one record
      CLEAR: d_debits.
      LOOP AT t_knc1.
    " If there's no year change
        IF l_date_from(4) = l_date_to(4).
          DO 16 TIMES.
            l_period = sy-index.
            CONCATENATE 'UM'      "compute dynamically the field name
                        l_period
                        'S'
              INTO l_fieldname.
            ASSIGN COMPONENT l_fieldname OF STRUCTURE t_knc1 TO <fs>.   "assign
            ADD <fs> TO d_debits.                  "and add up
          ENDDO.
        ELSE.
    " If there IS a year change
          IF t_knc1-gjahr = l_date_from+0(4).
            l_num_times = 16 - l_date_from+4(2) + 1.    "you must loop 16 - initial_period + 1 times for the first year
            DO l_num_times TIMES.
              l_period = sy-index + l_date_from+4(2) - 1.
              CONCATENATE 'UM'                "compute dynamically the field name
                          l_period
                          'S'
                INTO l_fieldname.
              ASSIGN COMPONENT l_fieldname OF STRUCTURE t_knc1 TO <fs>.    "assign
              ADD <fs> TO d_debits.              "and add up
            ENDDO.
          ELSE.
            l_num_times = l_date_to+4(2).            "you must loop final_period times for the second year
            DO l_num_times TIMES.
              l_period = sy-index.
              CONCATENATE 'UM'               "compute dynamically the field name
                          l_period
                          'S'
                INTO l_fieldname.
              ASSIGN COMPONENT l_fieldname OF STRUCTURE t_knc1 TO <fs>.     "assign
              ADD <fs> TO d_debits.        "and add up
            ENDDO.
          ENDIF.
        ENDIF.
      ENDLOOP.
    You'll have the result on variable 'd_debits'.
    I hope this helps. Kind regards,
    Alvaro

  • I don't have the extract assets function despite the update

    I have just updated photoshop cc (14.2.1) but the I don't have the "extract assets" function in the menu "file".
    It doesn't exists.

    2014.0.0    Just found out someone else here has a newer update than me, he has 2014.2.1, mine says it is up to date. He has the feature with his.  Waiting on IT now

  • How to upload two different asset values for Book & Tax Depre in FA

    Hello all
    kindly let me know how to resolve a situation where we have different methods of calculating Depreciation. For Example SLM for Book Depreciation and Diminishing method for Tax Depreciation.
    To calculate depreciation we use straight line method for book depreciation and diminishing value method for Tax depreciation. In this case, we have 2 different asset values to calculate book and tax depreciation.
    Since SAP allows to upload only one asset value (Gross book value), I get correct book depreciation value but incorrect value for tax depreciation as the tax depreciation is calculated based on gross book value instead of net book value (gross book value less accumulated depreciation value).
    For Eg
    FOR THE FIRST YEAR 
    BOOK DEPRECIATION:
    Asset Value = 1000
    Depreciation Method : SLM
    Depreciation rate is 10%
    Depreciation Amount = 100
    TAX DEPRECIATION:
    Asset Value = 1000
    Depreciation Method : DIMINISHING METHOD
    Depreciation rate is 15%
    Depreciation Amount = 150
    FOR THE SECOND YEAR
    BOOK DEPRECIATION:
    Asset Value = 1000
    Depreciation Method : SLM
    Depreciation rate is 10%
    Depreciation Amount = 100
    TAX DEPRECIATION:
    Asset Value = 850
    Depreciation Method : DIMINISHING METHOD
    Depreciation rate is 15%
    Depreciation Amount = 127.5
    KINDLY LET ME KNOW HOW TO UPLOAD THE PAST DATA WITH TWO DIFFERENT ASSET VALUES (IE 1000 & 850)  FOR THE ABOVE.
    Regards
    Sushil Yadav

    Hi K,
    I'm having the same problem...did you find a solution yet?
    Greets,
    Martin.

  • How to upload CSV file w/o ,, for the last line

    Hi Experts,
    As part of one interface uploading the csv file (4coulmns) manually using the TCODE: CSCA_FILE_COPY.
    After uploading when i see in the AL11 as it is csv file it is filling the , in each space.
    But my issue while running the interface (because of logic in it) checking for the hash total in the last line where (record count, hash total) only 2 items should come but because of manual upload adding the (record count, hash total, , ,) another two spaces.
    Where program not moving further becasue the it is alway comparing the amounts (1000.00 not matching with 1000.00, , ) it is not processing. In production files directly load in to unix server so no issues and i can't ask to change the program code...because iam not following the process. As part of testing i've to do manually only.
    Please suggest the workaround for this.
    Is it possible to change the contents directly in AL11 directly....then HOW ?
    or
    How to create a csv file w/o , , in the last line (may be it is not possible) ?
    Thanks for your replies in advance.
    Regards
    VVR

    I don't think you can edit from AL11, nor creating a CSV without those commas at the end because are created to state fields with empty value.
    You have 6 columns filled with values but for the last line you only fill the first four. It is expected to appear , , for the last 2 columns on the last line.
    I can only suggest keep doing it manually before uploading the CSV file... or... you are saying you can't change the program.
    How about upload all CSV files... then writing another program to get those files from AL11 and delete the spare commas at the end line?
    Cheers,
    Andres.

  • How to upload files (.doc./.pdf) to the database?

    Hello,
    I know this question was raised several times before but the answers don't really make me happy.
    I have a table with a BLOB-column for the documents (different mime-types) and a varchar2(100)-column for the mime type.
    I edited the form in navigator an told the blob-field to store mime-information in the mime-type-field.
    Now, do i have to tell portal the mime-type or does it retrieve it itself?
    if i have to tell, how do i do so?
    How can i fill in the value for the mime-type-field with javascript, when the fieldname is something like abc.def.ghi?
    Javascript then will tell me that document.forms.fieldname is not an object.
    Wouldn't it be a good idea to write a howto on this subject (and other subjects too, of course)? I'll do the work if you share your knowledge with me.
    And, by the way, can you share your wisdom about retrieving the blobs from tha database for displaying and download, too?
    thank you very much,
    Ralf Schmitt

    Hi Ralf,
    see in the design time if you are
    1)Interested in only one type of content in the blob column then just mention that mime-type in the
    for eg.there will be text field "or type in fixed mime type" where you can mention the default type which you are interested in uploading.
    2)If you intent to upload files of diffrent type of mime-types then you will have to associate a column for storing the mime types for that file and for this there will be a text field.
    for eg. you will have options for "Select a column to store mime information" which will be having list of all the remaining fields in the LOV , you select which field of the table you wish to make for storing mime-type and do not set any default mime-type in the text "or type in fixed mime type" in this case.
    more explaination:
    =================
    for this case create a table like this :
    create table for_blob(id number(4),file_name blob,mime_type_of_file varchar2(400));
    when you select file_name field while designing the form you will have following option.
    "Select a column to store mime information" ---> select mime_type_of_file
    "or type in fixed mime type" ---> delete the content of this text field.
    Now when you will actually run the form you have to insert mime-types in the text "mime_type_of_file " for eg
    for PDF files: Application/pdf
    for msword :Application/msword
    for the first case just input the mime-type which you wish to upload.
    "or type in fixed mime type" ---> delete the content of this text field say for eg for PDF files:Application/pdf
    so that at run time you do not have to input any mime-type info and in this case even the field need not have the column for the mime-type.
    hope this help.
    rahul

  • How to upload offline adobe form(PDF) to the SAP?

    Hi,
    I am working on adobe forms for the first time.
    So I dont have much knowledge on it.
    I have created the layout for the SO form in transaction SFP.
    Kindly help me how to proceed further to upload the form data to the sap.
    Thanks in advance,
    Neha

    Hi Neha,
    The program will have the following steps:
    1.Data retrieval and processing : A select statement for the pre-populated information
    2.Obtain the name of the Generated Function Module of the form u2022 Start the form processing
    3.Call the Generated Function Module
    4.End form processing
    5. Send the form to the vendor using Business communication services (BCS)
    Follw this step
    select single field1 field2... from table into wa where field = P_field.
    call function 'FP_FUNCTION_MODULE_NAME'
    call function 'FP_JOB_OPEN'
    Then call the generated function module
    call function fm_name
    call function 'FP_JOB_CLOSE'
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
    Extract the Data:
    DATA: xml_data TYPE xstring,
          lt_xml_data TYPE STANDARD TABLE OF xstring.
          APPEND xml_data TO lt_xml_data.
    lo_pdfobj->get_data( IMPORTING formdata = xml_data ).
    Convert XML data from XSTRING format to STRING format DATA: lv_xml_data_string TYPE string.
    CALL FUNCTION 'ECATT_CONV_XSTRING_TO_STRING'
    EXPORTING im_xstring = xml_data
    IMPORTING ex_string = lv_xml_data_string.
    Thanks

  • Does the stock account balance show the profit & loss amount?

    When the goods are received from the vendors the postings are as follows :-
    debit stock with the purchase price
    credit vendors with the purchase price
    However when a sales invoice is posted how will it decrease the stocks account? can someone tell me the postings for sales invoice? because if the postings for sales is going to be like this :-
    credit stock with the sales price
    debit customer with the sales price
    then how can we calculate profit in the above situation? does it mean the net balance of the stock account will be the profit figure? because if the purchase price of the stock is 100 and the sales price is 150, then the stocks account will have a balance of 50 in the credit side in the above example.
    does it mean the balance of stock account will be the profit amount?

    Every material has a price in its master data. When goods are received, the system reads the value from material master and makes the entry as follows
    Dr Stock Cr. GR/IR (later when invoice come, the vendor is credited, debiting GR/IR). (Any difference in PO price to the material master, will be posted to price difference account if you maintain Standard price)
    The sales process happens in two stages: 1st the goods issue and 2nd billing. When goods are issued,
    Dr.COGS
    Cr. Inventory (with the same Material master price.)
    At billing
    Dr. Customer
    Cr. Sales.
    Stock account will only keep track of goods movement, how much came in and how many have gone out. This should not be considered to ascertain P&L. Should you need to find the P&L, you need to find the difference between the sales account and the Cost of goods sold account.

  • My System Currency summary does not tie to the System Currency Balance in the BP

    Not sure if my query is correct. . Can someone tell me how it converts from GBP to USD in the query as it does not seem to match what is on the BP balance for a specific customer in USD. I feel like I am missing something or that this query is correct but not sure why it does not match the balance. SELECT CardCode, CardName, PymntGroup, SUM(Balance) BALANCE, SUM(A) FUTURE, SUM(B) '0-30', SUM(C) '31-60', SUM(D) '61-90', SUM(E) '91-120', SUM(F) '121+' FROM ( SELECT T1.CardCode, T1.CardName, T2.[PymntGroup], T0.RefDate, T0.Ref1 'Document_Number',     CASE  WHEN T0.TransType=13 THEN 'Invoice'           WHEN T0.TransType=14 THEN 'Credit Note'           WHEN T0.TransType=30 THEN 'Journal'           WHEN T0.TransType=24 THEN 'Receipt'           END AS 'Document_Type',     T0.DueDate, (T0. [BalScDeb]- T0.[BalScCred]) 'Balance'     ,ISNULL((SELECT T0.[SYSDeb] - T0.[SYSCred] WHERE DateDiff(day, T0.DueDate, getdate())=0 and DateDiff(day, T0.DueDate,getdate())30 and DateDiff(day, T0.DueDate,getdate())60 and DateDiff(day, T0.DueDate,getdate())90 and DateDiff(day, T0.DueDate,getdate())=121),0) 'F' FROM JDT1 T0 INNER JOIN OCRD T1 ON T0.ShortName = T1.CardCode Left outer join  OCTG T2 On T1.GroupNum = T2.GroupNum WHERE  T1.CardType = 'C'  and BalSccred + balscdeb <>0 ) T100 GROUP BY CARDCODE, CARDNAME, PymntGroup ORDER BY CARDCODE

    Hi Danielle..
    Can you post the output of the query and what is the difference here.
    Rgds
    Kennedy

  • Using the network load balancing from the nodes itself

    I have installed a 2 node Sun Cluster 3.2, configured a shared ip resource and attached to it a scalable network aware resource working on the two nodes. I have crashed the process on one of the node in such a way that the cluster could not restart it again
    In this status I tried to open a connection from another server and the load balancer always sent the traffic to the node that was up which is as expected...
    If I try to open a connection from the node on which the process is failed then I get a connection refused meaning that the load balancer is not working in this circumstance.
    Is this a bug/ a mis-configuration/ or just an inherent cluster problem.
    Is there a solution to this issue?
    Regards
    Daniel

    To answer your first question, no, there isn't anything you can do.
    Here is what my colleague suggested while I was away:
    Zone-clusters scalable services still require shared-IP zones, which means requests from one app to another would still bounce back due to loopback. Probably wouldn't help here.
    They could isolate the services that must talk to other services into their own failover group on exclusive-IP zones. Other services can be setup as originally planned. But maybe there are too many such "dependent services" for this to be useful. Also, each failover service must have its own IP address.
    Finally, can these  web services be configured so that it tries multiple addresses. In that case, if the shared address foo for service X bounces back (due to X having crashed on the local node), the app itself would retry with address bar for service X? This allows for uniform configuration across all services, namely:
        - try shared address
        - try node 1's own address (either public or clusternode1-priv)
        - try node 2's own address
    You can fine tune it so that configurations on node 1 only use node 2's address as backup, and vice versa. I don't know if that is any help.
    As for your second question, the answer is that Solaris Container Clusters allow for consolidation and isolation of clusters onto a single set of nodes. Normal containers don't really allow you to consolidate complete clusters in quite the same way. See http://www.sun.com/offers/details/820-7351.html for more.
    Tim
    ---

  • Adobe muse - how to upload images in photo gallery in the admin console?

    Question from Adobe Muse beginner - I can't figure out how images can be uploaded in a slideshow/photo gallery in the admin console? I can edit or delete images but not upload additional images?

    Hi,
    May I know which admin console are you talking about.
    You are talking about Business Catalyst or Adobe Muse?
    Please provide the steps to access the admin console via Muse.
    Regards,
    Gaurav Aggarwal

  • How to upload podcasts which are not in the iTunes podcast library?

    or how to create a playlist of podcasts?
    I have some podcasts as mp3 files I'd like to upload. These podcasts are not in the Itunes podcast library. I downloaded them from another source. What I do not understand is why iTunes makes a difference between podcast mp3 files and music mp3 files. If I put my podcasts into a playlist and try to synchronise the playlist with iPhone, the files are not uploaded. Actually I do not see the playlist listed in the page "Music" of my device "iPhone".
    Any ideas?

    I've usually found using outer joins to be very efficient in performing NOT IN/NOT EXIST type operations.
    WITH t1 AS (
    SELECT 100 type, 1 begin_no, 10 end_no FROM dual
    UNION ALL
    SELECT 200 type, 10 begin_no, 20 end_no FROM dual
    UNION ALL
    SELECT 300 type, 20 begin_no, 30 end_no FROM dual
       , t2 AS (
    SELECT 100 type, 5 no FROM dual
    UNION ALL
    SELECT 100 type, 6 no FROM dual
    UNION ALL
    SELECT 100 type, 11 no FROM dual
    UNION ALL
    SELECT 100 type, 21 no FROM dual
    UNION ALL
    SELECT 200 type, 5 no FROM dual
    UNION ALL
    SELECT 200 type, 6 no FROM dual
    UNION ALL
    SELECT 200 type, 11 no FROM dual
    UNION ALL
    SELECT 200 type, 21 no FROM dual
    UNION ALL
    SELECT 300 type, 5 no FROM dual
    UNION ALL
    SELECT 300 type, 6 no FROM dual
    UNION ALL
    SELECT 300 type, 11 no FROM dual
    UNION ALL
    SELECT 300 type, 21 no FROM dual
    SELECT t2.*
      FROM t2
         , t1
    WHERE t1.type (+)= t2.type
       AND t2.no BETWEEN t1.begin_no(+) AND t1.end_no(+)
       AND t1.type IS NULL;
    output is:
    TYPE     NO
    200     21
    200     6
    200     5
    300     11
    300     6
    300     5
    100     21
    100     11

  • How can I debug Aggressive Load Balancing on the WLC ?

    Hello Cisco-Experts,
    I'm looking for the command on the Cisco WLC to debug Aggressive Load-Balancing.
    There is a nice document, ID 107457 describing this feature, but it lacks the command.
    Please investigate and help me and maybe improve YOur documentations.
    Thanks in advance
    Winfried

    Hello NetPros,
    I have disabled now "Agressive Load Balancing" now on the WLC. To my surprise, still Load-balancing packets are received from our HREAP-APs via a WAN-Link on the central WLC.
    Here is an example:
    Tue Jan 13 15:35:59 2009: 00:1c:bf:4a:3f:2e LBS data stored for Mobile 00:1c:bf:4a:3f:2e from AP 00:23:5d:0e:e9:e0(0) new saved RS
    SI (A -128, B -53), SNR 41, inUse 1, [rcvd RSSI (A -128, B -54), SNR 40]
    Tue Jan 13 15:35:59 2009: 00:1c:bf:4a:3f:2e LBS data rcvd for Mobile 00:1c:bf:4a:3f:2e from AP 00:23:5d:0e:e9:e0(0) with RSSI (A -
    128, B -55), SNR 42
    Tue Jan 13 15:35:59 2009: 00:1c:bf:4a:3f:2e LBS data stored for Mobile 00:1c:bf:4a:3f:2e from AP 00:23:5d:0e:e9:e0(0) new saved RS
    SI (A -128, B -54), SNR 41, inUse 1, [rcvd RSSI (A -128, B -55), SNR 42]
    It is remarkable that the MAC-addresses of many of the WLAN-clients do not belong to our company and packets are send via a WAN-link.
    Why do I see these packets while load-balancing is disabled ?
    How is this working ?
    Thank You for any explanation.
    Winfried

Maybe you are looking for