How to create a copy of CO-PA document

Hi,
My requirement is to copy the data from a CO-PA document which is of type 'C' and copy the same data to a new CO-PA document which is of type 'X'.
Can you let me know if there is any FM / BAPI available to do the copy.
Thanks in advance.
Regards
Shanthi

The way I do it is rather simple.
1.       Copy the local RoboHelp project to a new location.
2.       Remove the link to source control. (See http://www.robowizard.com/RoboWizard/MonthlyScry/102004.htm on how to do this without opening RoboHelp. Please follow these instructions.)
3.       Open the RoboHelp project and add it to source control as a new project.
By creating a copy of the entire project directory, ALL the content is retained.
Greet,
Willam

Similar Messages

  • SMARTFORM: how to create 3 copy (each copy can print more than one page)

    SMARTFORM: how to create 3 copy (each copy can print more than one page)
    Hello everyone.
    my user want to have form that print 3 copy.
    such as 1 copy description = master,  2 copy description = copy 1 ,3 copy description = copy 2.
    so i create 3 page . I copy from page 1.
    and in each page there is main window which can have data more than 1 page.(such as have a lot of sale data ,it's take 2 page for show output .so it's take 2 page in each copy)
    please help me.
    how to set page and window in each page for print 3 copy and each page can have main window that print more than 1 page

    Hello Vinit.
    thank you very much for your help.
    could you help me more please.
    in below code
      DO NAST_ANZAL TIMES.
    l_counter = l_counter + 1.  " << pass this to FM and use for the TEXT to print
    CALL FUNCTION LF_FM_NAME
               EXPORTING
                         COUNTER = l_COUNTER   " USE this to derive the text into PRINTOUT
    enddo.
    Now i out of office .so i cannot test.
    where do i set NAST_ANZAL for 3 ?
    can i input ?
    NAST_ANZAL = 3.
      DO NAST_ANZAL TIMES.
    l_counter = l_counter + 1.  " << pass this to FM and use for the TEXT to print
    CALL FUNCTION LF_FM_NAME
               EXPORTING
                         COUNTER = l_COUNTER   " USE this to derive the text into PRINTOUT
    enddo.
    Edited by: dittaporn nanasilp on Mar 12, 2011 3:33 PM

  • How to create a copy of a project

    We are using RoboHelp HTML version X5, and we use version
    control. We are trying to figure out how to create a copy of a
    project so we can edit the new version with the old version
    remaining intact. That way we could have multiple versions of our
    help system, a distinct version for each software release we have.
    Thanks.

    The way I do it is rather simple.
    1.       Copy the local RoboHelp project to a new location.
    2.       Remove the link to source control. (See http://www.robowizard.com/RoboWizard/MonthlyScry/102004.htm on how to do this without opening RoboHelp. Please follow these instructions.)
    3.       Open the RoboHelp project and add it to source control as a new project.
    By creating a copy of the entire project directory, ALL the content is retained.
    Greet,
    Willam

  • How to create a copy of a file

    Is there a method in Java API with which I can create a copy of a file (like running "copy" or "cp" at system command prompt), so that I don't have to use InputStream and OutputStream and create the new file byte by byte?

    I would never create an array with the size of the input file. What do you do, if the file is 2GB?
    I'd rather use buffered streams: BufferedInputStream in = new BufferedInputStream(new FileInputStream("inputfile.dat"));
    BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream("outputfile.dat"));
    byte[] buffer = new byte[4096];
    int b = in.read(buffer);
    while(b>=0)
      out.write(buffer, 0, b);
      b = in.read(buffer);
    in.close();
    out.close();I'm not sure if using an array to read from a BufferedInputStream really improves performance, but you can play around with it. If you know you have big files, you might want to play with the size of the buffer for the streams as well and see how it affects read/write performance. Setting a larger buffer then the default 64K for the output stream might speed up things.
    Thomas

  • How to create a copy cube from Business content statistics cube

    Dear Experts,
           I got a requirement to create the new cubes which is a copy of Business content statistics cubes.
    Request you to let me know how can i create a copy cube from Business content cube. My doubt is,weather is't the same as normal customized cube creation  by giving  copy from option.....
    Thanks in advance for your valuable assistance.
    Regards,
    Ramesh - Kumar.

    for copying the cube whose copy is to be made should be available in infoprovider tab in modelling of RSA1.
    first you have to install the business content cube ,so that it is found in the Info-providers tab in modelling .
    for that,first go to business content option found in the modelling tab of t-code RSA1 .
    find the cube and transfer it to the right and execute . It will be available in infoprovider tab of modelling .
    then you can create a copy as we do normally .

  • How to create exact copy of a table

    Hello,
    I must admit my "google skills" have failed me and it is possible that I might be missing something obvious here but allow me to explain.
    If I have a table that is populated/accessed by a typical OLTP application such that over time the data in the table may become "fragmented".
    I know that is a very controversial term I used but that is not the question here. A simple way to describe the state of the table might be
    that the table has always been populated with lots of small INSERTs, modified with lots of small UPDATEs and data has been deleted in small DELETEs.
    This has meant that the data is neither closely stored in data blocks nor is in any particular order (so there are some empty blocks under HWM).
    Now my question is how do I create exact copy of this table and its indexes AS THEY EXIST AT THE MOMENT that includes
    1) its data
    2) its constraints/indexes etc.
    3) its storage parameters
    4) data stored in EXACTLY same manner as in original table.
    To avoid complications, the table in question is just a normal heap table without any partitioning involved. While CREATE TABLE AS SELECT (or CREATE
    TABLE followed by INSERT) will take care of points (1) to (3) above, it will not achieve point (4) above.
    Can somebody please help?
    Thanks in advance.

    Exp/Imp...
    C:\Windows\system32>expdp scott/tiger dumpfile=scottemp.dmp directory=DATA_PUMP_DIR tables="emp" constraints=y indexes=y statistics=y
    Export: Release 11.2.0.1.0 - Production on Sat Nov 24 15:35:34 2012
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Legacy Mode Active due to the following parameters:
    Legacy Mode Parameter: "constraints=TRUE" Location: Command Line, ignored.
    Legacy Mode Parameter: "indexes=TRUE" Location: Command Line, ignored.
    Legacy Mode Parameter: "statistics=y" Location: Command Line, ignored.
    Legacy Mode has set reuse_dumpfiles=true parameter.
    Starting "SCOTT"."SYS_EXPORT_TABLE_01":  scott/******** dumpfile=scottemp.dmp directory=DATA_PUMP_DIR tables=emp reuse_dumpfiles=true
    Estimate in progress using BLOCKS method...
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 64 KB
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    . . exported "SCOTT"."EMP"                               8.570 KB      14 rows
    Master table "SCOTT"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
    Dump file set for SCOTT.SYS_EXPORT_TABLE_01 is:
      E:\APP\SERVERROOM\ADMIN\ORCL\DPDUMP\SCOTTEMP.DMP
    Job "SCOTT"."SYS_EXPORT_TABLE_01" successfully completed at 15:35:38
    C:\Windows\system32>impdp scott/tiger dumpfile=scottemp.dmp directory=DATA_PUMP_DIR tables="emp" constraints=y indexes=y statistics=y logfile=log.txt remap_schema=scott:hr
    Import: Release 11.2.0.1.0 - Production on Sat Nov 24 15:48:20 2012
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Legacy Mode Active due to the following parameters:
    Legacy Mode Parameter: "constraints=TRUE" Location: Command Line, ignored.
    Legacy Mode Parameter: "indexes=TRUE" Location: Command Line, ignored.
    Legacy Mode Parameter: "statistics=y" Location: Command Line, ignored.
    Master table "SCOTT"."SYS_IMPORT_TABLE_01" successfully loaded/unloaded
    Starting "SCOTT"."SYS_IMPORT_TABLE_01":  scott/******** dumpfile=scottemp.dmp directory=DATA_PUMP_DIR tables=emp logfile=log.txt remap_schema=scott:hr
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    . . imported "HR"."EMP"                                  8.570 KB      14 rows
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    ORA-39083: Object type REF_CONSTRAINT failed to create with error:
    ORA-00942: table or view does not exist
    Failing sql is:
    ALTER TABLE "HR"."EMP" ADD CONSTRAINT "FK_DEPTNO" FOREIGN KEY ("DEPTNO") REFERENCES "HR"."DEPT" ("DEPTNO") ENABLE NOVALIDATE
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    Job "SCOTT"."SYS_IMPORT_TABLE_01" completed with 1 error(s) at 15:48:22
    C:\Windows\system32>sqlplus hr/hr
    SQL*Plus: Release 11.2.0.1.0 Production on Sat Nov 24 15:48:32 2012
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select * from emp;
    ...Result is there.
    14 rows selected.
    SQL>
    ORA-39083: Object type REF_CONSTRAINT failed to create with error:
    ORA-00942: table or view does not exist
    are understandable.Regards
    Girish Sharma

  • How to create a copy of customized panel?

    Hi
    On a Button click am creating a panel at runtime using
    actionscript with some controls in there. Now i got requirement
    like at the same time.. i need to create a copy of that panel and
    need to add it as a child of another panel.
    Can any one help me how to create a duplicate copy of Panel??
    Thanks
    Pratap

    Hi,
    Thanks for reply...
    The clone() method returns a cloned copy of the event object
    by setting the type property and any new properties in the clone.
    I need to create a clone of a control(Panel).
    Any idea how to do that?

  • How to create a copy of emails to share folder

    I'm currently new to OCS Email and I need all the helps from you guys in here.
    Here is my scenario.
    Our employee having a one to one relationship to the share folder.
    All emails from our employee need to duplicated and sent to the share folder. Where do I start and what tool do I need to accomplish this task? Please help me out.

    The way I do it is rather simple.
    1.       Copy the local RoboHelp project to a new location.
    2.       Remove the link to source control. (See http://www.robowizard.com/RoboWizard/MonthlyScry/102004.htm on how to do this without opening RoboHelp. Please follow these instructions.)
    3.       Open the RoboHelp project and add it to source control as a new project.
    By creating a copy of the entire project directory, ALL the content is retained.
    Greet,
    Willam

  • How to Create a Copy of the Datasource

    Hi Experts,
    Can some body suggest me how to copy and reuse the existing the Datasource
    I have a Datasource(Standard Datasource to Info object(Master Data Attr) )
    So I need same datasource to update to DSO
    But I donot need the existing Datasource I want a copy of this Datasource how to create
    Thanks

    Hi,
    Try copying using txn RSDS.
    Hope this helps.
    Thanks
    Mani Suresh

  • How to create a copy of an existing statndad view

    Hi Experts,
    I have a requirement. I have to copy the view BP_DATA/AccountRelationshipsOV in the component BP_DATA and again use it in the component BP_HEAD. When i tried creating copy by right clicking on the view and selecting copy option its creating the copy of the view but when i am using the view in the component BP_HEAD by using the component interface of the copied view, its throwing some run time exception on the UI. Please help.
    Also is there any other way of copying the view other than the one i used above?
    Regards,
    Udit.

    Hi Udit,
    Unfortunately there is no way to copy a view from one component another the way we understand copy-paste. However, if your requirement is to reuse BP_DATA/AccountRelationshipsOV (or its copy you already created) in BP_HEAD, then you need to do the following:
    In BP_DATA component:
    1. Create a new window.
    2. Add the copy to this new window in runtime repository editor.
    3. Expose this new window from runtime repository editor.
    In BP_HEAD component:
    1. Declare a new usage for component BP_DATA, view (new window you create above)
    2. Add the usage view to the concerned view area.
    You also need to make sure that the context nodes are properly bound for the data flow.
    Regards,
    Shiromani
    P.S. What was the runtime exception?

  • How to create excise invoice with reference delivery document

    hi all sd guru
    please guide me how to create excise invoice by taking reference of delivery no.
    thankx in advance
    san

    HI
    FACTORY SALES
    IN CASE OF FACTORY sales you have to create a billing document either Proforma or Commercial.
    Then you can reference the billing doc i9n J1IIN for creation
    DEPOT SALES
    In case of depot sales you can create a excise invoice with reference to delivery document.
    For this after creation of delivery goto J1IJ  and slect the rg23d from menu
    you can create an excise invoice with delivery in depot sales.
    In factory it is not possible to create a excise invoice with delivery doc.
    regards
    Prashanth

  • How to create a complaint with pre-decessor document Inovice?

    Hello experts,
    I need create a complaint with reference to a pre-decessor document type Invoice (apart from other types such as sales order and service order). Can someone enlighten me
    1) how to create an invoice in IC Web Client and backend?
    2) how to create a complaint with reference to this created invoice in IC Web client and backend?
    Thanks a lot!!!

    Hi Easwar
    Thanks  a lot for answering the question.
    Yes I do have CRM Billing documents. But the problem is
    a) either the billing document doesn't have Transfer to Accounting status Transferred or
    b) a transferred billing document, but all items have error "Unable to offset billing item 90003458 0000000060" etc.
    Do you know
    1) how I can make a billing document have "Transferred" status? Pressing "Transfer to Accounting" button in the billing document overview page will only set the status to "Being transferred". And it's always being tranfered.
    2) What does the error "Unable to offset billing item ... "mean? How to get rid of them?
    Thanks a lot!

  • How to create a block key default for documents created by MIRO?

    Hi All,
    How to create a block key (BSEG-ZLSPR) default for documents created by MIRO?
    Could anyone tell me?
    Thanks
    Gandalf

    HI,
    The payment block--BSEG-ZLSPR can be made defaulted by two  ways.
    Means you want to fix one value all the times for the same ,you have to do the same in Vendor master
    ie in the Vendor Master in the Payment Transactions Selection screen. make the Payment Block you want to be defaulted in MIRO.
    you can do for all vendor master in mass change -- XK99.(LFB1)
    if you are not OK with the Above .then there is another way to do the same
    it is by Screen layout setting in SHD0
    in this enter the Transaction MIRO and create a Transaction variant Z*** and click on create
    and also create a Screen variant in OMLRLIST 
    T code MIRO
    Screen variant name Z**
    Program-SAPLFDCB
    Screen Number 0020
    and create it .
    in creating ---enter the default value in the Payment block and in the varinat just check the box w.content
    KNow in SHd0 add this screen variant for the above Trasaction variant
    and then activate this trasaction variant by going into the tab Standard variants.
    so that when ever you do miro this variant will be called and you can get this payment block defaulted.
    hope so it helps
    Regards
    Anjanna

  • How to create pre-defined folder in the document sharing iView in a room?

    Hi everyone,
    As title, I would like to know how to create some pre-defined folder(s) in the document sharing iView in a collaboration room?
    Hope you someone can help me~~
    Thanks and best regards,
    Marcus

    Try it like this:
    Help with collaboration rooms templates
    and here are soem of those docs:
    http://media.sdn.sap.com/public/KMKeywords/Collaboration-Room.html
    Regards,
    Darin

  • How to create a button in a interactive document and use the button to launch and external "exe." file.

    I created an interactive document and will export as a swf.  I would like to create a button in the interactive document to launch and external "exe." file. Is this possible.

    You will need to create custom web part editor. Look at the following example. It also have added button and its events. I am sure you can use this sample as base and code your logic.
    http://msdn.microsoft.com/en-us/library/hh228018(v=office.14).aspx
    Amit

Maybe you are looking for