How to create a copy of a Work-Center?

Dear Experts,
in SAP CRM 7.0 i have made a copy of the Work Center SRV-MD. The name of the copy is: ZSRV-MD. The most important data can be found in the following table:
Workcenter Standard  Workcenter Copy    Logical Link  Destination ID     Component
SRV-MD                  SRV-MD             SRV-MD-WC     SRV-MD-WC          WCC_SRV_ACC_PRO
SRV-MD                  ZSRV-MD             ZSRV-MD-WC    SRV-MD-WC          WCC_SRV_ACC_PRO
I want to use both Work-Center for the same Role. My problem is that I want to define for both workcenter different Logical Links. But when I change the links on the first workcenter it is changed too for the other one.
Do I have to create a Z-Component to avoid that? The problem might be that the same Destination ID is used which is leading to the same Component?
Best Regards
Oliver

Hi Experts,
under:
Customer Relationship Management -> UI Framework -> Technical Role Definition -> Define Work Area Component Repository
I have defined a a new Target-ID (ZSRV-MD-WC) for the created Z-Component: ZWCC_SRV_ACC_PR (Copy of WCC_SRV_ACC_PRO).
Then under:
Customer Relationship Management -> UI Framework -> Technical Role Definition -> Define Navigation Bar Profile
I have created a new Logical Link with the following data:
Logical Link ID: ZSRV-MD-WC   
Type:                B Work Center
Target ID:         ZSRV-MD-WC 
This Logical Link I have assigned to the Z-Work-Centre:
Work-Center ID: ZSRV-MD     
Logical Link:       ZSRV-MD-WC     
But the problem is that the system still is calling the Standard Component WCC_SRV_ACC_PRO. In which method I can make a debug or look for the problem?

Similar Messages

  • How to create and implement a new work schedule rule successfully?

    Dear Community,
    How to create and implement a new work schedule rule successfully?
    In other words, what are all the basic steps to create and implement a new work schedule rule successfully?
    Thanks in advance.

    Hi,
    Follow the below steps to create Work Schedule:
    Holiday Calendar
    Transaction Code: SCAL
    Holiday calendar comprises of list of paid holidays to be given to employees on festivals by the company.
    Personnel Area/SubArea Groupings
    Go to SPRO --> Time Management --->Work Schedules --> Personnel SubArea Groupings
    Maintain perosnnel area/Subarea groupings for work schedule.
    i.e. Suppose in Mumbai you have WS = GEN ( 10 to 6) and in Chennai you have WS = NORM ( 8 to 4 )
    Work Schedule
    Go to SPRO --> Time Management --->Work Schedules -->Daily Work Schedules
    Go to SPRO --> Time Management --->Work Schedules -->Period Work Schedules
    Daily Work Schedule is actually your office timings with breaks (paid /unpaid) i.e. Planned Working Time which is then included
    in Period Work Schedule to make a week ( M T W T F S S )
    Daily Work Schedule (i.e. Day) -
    > Period Work Schedule (i.e. Week)
    Work Schedule Rules
    Go to SPRO --> Time Management --->Work Schedules -->Work Schedule Rules and Work Schedules
    After doing above mentioned configurations,maintain employee group/subgroup groupings in which you have to define which calendar is applicable for which type of employees for which work schedule.
    You will maintain this work schedule in infotype 0007 - Planned Working Time of employee via transaction code - PA30

  • 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 track chnages done to a work center in past

    Hi all,
    How to track chnages done to a work center in past.
    I have tried Cr10 t cdoe, when i input plant and kept all other fields blank,and still it is not generating any output.
    Am i missing anything,is ther any other tcose or table,pls guide
    Thnx
    HKR

    Hi,
    1) You have to activate Change document indicator in the Transaction OP40 for the Workcenter categories.
    2) And for what are all the fields you wanted to capture the changes, for those data elements you have to ensure that change document is activated in the data dictionary.
    These are the pre-requisite for getting change documnets for the work centers.
    Regards,
    R.Loganathan

  • 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 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

  • 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

  • Create virtual copy doesn't work

    Am I doing something wrong?
    I right click on a thumbnail, click create virtual copy. THe thumbnail pane flickers, but I see no evidence of stacking going on: there is no page turn icon in the bottom left or a number in the top left displaying.
    I have tired this in the filmstrip in develop and in the library view.
    Getho

    Maybe check your sort - I had some odd sorting and it put my copy down the bottom out of site.

  • 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 assign Asset number to PP work center -reg

    Hi,
    When we create PP Work center  through CR01 can we assign the asset number ? 
    or   while creating asset number through AS01 can we assign the PP Work center ?
    Our major issue is
    FI : ASSET
    PM:Equipment
    PP: Workcenter
    we  are not able to link .  we need to have same cost center for all the three . but as of now we dont have the link for the three and what ever cost centers we assignsystem is accepting
    how to solve this ?
    i could not find any fields in work center either to assign asset or equipment ?
    only in equipment i can give PP work center but how it links all the three Asset , Equipment and Work center ?
    regards,
    madhu kiran.

    HI
    In euipment you can assign the PP work center and from the asset AS02/AS03 go to environment > additional  amster data > you can get the cost center assigned to asset fro this you can relate the cost center to all three.
    Hope it will help u
    Rgds
    Anupam Sharma

Maybe you are looking for

  • Difficulty in Variable substitution.

    Dear all, I want to go for variable substutution in Receiver channel(File adapter).The variables I need are there in the RunTime tag of the SOAP Header(Date & Time). The exact location Inbound Message:     SOAP Header         RunTime            Date

  • ICloud does not show devices

    On my iPad using iCloud I do not see any of my devices if I am trying to test the locate my iPhone feature

  • Import javax.media.* is not working

    Hi, I'm new to java and i was trying to create a media player using the javax.media package from the JMF. I installed it using the windows setup and it seemed to install correctly. Testing it with the java.sun.com applet tester worked. The media play

  • Making ENTER key act as a TAB key.

    I have a version problem that I could not solve. My goal is using ENTER key as TAB key. In java version 1.3.X my code is working properly.It is like the code below public void keyPressed(KeyEvent e) { if(e.getKeyCode() == KeyEvent.VK_ENTER) e.setKeyC

  • Starting up without spaces flying around

    I have 4 spaces. ichat and skype are automaticly started in 4th space, Mail in 2nd while logging in. is there a way to start up leopard, so that the screen would be focused and stayed in first space, and it would not jump from space to space where th