HCM BI Landscape Issue

Hi,
We are implementing R3 HCM and BI HCM in parallel.
HCM and BI are in the same box for sandbox, dev, qa and prod as well.
Any inputs on such a landscape, interms of performance, administration issues etc ?
Have you faced any issues when R3 and BI co-exist in the same box ?
Expert advice needed pls.
Thanks.

Hi Vaishali,
I had the same experience but not in Production. Definitely u can expect some performance problems becoz No. of R/3 users will be much more than BW users who always work on the system. For this type of systems its better to run BI jobs in the background and non-working hours of R/3 users.
Regards,
Ravi

Similar Messages

  • HCM - IDM Integration issues

    Hello Experts,
    I am working on the HCM & IDM Integration and I have done the configurations on HCM & VDS as per the Systems Landscape document.
    When I Run the export query from the HCM, The data is not coming to the staging area.
    I have turned on the Operational log trace and reran the query and found the following is logged in the logs. But it is not of much help to understand why the roll back is happening.
    Could anyone face such kind of error earlier ? Any thoughts on how to proceed further !!
    I am on IDM 7.2 SP7
    Thanks,
    Krishna.

    Hello Deepak,
    Thanks for your reply.
    Yes, I am using PERNR to calculate my MSKEYVALUE. But I believe in the current issue, it is not going to that stage at all.
    1. When we run the extract programme from HCM, VDS first writes the data to HCM_Staging_Area identity store to the MX_HCM_EMPLOYEE entry type.
    2. When this happens, based on the event tasks defined on MX_HCM_EMPLOYEE type attribute, the job "Write HCM Employee To SAP Master" will be triggered where the MSKEYVALUE is calculated and be written to Master ID store.
    In the current scenario,VDS is not writing the data to HCM_Staging_Area at all.
    When examined, the logs i got entry rejection as mentioned the screenshot in my initial post.
    ~ Krishna.

  • BrowseForImage() Portrait Landscape issues

    Building with Air2.6
    Using Adobe's example
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/CameraRoll. html
    I have a landscape app and when I call browseForImage() the image browser always comes up in portrait mode. 
            <fullScreen>true</fullScreen>
            <autoOrients>false</autoOrients>
            <aspectRatio>landscape</aspectRatio>
    After selecting an image everything is still in landscape mode.  Is the cameraRoll browsing view supposed to be landscape if the app is in landscape?  I've tried setting autoOrients to true.  No change.
    When loading in an image from camera roll, Portrait images always come in sideways.  This does not seem to matter if the aspectRatio is set to landscape or portrait.
    Is there some programatic way to know if an image is portrait or not?  Looking at loader.content.width & height is out because the bitmap data is apparently always wider than it is tall. 
    Any one else having these issues?

    Screenshots load just fine.  They are portrait but they don't come in sideways.  It appears to only happen to photos I take with the phone.  You are correct that iOS seems to know weather or not an image is portrait or not. 
    If this is just the way things are, I have no problem making a rotation feature, but I have no programatic way to know if an image is supposed to be portrait or not except by having a user looking at it.  It seems kinda lame to require the user to rotate the image after I load it in when iOS seems to already know how it should be oriented.  I mean it shows up oriented correctly in the CameraRoll view.  I just don't know why I'm not getting in the loader the same way.

  • Landscape issues in iphone6 plus

    when I am watching an youtube video in my iphone 6 plus Landscape mode, if I get any banner notification of a whatsapp mesage, it sets the video to pause and rotate it back to portrait for no reason and when the notifications goes off  the video flickers again from landscape to portait, very anoying and a serious bug which has to be fixed.. Is someone experiencing the same issue??

    There still appear to be issues with keyboard and extensions. I suspect this may be related, but cannot confirm.

  • IOS4 on 3GS Landscape Issues

    Updated to iOS4 on launch date and since then my 3GS will not go into landscape mode. I was wondering if this is turned off in the settings because I can't find it or if anyone else was having the same issues? Can anyone give me a hand or a heads up as to either turn the setting back on or if anyone else has the problem how to fix it!! This would make me very
    Thank You Kindly

    OK, I just upgraded and I too have this issue, but orientation lock is not on! YouTube goes into landscape automatically, but when in Safari, I cannot get to landscape no matter how hard I try -- tilt, rattle, or shake.
    Nice to have audio playing in the background, but I'd like to surf in landscape while doing it.
    Any ideas? -- If not can I downgrade back to 3.1.3 -- I'd rather have landscape view than other limited feature set.

  • 2 landscape issues: applicationFrame/UIViewAnimationTransitionFlipFromRight

    Hi,
    I am having two problems related to landscape mode behavior under iPhone OS 2.1:
    1) Calling [[UIScreen mainScreen] applicationFrame] from viewWillAppear returns the following values (x, y, width, height):
    In portrait mode 0.000000 20.000000 320.000000 460.000000
    In landscape mode 0.000000 0.000000 300.000000 480.000000
    The landscape mode values do not appear to be correct yet the view inside the window has the following frame which is correct: 0.000000 0.000000 480.000000 268.000000
    What am I missing here? How can this be corrected?
    2) Calling setAnimationTransition with UIViewAnimationTransitionFlipFromRight in landscape mode makes the view flip top to bottom which is not the expected behavior either (I assume that this is related to the first issue.)
    Have anyone else experienced this? Any workaround?
    Thanks.

    Re no. 1, the docs make the point that the app frame and key window frame don't rotate. So I think the numbers you observed are correct, and the difference between portrait and landscape just reflects the repositioning of the status bar.
    To verify this, put the following in a test bed (e.g. use the Xcode View-Based Application template; you'll need to get a pointer to the key window another way if you measure a view that isn't the root):
    - (void) logFrame {
    UIWindow *window = (UIWindow*)[self.view superview];
    NSLog(@" window=%@", window);
    NSLog(@" view=%@", self.view);
    CGRect wFrame = window.frame;
    CGRect wBounds = window.bounds;
    CGRect vFrame = self.view.frame;
    CGRect vBounds = self.view.bounds;
    NSLog(@" window.frame=(%2.1f, %2.1f, %2.1f, %2.1f)",
    wFrame.origin.x, wFrame.origin.y, wFrame.size.width, wFrame.size.height);
    NSLog(@" window.bounds=(%2.1f, %2.1f, %2.1f, %2.1f)",
    wBounds.origin.x, wBounds.origin.y, wBounds.size.width, wBounds.size.height);
    NSLog(@" window.transform is identity: %d",
    CGAffineTransformIsIdentity(window.transform));
    NSLog(@" view.frame=(%2.1f, %2.1f, %2.1f, %2.1f)",
    vFrame.origin.x, vFrame.origin.y, vFrame.size.width, vFrame.size.height);
    NSLog(@" view.bounds=(%2.1f, %2.1f, %2.1f, %2.1f)",
    vBounds.origin.x, vBounds.origin.y, vBounds.size.width, vBounds.size.height);
    NSLog(@" view.transform is identity: %d",
    CGAffineTransformIsIdentity(self.view.transform));
    Portrait:
    2009-04-27 19:17:04.973 RotateView[67:20b] window=<UIWindow: 0x11cab0>
    2009-04-27 19:17:04.980 RotateView[67:20b] view=<UIView: 0x11f120>
    2009-04-27 19:17:04.986 RotateView[67:20b] window.frame=(0.0, 0.0, 320.0, 480.0)
    2009-04-27 19:17:04.994 RotateView[67:20b] window.bounds=(0.0, 0.0, 320.0, 480.0)
    2009-04-27 19:17:04.999 RotateView[67:20b] window.transform is identity: 1
    2009-04-27 19:17:05.005 RotateView[67:20b] view.frame=(0.0, 20.0, 320.0, 460.0)
    2009-04-27 19:17:05.010 RotateView[67:20b] view.bounds=(0.0, 0.0, 320.0, 460.0)
    2009-04-27 19:17:05.025 RotateView[67:20b] view.transform is identity: 1
    Landscape:
    2009-04-27 19:17:25.498 RotateView[67:20b] window=<UIWindow: 0x11cab0>
    2009-04-27 19:17:25.503 RotateView[67:20b] view=<UIView: 0x11f120>
    2009-04-27 19:17:25.510 RotateView[67:20b] window.frame=(0.0, 0.0, 320.0, 480.0)
    2009-04-27 19:17:25.516 RotateView[67:20b] window.bounds=(0.0, 0.0, 320.0, 480.0)
    2009-04-27 19:17:25.522 RotateView[67:20b] window.transform is identity: 1
    2009-04-27 19:17:25.528 RotateView[67:20b] view.frame=(0.0, 0.0, 300.0, 480.0)
    2009-04-27 19:17:25.533 RotateView[67:20b] view.bounds=(0.0, 0.0, 480.0, 300.0)
    2009-04-27 19:17:25.548 RotateView[67:20b] view.transform is identity: 0
    Note the warning in the doc: The frame of a view is meaningless when its transform isn't the identity.
    Re no. 2, I think I've gotten that to work at one point, but will need to reconstruct a test bed to verify this. However I can tell you for sure that I've never been able to get curl up or down working correctly for portrait upside-down orientation.
    So at this point I can only answer part of your question: No. 1 doesn't need to be corrected and isn't related to no. 2. Hope that helps.

  • N+1 landscape issue

    Hi,
    Please find below the facts:
    1) Existing ECC 6.0 Dev system copied to new system. we have clients - 000, 100,150
    2) Upgrded to EHP4 and applied IS-Utilities Add on
    Now, after the EHP4 upgrade, If i goto SPRO, I see the new customizing data or entries related to configure the system only in client 000. NOT in 100 and 150. Is it normal??? If it is, there should be some way to move the entries from one client to other, right? There may be several people who had worked on an N+1 landscape. Can someone tell me how to get these customizing or data entries to client 100 - which is our development client?
    1) Can I do a client copy without overwriting the existing customizing in client 100? Can the client copy append to the existing customizing?
    2) Any other ways to do it?

    Hi,
    use copy client (SCCL) with profile SAP_CUST with source client = 000 and target = 100
    your question :
    1. append ? i  think it is not possible.
    2. i have no idea other than SCCL, and it will overwrite your current customizing on target.
    hope it help you.
    rgds,
    Alfonsus Guritno

  • Landscape Issue AccAD 2.2 (Federated Portals)

    Hello,
    I have a performance issue, I have CE 7.2 and EP 7.0. Both are integrated as a Federated Portal. The CE 7.2 is the producer and EP 7.0 is the consumer or front end to our employees.
    We have remote locations with low bandwiths so we implemented AccAD 2.2 with the EP and the performance impoved a lot, ...the EP, but all the cache management is done to the EP objects, all the CE objects (javascripts, themes) are making the portal performance very low. The start page could take more than 240 seconds to display (because is showing some federated web dynpros iviews).
    After analizing, I see that one of the files that takes long is the sapurmapi_ie6.js that is loaded from the CE.
    How can I make the AccAD platform to work with the CE? What's your recommendation? How can I solve this issue?
    I think that if I make an upgrade to NW 7.3 I could avoid the federated portal and work with only one server (CE and EP are together), however right now is not my reality? Please can you give me an advice?
    Best Regards
    SU

    Hi Zeev,
    I tried to change again and hit "Apply".  it finally went back.
    I did it last weekend, since it is production.
    Thank you very much.
    There are a few things I consider as problem.
    1. Secondary SFE: They still do not communicate each other
    2. Database error: on Repository, Audit and Traffic history tabs show "Could not connect to the database"
    --->by the way, my test systems have no problems.
    3. On my SAP system, AL08, connections from CFEs displayed with the CFEs virtual IPs instead of SFEs.
    ---> as I experienced from 2.1, this is not right. they have to be appeared with the SFEs virtual IP. 
    version 2.1: Enduser -> CFE -> SFE -> SAP
    version 2.2: Enduser -> CFE -
    > SAP ???
    And, there are a lot of these messages in /var/log/messages
    Oct 31 11:03:45 cicamsf1 procmgr_main_adcli: Improper load()
    Oct 31 11:03:45 cicamsf1 procmgr_main_adcli: implementation: base implementation not called?
    Oct 31 11:03:49 cicamsf1 procmgr_main_adcli: Improper
    Oct 31 11:03:49 cicamsf1 procmgr_main_adcli:  load() implementation: base implementation not called?
    Oct 31 11:03:50 cicamsf1 procmgr_main_adcli: Imprope
    Oct 31 11:03:50 cicamsf1 procmgr_main_adcli: r load() implementation: base implementation not called?
    Oct 31 11:07:25 cicamsf1 procmgr_main_adcli: Improper load()
    Oct 31 11:07:26 cicamsf1 procmgr_main_adcli:  implementation: base implementation not called?
    Oct 31 11:07:29 cicamsf1 procmgr_main_adcli: Improper
    Oct 31 11:07:29 cicamsf1 procmgr_main_adcli:  load() implementation: base implementation not called?
    Oct 31 11:07:38 cicamsf1 procmgr_main_adcli: Improper loa
    Oct 31 11:07:38 cicamsf1 procmgr_main_adcli: d() implementation: base implementation not called?
    Thank you!

  • Peoplebooks HCM 9.1 issue

    Hi all,
    I noticed in the [Peoplebooks HCM 9.1|http://docs.oracle.com/cd/E28727_01/hcm91fp2/eng/psbooks/index.htm] ), that the Workforce Development section shows the peoplebooks related to the Enterprise Learning Module, while the Workforce Development in the application contains 'Performance Management, Career Planning, Profile Management...'
    What am I missing?
    Thanks
    Bechara

    user13164093 wrote:
    Maybe i didn't make it clear.
    Do you mean PT and HR packages have to been installed into the same folder ? Yes, they should be.
    Now mine is installed in the different folders. Which is wrong, application must be installed in the same folder of Peopletools.
    Nicolas.

  • Sap landscape issue

    hi all,
             just went thru the rules and regulation posted by juan...nice..
    my query
              1)in sap landscape what is the number of clients we should be having in DEV QAS and PRD system.
                              a)as i am able to understand if we have DEV server installed we will automatically acessing 000,001,066
                              b)if we have QAS server installed we will automatically acessing 000,001,066
                              c)if we have PRD server installed we will automatically acessing 000,001,066
                                       Then why do we say that we should have only one client in PRD server.
                                                                                    or we can say excluding 000,001,066 only one
    please clear my confusion on this..
    regards
    keith

    hi keith,
                first you need to understand the SAP landscape clearly , If you are having DEVELOPMENT ,QUALITY and PRODUCTION  system i.e three system landscape, all three will have 000,001,066 client in that. now it depends how your system goes about , being DEVELOPMENT system you must have one test client, one copy of master client(000) assume 111 where all your development work will undergo.
              same is the case with your QUALITY server also.
    but when it comes to PRODUCTION you should have only one client(as shyam also mentioned) where production activites should take place.
    to read more about this-see these helpful links
    http://www.sap-img.com/general/what-is-sap--landscape.htm
    cheers -
    ashish singh

  • Smartforms duplex (landscape) issue

    Hi All,
    I've develop new smartforms for goods receipt .
    PAGES         PRINT CONTROL            NEXT PAGE
    PAGE1                 --  D                             PAGE2
    PAGE2               -
                              PAGE1
    And for PAGE1 capacity only 10 item lines , and in every GR we found more than 10 item lines.
    So my scenario like that i ve to print PAGE1 with 10 lines and back-back PAGE2 then next 10 lines again and back to back  PAGE2. But because of PAGE2 next page PAGE1 after all completion it give one more page with headings only (blank page).
    So assist me how to sort out this DUPLEX issue.
    -Navin

    Dear Madhuri,
    Try this out,
    1. set the CONTRACT_OFFER next page attribute to CONTRACT_OFFER itself.So evenif the contract_offer main window goes beyond the first page, the same page type will be triggered.
    2. Now at the point where your contract_offer related  information ends in th main window and before the checklist related information starts, use a command node to dynamically set the next page attribute to CHECK_LIST. So at  this point the CHECK_LIST page will be triggered and the CONTRACT data since it is over will not be displayed.
    3. If check_list information also spans multiple pages then set the next page attribute for check_list page to check_list itself.
    Regards,
    Rijuraj

  • MSA landscape issue

    Hi all,
    In our MSA landscape, we have one Development Workstation. I am told that this is a one-tier architecture and the workstation is common to Development, Acceptance and Production servers of the CRM . But  using the MSA installed in the workstation I am able to see only the entries( like BPartner)  from the CRM Development system only. I am not able to see any CRM Production entries. How can I see the Production entries using this common Workstation ?
    Please help.
    Regards,
    Emily.

    Hi Emily,
    Just to make things little clear,
    1. In the CRM Server, a site is created to bring the data to only one mobile client.(Exclusively dedicated to one mobile client.).
    2. Hence for example, if you have 5 mobile clients(5 MSA running). then you will create 5 sites in the CRM Server and assign subscriptions to each and every site.
    3. In your case, since you want to use the same Mobile Sales Application to access both the production and the development system, definitely the mobile client have to connect to two different CRM server to bring the to the same mobile client(MSA.)
    4.But, the Mobile Client can connect to only one CRM Server at a time with the help of the assigned site ID.
    5. Hence forth, if you want to use the mobile client (MSA) to connect to the developement system, then you have to change the server settings using the using the Client Console, and then reassign the site from the production site to the developement site.. In this case, the Mobile Client will be assigned to the site created in the Dev system.
    Henceforth, one Mobile Sales Application can connect to 2 different CRM systems but not at the same time.
    Hope the above information helped you to answer your queries.
    Best Regards,
    Vignesh Ravikumar.

  • BI Landscape issue

    Hi all,
    I have to make a BI demo to convince my collegues to migrate from Business object to BI. At the moment i can't ask someone to install me a dedicated BI server so i'm working on my developpement ECC6 server. This ECC6 install was a standard one, without BI content add on. I've installed the 7.1 sapgui with BI add on for business explorer on my workstation. RSA1 modelling  works fine : i've been able to design and load an infocube. I can also create queries. The principal problem i have is that the Bex analyser doesn't work : Excel is launched with a BI button bar but nothing append when i click on "open query" or on "open a connection" buttons. The way i launch it has no effect (RRMX, menu).
    The problem is not due to security level on Excel because i put in on the lower level without success.
    I'm not sure JAVA usage type is installed on the server. Could it be the explanation ? How can i see on the serveur if a JAVA usage type is running ? Is it possible to use the web analyser without JAVA and PORTAL usage type ?
    Does someone know how to help me ?
    Thank 's a lot for your help.
    Jean

    BI Java is required to used the web analyzer.  BEx (Excel) does not.
    BEx does have an installation check tool in it, perhaps something is not installed on your PC that is needed.

  • How can I edit a Text Module in Landscape

    Hi to all,
    I would like to create a new Text Module in Smartforms and I would like to know if the graphic editor, similar to MS-Word, can be setup to display the page in Landscape?
    My text is always edited in Portrait format and I would like to avoid calculating my characters to fit in a larger landscape presentation format.
    Thank you in advance for your answers.
    Best regards,
    Sylvain

    Hi,
    Thank you all for your answers but I still have the same issue.
    @ Hari,
    I tried your procedure and found that I was using DINA4 as a default page format. In SPAD this format was defined for Portrait and Landscape. I created a new page format ZDINA4 with a larger width but the text module presentation remains the same. I only defined the landscape record and I have the same result by clicking Print Layout or Draft. Do you know if this page format has an influence on the Text Module presentation? I would like to put the ruler much wider that it is locked at 21. Any suggestion on how to enlarge the ruler?
    @ Adrian,
    Yes I know how to set up the page format in the Smartforms itself but I am talking about the text module. My key user will create the Text Module and I would like to have the same width as my landscape page in the form. If will make things easier for the user to make the data entry since it looks like MS-Word except for the Portrait/Landscape issue. Any idea?
    Thank you in advance for your suggestion.
    BR,
    Sylvain

  • HCM PnF - "Send" button missing while saving the form as Draft

    Hi All,
    We are facing an issue in HCM PnF.
    Issue is - Whenever we are saving the form as Draft and later on when we open it and try to send it, the "Send" button is missing.

    Hi Pooja,
    I think u are viewing the Display Form Records, When you select the Record in the Draft status then it just opens the form which just gives the option to view not to check and send.
    You have the select the Record from the Above tabel (UWL) which will open the appln which will be having the different buttons in different view of Process..
    Hope it helps.
    Thanks
    Dipu

