Using iSetup to create new operating within an existing application

Hi
We have a requirement to replicate multiple operating units and related config within Finance, Procurement, Inventory and EAMS ... so we have previously configured the operating units again in each new environment - crp, dev, sit, uat, prod -
There are multiple selection sets available which include operating unit setup (we are on 12.0.5) including Financials Operating Unit Level Setup, Financials Setup and Organisation structure.
There seems to be overlap the ... Which is the best to initially migrate the OU
Is there a document or metalink note which covers the dependency for various migration requirements?
In our case we are migrating within the Business group, legal entity and set of books so would expect we could load it via selection sets with little intervention.
thanks for your assistance, the forum is excellent.
Regards

This is Mugunthan, Development manager for iSetup.
Yes, you are right. Operating Unit is available in multiple selection sets. The idea is that it is grouped wherever it makes sense so that you need not switch over to other selection set to load the data.
For example, you cannot load most of the financial, hrms and manufacturing related data without loading operating unit. So, we have added the same API under multiple theme. But essentially it is the same API which is getting reused everywhere.
Coming to hierarchy document, it is available. You can send a mail to [email protected] I will send you the doc. I will publish it to metalink as well soon.

Similar Messages

  • How to Use iSetup to create new environment in copy of clean master.

    Hi,
    I want to use iSetup to create a complete new environment. No manual setup has been done yet in the copy of the master (no Business Group, No OU, no Chart of Acc: nothing). Source environment is being setup rightnow by functional consultants
    Can one please provide me with a manual or guideline how to start this challenging job. Maybe a best practise can be used ?
    In the end we want to setup an environment based on a clean master.
    ( practical data: eBS 12.1.2 on linux )
    Thanks in advance
    Guido

    Hi Guido,
    You can get in touch with [email protected] who is the product manager for iSetup. He would able to assist you to go forward in the right direction.

  • How do you create new groups within Contacts on the iPad?

    Can you create new groups within Contacts directly from the iPad, iPhone,or do you have to do it on the computer first?

    The easiest way is to get the app called group e mail.  There are a couple of others as well.  There is a way to do it on your computer, and sync it, but I find that personally frustrating.  :).  Save yourself the aggrevation, and get the app, that works pretty well.

  • Use LSMW to create new MMR.

    Hi All,
    When using LSMW to create new MMR, for example material 202851 was created. However, when using MM03 to display this material, it says"The material 202851 does not exist or is not activated"
    What does this mean?
    Thanks.
    Jason

    I am doing migration project for more than 11 years. I load all kind of material masters with its individual depth in one go.
    But I usually use IDOC method instead of the batch input.
    Because most of my projects are migration projects from SAP to SAP. But it works either way, anyway.
    Please tell in detail where your problems are, You say you loaded it, but SAP says you did not.  You have to trust SAP.
    It does not find your data. It is just a program that tells you it does not find your values, so there are no emotions in the game.
    In most cases the error is already in the source file.
    But you have to know has well how the source file has to look to make your migration succesfull.
    Search the forum, There have been many links to well documented LSMW documentation that show how the source file looks and what you need to do in batch input, to make it work.
    By the way, SAP has issued a very good book on LSMW. Even it costs a lot bucks, it is worth. As well the SAP documentation at service.sap.com/lsmw is worth to be read.

  • Could i use 'HR_MAINTAIN_MASTERDATA' to create new employee ?

    Dears
    it seems using PA40 to create new employee.
    i just want to create simple person with infotype 0000, but when i using 'HR_MAINTAIN_MASTERDATA' it will automitically jump into new screen of new infotype such as 0001 without push saving button the same as i use PA40.
    How could i control the screen sequence ?

    Hi,
    You cannot create  Employees using this FM HR_MAINTAIN_MASTERDATA. This FM can be used to maintain infotypes AFTER an employee/applicant has been created in SAP(pa40).
    i think there are no FMs to create Employees. There are FM's to create,update,delete,delimit etc other infotypes but IT0000(actions) Need to be performed either using PA40 or thru other mass data entry precedures like LSMW etc. where Recording of a transaction is performed.
    and coming to the jumping of screens u mentioned, it is initiated by Infogroups, where the sequence of infotypes to be maintained while performing an action are defined.
    you can remove the infotypes you dont want to maintain by identifying the infogroup and deleting it from there.
    also for this FM 'HR_MAINTAIN_MASTERDATA' the important import parameter itself is PERNR? how are u using this FM to create an employee?
    any special reason why u wanna use a Function module to create an employee?
    Message was edited by:
            Hruser

  • How to create new or delete the existing row in the grid....

    hi my friends...
    i am developing report using Reuse_alv_grid_display...
    my requirement is... At runtime
              1.  i may create new row on the grid (empty row inwhich  i may enter the data).
              2.  i may delete a existing row in the grid
              3.  i may edit the existing data...
    then i have to trace the modification in the grid in one internal table...
    how can i get into this.....
    note:
    i have some idea to edit the existing record in the grid and trace those modification,
    but i don't know abt how to create new or delete the existing row....
    can you give me some idea...

    Hi deva,
    write a class which implemets these methods
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
    To handle the toolbar on alv
         handle_toolbar
           FOR EVENT toolbar OF cl_gui_alv_grid
              IMPORTING e_object e_interactive,
    To handle the buttons on the alv grid
         handle_user_command
           FOR EVENT user_command OF cl_gui_alv_grid
           IMPORTING e_ucomm.
    endclass.
    Now Implement these methods.
    CLASS lcl_event_receiver IMPLEMENTATION.
    To handle the toolbar on alv
      METHOD handle_toolbar.
       DATA ls_toolbar  TYPE stb_button.
        CLEAR gs_toolbar.
        MOVE 3 TO gs_toolbar-butn_type.
        APPEND gs_toolbar TO e_object->mt_toolbar.
        CLEAR gs_toolbar.
        PERFORM icon_create USING 'ICON_INSERT_ROW' gs_toolbar-icon.
        MOVE text-010 TO gs_toolbar-function.
        MOVE text-012 TO gs_toolbar-quickinfo.
        MOVE ' ' TO gs_toolbar-disabled.
        APPEND gs_toolbar TO e_object->mt_toolbar.
        CLEAR gs_toolbar.
        PERFORM icon_create USING 'ICON_DELETE_ROW' gs_toolbar-icon.
        MOVE text-011 TO gs_toolbar-function.
        MOVE text-013 TO gs_toolbar-quickinfo.
        MOVE ' ' TO gs_toolbar-disabled.
        APPEND gs_toolbar TO e_object->mt_toolbar.
      ENDMETHOD.
       METHOD handle_user_command.
    In this form, check the function code(e_ucomm has the function code), based on that do the required action.
    as i said yesterday(i.e for appending a row, deleting a row, modifying a row)
        PERFORM user_command USING e_ucomm.
      ENDMETHOD
    endclass.
    Before calling the alv method, create a object of this class.
    DATA :
          gref_event_receiver  TYPE REF TO lcl_event_receiver,
          gv_tables_alv          TYPE REF TO cl_gui_alv_grid.
          CREATE OBJECT gref_event_receiver.
          SET HANDLER   gref_event_receiver->handle_user_command
                        FOR gv_tables_alv.
          SET HANDLER   gref_event_receiver->handle_toolbar
                        FOR gv_tables_alv.
    check this program for event handling, it is the similar way
    demo_abap_objects_events
    Hope u understood this.
    Regards,
    Prasant
    reward if helpful

  • Can we create new customer site for existing customers using custm interfc

    Hi ,
    I have a requirement :
    version -- R12 .
    We need to add new customer site for existing customers , is it possible to create it through customer interface with insert_update_flag set as U / I .
    Any help in this is grate .
    regards ,
    Azzu .

    I am pretty sure I've done this on one of my past project..
    why don't you try it out?
    Another route would be use customer APIs (TCA APIs)...which I am sure can achieve what you're looking for.
    Edited by: James Kim on Mar 17, 2010 2:48 PM

  • Use USERID from DB and increment it using position() to create new USERID's?

    I'm trying to do the following in XSQL:
    <?xml version="1.0"?>
    <database connection="test" xmlns:xsql="urn:oracle-xsql">
    <xsql:include-request-params/>
    <xsql:query id-attribute="" tag-case="lower" rowset-element="maxuserid" row-element="idnum">
    SELECT MAX(USER_ID) AS "USERID"
    FROM LKUP_USER
    </xsql:query>
    <xsql:insert-request table="LKUP_USER" transform="/dvd/xsl/admin/createusertransform.xsl"/>
    </database>and XSL:
    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:template match="/">
    <ROWSET>
    <xsl:choose>
    <xsl:when test="/request/parameters[not(row)]">
    <xsl:for-each select="/request/parameters">
    <xsl:call-template name="generate-rows"/>
    </xsl:for-each>
    </xsl:when>
    <xsl:otherwise>
    <xsl:for-each select="/request/parameters/row">
    <xsl:call-template name="generate-rows"/>
    </xsl:for-each>
    </xsl:otherwise>
    </xsl:choose>
    </ROWSET>
    </xsl:template>
    <xsl:template name="generate-rows">
    <ROW>
    <FIRSTNAME><xsl:value-of select="firstname"/></FIRSTNAME>
    <LASTNAME><xsl:value-of select="lastname"/></LASTNAME>
    <PASSWORD><xsl:value-of select="password"/></PASSWORD>
    <EMAIL><xsl:value-of select="user-email"/></EMAIL>
    <ACCESSLEVEL><xsl:value-of select="accesslvl"/></ACCESSLEVEL>
    <USER_ID><xsl:value-of select="/maxuserid/idnum/userid + position()"/></USER_ID>
    </ROW>
    </xsl:template>
    </xsl:stylesheet>which returns the following:
    <?xml version="1.0" ?>
    - <!-- <?xml-stylesheet type="text/xsl" href="/dvd/xsl/admin/createeditdeleteuserconfirm.xsl"?>
    -->
    - <database>
    - <request>
    - <parameters>
    <password>test</password>
    <lastname>test</lastname>
    <firstname>test</firstname>
    <accesslvl>5</accesslvl>
    <user-email>test</user-email>
    </parameters>
    - <session>
    <access>1</access>
    <emailparam>[email protected]</emailparam>
    <adminfirstname>Malik</adminfirstname>
    <adminlastname>Graves-Pryor</adminlastname>
    </session>
    - <cookies>
    <JServSessionIdroot>57ta3u4mns</JServSessionIdroot>
    </cookies>
    </request>
    - <maxuserid>
    - <idnum>
    <userid>17</userid>
    </idnum>
    </maxuserid>
    - <xsql-error action="xsql:insert-request">
    <message>'java.sql.SQLException: ORA-01722: invalid number ' encountered during processing ROW element 1. All prior XML row changes were rolled back. in the XML document.</message>
    </xsql-error>
    </database>You can see what I'm trying to do, but I can't figure out exactly how to implement it. I want to avoid the problem of conflicting USER_ID values in the Oracle DB, so I figured, pull out the max USER_ID before submission and use that when 'row-ifying' the data to create new USER_ID which are incremented based on the position() function.
    Help? Is this even possible?
    p.s.: I realize that I might not be able to do this because the query is not a "request". Is there another way of accomplishing this task?
    p.p.s.: I don't have my XSLT book yet..
    Malik Graves-Pryor

    My book, Building Oracle XML Applications, has lots of XSLT material and examples :-)
    You should use:
    <xsql:set-stylesheet-param>
    to accomplish this. Remember again that the XML that the <xsql:insert-request> sees is not the XML of your data page, but the POSTED XML. The posted XML document will not have the maxid value in it. So, instead just use a top-level stylesheet parameter in your stylesheet:
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <!-- Top level stylesheet parameter -->
    <xsl:param name="maxid"/>
    <xsl:template match="/">
    Rest of template here.
    Refer to value of maxid in any XPath expression
    in the stylesheet with $maxid
    </xsl:stylesheet>then in your XSQL page, you use <xsql:set-stylesheet-param> instead of <xsql:query> like this:
    <xsql:set-stylesheet-param name="maxid">
    select max(user_id) from lkup_user
    </xsl:set-stylesheet-param>However -- and this is not an XSQL issue, but a general database thing -- you need to be careful about concurrency issues using the SELECT MAX() trick. If two requests come in simultaneously, they will both SELECT MAX() and get the same current maximum number, then both try to insert a new user. One will (presumably) violate your primary key constraint.
    It's better to use database SEQUENCES instead, so the numbers are guaranteed to be unique. To use a sequence you would just change your SQL statement above to be:
    SELECT yoursequencename.NEXTVAL FROM DUAL
    instead of the SELECT MAX() query.

  • Create new Categories within Library

    I'd like to create new categories withing my Library, (not playlist)
    Example:
    There are already categories (Probably not correct term) within my Library (Music, Movies, Podcast, Ipod Games, Radio) I'd like to know how to add/delete these categories.
    I want to do this so I can create separate sections for Lectures, and Audio books I download, and want separate from my music. (Especially annoying when viewing by album art) I've searched around, but have only found information on creating Separate librarys.
    Thanks in advanced,
    Brett

    I just have one last question then, I just recently purchased a Game for my Ipod, and it created an Ipod Games category within my Library, I was wondering if there was a way to write a script to create a new category in the same way Itunes created "Ipod Games". Although even if that were possibly I don't know how I would upload the files since they would go directly to my Music folder.
    Any Ideas?
    I'm thinking (If I can create another category with a script as described above) I could create a new itunes Library, upload the files I want, then copy it into the directory of the new category within my previous library(bit long winded sentence) that way Itunes would create the necessary XML files, and what not.
    Sorry if that didn't make any sense, I have some programming experience on PC, but I'm new to Mac, and its applications, although I am loving OS X and thinking about a Apple desktop replacement.
    Thanks in advanced.
    Brett,
    Macbook (non-pro) Mac OS X (10.4.8)
    Message was edited by: Buchea

  • KEA0 what is the best way to create new Operating concern

    Hello :
    Please advise
    1. what is best way to create new OP concern
        copy from template or create data structure from scratch?
    2. I try to copy from OP concern = IDEA but when click change DATA STRUTURE -I see only CE1xxx but I not see CE2xxxx, CE3xxxx, CE4xxxx ...
       pls advise - how to? can I change data structure on CE2, CE3....
    Thx in advance.
    Manthana

    If your data structure will be the same then do a copy. if the data structures are different then create from scratch ( or modify after copy).  Copy saves time so you don't have to start from scratch.

  • Creating a LAN within an existing LAN using a spare router?

    My other option is to use my phone as personal hotspot and use it's internet. Would that work?

    Hello,I would like to set up a personal lab environment within an existing LAN that has router(s), switches, server, etc(basically the whole deal). That LAN operates on one IP subnet 192.168.100.0/24(I'm not sure, but I think DHCP for that subnet is running on the router which is the default gateway to the Internet.)
    I have a spare router here. May I plug that router into the switch under my desk that connects to the 192.168.100.0/24 LAN and configure my spare router like so that it has its own LAN behind it such as 192.168.99.0/24 or 10.1.10.0/whatever, have that router think that the 192.168.100.0/24 subnet is actually the Internet access, and have a DHCP server running on my spare router that specifically servers my subnet only, not the outside 192.168.100.0/24 network. Then I will set up my own domain controller(s), file servers,...
    This topic first appeared in the Spiceworks Community

  • SharePoint 2010 - Create new site collection in existing web application with different existing content DB

    I have a SharePoint 2010 root level site collection SC1 in web application WEBAPP1. I want to create copy of that site collection in same web application WEBAPP1. Apart from Import/Export, Restore/Backup options, will following approach work? If yes , how?
    I took backup of content database of web application.
    Restored database with different name
    Mounted Content database to this WEBAPP1 by assigning new ID to DB
    Created new site collection by using this newly mounted DB
    Site collection gets created successfully but content does not appear.
    Please guide if i can achieve desired functionality by using this approach.
    If this helped you resolve your issue, please mark it Answered

    It is because the Site GUID is identical, and each GUID can only be present on the farm once. You can use Backup-SPSite/Restore-SPSite (which is full-fidelity, unlike Export-SPWeb/Import-SPWeb), which will generate a new GUID for the restore Site Collection,
    even in the same Web App.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Effect of creating new Jobs & grades in Existing HRMS system

    Dear Experts...
    We are already live with more than 3000 empoyees with modules like payroll, OLM and PMS.
    Now all of sudden our users want to create new job for interns and create new grades for them.
    All these will be added to the existing jobs and grades...
    Will this have effect? what is impact on Payroll.. ??
    I can simply create them using Job KFF ... but something fails.. Oracle will say .. you did not follow standards....
    Any help pls ??

    Hi Rahul,
    This is a perfectly normal request from any HR user and common requirement in any HRMS system.
    You can add as many grades and jobs to your Oracle HRMS/HCM system anytime without jeopardizing your existing data as long as you're entering them from the standard screens or loading through public APIs.
    I'm not from "Oracle" but I can say that in doing so you'll be following "the standards" and Oracle will provide support in case of issues.
    As for impact on Payroll, once you've associated these new grades and jobs to your employees and if there are benefits/deductions linked to them, then yes, your payroll would be impacted. Whether it will correctly reflect on your Payroll depends on your configuration (elements, links, fast-formula, etc...).
    Anyway, you'll have to carefully do dummy runs and check the cases on a 'Test' instance before deploying onto Production Environment.
    HTH.
    Regards,
    Rajen

  • Creating New plant by copying Existing

    Dear All,
    I have to create a new plant by copying existing one, I want all the configuration that exists for existing plant in new plant.
    My query is by copying plant only all the configuration for new plant will get configured. Such as account determination etc or i have to configure it manually.
    Thanks
    Nitesh

    Hi
    no for account determination
    we have to put  valuvation gruoping code 0001 or any other which you want to use  manually
    in T-code OMWD
    for copying plant we van copy storage location ,assigement to companycode and oms2 setting also get automatically copy
    Regards
    Kailas

  • Trying to log in but it says my email is invalid but when I go to create new it says email exists

    I keep trying to log in but it says my email and password is invalid, when trying to retrieve password it says email is wrong, try to create new acct it says email already exists. Im trying to print pictures and I'm getting so frustrated, I don't see an option for black and white, or any other options for that matter other than basic. I have the HP Photosmart Series 5515 but I thin my basic Cannon was better, had more options, confused.

    Hi,
    May you used Snapfish to create your account?
    From the ePrint Center logon screes, click the Snapfish icon ().
    Try logging in using the selected passowrd.
    If the logon fails, try retrieving the password from the Snapfish logon and and check for any change.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

Maybe you are looking for

  • Sony Vaio FZ Series - LCD brightness

    Hi All, I have recently bought a Sony VAIO FZ11S and I've successfully installed Archlinux: Fully working: - CPU Scaling (using cpudyn) - Multimedia keys (mute, volume up/down, play/stop, etc. using Xmodmap) - Wireless (using iwl3945. Can't connect w

  • I can't open adobe reader, even after re-installing.

    Everytime I try to open a pdf, i receive an error message saying 'Windows can not find 'C:XXXXXXX.pdf'. Make sure that you typed the name correctly, and then try again'. Running Windows 7 Professional. Tried to install both v11 and v10 Adobe Reader -

  • SEM 4.0 Hierarchy Variable Text Display

    When using a variable of type hierarchy in BPS web interface with new design, text for nodes & characteristics fail to display. Same config works fine with old design. There is a note on a similar issue, however it only applied to 3.5 and lower. Anyo

  • Map itunes album cover cache folder

    i have a small SSD hard drive as my main drive and my music is on another hard drive is there a way i can map it on the other drive?  because it is filling up my ssd drive.  maybe a registry redirect or something?? i try to go in to itunes\Edit\Prefe

  • Script is not executed - Standard-TimeOut

    Hello, I have a problem with a script, that is debugged without mistakes, but is not executed anyway. The Script consists of the movie with a keyframe  that creates a new Instance for an Object that again creates a series of new Instances for another