Client Cpy / Creation

Friends
I want to setup a new Client in QA Server for Testing.and want to copy the production client on the newly created client
Can anyone please help to what setting should i take for SCC4.i.e Change and transports for Client Specific objects,Cross Client Objects & Protection.
Secondly What method should i take for copying client data to newly created client.

Hi,
    For client copy details , methods details please refer to the following :-
http://help.sap.com/saphelp_nw70/helpdata/en/69/c24c4e4ba111d189750000e8322d00/frameset.htm
Note 24853 - CC-INFO: Client copy, functionality
> Can anyone please help to what setting should i take for SCC4.i.e Change and transports for Client Specific objects,Cross Client Objects & Protection.
I assume you are asking the client settings for the new client that would be created in your Quality system ??
A sample setting for a QAS system is giving below( however individual requirements may vary)
client role -> TEST
change and transports for client-specific objects -> No changes allowed
Cross-client Object changes -> No changes to Rep and cross client
Protection -> For a quality system , this setting doesn't find much use (however Protection 2 may not be required)
cheers !
PRADi

Similar Messages

  • ABAP Client proxy creation XI  side or R3 SIde ?

    Hi friends ,
                          I am new to proxies
                    i ahev referred the follwing blog
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
                      In my sceanrio i want to create Client proxy from  XI OutBound Interface .
             <b>       
               1. Do i need to create Proxy from XI sap gui (or ) R3 Dev system sap gui ?
                 2. Then i  planning to write abap report  to call rfc and return data to proxy  .Do i need to wtrite  abap report in R3 side or  XI side  proxy it self ?
                      I am not clear in this
                3. I have xi dev system and R3 Dev system . IR desing done rfc ready how top procedd further ?
                    4. Do i need to do any settings  ?
                    </b>
    Regards.,
    Shyam

    Hi Shyam,
      <b>1. Do i need to create Proxy from XI sap gui (or ) R3 Dev system sap gui ?</b>    
                 Always proxies are developed at the application side.You have create proxy on ur R/3 system not on XI. Once you are done with the IR objects then the message interfaces will be reflect in sproxy tcode in R/3 and start defining the outbound proxy from there..
    <b>2. Then i planning to write abap report to call rfc and return data to proxy .Do i need to wtrite abap report in R3 side or XI side proxy it self ?</b>
             You have write abap report in R/3 side.
    <b>3. I have xi dev system and R3 Dev system . IR desing done rfc ready how top procedd further ?</b>
       Write the abap report where u have to incooperate the rfc call and pass the return values to the proxy structure.....So when u execute the report the data will triggered to the XI system........this is the flow..
    <b>4. Do i need to do any settings ?</b>
            Go through this blog for the settings required for proxy scenarios:
    /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
    Regards,
    Prasanthi.

  • EJB Client JAR Creation - Workspace Studio (ALSB 3.0/WLS 10)

    hi
    I'm trying to create an EJB Client JAR for an 2.1 Session Bean EJB Created in a WLS 10 domain using BEA Workspace Studio (i.e. this is the Aqualogic Service Bus 3.0 Product install).
    I'm doing this in preparation for testing the ALSB EJB Transport which requires a client JAR.
    I simply can't get a useful JAR from the facility provided in the Workspace IDE. The Workspace help is pointing to an IBM generated page and I'm following the procedure there.
    I have configured the EJB for an EJB Client Project.
    If I export an EAR from the Application containing the EJB, the EAR only contains the EJB JAR (with a Manifest entry to a non-existent Client JAR).
    If I export the EJB Client Project to a JAR the JAR is simply empty i.e. contains some descriptor type artefacts but no classes.
    I have tried this quite a few times with the same outcome. Can anyone from BEA or the user community confirm whether or not this facility actually works!
    Thanks
    Jim Nicolson

    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/ejbTransport/ejbtransport.html#wp1079062 . This is document for OSB 10xx and yours is a a version or two older than this (So it will be applicable).
    Can you please check if your EJB are complying to 2.1specification?
    However the latest version of service has support for both EJB 2.1 and EJB 3.0 specification
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e15866/ejb.htm#CCGIFFCI
    Thanks
    Manoj

  • 10.7 client .dmg creation for deployment questions.

    Please forgive me if this question is in the wrong forum.
    I've been doing searches online and in the 10.7 Peachpit books (client and server) and I can't seem to find the info I am looking for.
    I am trying to create a 10.7 .dmg to use on new Macs my company is going to deploy. We are not using 10.7 Server at the moment, we
    are using 10.6.8 Server. This will not be an image we are going to deploy over the network either. I know this may not be "best practices"
    but at the moment, this is the way we are going to (re)image new Macs.
    Basically, I want to create a 10.7 .dmg that does NOT contain the recovery partition. I can't seem to find a way to do this. If I am correct,
    even a "clean" install, when booted from a USB 10.7 recovery drive, will create the recovery partition, right?
    I am running 10.7 client and i have the 10.7.3 Server Admin tools.
    I apologize in advance if I am missing something glaringly obvious.
    Also, any tips on best practices for creating 10.7 client .dmgs for deployment that's any different than creating 10.6 images?
    thanks in advance.

    Using information from this site and my own scripting experience I present to you a more secure way to do it which supports munki and other deployment tools without having the password to the ODM or client in clear text on the client or on packages easeliy accessable on a http server:
    On server:
    ssh-keygen
    Save the output of ~/.ssh/id_rsa.pub to your clip board
    Then create a launchd or something so that this runs at startup
    nc -kl 1337 | xargs -n 1 -I host ssh -q -o StrictHostKeyChecking=no root@host /usr/local/bin/setupLDAP diradminpassword localadminpassword > /dev/null 2>&1
    On client:
    Create script (to use in a package as postinstall or something):
    #!/bin/bash
    # Turns on ssh
    systemsetup -f -setremotelogin On
    # Sets up passwordless login to root account from server
    echo "ssh-rsa FROM_YOUR_CLIPBOARD_A_VERYLONGOUTPUTOFCHARACTERS [email protected]" >> /var/root/.ssh/authorized_keys
    # installs setupLDAP
    mkdir -p /usr/local/bin
    cat > /usr/local/bin/setupLDAP <<'EOF'
    #!/bin/sh
    PATH=/bin:/sbin:/usr/bin:/usr/sbin
    export PATH
    computerid=`scutil --get ComputerName`; yes | dsconfigldap -vfs  -a 'server.domain.no' -n 'server' -c $computerid -u 'diradmin' -p $1 -l 'l' -q $2
    EOF
    chmod +x /usr/local/bin/setupLDAP
    End note
    That was the code, now you just add the skeleton And to clearify what this does, first we let the server connect to the client as root even though root access is "disabled" (he has no password and therefore you can't log in as root as default). Then we create a small script to setup OD binding (/usr/local/bin/setupLDAP) but this script doesn't contain the passwords. Then the client send a request to the small socket server on the server with it's hostname, then the server connects to that hostname and executes /usr/local/bin/setupLDAP with the needed passwords.

  • NEED HELP !!! Client website creation.

    I am creating a website for a client (ICE HOCKEY LEAGUE) and trying to figure out how to go about designing the site so that the client can easily manage on their own frequent updates such as STATS, STANDINGS, PICS, etc - ANY SUGGESTIONS or ADVICE ??

    Depending on the plan it can go from probably a monthly charge to a flat fee license cost for the platform. Really need to do the research as there are lots of solutions.
    It might be able to work with a Muse site, but Muse is very specific in the type of HTML that can be injected into it, without breaking the site. Remember Muse mostly works one way. Design and then export. You would probably create it in Muse, but then add the platform in after the fact depending on the solution.
    Do you have a realistic budget that might allow for this to be added to the project from the client?

  • More About Client & User Creation

    Hi,
    Here i have Already Client '800' and the User 'Abap1'.
    Is it Possible to create New User with respect to the client 800 or Is there Any ristriction like one client should have ony one user??????????
    Please let me know
    Regards
    Khanna

    Hi Khanna,
    there is no such restriction.
    U could create more than 1 user
    Regards,
    Prateek

  • Error in Client Proxy creation

    Hi ,
    In SPROXY txn , When iam asked for prefix, I have given 'z' and have used Local object . Then i have saved and activated the proxy created. But when i open the proxy class created , I couldn't see the EXECUTE_ASYNCHRONOUS method  but there is something like "IF_PROXY_CLIENT~EXECUTE" and one more method wid the same name as that of my  Service Interface name.
    My doubts are :
    1.Whether my proxy got created successfully ?
    2.What do u mean by Orphaned objects ?
    3.Can i use a local object for creating proxy or should i declare it within a package that too in level4 only ??
    I am not getting a clear picture from the blogs and forums ..So pls share ur inputs on this
    Thanks,
    Laawanya

    Hi Laawanya,
    From PI 7.0 (I don`t remember which SP) EXECUTE_SYNCHRONOUS and EXECUTE_ASYNCHRONOUS are note available.
    Instead, the methos are called with the same name than the Message Interface.
    So, I think your proxy is created properly.
    You can create your proxy in a local object.
    Regards,
    Carlos

  • Client Proxy creation

    Hi,
    I am trying to consume a webservice available on the net,
    http://www.webservicex.net/globalweather.asmx
    I am creating it Via SE80 - Create service wizard.
    I give the URL of the WSDL, but when I click on complete , which ideally should generate the Proxy , ends with an error
    HTTP error (return code 404, message "Not Found")
    Message no. SPRX090
    I am hoping it is something very basic , I am missing. Please advise.
    Thanks,
    Vaibhav

    Hi Vaibhav,
    I suspect the proxy is blocking the URL.
    Could you try creating HTTP Desination to http://www.webservicex.net and configure the proxy under Global settings.
    sufix: /globalweather.asmx
    Please lemme know the status
    Nikhil

  • Client creation in PI 700 system

    Dear All,
    We have the system PI 700 installed for development and all the post actions are done from the client 001.
    Now I want to create a new client say 100 and want to use this client for all the configuration and development from now.
    My question is , weather it is possible to use new client from now or we have to stick to 001 only.
    And if we it is possible to work with new client from now please guide me what all the configuration settings I need to do in new client.
    Regards,
    Sekhar.

    Hi,
    If you want to change  the default client & make another client as  your development client means
    Check this  NOTE:::940309
    If you want create New Client means
    Creation of Users And Clients In SAP R/3
    While Creating the Clients:-
    1. Logon With Administrator User Accounts Like Client 001 User DDIC And Pwd .
    2. Go to Transaction code SCC4.
    3. Click on Change Button ( With Pencil Shape).
    4. Click on New Entries.
    5. Provide All Credentials And Click on SAVE Button.
    ( Keep Empty For the Logical System Name As per Now).
    6. Go to Transaction code RZ10.
    7. Select Instance Profile in the Profile Column(Press F4).
    8. Click on Change Button.
    9. There is one Parameter login/no_automatic_user_sapstar, Make sure that the value for that
    parameter is set to FALSE )its in 0 or 1) make it to 0.
    a) In Case if u r unable to find out the parameter, then click on Create.
    b) Give login/no_automatic_user_sapstar in parameter name.
    c) Give Value as 0.
    d) Then click on Copy.
    e) Go Back> Save>Save All the Windows what ever they popup.
    That means the default user SAP* wil be activated once you create a new client. You need a
    system restart after that.
    While Copying the Client:-Note --552711
    1. Logon with the Newly created client(Ex: 100 or 200) , User is SAP*, Pwd is PASS.
    2. Go to the Transaction code SCCL.
    3. Select the Suitable Profile as SAP_UCUS and the Target Client ( From which Client u want to
    Copy).
    4. Check the Check Box Test .
    5. You can select Start Immediately OR Schedule Background Process.
    While Creating the User:-
    1. Logon with the newly created client, User is SAP*, Pwd is PASS.
    2. Go to the Transaction Code SU01.
    3. Give the Name of the User Which u want to Create.
    4. Click on Create.
    5. Provide All the Credentials.
    6. Give Passward And Give Profiles in the Profiles TAB.
    How To Set a Particular Client As Your Default Client While in the Logon Screen
    1. Go for Transaction RZ10.
    2. Select Profile As DEFAULT.PFL and Extended Maintainence Radio Button
    3. Click on Change Button.
    4. Change the value from 001 to 100.
    Save and activate the profile and restart ur server.
    Regards
    Seshagiri

  • Using JarSettings to generate EJB client jar, but supported classes missed

    Appreciated for any comments in advance.
    I am using @jarSetting to generate EJB client jar file from workshop 9.2. The remote method of EJB has one input parameter that is defined as an interface. The interface is included in client jar, but the implementation of this interface is not.
    Please advise how I can add the implementation of this interface to client jar?
    Best Regards,
    James

    Hi James,
    I believe the algorithm for creating the client jar is to simply inspect the EJB interfaces using reflection and to include all user defined classes and exceptions that are referenced by the interfaces. In your case, it sounds like a class is not being included because it is not directly referenced by one of the EJB interfaces.
    I think the client jar creation algorithm can be described as "best effort" and unfortunately, it does not always end up including all classes needed by the client. I would recommend you add the additional classes manually using the jar tool.
    - Matt

  • Creation of R/3 source system

    hi
    i have problem with creation of R/3 source system in BI 7.0 like
    1.creation of logical system for R/3 client
    2.creation of logical system for BI client
    3.naming of background users
    4.creation of R/3 source system in BI.
    if any body have the solution pls post it.
    regards
    venkat

    Hi,
    Taka e look also these.
    Connection between Source Systems and BW
    http://help.sap.com/saphelp_nw70/helpdata/en/00/dc54384ac9a81be10000009b38f8cf/frameset.htm
    Creating SAP Source Systems
    http://help.sap.com/saphelp_nw70/helpdata/en/ac/4a4e38493e4774e10000009b38f889/frameset.htm
    BW connectivity(.doc)
    http://help.sap.com/bp_biv335/BI_EN/BBLibrary/documentation/B84_BB_ConfigGuide_EN_DE.doc
    Regards.

  • Restrict Automatic creation of Notification from an Order

    Hi,
    In one of my client, During creation of order a notification is created automatically in the background.
    Now they dont want to create notification in the background.
    How to stop this ?
    Thanks

    Hi
    SPRO-Plant Maintenance and Customer Service---Maintenance and Service ProcessingFunctions and Settings for Order Types--Define Notification and Order Integration
    please follow the path and uncheck the notification option for perticular order type .
    Shail

  • ABAP Proxy Client?

    Hi Experts,
    i've gone thru a ABAP Client Proxy scenario which is mention below.
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
    can anyone elaborate abt this scenario?
    i want to know proxy will be generated on XI or on the sender system. if we are creating proxy on XI then how XI message format i.e., (SOAP XML message) is generated and Message interface which is created for Sender will b mapped?
    Cheers
    Faisal

    Hi Faisal,
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
    Proxy is created on application system .in this example they have taken two clients of XI system. client 100 is configured as XI integration server and client 105 is configuired as sap application system.client 105 is working as Sender system.Actually we can have only one XI integration server on any NW system but we can have various application systems.
    For client proxy creation , we first create outbound mesage interfaces in IR and then we go to SPROXY transaction and chose our outbound message interface and create proxy from that interface.
    u create a abap report and send message from there.
    use these links:
    ABAP Proxy Generation
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/f21a403233dd5fe10000000a155106/content.htm
    ABAP Proxy Generation
    http://help.sap.com/saphelp_nw04/helpdata/en/14/555f3c482a7331e10000000a114084/content.htm
    Proxy Generation
    http://help.sap.com/saphelp_nw04/helpdata/en/86/58cd3b11571962e10000000a11402f/content.htm
    ABAP Proxy Runtime
    http://help.sap.com/saphelp_nw04/helpdata/en/02/265c3cf311070ae10000000a114084/content.htm
    To activate ABAP proxies
    /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
    Detailed step-by-step solution for ABAP proxies in XI
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
    ABAP Server proxies
    /people/siva.maranani/blog/2005/04/03/abap-server-proxies
    Debugging of Inbound ABAP proxies
    /people/stefan.grube/blog/2006/07/28/xi-debug-your-inbound-abap-proxy-implementation
    File to R/3 via ABAP Proxy
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy
    Cheers
    Rohit
    please reward points if found useful....it would be appreciable...:)
    Edited by: Rohit Goel on Jan 30, 2008 7:45 AM

  • Web Service - Client Proxy generation error

    Hi All,
    I tried creating a client proxy using an URL provided to me and followed the steps using the wizard. I end up in getting the following error messages. Could anyone throw some light on resolving this? I do not have any idea about what WSDL is. Any help is highly appreciated. Not able to attach the WSDL code here.
    Below is the error message upon client proxy creation:
    Proxy-Generierung: Fehler aufgetreten
    Exception occurred in library handler
    Not implemented
    Thanks
    Srini
    Edited by: Srinivasan Karunakaran on Oct 22, 2010 11:11 PM

    Resolved through SAP Help. Refer SAP note# 0001403271.

  • Automating Folder Creation

    Here's what I want to do. I'm trying to automate client folder creation. I have a directory called clients. Every time I create a new folder in the clients folder, I'd like for it to automatically ask me what I'd like to name the folder, then I would like it to create 6 directories inside the created folder titled "legal" "spec files" "correspondence" "modules""graphic design" and "archived materials".
    How would I go about that with automator?

    A couple of options. The first uses automator and a shell script, but you would run the workflow which asks for a folder name instead of you creating it first, as you requested. The second uses Folder Actions so that when you create a new folder in your clients folder it will ask for a name and create the folders.
    Automator Method:
    1) From Files and Folders, drag over a "New Folder" action.
    2) Enter a default name for the folder in the Name: field (or leave blank)
    3) Select your Clients folder in the Where: field
    4) Click the "Options" button and tell it to "show this action when the workflow runs"
    5) From the Utilities, drag over a "Do shell script" action
    6) Select the /bin/bash shell
    7) in the Pass input field select "As arguments"
    8) Enter this code mkdir -p $1/legal/ $1/spec files/ $1/correspondence/ $1/modules/ $1/graphic design/ $1/archived materials/
    Save this workflow and run it when you want to create the new folder. If you have quick keys, launch bar, Quicksilver, or the like, you could set up a shortcut...or, you can use cmd-space to call up spotlight and search for you workflow name and launch it from spotlight.
    For the Applescript option:
    I had some glitches with it in that it seemed to re-run the script after I changed the name. I couldn't figure out if the name change drove the script to run again. Also, after creating the new folder, you have to wait a few seconds for it to trigger. Kind of annoying, I thought.
    First, copy this script to a new Script Editor script (Applescript folder).
    property dialog_timeout : 30 -- set the amount of time before dialogs auto-answer.
    on adding folder items to this_folder after receiving added_items
    try
    tell application "Finder"
    set theFolder to item 1 of added_items
    set response to display dialog "Please enter a folder name:" default answer "New Client"
    if button returned of response is not "Cancel" then
    set the name of folder theFolder to (text returned of response)
    make new folder at folder theFolder with properties {name:"legal"}
    make new folder at folder theFolder with properties {name:"spec files"}
    make new folder at folder theFolder with properties {name:"correspondence"}
    make new folder at folder theFolder with properties {name:"modules"}
    make new folder at folder theFolder with properties {name:"graphic design"}
    make new folder at folder theFolder with properties {name:"archived materials"}
    end if
    end tell
    on error theErr
    display dialog theErr
    end try
    end adding folder items to
    Save it as a script in your user/Library/Scripts/Folder Action Scripts/ folder. Run the Folder Actions Setup script in the Applescript folder and attach this script to your "Clients" folder:
    1) Click on the Enable Actions checkbox
    2) Click the "+" button in the left pane and find your clients folder
    3) Click the "+" button in the right pane and find your script you just saved.

Maybe you are looking for

  • Problem with items value

    Hi All, I created 2 popup lov items exactly the same: P91_SUBJ_TYPE and P91_SHG_KOD. I thought that they both has the same defult value (befoer selection value from the LOV) :NULL. (although i haven't define any defult value). now under Page Processi

  • Filename from complete file path

    Hi,    can anybody let me know the method to get the filename from the complete filepath( this path includes both directory as well as filename) regards. venkat.

  • Integration Process not fired!

    Hey all, I have a scenario of using BPM from a file sender and inbound into R/3. I set up the Integration Process and imported into the directory. But when I run a sample message, XI never picks up the integration process and spits out an error that

  • Play TV on a Home theather in a box kit

    I am going to purchase a home theatre setup , the one that has speakers and DVD / FM Tuner as a package deal.    Can these type of setups also play the audio directly from the TV as in just normal TV shows ?  sports...etc...etc...etc Thanks in advanc

  • Using Ipod on more than one computer

    I have just purchased a new ipod after my old one broke down and when I hooked it up to my computer i got a message saying that this is the 5th computer my ipod is registered to... Being a new ipod i would think I should start again with this process