Maybe you are looking for

  • Smartforms - Confusing contents sometimes

    Hi, I have an invoice print program and a smartform. At the beginning, the print program calls the function LB_BIL_INV_OUTP_READ_PRTDATA to get the print data. After that it reads the texts and stuff. In the end, it calls the function of the smartfor

  • Folders created in Windows accessible on Mac

    When I get an iMac, I will be from time to time needing to transfer jpeg pictures and MP3 files from a Windows PC to my iMac by way of a USB thumb drive or external USB hard drive. From what I have read. I would need to ensure that the USB thumb driv

  • Windows Server 2012 R2 robocopy not copying inherited directory permission from source file server to destination ?

    Can anyone here please help me with Robocopy on Windows Server 2012 R2 to copy the file server content from \\OldFileServer\Data share into the local S:\Data drive ? here's my script that I use to copy 11 TB of file server contents: robocopy.exe "\\O

  • ASSIGN SALES CONTRACT TO SALES ORDER

    Hi, I have created a sales contract. now i want to assign that sales contract to sales order with same material and sold to party. But the price is not getting captured in material conditions after assigning it to sales contract. Assigning the contra

  • Two different system in ESS ABAP Webdynpro

    Hi Experts,             Is it possible to connect two different system (ECC 6.0) in ESS with ABAP Webdynpro Technology (EHP5)? I know it is possible in Java Webdynpro (EHP4). Please advice. Thanks Jacob