Transfer of Assets one unit to another unit

Transfer of Assets one unit to another unit - Excise Invoice is required for the same, Excise Invoice Series, reversal of
CENVAT  and again  credit of CENVAT by receiving unit*

Dear Paul,
Thanks for your reply . This is the correct solution for the process, but i want to reverse the cenvat in the parent plant and
credit the same to receiving plant. can you please elaborate on this.
Thanks & Regards
KANNI CHOWDARY

Similar Messages

  • Function module for converting weight unit to another unit.

    What is the function module for converting weight unit to another unit.
    I want to convert LB to KG.
    Tried with fm UNIT_CONVERSION_SIMPLE.
    INPUT                           100
    NO_TYPE_CHECK
    ROUND_SIGN                      X
    UNIT_IN                         LB
    UNIT_OUT                        KG
    But there is no output.
    Can some one help.

    The trick here is we need decalre input output with non-character data type like VBPLK-BRGEW.
    We can test using normal SE37.
    I tested and this program worked fine:
       data: UNIT_IN  LIKE T006-MSEHI,
           UNIT_OUT LIKE T006-MSEHI,
           output LIKE VBPLK-BRGEW,
           input LIKE VBPLK-BRGEW.
    input = 10.
      CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
           EXPORTING
                INPUT    = INPUT
                UNIT_IN  = 'LB' "UNIT_IN
                UNIT_OUT = 'KG' "UNIT_OUT
           IMPORTING
                OUTPUT   = OUTPUT.
      write: output.

  • How do i transfer music from one account to another?

    I want to transfer music from my account to my friends account, how do i do that?

    You can't transfer content from one account to another.

  • How can I transfer work from one computer to another?

    How can I transfer work from one computer to another?

    Welcome to the forum.
    I can think of three basic ways to accomplish what you wish to do:
    Use the Project Archiver to archive your Project (and check the box to gather the media files), to an external HDD. Probably the easiest way to do it.
    Copy the Project and ALL media files to an external HDD, but be prepared to relink the media files to the Project, as the drive letter (part of the Absolute Path) will have changed.
    Edit loosely, and Share to an AV file, which will be Imported into a New Project on that second computer. Or, edit VERY tightly, and do the same. I like the first, as removing, replacing Transitions, etc., can be much more difficult, unless that "tight edit" is 100% done.
    Good luck,
    Hunt
    Message was edited by: Bill Hunt to correct formatting

  • How can I transfer information from one ipad to another?

    how can I transfer information from one ipad to another ?

    What kind of information? You can sync things like Contacts and Calendars by using iCloud. You can backup one iPad to iTunes on a computer and then sync the backup to the other iPad. You can configure your iTunes content and sync the same content to both iPads.
    It is based on what you want to do. Or are you looking for a way to send files from one iPad to another wirelessly? There are apps to do things like that, as well as cloud services, such as DropBox.

  • Can i transfer music from one ipod to another?

    Can i transfer music from one ipod to another?

    No. You can only do it via iTunes or by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Can i transfer everything from one ipad to another so both have exactly the same things

    Can i transfer everything from one ipad to another so both have exactly the same things?

    Yes. Copy your apps and other iTunes purchases/downloads to your computer's iTunes via File > Transfer Purchases (File > Devices > Transfer Purchases if you have iTunes 11 on your computer), then backup up the first iPad and restore that backup onto the second iPad.
    Backups and restores : http://support.apple.com/kb/HT4079
    Things that aren't included in a backup include the contents of the Music and Videos apps (but they should be on your computer's iTunes) and photos that were synced from a computer. Also you will need to enter your passwords (email, wifi, website) on the second iPad - they won't be restored onto a different device, only back onto the device that the backup came from.

  • Can I transfer pictures from one iPad to another without going over iTunes?, can I transfer pictures from one iPad to another without going over iTunes?

    can I transfer pictures from one iPad to another without going over iTunes?, can I transfer pictures from one iPad to another without going over iTunes?

    Yes, use 3rd party apps like Photo Transfer App.
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%205/69507ce7f854c405f54 77bea99f4d498.jpg
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%205/79b3173fda7b6a6e148 5b463198f6acf.jpg

  • Can I transfer info from one macbook to another by using a firewire cable?

    Can I transfer info from one mac to another by using a firewire cable?

    You can boot the computer that you would like to get the file from into target disk mode.
    This document will help you.
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/8443.html

  • HT5035 How do I transfer credit from one account to another?

    How do I transfer credit from one account to another.  I have 2 IDs because we have a lot of devices.  I want to transfer credit from one Apple ID to another Apple ID.

    You don't.
    (72323)

  • HT201209 Can I transfer money from one account to another?

    Can I transfer money from one account to another?

    No; if the balance includes a completely unspent gift card, the iTunes Store staff can put that money back onto it.
    (96104)

  • Transfer data from one database to another without identities but keep the relation b/w PK and Foreign key

    Hi,
    I need to transfer data from one database to another database (both are identical databases). 
    1. Not transferring identity columns (primary keys). the destination table might have the same key.
    2. keep the PK's and FK's relation b/w parent and child table
    3. I have 4 levels 
    Example: tableA (col1 int identity(1,1) , col2, col3)
    tableB (col1 int identity(1,1) ,
    col2 , col3) -- col2 has the foreign key relation with tableA.col1
    tableC (col1 int identity(1,1) ,
    col2, col3) -- col2  has the foreign key relation with tableB.col1
    tableD (col1 int identity(1,1) , col2, col3) -- col2  has the foreign key relation with tableC.col1
    please advise me.
    Thanks in advance

    Try the below:
    /********************************SAMPLE TARGET***************************************************************/
    Use MSDNSamples
    create table TableA(LevelValueId int identity(1,1) primary key, name varchar(100))
    Insert into TableA(name) Select 'R1'
    Insert into TableA(name) Select 'R2'
    create Table TableB(ChildId int identity(100,1),name varchar(100), LevelValueID int references TableA(LevelValueId))
    Insert into TableB(name,LevelValueID) Select 'Childname1',1
    /********************************SAMPLE TARGET***************************************************************/
    /********************************SAMPLE SOURCE***************************************************************/
    Use Sample
    create table TableA(LevelValueId int identity(1,1) primary key, name varchar(100))
    Insert into TableA(name) Select 'C1'
    Insert into TableA(name) Select 'C2'
    create Table TableB(ChildId int identity(100,1),name varchar(100), LevelValueID int references TableA(LevelValueId))
    Insert into TableB(name,LevelValueID) Select 'Kidname1',1
    /********************************SAMPLE SOURCE***************************************************************/
    USe MSDNSamples
    /********************************MIGRATION INTERMEDIATE TABLE***************************************************************/
    --Migration table
    Create table Mg_TableA(LevelValueId int, NewValueId int)
    /********************************MIGRATION INTERMEDIATE TABLE***************************************************************/
    /********************************ACTUAL MIGRATION FOR MASTER TABLE***************************************************************/
    MERGE INTO TableA
    USING sample.dbo.TableA AS tv
    ON 1 = 0
    WHEN NOT MATCHED THEN
    INSERT(name) Values(tv.name)
    Output tv.levelValueId ,inserted.LevelValueid INTO
    Mg_TableA;
    /********************************ACTUAL MIGRATION FOR MASTER TABLE***************************************************************/
    /********************************ACTUAL MIGRATION FOR CHILD TABLE***************************************************************/
    Insert into TableB (name,LevelValueID)
    Select A.name,B.NewValueId From sample.dbo.TableB A
    Inner join Mg_TableA B on A.LevelValueID = B.LevelValueId
    /********************************ACTUAL MIGRATION FOR CHILD TABLE***************************************************************/
    /********************************TEST THE VALUES***************************************************************/
    Select * From TableA
    Select * From Mg_TableA
    Select * From TableB
    /********************************TEST THE VALUES***************************************************************/
    Drop table TableB,Tablea,Mg_TableA
    Use Sample
    Drop Table TableB,Tablea

  • How do I transfer music from one computer to another with ratings?

    How do I transfer music from one PC to another along with the ratings and # plays?

    Refer to these articles:
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    iTunes: Back up your iTunes library by copying to an external hard drive
    http://support.apple.com/kb/HT1751

  • Can you transfer music from one ipad to another

    can you transfer music from one ipad to another??

    Are you trying to share music with a friend or are you putting music from an old ipad to a new one?

  • How do i transfer music from one phone to another

    how do i transfer music from one phone to another? i cannot get it to stay on itunes

    You don't.  It's a one-way sync itunes to iphone.

