1 eBS source - 2 Planning targets - how to split data?

hi
I am using FDM ERPI to load eBS data to Hyperion Planning (eBS 11.5 and EPM 11.1.2.1).
I have to load data into 2 Planning databases (which are in the same Planning application), so 2 target adapters and two locations.
The two locations have the same source and the same mapping.
But some accounts have to go to app1, whereas the others have to go to app2.
But no information in gl about the target app.
How could I do?
Use the EPMA table or source file to see in which plan type each account is used?
And when should I exclude the accounts : in the import action? in the exportToDat?
Thanks in advance for your halp, hoping it is clear...
Fanny

Hi
Thanks to all of you for your answers.
Finally, I have chosen to use the BefExportDat script : I create a temporary table in which I load the list of accounts I want to keep for the location. Then I delete from the TDATASEGxx table the rows related to the accounts I don't want to keep.
There are lots of accounts and no easy way to identify those to load and the others.
So using the mapping rules would create lots of rules, so something not very user friendly, even if I import the rules.
But I wanted to use the drill-through from both application :-(
Fanny

Similar Messages

  • Is it possible to have duplicate columns from source List to target List while copying data items by Site Content and Structure Tool in SharePoint 2010

    Hi everyone,
    Recently ,I have one publishing site template that has a lot of sub sites which  contain a large amount of  content. 
    On root publishing site, I have created custom list including many custom fields 
    and saved it as  template  in order that 
    any sub sites will be able to reuse it later on .  My scenario describe as follows.
    I need to apply Site Content and Structure Tool to copy   a lot of items
     from  one list to another. Both lists were created from same template
    I  use Site Content and Structure Tool to copy data from source list 
    to target list  as figure below.
    Once copied  ,  all items are completed.
     But many columns in target list have been duplicated from source list such as  PublishDate ,NumOrder, Detail  as  
    figure below  .
    What is the huge impact from this duplication?
    User  can input data into this list successfully  
    but several values of some columns like  “Link column” 
    won't  display on “AllItems.aspx” page 
    .  despite that they show on edit item form page and view item form page.
    In addition ,user  can input data into this list  as above but 
    any newly added item  won't appear on 
    on “AllItems.aspx” page
    at all  despite that actually, these 
    item are existing on  database(I try querying by power shell).
    Please recommend how to resolve this column duplication problem.

    Hi,
    According to your description, my understanding is that it displayed many repeated columns after you copy items from one list to another list in Site Content and Structure Tool.
    I have tested in my environment and it worked fine. I created a listA and created several columns in it. Then I saved it as template and created a listB from this template. Then I copied items from listA to listB in Site Content and Structure Tool and it
    worked fine.
    Please create a new list and save it as template. Then create a list from this template and test whether this issue occurs.
    Please operate in other site collections and test whether this issue occurs.
    As a workaround, you could copy items from one list to another list by coding using SharePoint Object Model.
    More information about SharePoint Object Model:
    http://msdn.microsoft.com/en-us/library/ms473633.ASPX
    A demo about copying list items using SharePoint Object Model:
    http://www.c-sharpcorner.com/UploadFile/40e97e/sharepoint-copy-list-items-in-a-generic-way/
    Best Regards,
    Dean Wang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to SPLIT data from Uploaded :AZT file at ";"

    Dear All Experts,
    I need to upload an :AZT file and then SPLIT the data of .AZT fiel at ";" into various fields into an internal table "itab" and then I need to save/update these data of internal table "itab" to database table "ZLT_AZT" . But I am facing some problems in the output. So please follow the following to understand my problem and please suggest me as how to SPLIT the data correctly at each ";".
    1) The code that I wrote in se38.
    2) The attachement; Projekt ABAP AZT file upload doubt5.jpg;  the screen shot of the output that i am getting in internal table "itab" during debugging after my code is executed in se38
    PROBLEM: I am unable to SPLIT the data at ";".
    3) The attachement; Projekt ABAP AZT fiel upload doubt4.jpg: the screen shot of the data populated in database table "ZLT_AZT" in se11.
    PROBLEM:              i) I am not able to see all the columns. I am only able to see the 8 if  9 columns. I did go to Sellting--> Format List-->Choose Fields and                                                 selected all the fields but it didn't worked. Also I went to Settings-->User Parameters-->Databrowser and here  I tried to  change the width of                                          output list but still it didn't work.
    1) So the  code in se38 is:
    DATA  itab  TYPE STANDARD TABLE OF zlt_azt.
    DATA  wa_tab TYPE zlt_azt.
    DATA: file_str1 type string.
    Parameters: p_file1 type localfile.
    At selection-screen on value-request for p_file1.
                                           CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
                                            EXPORTING
                                               STATIC              = 'X'
                                             CHANGING
                                               file_name           = p_file1.
    Start-of-Selection.
      file_str1 = P_file1.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = file_str1
      tables
        data_tab                      = itab
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT itab  INTO wa_tab.
        SPLIT wa_tab AT ';' INTO  wa_tab-M2   wa_tab-k2   wa_tab-A2   wa_tab-P2  wa_tab-S2   wa_tab- D1  wa_tab-STD  wa_tab-BES.
      Write: sy-uline(120),
              / sy-vline,
                2 wa_tab-M2,
               11 sy-vline,
               13 wa_tab-k2,
               25 sy-vline,
               27 wa_tab-A2,
               32 sy-vline,
               34 wa_tab-P2,
               39 sy-vline,
               41 wa_tab-S2,
               46 sy-vline,
               48 wa_tab-D1,
               60 sy-vline,
               62 wa_tab-STD,
               72 sy-vline,
               74 wa_tab-BES,
              120 sy-vline.
    ENDLOOP.
    MODIFY zlt_azt FROM TABLE itab.
    Looking forward to your valuable feedback to my new problems.
    Best regards
    Chandan Kumar

    Hi Chandan,
    I am sorry for typing wrong at a place - Now try the corrected one
    data  it_string   type stringtab.
    data lv_string    type string.
    DATA  itab  TYPE STANDARD TABLE OF zlt_azt.
    DATA  wa_tab TYPE zlt_azt.
    DATA: file_str1 type string.
    Parameters: p_file1 type localfile.
    At selection-screen on value-request for p_file1.
                                           CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
                                            EXPORTING
                                               STATIC              = 'X'
                                             CHANGING
                                               file_name           = p_file1.
    Start-of-Selection.
      file_str1 = P_file1.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = file_str1
      tables
        data_tab                      = it_string
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT it_string  INTO lv_string.   " <<<<< previously I wrote loop at itab>>>
    clear wa_tab.
    SPLIT lv_string AT ';' INTO  wa_tab-M2   wa_tab-k2   wa_tab-A2   wa_tab-P2  wa_tab-S2   wa_tab- D1  wa_tab-STD  wa_tab-BES.
    append wa_tab to itab.
      Write: sy-uline(120),
              / sy-vline,
                2 wa_tab-M2,
               11 sy-vline,
               13 wa_tab-k2,
               25 sy-vline,
               27 wa_tab-A2,
               32 sy-vline,
               34 wa_tab-P2,
               39 sy-vline,
               41 wa_tab-S2,
               46 sy-vline,
               48 wa_tab-D1,
               60 sy-vline,
               62 wa_tab-STD,
               72 sy-vline,
               74 wa_tab-BES,
              120 sy-vline.
    ENDLOOP.
    MODIFY zlt_azt FROM TABLE itab.
    Regards,
    Rachna

  • How to split data into tables based on the entries in a column?

    My problem is very similar to this thread: how to link data from one numbers sheet to another sheet, however I could get it to work the way described there. I have one big table for entering data (the first one). I would like to have a few other tables populated automatically based on the entries in one of the columns of the first table. In my example below I put everything in one sheet for clarity. The selection to the other tables is to be done on the column "fruit" in the first table. (second one is "oranges", then "apples" and then "pears" -- had to cut the width of my screenshot due to the limitations of Apple's forums).
    Here is what it would look like, just cannot figure out how to make it happen automatically.
    Tried also importing similar Excel example to Numbers, but the import did not work correctly.
    Any help will be appreciated.
    LD

    Larry,
    Here's an approach that I've used...
    In the Purchases table, Aux column, the expression is:
    =COUNTIF($A$1:A2, A) & "-"&A
    Fill Down
    This expression builds a string that identifies the item and the ocurrance of that item.
    The Date column of the Summary tables, cell a3, contains:
    =IF(ROW()-3<COUNTIF(Purchases :: $A,$A$1), LOOKUP(ROW()-2&"-"&$A$1, Purchases :: $F, Purchases :: B), "")
    Fill Across, then fill down.
    Regards,
    Jerry

  • How can split data into multiple sheets using an excel template

    Hi all,
    I'm using BIP 10.1.3.4.1 upgrated with the latest rollup patch, 9546699.
    I followed the example inside the article "Real Excel Templates 1.5" (on the Tim Dexter's blog)
    http://blogs.oracle.com/xmlpublisher/2010/05/real_excel_templates_i.html
    and I built my report directly from an excel template containing only one sheet (plus the XDO_METADATA sheet), and for one sheet it worked fine !!!
    Now I need to add more sheets to the template.... and I have two big questions:
    1. if I need to create a second sheet which contains almost the same data (with a different layout), I saw that it is not possible to map a value to more than 1 cell....so if I map a value in the first sheet, I can't map it in the second sheet (because it's already used in the first one).
    How can I map same values into two or different execll
    2. if I need to create a second sheet which contains another dataset (completely different from the dataset in the first sheet), I can I do, considering that every BIP report is based on ONLY a data source.
    Tim wrote: The most impressive, for me at least, is the sheet 'bursting'. You can split your hierarchical data across multiple sheets and dynamically name those sheets
    but I didn't yet understand how this bursting it's possible.....considering what I said above.....
    Surely I've a lack of knowledge.....but anybody can help me to understanding the "multiple excel sheets" black hole ?
    I'll appreciate any kind of help
    Thanks in advance
    Alex

    You can find working solution here http://xlspe.com

  • How to split data from PSA !!

    Experts !
    I  have a data in PSA, its a big table. now my requirement is from PSA's first column ( usually in transformation we assign one column to one infoobject ) say for ex. in my first coumn of PSA i have data like this..."123 XYZ"
    now, i have to assign 123 to one info object and XYX to another.
    so, i guess my first part is working bcoz when it writes from PSA to targe field ( length is 3) so it only stores first 3 digits.
    but how do i get last 3 char. to another target field ?
    i guess its kind of combersome..let me explain differently....
    In transformation, i want to do something like this ....
    PSA's First Column -
    >   "123 xyz" -
    > (Target Field) <----
         Insert "123" Here
    ( Target Field ) XYZ  <----
       Insert "XYZ" Here
    Thnax

    ok great...
    can you help me out with the rule ?
    i have never writtne done ABAP b4.
    if its easy wot write u can do sudo coding, i will really appreciated.
    I have tried using formula, but looks like its not working
    thanx

  • How to split data using delimiters

    HI, is there a way or a function that will split/separate data based on the delimiters? example: if i have a variable x = 5.4 , I want to separate them using the period(.) . So that i can separate 5 from 4. Thanks.

    MScallion I'm like your SQL but i'm don't know how it does.
    Pls, you explain your select statement.
    1. regexp_replace
    I'm run select statement in sql*plus ( Oracle9i Enterprise Edition Release 9.2.0.2.1 )
    ORA-00904: "REGEXP_REPLACE": invalid identifier
    2. Why you used ^ , $ and ^ is .... ? $ is ..... ?
    Thank you

  • How to split data from month to week 4/4/5?

    Hello,
    Is there any R/3 function based on 4/4/5 calendar that determines the number of weeks of the month?
    At the end, I'd like to split monthly data into weekly basis.
    Thanks

    Hi Eric,
    I don't have a system handy to check but there are two function for FIRST_DAY_OF_PERIOD and LAST_DAY_OF_PERIOD. Get those days and simply do ( DAYLAST - DAYFIRST ) / 7.
    Regards,
    Marc
    SAP NetWeaver RIG

  • How to split dates on month wise...

    i need output like this.
    if i select fromdate as 15-SEP-10 and Todate as 25-NOV-10 in where condition then
    output should be like this.
    FROMDATE TODATE
    *15-SEP-10* 30-SEP-10
    01-OCT-10 31-OCT-10
    01-NOV-10 *25-NOV-10*
    How do i do it.

    Hi,
    Similar to Dombrooks' solution:
    DEFINE     start_date     = "DATE '2010-09-15'"
    DEFINE     end_date     = "DATE '2010-11-25'"
    SELECT     GREATEST (&start_date, ADD_MONTHS ( TRUNC (&start_date, 'MONTH')
                                       , LEVEL - 1
               )          AS fromdate
    ,     LEAST    (&end_date,   ADD_MONTHS ( TRUNC (&start_date, 'MONTH')
                                       , LEVEL
                               ) - 1
               )          AS todate
    FROM    dual
    CONNECT BY     LEVEL <= 1 + MONTHS_BETWEEN ( TRUNC (&end_date,   'MONTH')
                                            , TRUNC (&start_date, 'MONTH')
    ;Simpler, but, depending on your requirements, less efficient:
    SELECT         MIN (&start_date + LEVEL - 1)     AS fromdate
    ,         MAX (&start_date + LEVEL - 1)     AS todate
    FROM         dual
    CONNECT     BY  LEVEL <= 1 + &end_date
                         - &start_date
    GROUP BY    TRUNC ( &start_date + LEVEL - 1
                          , 'MONTH'
    ORDER BY    fromdate
    ;

  • How to split family plan into 2 separate plans

    Hello! I need assistance. How do I separate a family plan into 2 separate plans? 2 of 5 members do not want to be on the plan. How would I go about making this change?

    Three words.
    Assumption of Liability. That's the process you need to do. Get the account owner and the parties who want to split off and head to the nearest Verizon Wireless corporate store. Tell the rep that's what you are there to do.

  • How to identify EBS Source tables for SC and OM modules?

    Hi,
    I need to identify EBS source tables for Supply Chain and Order Management module.
    What prefix I should check in EBS tables?
    Is there any document on this?
    Regards
    Sudipta

    Check etrm.oracle.com
    For order Management you should check with OE
    Purchasing PO and inventory INV and I guess for ASCP MSC
    Mahendra

  • How to Convert Date to Month in Database which is pointing to EBS, Not DWH.

    Hi Friends,
    We are planning to create reports in OBIEE and the Source is EBS. That means, we don’t want to depends on Datawarehouse and Informatica and OBIApps. We just create some reports and they are pointing to EBS database.
    For testing purpose, we have taken one HR Report and it containsthe below columns:
    Month (Dim)
    Revenue Per Employee Headcount (Fact)
    Average Cost per Active Workforce Headcount (Fact)
    In my little investigation, we found that Revenue column is coming from EBS: GL_BALANCES. And we configured W_Day_D base table in DAC as there is no Month column in EBS (Not sure).
    *** Coming to my problem, how can I call Month column in my database pointed to EBS. How to convert Date to Month in my database.
    I could be wrong but anyone please look into this issue.. How can I create columns for that exact OBI report in EBS database instead of DwH.
    Thanks in Advance..
    Raghu Nagadasari

    Hi Veeresh,
    You are right. Here, no need of using W_DAY_D table, but, we need all the stuff from the table and to explain my problem i have taken that table as an example. Now, we ran scripts for W_MONTH_D and W_DAY_D tables with EBS columns. So, we are getting data for the tables. In the same manner we have to create scripts for the below tables.
    W_GL_ACCOUNT_D
    W_GL_OTHER_F
    W_STATUS_D
    W_MCAL_DAY_D
    W_EMPLOYMENT_STAT_CAT_D
    W_WRKFC_BAL_A
    W_DAY_D (Completed)
    W_MONTH_D (Completed)
    But, we are not aware of EBS Tables and their columns much. So, we are back tracing from RpD --> DAC --> Info --> EBS for each and every column and its taking much time.
    So, if anyone of you facing the same issue, please share the EBS tables for the corresponding OBI tables, which are mentioned above.

  • How to split Large file into Multiple small files..

    Hi,
       My source file is simple  XML structure...and target side also i need to send in XML files  .. but in the source file I'm getting all the data at a time.. so source file  is more than 1000 records.. but i want to process  50 records at a time...
    bu using FCC (RecordSet per Message)  we can   solve this.. but I dont want to  do any File conversion.. i want to send  in XML file only...
    for this.. how we can handle....
    Regards
    Jain

    Jain,
    Please see the below screenshots.
    http://www.flickr.com/photos/23855877@N07/2991137391/sizes/o/
    http://www.flickr.com/photos/23855877@N07/2991137441/sizes/o/
    http://www.flickr.com/photos/23855877@N07/2991988028/sizes/o/
    http://www.flickr.com/photos/23855877@N07/2991988084/sizes/o/
    For No, Name, City Map Directly.
    In the example, I've given 5 records to split. If you want 50 records to split, then instead of 5 give 50 in the constant.
    raj.

  • How to split the IDOCS based on document number change whit out BPM

    Hi all,
    Thanks,for giving the responce..
    Scenario:File to IDoc.
    Problum1 : How to Split the IDocs based on document number change in the source file with out BPM.My file contains document numbers like
    20000092
    20000092
    20000092
    50000050
    50000050
    50000065
    I want 3 IDocs in target system.i.e 1 for 20000092,20000092,20000092
                                                       2 for 50000050,50000050
                                                       3 for 5000006
    By using external definations i am getting 6 IDOCs insted of 3.
    Problum 2:Is there any chnges/modifications in Directory when we are using external definations.
    Could u plz provide me the step by step process(Repository/Directory) with using of external definations.
    Thanks in advance.
    Regards,
    KP

    HI,
    for this no need of BPM.
    You can think of Idoc bundling concept to acheive this-just you need to do the external definition to change the idoc occurence
    /people/michal.krawczyk2/blog/2005/12/04/xi-idoc-bundling--the-trick-with-the-occurance-change
    to achieve for each document no, one idoc, you can write small user defined function in the mapping with context handling you an achieve this.
    For this e.g
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6bd6f69a-0701-0010-a88b-adbb6ee89b34
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/877c0d53-0801-0010-3bb0-e38d5ecd352c
    Regards,
    Moorthy

  • Multi Source execution plan build issue

    Hi,
    I am trying to create/build a multi source (homogenous) execution plan in DAC from 2 containers for 2 of the same subject areas (Financial Payables) from 2 different EBS sources. I successfully built each individual subject area in each container and ran an executin plan for each individually and it works fine. Now I am trying to create 1 execution plan based on the DAC steps. So far I have done the following:
    - Configured all items for both subject areas in the DAC (tables, tasks, task groups, indexesconnections, informatica logical, physical folders, etc)
    - Assigned EBS system A a sifferent priority than EBS system B under Setup->Physical Data Sources
    - I noticed that I have to change the Physical Folder priorities for each informatica folder (SDE for Container A versus SDE for Container B). I assigned system A a higher priority
    - Build the Execution plan..
    I am able to build the execution plan successfully but I have the following issues/questions:
    1) I assumed that by doing the steps above..it will ONLY execute the extract (SDE) for BOTH system containers but only have ONE Load (SIL and PLP)..and I do see that the SDEs are ok..but I see the SIL for Inder Row in RunTABLE running for BOTH...why is this? When I run the EP...I get an unique constraint index error..since its entering two records for each system. Isnt the DAC suppose to include only one instance of this task?
    2) When I build the execution PLAN, it is including the SILOS and PLP tasks from BOTH source system containers (SILOS and PLP folders exist in both containers)...why is this? I thought that there is only one set of LOAD tasks and only SDE are run for each (as this is a homogenous load).
    3) What exactly does the Physical folder Priority do? How is this different than the Source System priority? When I have a multi source execution plan, do I need to assign physical folder priorites to just the SDE folders?
    4) When we run a multi source execution plan, after the first full load, can we somehow allow Incremental loads only from Container A subject area? Basically, I dont want to load incrementally from source sytem A after the first full load.
    4) Do I have to set a DELAY? In my case, my systems are both in the same time zone..so I assume I can leave this DELAY option blank. Is that correct?
    Thanks in advance
    Edited by: 848613 on May 26, 2011 7:32 AM
    Edited by: 848613 on May 26, 2011 12:24 PM

    Hi
    you are having 2 sources like Ora11510 and OraR1211 so you will be having 2 DAC containers
    You need these below mandatory changes
    for your issue
    +++++++++++++++++++++++++++++++++
    Message: Database errors occurred:
    ORA-00001: unique constraint (XXDBD_OBAW.W_ETL_RUN_S_U2) violated while inserting into W_ETL_RUN_S
    You need to Inactivate 2 tasks in R12 container.
    #1 Load Row into Run Table
    #2 Update Row into Run Table
    +++++++++++++++++++++++++++++++++
    There are other tasks that has to be executed only once
    (ie Inactivate the Below in One of the container)
    SIL_TimeOfDayDimension
    SIL_DayDimension_GenerateSeed
    SIL_DayDimension_CleanSeed
    SIL_TimeOfDayDimension
    SIL_CurrencyTypes
    SIL_Stage_GroupAccountNumberDimension_FinStatementItem
    SIL_ListOfValuesGeneral_Unspecified
    PLP_StatusDimension_Load_StaticValues
    SIL_TimeDimension_CalConfig
    SIL_GlobalCurrencyGeneral_Update <dont Inactivate this> <check for any issues while running>
    Update Parameters <dont Inactivate this> <check for any issues while running>
    +++++++++++++++++++++++++++++++++++
    Task :SDE_ORA_EmployeeDimension_Addresses
    Unique Index Failure on "W_EMP_D_ADR_TMP_U1"
    As you are load from 11.5.10 & R12 , for certain data which is common across the systems the ETL index creation Fails.
    Customize the Index Creation in DAC with another unique columns (data_source_numID).
    ++++++++++++++++++++++++++++++++++++
    Task :SDE_ORA_GeoCountryDimension
    Unique Index Failure on "W_GEO_COUNTRY_DS_P1 " As you are loading from 11.5.10 & R12 , for certain data which is common across the systems the ETL index creation Fails.
    Option1) Customize the Index Creation in DAC with another unique columns (data_source_numID)
    ++++++++++++++++++++++++++++++++++
    This changes were mandate
    Regards,
    Kumar

Maybe you are looking for