Rental Process - Delivery to Customer While Maintaining Ownership

Hi SAP Experts,
My client is renting out construction and marine equipment and I was wondering how I can send the machine to a customer for rental in SAP after the rental contract is created. Ownership remains with my client but I need to show that it is at the customer site. A lot are talking about the consignment process and still some are saying that returnable packaging can be used. Are there any other ways to do this? Is there any disadvantage of using consignment or is it the best method?
Thanks in advance for your help!
Cheers,
robson_gs

Hi,
I suggest you manage it with returnable packaging.it is very simple method for renting.
I already done my current project same scenario.
Kapil

Similar Messages

  • COA to be send to customer while saving delivery.

    Dear Friends,
    I have a requirement of sending the certificate of analysis (finished product)  to customer while saving delivery document.
    COA is the developed form (Z development) designed and that output we need to send to customer through email as soon as the sales delivery document is saved.
    To sum up my requirement :
    I need to  send COA through email as soon as delivery is saved. 
    Please provide your expert comments.
    Best Regards,
    Shekhar

    Dear,
    You want to send a quality certificate for the delivery to the Sold-to party.
    Define the settings for the output types for certificates (LQCA and LQCB in the standard system):
    Quality Management -> Quality Certificates -> Output Determination -> Define Condition Types for Output Determination
    Enter the required communication strategy in the "Default value" tab page. Assign output determination procedure to delivery item category".
    Define the assignments of the output types for certificates for the print program and transmission medium:
    Quality Management -> Quality Certificates -> Process Output -> Assign Print Program to Output Type/Medium
    Program RQCAAP00, FORM routine ENTRY, do not specify a form.
    The standard system provides the universally applicable QM_QCERT_01 form.
    The forms must be compatible with the output program. In the standard system the following output programs are available:
    RQCAAP00 for certificates for a delivery item
    You can access this program in Customizing for message dispatch and the program can be exchanged.
    RQCAAP01 for certificates for an inspection lot
    RQCAAP02 for certificates for a batch also you can use the FM 'QC02_BATCH_CHAR_SPECS'
    SAPLQC07 for certificates for a batch on the Internet
    For more details refer the OSS note 39418.
    Regards,
    R.Brahmankar

  • Creating customer without maintaining common distribution channel & divisio

    While I'm creating a customer in ECC (XD01) its showing the error that customer not defined in sales area, How can I create a customer without maintaining common distribution channel & division

    Sivarajesh,
    Suppose you have created a customer from one account group say "Domestic customers", company code is ZXXX, Sales area is 1000/100/10. Now if you are having a scenario wherein the same customer is involved in Export scenario or process. Then in that case instead of creating new customer for the same customer we will extend this customer to new export sales area.
    This is performed in XD01 Screen itself.
    Enter the Account Group wherein the customer is existing
    Enter Company code: ZXXX
    Enter the sales area where you want to extend 1000/EX/EX and in the same screen below there is a header "Reference" in which you enter customer no. (Internall or external) should be mentioned here,
    Company code ZXXX
    Sales area: 1000/100/10
    Click Tick mark, Now the customer is Extended to new sales area.
    Regards
    Sathya

  • [Forum FAQ] How do I restore the CDC enabled database backups (FULL + DIFF) while maintaining the CDC integrity

    Question
    Background: When restoring Full + DIFF backups of a Change Data Capture (CDC) enabled database to a different SQL server, the CDC integrity is not being maintained. We did RESTORE the databases with the KEEP_CDC option.
    How do I successfully restore the CDC enabled database backups (FULL + DIFF) while maintaining the CDC integrity?
    Answer
    When restoring a CDC enabled database on a different machine that is running SQL Server, besides using use the KEEP_CDC option to retain all the CDC metadata, you also need to add Capture and Cleanup jobs. 
    In addition, as you want to restore FULL + DIFF backups of a CDC enabled database, you need to note that the KEEP_CDC and NoRecovery options are incompatible. Use the KEEP_CDC option only when you are completing the recovery. I made a test to display
    the whole process that how to restore the CDC enabled database backups (FULL + DIFF) on a different machine.
    Create a database named ’CDCTest’ in SQL Server 2012, then enable the CDC feature and take full+ differential backups of the database.
    -- Create database CDCTest
    CREATE DATABASE [CDCTest] ON  PRIMARY
    ( NAME = N'CDCTest ', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\ CDCTest.mdf' , SIZE = 5120KB ,
    MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
     LOG ON
    ( NAME = N'CDCTest _log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\ CDCTest _log.LDF' , SIZE = 3840KB ,
    MAXSIZE = 2048GB , FILEGROWTH = 10%)
    GO
    use CDCTest;
    go
    -- creating table
    create table Customer
    custID int constraint PK_Employee primary key Identity(1,1)
    ,custName varchar(20)
    --Enabling CDC on CDCTest database
    USE CDCTest
    GO
    EXEC sys.sp_cdc_enable_db
    --Enabling CDC on Customer table
    USE CDCTest
    GO
    EXEC sys.sp_cdc_enable_table
    @source_schema = N'dbo',
    @source_name = N'Customer',
    @role_name = NULL
    GO
    --Inserting values in customer table
    insert into Customer values('Mike'),('Linda')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    --Taking full database backup
    backup database CDCTest to disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\ CDCTest.bak'
    insert into Customer values('David'),('Jane')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    --Taking differential database backup
    BACKUP DATABASE CDCTest TO DISK = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\ CDCTestdif.bak' WITH DIFFERENTIAL
    GO
    Restore Full backup of the ‘CDCTest’ database with using KEEP_CDC option in a different server that is running SQL Server 2014.
    Use master
    Go
    --restore full database backup
    restore database CDCTest from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Backup\CDCTest.bak' with keep_cdc
    Restore Diff backup of the ‘CDCTest’ database.
    Restore Database CDCTest From Disk = 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Backup\CDCTest.bak'
        With Move 'CDCTest' To 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\DATA\CDCTest.mdf',
            Move 'CDCTest _log' To 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\DATA\CDCTest _log.LDF',
            Replace,
            NoRecovery;
    Go
    --restore differential database backup
    restore database CDCTest from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Backup\CDCTestdif.bak' with keep_cdc
    Add the Capture and Cleanup jobs in the CDCTest database.
    --add the Capture and Cleanup jobs
    Use CDCTest
    exec sys.sp_cdc_add_job 'capture'
    GO
    exec sys.sp_cdc_add_job 'cleanup'
    GO
    insert into Customer values('TEST'),('TEST1')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    Reference
    Track Data Changes (SQL Server)
    Restoring a SQL Server database that uses Change Data Capture
    Applies to
    SQL Server 2014
    SQL Server 2012
    SQL Server 2008 R2
    SQL Server 2008
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Question
    Background: When restoring Full + DIFF backups of a Change Data Capture (CDC) enabled database to a different SQL server, the CDC integrity is not being maintained. We did RESTORE the databases with the KEEP_CDC option.
    How do I successfully restore the CDC enabled database backups (FULL + DIFF) while maintaining the CDC integrity?
    Answer
    When restoring a CDC enabled database on a different machine that is running SQL Server, besides using use the KEEP_CDC option to retain all the CDC metadata, you also need to add Capture and Cleanup jobs. 
    In addition, as you want to restore FULL + DIFF backups of a CDC enabled database, you need to note that the KEEP_CDC and NoRecovery options are incompatible. Use the KEEP_CDC option only when you are completing the recovery. I made a test to display
    the whole process that how to restore the CDC enabled database backups (FULL + DIFF) on a different machine.
    Create a database named ’CDCTest’ in SQL Server 2012, then enable the CDC feature and take full+ differential backups of the database.
    -- Create database CDCTest
    CREATE DATABASE [CDCTest] ON  PRIMARY
    ( NAME = N'CDCTest ', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\ CDCTest.mdf' , SIZE = 5120KB ,
    MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
     LOG ON
    ( NAME = N'CDCTest _log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\ CDCTest _log.LDF' , SIZE = 3840KB ,
    MAXSIZE = 2048GB , FILEGROWTH = 10%)
    GO
    use CDCTest;
    go
    -- creating table
    create table Customer
    custID int constraint PK_Employee primary key Identity(1,1)
    ,custName varchar(20)
    --Enabling CDC on CDCTest database
    USE CDCTest
    GO
    EXEC sys.sp_cdc_enable_db
    --Enabling CDC on Customer table
    USE CDCTest
    GO
    EXEC sys.sp_cdc_enable_table
    @source_schema = N'dbo',
    @source_name = N'Customer',
    @role_name = NULL
    GO
    --Inserting values in customer table
    insert into Customer values('Mike'),('Linda')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    --Taking full database backup
    backup database CDCTest to disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\ CDCTest.bak'
    insert into Customer values('David'),('Jane')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    --Taking differential database backup
    BACKUP DATABASE CDCTest TO DISK = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\ CDCTestdif.bak' WITH DIFFERENTIAL
    GO
    Restore Full backup of the ‘CDCTest’ database with using KEEP_CDC option in a different server that is running SQL Server 2014.
    Use master
    Go
    --restore full database backup
    restore database CDCTest from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Backup\CDCTest.bak' with keep_cdc
    Restore Diff backup of the ‘CDCTest’ database.
    Restore Database CDCTest From Disk = 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Backup\CDCTest.bak'
        With Move 'CDCTest' To 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\DATA\CDCTest.mdf',
            Move 'CDCTest _log' To 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\DATA\CDCTest _log.LDF',
            Replace,
            NoRecovery;
    Go
    --restore differential database backup
    restore database CDCTest from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Backup\CDCTestdif.bak' with keep_cdc
    Add the Capture and Cleanup jobs in the CDCTest database.
    --add the Capture and Cleanup jobs
    Use CDCTest
    exec sys.sp_cdc_add_job 'capture'
    GO
    exec sys.sp_cdc_add_job 'cleanup'
    GO
    insert into Customer values('TEST'),('TEST1')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    Reference
    Track Data Changes (SQL Server)
    Restoring a SQL Server database that uses Change Data Capture
    Applies to
    SQL Server 2014
    SQL Server 2012
    SQL Server 2008 R2
    SQL Server 2008
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • Error in VA01 - "Sales order cannot be processed. Check customer type."

    Hi,
    While creating a Sales Order in VA01, I receive this error message - "Sales order cannot be processed. Check customer type."
    Could you please tell me what could be the reason for this.
    Thank you,

    Hi,
    U Can Find the Customer Type in Extras> Account Group Information> Customer Types.
    There U can Make the Customer Type.
    Regards..
    Praveen Kumar.D

  • Updating logs of output message of a delivery using custom program

    Hi Experts,
    I have a requirement where in i need to create processing logs for a output message type of a delivery using custom program. So basically for a delivey a output type will be triggered , furhter i will develop a custom program which i will run from se38 and update logs. I even need to update teh status of the output message type.
    Any inputs on this would be very useful.
    Thanks & Regards
    Dipak,

    many possible ways...
    1. create a report which queries table NAST for required output type and run the report in background for every 2 mins or 5 mins.
    2. you can write it in the driver program for the output message.

  • Creating an 11x17 booklet while maintaining file quality/size

    I regularly use Pages for newsletter production - my newsletters must be in 11x17 format when submitted to a printer for production. I do not have InDesign or Quark - I'm trying to avoid the expense, quite honestly.
    So: when I have completed a Pages document, I must convert to 11x17. I currently use Cocoa Booklet to do this. However, much to my dismay, I've found that the size/quality of my document takes a nose dive when I convert to 11x17 format with Cocoa Booklet!
    I want to give my file to the printer in the highest possible resolution. One of the newsletters I do frequently contains artwork, and the creator deserves decent quality images in the final printed product.
    So my question is: is there any way to create an 11x17 document from a Pages document while maintaining the original document quality?
    Thank you!

    See the other post for the problem of assembling an imposed set of pages. Usually though your commercial printer will handle this. If they can't I really wonder whether they should be handling the job.
    The core problem of resolution and quality suitable for commercial printing is however a problem with the colorsync quartz filters used by OSX to produce PDF-X files. Apple has set these up wrong and made them well nigh impossible to correct.
    If anyone out there can give detailed step by step instructions how to alter the filters in Colorsync Utility and make them appear correctly and consistently in the printer options, I and many others will be eternally grateful.
    As it stands the output reduces many graphics, effects and even some text to an unacceptable 72dpi pixellation.
    The inking is wildly over what commercial printing requires. Normally this should never total more than 320% to prevent smearing, pooling and overwetting and bubbling the paper.
    The filters do not provide the crop marks, bleeds or printer's slugs needed for production.
    The filters do not allow targeting of the individual printer's equipment and settings.
    There is no transparency or documentation of the process nor its effects which makes it difficult to control or know if it is correct (as it stands it is not).
    Danger, Danger Will Robinson! Do not use!
    Not much else can be said until Apple corrects this and stops misleading its users into thinking they (Apple) are actually providing a solution. In reality they have created a massive problem.
    I pray that someone has finally been listening and this gets fixed in Snow Leopard.
    Peter

  • Customizing incorrectly maintained at service entry sheet save time

    Dear PM Guru's
    we are using ECC 6.4 , while confirm and save the service entry sheet, system gives information message as Customizaing incorrectly maintained instead of document posted information. we are trying in somany ways but we cant solve the issue. please help me to avoid such a issue. here i am not getting any document posting information.
    i am requesting all the PM experts please help me.
    thanks,
    jalu

    Hi,
    I think it is the same problem as I answered in this [thread|Getting a message that "Customizing incorrectly maintained";.
    It is possibly a problem with definition of screen SAPLMLSP/400 (services). You will need to follow the instructions in note [1382685|https://service.sap.com/sap/support/notes/1382685]. This note references ML81N transaction but is relevant for the services screen. Check the table entries mentioned to verify and then correct if necessary.
    -Paul

  • Pricing/euro: Attention: Euro Customizing not maintained

    Hi All,
    While creating Sales Order for EURO customer, it is giving following error :
    Pricing/euro: Attention: Euro Customizing not maintained.
    I have maintained EURO exchange rate in OB08 Transaction.
    What could be the problem, give us immediate solution.
    Yusuf

    Hi Yusuf,
    From the error its clear that its a problem of Pricing/Euro and euro customization,drill down the error and check the analysis fo theis error,if its there.
    If not,check the customer master setting,as what is the customer pricing pro.
    and also check the doc.pricing pro.
    hope this helps to some extent.
    SriRam

  • Where is the customs duty maintained - in PO or MIGO ?

    where is the customs duty maintained - in PO or MIGO ?

    Hi,
    Import Duties are maintained in PO as per the fixed % and assign Customs Office Vendor code to all the conditions. Also you have to maintain these duties in MIRO (LIV for Customs Invoice) as per Bill of Entry.
    Following condition types to be used in MM Pricing.
    JCDB IN:Basic Custom Duty
    JCV1 IN : CVD
    JECV IN : Ed Cess on CVD
    J1CV IN : H&SECess on CVD
    JEDB IN : Ed Cess on BCD
    JSDB IN : H&SECess on BCD
    JADC Addnl Duty of Custom
    Import Process: -
    1. ME21N - Create Import PO
    2. MIRO - Customs Invoice
    3. J1IEX - Capture Bill of Entry
    4. MIGO - Goods Receipt
    5. J1IEX - Post Bill of Entry
    6. MIRO - LIV for Vendor Invoice
    7. MIRO - LIV for Clearing Agent
    Mandatorily, use a Zero % Tax Code in Import PO.
    Import Duties will not come from J1ID, in J1ID only you have to mainatin material and Vendor (Customs Office and Import both) excise details.
    Above all, check the Excise Defaults for CVD conditions in SPRO > LO > Tax on Goods Movement > India > Basic Settings > Mainatin Excise Deafults

  • EURO CUSTOMIZING NOT MAINTAINED

    Hi,
    I am facing problem during making the commercial invoice for a perticular Export customer. The problem is arising due to comma (,) and fullstop (.) while mentioning the qty & price. In Qty column fullstop is reflecting instead of comma and in pricing column vise versa.
    For example u2013 Qty 4.900 EA is reflecting in the invoice but it should be 4,900 EA.
             Price u2013 229, 14 EUR is reflecting in the invoice but it should be 229.14 EUR
    Also an error is coming while creating commercial invoice - "EURO CUSTOMIZING NOT MAINTAINED"
    Please help.......
    Regards,
    Rajdeep

    Hi
    Please check in your user profile in SU01 under logon defaults select the required format.
    For Euro customisation not maintained. Please search the forum
    regards
    Prashanth

  • How can I enable Active Directory network login while maintaining the existing local user account data?

    We have a user base of around 15 Macs that we would like to integrate into Active Directory. However, we need to maintain the existing users local account data but do not wish to have that data moved to the network. Is there an easy way to create the AD login and then move the existing account data to the new login while maintaining correct permissions?
    I've had some success logging in as root and deleting the existing account, while maintaining the home folder. Then renaming it to match the AD login account name and replacing the new and empty AD user home.  I then perform a CHOWN on that folder to give ownership to the AD account name.
    Is it this simple? I don't want to leave any loose ends.
    Thanks for any help you can provide,
    Scott

    JamesSTJ wrote:
    Oh, found it!
    And guess what? Apple wanted to charge me a one time fee of $600 to answer that question.
    It worked! thanks!
    I guess I'm cheap

  • Message "Customizing incorrectly maintained" in IW42

    Hi All,
    Our client system has been recently upgraded to ECC 6.0. And after that when i am executing transaction IW42, i am getting this message "Customizing incorrectly maintained". Though i am able to successfully complete and save the whole process but still this message is being displayed. I am not getting this kind of message in IW41 or IW44. I have checked configuration settings, but dint find anything missing. Has anyone encountered such type of message. Am i missing out on any configurations. Please help
    Looking forward to your reply.
    Regards,
    Shobha

    Hi
    I saw your reply to shoba_pillai25.
    Nice solution
    what is the need of setting profile and maintaining tables in SM30?
    What it will do exactly?
    What are the other profiles to be maintained during configuration?
    Regards,
    Alagesan.M

  • "Customizing incorrectly maintained Message no. SE729 "

    Hi Friends,
    While making 'ML81N' for service purchase order  at the time of save , system gives me following error message.
    "Customizing incorrectly maintained Message no. SE729 "
    Regards,
    Mahesh.

    Hi,
    Me too was facing the same issue few days back, resolved by this thread.
    Customizing incorrectly maintained Message no. SE729 - ML81n
    Re: Cutomizing incorrectly maintained - check for the answer from 'AV'
    Regds,
    CB

  • Can CDC enabled database DIFF backups be RESTORED while maintaining the CDC integrity?

    We tried restoring FULL + subsequent DIFF backups of a CDC enabled database to a different SQL server and found that the CDC integrity is not being maintained. We did RESTORE the databases with the KEEP_CDC option.
    Can someone please guide us on how to successfully restore the CDC enabled database backups(FULL + DIFF) while maintaining the CDC integrity?
    Note: SQL Server Version: SQL Server 2012 SP1 CU2

    Hi YoungBreeze,
    Based on your description, I make a test on my computer.
    Firstly, I create a database named ‘sqldbpool’ , then enable the
    Change Data Capture (CDC) feature and take full+ differential backups of the database. Below are the scripts I used.
    -- Create database sqldbpool
    CREATE DATABASE [sqldbpool] ON PRIMARY
    ( NAME = N'SQLDBPool', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\SQLDBPool.mdf' , SIZE = 5120KB ,
    MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
    LOG ON
    ( NAME = N'SQLDBPool_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\SQLDBPool_log.LDF' , SIZE = 3840KB ,
    MAXSIZE = 2048GB , FILEGROWTH = 10%)
    GO
    use sqldbpool;
    go
    -- creating table
    create table Customer
    custID int constraint PK_Employee primary key Identity(1,1)
    ,custName varchar(20)
    --Enabling CDC on SQLDBPool database
    USE SQLDBPool
    GO
    EXEC sys.sp_cdc_enable_db
    --Enabling CDC on Customer table
    USE SQLDBPool
    GO
    EXEC sys.sp_cdc_enable_table
    @source_schema = N'dbo',
    @source_name = N'Customer',
    @role_name = NULL
    GO
    --Inserting values in customer table
    insert into Customer values('jugal'),('shah')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    --Taking full database backup
    backup database sqldbpool to disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpool.bak'
    insert into Customer values('111'),('222')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    --Taking differential database backup
    BACKUP DATABASE sqldbpool TO DISK = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpooldif.bak' WITH DIFFERENTIAL
    GO
    Secondly, I restore the ‘sqldbpool’ database  in a different SQL Server instance with the following scripts. After the restoration, everything works as expected and the database maintains the CDC integrity.
    Use master
    Go
    --restore full database backup
    restore database sqldbpool from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpool.bak' with keep_cdc
    Restore Database sqldbpool From Disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpool.bak'
    With Move 'SQLDBPool' To 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\SQLDBPool.mdf',
    Move 'SQLDBPool_log' To 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\SQLDBPool_log.LDF',
    Replace,
    NoRecovery;
    Go
    --restore differential database backup
    restore database sqldbpool from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpooldif.bak' with keep_cdc
    --add the Capture and Cleanup jobs
    Use sqldbpool
    exec sys.sp_cdc_add_job 'capture'
    GO
    exec sys.sp_cdc_add_job 'cleanup'
    GO
    insert into Customer values('TEST'),('TEST1')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    When we restore a CDC enabled database, we need to note that the CDC feature is available only on the Enterprise, Developer, and Evaluation editions of SQL Server. And we need to add the Capture and Cleanup agent jobs after restoring the database.
    For more details about restoring a CDC enabled database in SQL Server, you can review the following similar articles.
    Restoring a SQL Server database that uses Change Data Capture:
    http://www.mssqltips.com/sqlservertip/2421/restoring-a-sql-server-database-that-uses-change-data-capture/
    CDC Interoperability with Mirroring and Recovery:
    http://www.sqlsoldier.com/wp/sqlserver/cdcinteroperabilitywithmirroringandrecovery
    Thanks,
    Lydia Zhang

Maybe you are looking for

  • PCMCIA Realtek Ethernet card not detected

    Hi, I'm trying to use a PCMCIA Etherner Card with Realtek chip. If the card it's already plugged when booting, Udev takes 180000 ms to finish and the card doesn't work. If it's plugged while booted, dmesg shows that there's a "something" at SmartCard

  • How do I get the HP solution center back on windows 7

    I have an officjet pro 8500 all in one printer. It was on windows vista but after a computer crash I have installed it on windows 7 but I cannot do anything with it because I am unable to get the hp solution center to work. I have downloaded the new

  • Tranferring Display Data on an Agilent DSO6014L to a .BMP file

    Hello, I'm able to read the DSO6014L Scope Display Data into a .bmp file, but I can't open it. Windows say the file must be corrupted, or to large. My file is the the same size as the .bmp file that's saved to my memory stick on the scope. There's so

  • How to group Page Items with fieldset and legend HTML tags ?

    I have 7 Page Items (i.e. select list, input text....) defined in Side Bar Region of my Page Zero, for clarity I would like to group these items as follows: 1) <fieldset> <legend>Costs</legend> <input ..... item1 > <input .... item2 > <input..... ite

  • HELP HELP Battery Life

    My Ipod Nano is about 6 months old and they battery life is really bad I charged it fully yesterday and only used it for a short time last night and now the battery is empty. What can I do???