BPC 7.5NW - Transports

Hello Gurus,
We just did some enhancements in our Appset in the DEV environment and should now promote these enhancements to the QA and PROD systems.  We want to use transports to accomplish this.  I am aware of the following:
1.  We will have to move the entire Appset as one object from the DEV environment to the QA and PROD systems
2.  To do step 1, we should put together a transport using T-code UJBPCTR
3.  SAP BPC will use the concept of "Shadow tables" to figure out the objects that were changed, and will move those to the new environments.
4.  We log in to the new environments and perform testing.
Did I miss any of the key steps in the whole process?
Also, please let me know how to debug if something doesn't get transported properly.
Thanks for all your help.
Best regards,
Van.

Hi Van,
For your queries relating to the Transports please check the BPC 7.5 NW Operations Guide (available in SMP) pg no. 43.
Regards,
Raghu

Similar Messages

  • Transport of Security objects in BPC 7.5NW

    As a part of NW BPC transports, changed the entries in table UJT_TRANS_CHG. For the 1st transport (from DEV to QA)wanted to transport ALL objects including Security and Teams. So, selected 'Development' for ALL objects under this table.
    After the transport collection via tcode UJBPCTR and importing into QA, found that 'Users', 'Teams'  and 'Task Profiles' did NOT transport. 'Member Access Profiles' did transport to QA.
    I expected 'Users', 'Teams'  and 'Task Profiles' also to be transported. We are on SAP BPC 7.5NW, SP4.
    Am I missing something here ?
    Thanks in Advance.

    Hi
    we had the same problem and didn't know if Security objects could be transported, but we found the BPC User Mass Management Tool.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/d0cdbccf-0def-2d10-298d-f4223de9a6ed&overridelayout=true
    This could help you to export the security objects in DEV and import the objects in PRD.
    The transports you need for the ZUJE_MASS_USER_MGMT   Programm you found on page 46 in the document mentioned above.
    Please let me know if we could help you.

  • Using a variable in an allocation routine in SAP BPC 7.5NW

    Below is a very simple BPC allocation routine I wrote.  The data originally sits on a dummy profit center and needs to be allocated to all itu2019s relevant profit centers. These relevant profit centers can be derived from the profit center hierarchy (BPC_ + ID of entity).
    When I hardcode the Profitcenter and the entity, the routine works (as below). But what I really want is that it works variable as in the line that I commented out. Any idea whether this could work (BPC 7.5NW)  ? If not, I am afraid I need to go to ABAP, which is really a pitty
    //ALLOCATION PROCEDURE CONVERSION RATE
    //=====================================
    *RUNALLOCATION
    *FACTOR=1
    *DIM SEBACCOUNT WHAT=CONV_RATE; WHERE=<<<; USING=<<< ; TOTAL=<<<
    //*DIM PROFCENT WHAT=DUMPC; WHERE=BAS(BPC_"%ENTITY_SET%");USING=<<<; TOTAL=<<<
    *DIM PROFCENT WHAT=DUMPC; WHERE=BAS(BPC_OKB);USING=<<<; TOTAL=<<<
    *DIM ENTITY WHAT=OKB; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *ENDALLOCATION
    Thanks
    Nico

    Gersh,
    It works now. I have implemented the below code (ENTITY needed to contain the variable as well). The relationship profitcenter and entity is very important as it derives the relevant profitcenters from the profit center hierarchy (e.g. all profitcenters under the legalentity node).
    //ALLOCATION PROCEDURE CONVERSION RATE
    //=====================================
    *FOR %ENT% = %ENTITY_SET%
    *RUNALLOCATION
    *FACTOR=1
    *DIM SEBACCOUNT WHAT=CONV_RATE; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *DIM PROFCENT WHAT=DUMPC; WHERE=BAS(BPC_%ENT%);USING=<<<; TOTAL=<<<
    *DIM CATEGORY WHAT=FCSTCUR; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *DIM ENTITY WHAT=%ENT%; WHERE=<<<; USING=<<<; TOTAL=<<<
    *ENDALLOCATION
    *NEXT
    Thanks
    Nico

  • BPC 7.5NW Report Issues When Requesting Year To Date Data

    Dynamic reports built with 2 row expansions (Cost Ctr, Account) up to 3 columns (not expansions, set to different categories with excel formulas for variance calculations...Act vs. Bud for example) result in error messages (error retrieving data and another related error messge) when requesting YTD data vs. Periodic data.  The report runs fast and properly with Periodic measure.  When running with the YTD measure, attempts to reduce the report data volume by removing comparative categories and removing formatting (after ranges) still results in YTD data retrieve errors.
    Has anyone else had similar issues with BPC 7.5NW, SP9, and YTD data not pulling into reports?  What are the common causes for issues with YTD data retrieval?  Given the design by SAP of the BPC NW product and promotion of using BPC for both Periodic and YTD data, should I expect this report to work properly, meaning that I can get output with YTD data without long runtimes or errors that result in terminating the report?  Thank you.

    Hi,
    This would do it :SQL> !cat q.sql
    with t (dt, val) as (
         select to_date('2011/01/04','yyyy/mm/dd'), 123 from dual union all
         select to_date('2011/04/09','yyyy/mm/dd'), 234 from dual union all
         select to_date('2011/06/28','yyyy/mm/dd'), 345 from dual union all
         select to_date('2011/10/18','yyyy/mm/dd'), 456 from dual union all
         select to_date('2011/12/23','yyyy/mm/dd'), 567 from dual union all
         select to_date('2012/01/07','yyyy/mm/dd'), 678 from dual union all
         select to_date('2012/05/13','yyyy/mm/dd'), 789 from dual union all
         select to_date('2012/07/19','yyyy/mm/dd'), 890 from dual union all
         select to_date('2012/08/30','yyyy/mm/dd'), 901 from dual union all
         select to_date('2012/09/22','yyyy/mm/dd'), 012 from dual
    ------ end of sample data ------
    select *
    from t
    where dt >= trunc( add_months(trunc( &&dateexec. ,'month'),-1) ,'year')
    and dt < trunc( &&dateexec. ,'month')
    undefine dateexecThe dateexec parameter is just here to "simulate" sysdate of different points in year.
    <i>(your actual query would have sysdate where the dateexec parameter appears)</i>
    SQL> @q
    Enter value for dateexec: sysdate
    DT                         VAL
    07/01/2012 00:00:00        678
    13/05/2012 00:00:00        789
    19/07/2012 00:00:00        890 sysdate does the current year up to previous month.
    SQL> @q
    Enter value for dateexec: to_date('20120122','yyyymmdd')
    DT                         VAL
    04/01/2011 00:00:00        123
    09/04/2011 00:00:00        234
    28/06/2011 00:00:00        345
    18/10/2011 00:00:00        456
    23/12/2011 00:00:00        567when ran in january, it retrieves all the previous year.

  • BPC 7.5NW consolidation error

    Hi,
    We are using BPC 7.5 NW version (7.50.04). We changed standard dimension 'GROUPS' to dimension type 'R' and included it in our legal applications.
    We are using below logic to run both currency conversion and legal consolidation.
    *RUN_PROGRAM CURR_CONVERSION
          CATEGORY = %C_CATEGORY_SET% 
          GROUP = %GROUPS_SET%
          TID_RA = %TIME_SET%
          RATEENTITY = GLOBAL
    *ENDRUN_PROGRAM
    *RUN_PROGRAM CONSOLIDATION
        CATEGORY = %C_CATEGORY_SET%
        GROUP = %GROUPS_SET%
        TID_RA = %TIME_SET%
    *ENDRUN_PROGRAM
    The standard data manager package with process chain 'LEGAL_CONSOLIDATION' fails with error message 'Member "G_CG2" not exist'. G_CG2 is a member of GROUP dimension. When we executed the below logic (with hardcoded variables) in BW transaction UJKT, it worked fine and posted values correctly.
    *RUN_PROGRAM CURR_CONVERSION
          CATEGORY = C_100
          GROUP = G_CG2
          TID_RA = 2008.DEC
          RATEENTITY = GLOBAL
    *ENDRUN_PROGRAM
    *RUN_PROGRAM CONSOLIDATION
        CATEGORY = C_100
        GROUP = G_CG2
        TID_RA = 2008.DEC
    *ENDRUN_PROGRAM
    Any idea, why system is not able to recognize 'G_CG2' when we use data manager package? In BPC 7.5NW, is it mandatory to use both 'R' and 'G' type dimensions? SAP Help has different contradictory views !!!

    Hi Nilanjan,
    We are using 'GROUPS' dimension of type 'R'.
    The above dimension has members of both GROUPS and CURRENCY (ex: G_CG1, G_CG2, LC, USD etc).
    1) Run currency translation for 'USD'. The logic works fine if i change it as follows:
    *RUN_PROGRAM CURR_CONVERSION
    CATEGORY = %C_CATEGORY_SET%
    CURRENCY = %GROUPS_SET%
    TID_RA = %TIME_SET%
    RATEENTITY = GLOBAL
    *ENDRUN_PROGRAM
    2) Run currency translation for 'G_CG2'. The logic works if i change it as follows:
    *RUN_PROGRAM CURR_CONVERSION
    CATEGORY = %C_CATEGORY_SET%
    GROUP = %GROUPS_SET%
    TID_RA = %TIME_SET%
    RATEENTITY = GLOBAL
    *ENDRUN_PROGRAM
    3) Run COI for 'G_CG2'. The logic works if i change it as follows:
    *RUN_PROGRAM CURR_CONVERSION
    CATEGORY = %C_CATEGORY_SET%
    GROUP = %GROUPS_SET%
    TID_RA = %TIME_SET%
    RATEENTITY = GLOBAL
    *ENDRUN_PROGRAM
    4) The logic is executed successfully from BW UJKT if i hardcode the values for 'GROUPS' dimension.

  • BPC 7.5NW Performance Document

    Hi Experts,
    Please help me to get BPC 7.5NW performance document or related document if anyone has.
    Thanks in Advance,
    regards,
    Hari

    Hi,
    The following document might have some pointers that you are looking for
    performance analysis and tuning guide for BPC - Link below.
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e08c2aa2-6c58-2e10-3588-e6ed2e7c04f8?QuickLink=index&overridelayout=true]
    Thanks,
    Sreeni

  • BPC 7.5NW - Client SP6 - Unable to log in to clients on older versions

    REPOSTED UNDER BPC 7.5NW FORUM
    Edited by: Sunil Narahari on Mar 7, 2011 2:04 PM

    I'm having a similar problem with 10.5.2 Leopard server and client -- no Tiger involved.
    I have the green light on the login screen and am able to log in as an OD administrator, but regular OD users are rejected with a login window shake. I never specified any home directories because they were auto-generated on machines locally when I logged in with the OD administrator.
    Apple phone support were able to duplicate my problem and had me do an Enterprise Data Capture. Apple engineers were also able to duplicate my problem. Here is some of what phone support emailed me:
    +I got a reply from engineering. They said they were able to duplicate the issue with a 10.5 up to a 10.5.2 client with no home directory specified. The only current workaround is to set up an automount location for home directories and specify a home location place for the users. The clients do not have to be bound to the server, they just need to have a home folder directory specified.+
    +Engineering is aware of the issue and are working on it. For now this is the only workaround we have.+
    I haven't had a chance to try this Apple workaround, but maybe it will help you.

  • Measures:YTD behavior in BPC 7.5NW

    All,
    Has anyone come across this?
    When I execute EVDRE and use measures, my PERIODIC and QTD are working fine. But YTD is working incorrectly and the behaves just like QTD. Account I am doing is for EXP account. I am on BPC 7.5NW Pack 4. Any help is appreciated?

    Hi Danny,
    You can try changing the text description of your application in the admin console and resaving it, which should reset the delivered measure formulas. However, I wonder if there is something wrong with your time hierarchy. How is your Time dimension hierarchy set up?
    Ethan

  • BPC 7.0NW Transportation

    Dear Experts,
    I need BPC 7.0 NW Transportation User guide.
    can any body send me the link...
    Thanks a lot in advance...

    hi kumar,
    check this one... it might help you...
    SAP BPC Transports whitepaper
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b048ecf4-9414-2c10-ceac-fb2492a8016c&overridelayout=true
    Regards,
    Chandru

  • BPC 7.5NW: Drill through to ECC

    Hi Experts,
    I am following the steps as given in the Drill through White Paper, but am having issues in passing the parameter to ECC's t-code.
    The web link etc is working fine, but when I "Test" it in Admin, the t-code in ECC is not accepting any values. It is nothing other than logging into ECC and running this transaction.
    Any thoughts?
    I am on 7.5NW.
    Thanks.
    Anand

    Do the parameter values in BPC match to ECC?  For example, period in BPC could be 2011.NOV, but ECC value would be different and may be two different values (Fiscal year and Fiscal period).  In that case, you may add  properties as necessary and use the ECC values in these properties and then map that property in the drill through.
    If you can send a screen shot of your drill through mapping, that would help analyze the issue

  • BPC 7.5NW SP08: "unknown MDX error" message for simple dimension formula

    Hi everyone!!
    We are facing many different issues concerning dimension formulas and
    script logic. Maybe it's something related to SP08. For instance,
    consider the following:
    - there is a dimension named P_Account, with members Price, SalesCost,
    and others
    - there is a dimension named P_Product, which consists of a hierarchy,
    for instance: Prod1 with two children, Prod1A and Prod1B
    We want to set the following dimension formula in P_Product for Prod1 member:
    IIF([P_Account].CURRENTMEMBER.PROPERTIES("ID") = "Price", Null, 1)
    that is, we wanted to try to be able to avoid summing Price, returning
    Null for (Price, Prod1). Later we would try to replace "1" with the
    appropriate formula to sum children of Prod1 for all other members of
    P_Account. The result is an odd error: "MDX statement error: unknown MDX
    error" (or something similar, since I get the error message in portuguese).
    We have spent almost two days studying alternatives in SDN Forum, blogs,
    google, etc, trying to find a reason for the error but couldn't find it.
    Could anyone help on this one?
    Thanks!
    Luigi

    Hi everyone!
    After contacting SAP, we were asked to try to reproduce the error in APSHELL. I did the following:
    1) created another application set, copying APSHELL, named it TESTAPPSET;
    2) added two members to dimension P_ACCT (ID, ACCTYPE, SCALING, RATETYPE):
       (PRICE, INC, Y, END)
       (SALESCOST, INC, Y, END)
    3) saved to server and processed P_ACCT dimension successfuly
    4) added a UD dimension copied from P_Activity, named P_Product
    5) deleted all members of P_Product, processed the dimension sucessfuly
    6) added FORMULA property to P_Product, with size 200
    7) added three members to P_Product (ID, PARENTH1)
       (Prod1, "")
       (Prod1A, Prod1)
       (Prod1B, Prod1)
    8) saved to server and processed the dimension successfuly
    9) edited P_Product members and added the following as FORMULA for Prod1:
    IIF([P_ACCT].CURRENTMEMBER.PROPERTIES("ID") = "PRICE", Null, 1)
    Result was sucess!!
    10) edit P_Product again and removed the formula, saved to server and processed dimension successfuly;
    11) created an Application named SALES, type Financial Report, copied from PLANNING with dimensions
    12) edit dimensions, removed P_Activity and added P_Product to the list
    13) went back to step (9) and tried to add the formula again, saved to server and processed P_Product dimension. Result was success again!!
    So I imagined the issue might be caused by the user I was log in with. I went back to our application set, logged in as BPC_SYSADMIN and tried to set the formula again and it didn't work. User was not the problem.
    Since I had tried all the above creating everything with all UPPERCASE, I decided to try the following Formula
    IIF([P_ACCOUNT].CURRENTMEMBER.PROPERTIES("ID") = "Price", Null, 1)
    that is, P_ACCOUNT instead of P_Account. Result: success in processing dimension!!! And the formula worked as expected when I opened an Input Schedule to test it.
    When I check my dimension list in BPC Admin it says P_Account (mixed case), instead of P_ACCOUNT (all uppercase) since it was the way we created it.
    So, I spent 1hour to do the whole test, but it worked. I sent two questions/requests for correction or improvement to SAP:
    I) which case should be used in formulas? given I see P_Account in Dimension list, how should I know that I should write formulas with P_ACCOUNT, all uppercase?
    II) could BPC provide more descriptive error messages when processing dimensions and validating script logic? a simple error message such as "unidentified command or reference at P_Account" or anything similar would have saved us 4,5 days of work! it's a lot!
    Thank you guys for your support!!

  • BPC 7.5NW SP upgrade

    Hello Experts,
    We are currently on SP 06 and are planning an upgrade to one of the newer service packs.  On this end, we have the following questions:
    1.  How does the upgrade process work?  Do we have to perform the upgrade in the serial order of the service packs?  Meaning, do we have to go from SP 06 -> SP 07 -> SP 08 -> SP 09, or can we directly go from SP 06 to SP 09?
    2.  What are the consequences of upgrading to the latest SP, i.e., SP 09?  Can we safely assume that all the bugs that were identified in SP 07 and SP 08 would stay 'fixed' in SP 09 upgrade?
    3.  What is the recommended time frame / interval to perform an upgrade from current SP to the next SP?
    4.  When we are performing an upgrade, can we perform the upgrade only on a specific appset instead of the entire server environment?
    5.  While performing the upgrade, can we pick and choose the notes?  Or do we have to install all the SAP Notes at once?
    6.  Lastly, what is the typical effort involved?  And how long would the upgrade process usually take?  We are asking this because we don't want this upgrade process to collide with our financial closing process.
    I request your kind guidance with regards to the above questions.  All reponses are greatly appreciated.
    Thanks in advance for all your guidance.
    Best regards..
    Van.

    Hi,
    >
    > 1.  How does the upgrade process work?  Do we have to perform the upgrade in the serial order of the service packs?  Meaning, do we have to go from SP 06 -> SP 07 -> SP 08 -> SP 09, or can we directly go from SP 06 to SP 09?
    You can directly upgrade to target support package level.  You can check upgrade guide for it.
    > 2.  What are the consequences of upgrading to the latest SP, i.e., SP 09?  Can we safely assume that all the bugs that were identified in SP 07 and SP 08 would stay 'fixed' in SP 09 upgrade?
    You need to perform testing in order to check if all is working fine or not.
    > 3.  What is the recommended time frame / interval to perform an upgrade from current SP to the next SP?
    SAP  keep on releasing support package. So, based on your upgrade policy or if there is requirement to upgrade to get new functionality or as SAP recommends to update SP's to latest level always, you can plan the upgrade.
    > 4.  When we are performing an upgrade, can we perform the upgrade only on a specific appset instead of the entire server environment?
    No, upgrade is not appset specific.
    > 5.  While performing the upgrade, can we pick and choose the notes?  Or do we have to install all the SAP Notes at once?
    Its not like applying SAP notes. Its a bundled format where you need to do the upgrade of whole server.
    > 6.  Lastly, what is the typical effort involved?  And how long would the upgrade process usually take?  We are asking this because we don't want this upgrade process to collide with our financial closing process.
    >
    There are no standard timing to do the upgrade. You can upgrade your test/sandbox BPC server and do the proper testing. As a result you will have an estimate about the time required in upgrade.
    Thanks
    Sunny

  • BPC 7.5NW Username Change Issue

    I've been having a weird issue when a user has a name change. As an example, I have an initial user (DOMAIN\clwho) that has access to BPC and everything is working fine. She gets married and changes her user ID (DOMAIN\cwdoe) in active directory and requests that her new ID has the same access in BPC as the old one. If we add the new credentials to BPC and assign it all the same rights and stop there then everything is fine. However, if we delete the old username (DOMAIN\clwho) then she can no longer log in. The message we get is that DOMAIN\clwho doesn't have permission even though we're attempting to log in with DOMAIN\cwdoe.
    Any idea why this is happening? I thought there would be something in active directory causing it, but the guys who manage that tell me that they don't see anything mapping DOMAIN\cwdoe to DOMAIN\clwho. I'd like to be able to just add DOMAIN\clwho back into BPC, but that ID no longer exists in AD.

    Vadim,
    I did try to remove everything for that user from the Admin Console and then just recreate the access for the new user id, but it still doesn't work. Do you know which table references the SID and User ID? I tried to find something in all of the UJE_* tables, but no luck.
    Thanks,
    Jimmy

  • BPC 7.5NW External Data Links

    Hi All u2013
    This question is in regards to a BPC 7.5 NW (SP8) input schedule stored in BPC with externally linked MS Excel 2007 spreadsheets stored outside BPC.
    I have built an input schedule (which is stored in a team folder) and linked external excel spreadsheets into the schedule. My EVDRE is in Sheet1. Sheets2 u2013 5 contain the links to my non-BPC workbooks.
    My problem is that when I use the u201CSend and Refresh Schedulesu201D u2013 u201CActive worksheetu201D, multiple windows pop-up for updating the links in the non-active (external data linked) worksheets. Does anyone have a better way to link data external to BPC in a schedule or report? If not, is there a way to stop these pop-ups?
    Thank you!

    Hi,
    Can you try as follows:
    workbook options> Refresh Options> Check EVDRE : Refresh by Sheet.
    Hope it helps..
    regards,
    Raju

  • BPC 7.5NW Drill-through to FIM

    Hi all,
    I upload data to BPC 7.5 NW SP06 through FIM. I tried to set up the Drill-through functionality of BPC so as to see the analysis of the trial balance uploaded in FIM, but with no success. The How-to-paper for drill-through functionality for NW, uses drill-through only to BEx and ECC, not FIM. In SAP help for BPC NW, there is an example for FIM but it is too general.Has anyone faced the same situation? Or any idea?
    Thanks
    Regards,
    Maria

    Hi,
    I am trying DT to ECC funcationality in BPC 7.5 NW version. I am trying to TD from a P&L report based on hierarchies.
    I would like to know how people are using drill-through on parent level nodes within their BPC hierarchies.
    I hear that there is something called which is a hierarchical view of their objects/metadata in ECC. How is it related to BPC drill through?
    In my example, the DT is from a P&L report that consists of Functoinal Area & P_Account (with a mix of hier nodes and base members) and Company Code in Colum (in summarized columns like N. America, Europe, etc). The current View migth have profiit center hier nodes that comprise of multiple base member profit centers.
    We would like to to drill thorugh from a cell  that is an intersection of FuncArea-Account parent node and Comoamy Code parent node (N. America) to an ECC profict center transaction - K5EZ (Profit center line item).
    Any help/guidance with some documentation if possible is appreciated.
    Thanks in advance.
    Regards
    Raj

Maybe you are looking for

  • Problem with RMAN on Oracle8.1.7 on Redhat Linux 6.2

    Hi, does anyone who is using Oracle with the configuration listed below having problems running RMAN? - Redhat 6.2 with kernel upgraded to 2.2.16-3 - Oracle 8.1.7 EE for Linux I don't seem to be able to start RMAN even though I have enable LARGE_POOL

  • Purchase order data base

    I need help. I have a database that contains all purchase orders I'd like to be able to create a report that shows only the most recent order for each supplier ordered by date.  Sounds simple but I have been struggling with this for awhile. Thanks

  • Form included in JSF Fragments doesn't work

    Hi there i have a simple form placed in JSF page fragment, the fragment is included in several pages. It renders , but the button action doesn't do what it is supposed to do. <?xml version="1.0" encoding="UTF-8"?> <!--     Document   : AddAdvertForm

  • Unlock user name password

    i cant seem to figure out my user name password...how can i reset it? its for a hp mini 110 ..

  • What are reviews from folks who have 128 Gb memory in the IPhone 6 or 6+?

    What are your impressions of the IPhone 6 or 6+ with 128 Gb memory?  Is is worth the extra money over the 64Gb memory?  I'm going to replace my IPhone 5 next month and will move up to either 6.