Maybe you are looking for

  • Why can't I share my files easily in a shared folder?

    Let me explain more carefully.  I have two Macs on a home network.  I want to share a folder which is on Mac 1's hard drive so that Mac 2 can access it over the network and open any document in that folder, make changes, etc.  In other words, to be a

  • F-53 tds deducted twice

    hi, In Vendor case  Tds deducted at time of Miro, Now at time of payment by t-code f-53 if i  select that invoice again it is TDS deducting .In That case two time Tds deduct. How can make payment with tagging invoice but tds deducted at single time.

  • V8.20 installer triggers Windows Installer error 1931 referencing stdole2.tlb

    I've just migrated an existing application to v8.20 and have created a new installer for the application. When I run the installer, though, I get an error message: Error 1931. The Windows Installer service cannot update the system file C:\WINNT\syste

  • PDF Files Cannot Be "viewed" Today

    Yesterday and the day before I could "view" PDF internet files/forms - today I cannot. No problem using Firefox. My version of Adobe Reader is 7.0.8, also, have Adobe PDF Viewer plugin v 7.0.5. No changes have been made to my system. This is the web

  • Itunes shuts off new MACbook pro (2011) after 15 min

    I have a new 2011 Macbook pro (May 2011). I have set all time-outs (screen saver, economy modes) to "never" in the account preferences and the computer ought not to shut off ever (unless the battery is empty). This has helped none: when playing itune