Unable to see system process request page, process monitor page

Hi all,
We refreshed our test instance with prod recently. sysaudit and ddd audits were clean except for the following entries in sysaudit which i thought wasnt of much significance here.
SEC-30) Role User table (ROLEXLATOPR) should be populated when new User Profiles (entries in PSOPRDEFN) are created
sing User Profile component through PIA. The following User Profiles need to be fixed by simply opening and saving
hem through PIA:
per ID     Description
OPP_PORTALADM     Common Portal Administrator
OPP_PORTALMGR     Common Portal Manager
OPP_USER     Common Portal User
3 Total Rows
On logging to the superuser VP1, am not able to see many pages, such as system process request, process monitor and also do not have access to user profile page.
The upgcount was matched with prod instance and didnt find any issues there. For the same profile in prod, the user has access to all the above mentioned pages. In the cloned copy, no user has access to these pages.
We checked the permission lists and roles attached. They are all in place as the same user is able to access the pages in prod instance.
Could it be webprofile issue. We tried clearing the webserver and appserver cache and bouncing them. the webserver in use is websphere and OS is AIX.
Appreciate any valuble feedback i can get on this.
Thanks

Here's just a thought.
Do you know if it is a security problem or a portal problem? I mean is the issue just that the links for Process Monitor, etc. don't show up in the menu, or does it give you a not authorized message?
Here's the thought:
Try to hit these links by pasting them into your browser:
http://localhost:80/psp/HR90DMO/EMPLOYEE/HRMS/c/PROCESS_SCHEDULER.PRCSMULTI.GBL
http://localhost:80/psp/HR90DMO/EMPLOYEE/HRMS/c/PROCESSMONITOR.PROCESSMONITOR.GBL
Make sure that you change:
- "localhost" for your servername
- "80" for your port
- "HR90DMO" for your weblogic domain name
If you can see the page, we need to look at your portal setup or portal security, maybe run Portal Security Sync. If you get an error message, can you post that message, and maybe we need to check the main security setup, etc.
Hope that helps at least get a little further toward a solution.

Similar Messages

  • Unable to see system variable no in sap b1 due to watch

    Dear Sir,
    In SAP B1
    I am generating report Customer Aging Report.
    In PLD   Customer Code is displaying buy i am unable to display customer name in PLD because when i am unable to see
    system variable number.
    The watch cover that variable no. how can i find system variable no.
    is there any other method to see system variable no.

    Hi,
    what you are seeing in system-> status is not the installation number that is the status of your system's SAP License
    when you have not installed the license properly after the installation, it shows the status as initial
    go to SM51
    there you can find the instance number along with the Hostname_SID_InstNumber of your server
    thanks and regards
    Abdul Hadi

  • Unable to see deployed process in Business process workspace

    Hello ,
    I am using BPM Suite 11gR1 in Oracle Jdeveloper. As using Hello world sample, I deployed the process successfully at weblogic server But i am unable to see the deployed application bpm/workspace (Business Process Workspace).
    How can i make sure this? There is no exception in server logs.
    thanks

    Thanks MSR.
    I have other Web Dynpro applications that I have succesfully deployed and they display correctly in the WDP Content Administrator.
    The application in question is fine up until the point I activate the changes. So using NWDS I build and deploy the application, and it shows correctly in the Content Administrator. Once I activate the Activity I can no longer see the contents of the DC through the Content Administrator.
    So what I see in our development environment is:
    + rd1.com/WorkingOK
    + Applications
    + Components
    + Models
    - rd1.com/NotWorking
    (The rd1.com/NotWorking node cannot be expanded)
    Therefore I can no longer run the NotWorking application or transport it into QA/Production.
    I have noticed that in the Development Configurations perspective in NWDS that the DC in question does not have src/packages/ProjectProperties.wdproperties

  • Unable to see layout design in page editor

    I am using JDeveloper version 11.1.2.0.0.
    I downloaded the hands-on practices from the site Tuhra2 – Sample application for the Oracle JDeveloper 11g Handbook.
    When I open the jspx files under Web Content, the visual design does not show up in the Design tab, instead I can only see the tags in text form.
    What can I do to see the visual layout of the page?

    I'm having same strange behavior.
    Before my JDeveloper 11g R2 Design Page work OK. Than I checkout application from SVN to another folder in FS (my JDev was closed meanwhile). I opened JDev and closed "old" app and open "new" (from that different folder) app and my Visual Design Page Editor does not work well (it is rendering well unusual with some kind of structure view).
    I have checkouted my app on another computer which has JDev installed in designer works ok. So obviously this is not app-based issue but JDev-vbased issue. What now?
    And if I enable Tools -> Preferences -> JSP and HTML Visual Editor -> Show Design Time Messages in Log I'm getting:
    WARNING: [ADFbc, ADFc, ADFm, ADF_FACES, TRINIDAD] features were found in ViewController.jpr but are not installed. Install these technologies before you proceed.Edited by: zmeda on Sep 1, 2011 11:55 AM Added WARNING

  • Unable to see 2nd and 3rd pages on the report

    Hi - I am facing an issue while developing a simple report. This report is based on a table called PROD.
    DDL statement of PROD is:
    CREATE TABLE PROD
       (PID VARCHAR2(6),
        PNAME VARCHAR2(6),
        PCOST NUMBER(4,2),
        PPROFIT NUMBER(3,0),
        CONSTRAINT PROD_PK PRIMARY KEY (PID)
    Table gets created. Now importing data into the table.
    DML statement is:
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I4','SHARPR',10,1);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I5','RULER',15,10);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I6','ERASER',5,3);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I7','STAPLR',50,20);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I8','STPPIN',10,2);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I9','FILES',99,20);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I10','CALC',99,null);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I11','CD',99,90);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I12','COUPON',99,null);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I13','PHONE',60,30);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I14','AIRTME',99,90);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I3','PEN',20.5,20);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I2','FLOPPY',30,12);
    Insert into PROD (PID,PNAME,PCOST,PPROFIT) values ('I1','PENCIL',5.25,null);
    COMMIT;
    Data gets committed.
    Now I design a report based on the above. The report contains a main frame called M_1. This is just an enclosure to keep repeating frame and fields under M_1.
    A repeating frame is also created. When the repeating frame is created, the property "Max records per page" is set to "5" such that I can display above 14 records into 3 pages.
    I compile it and it compiles successfully. However when I run the report I only see 5 records on 1st page. The remaining pages do not appear at all. Do you think I am doing anything wrong here?
    Vertical elasticity property of repeating frame is set to "variable" and when I change it to "expand", it still does not make any difference (I wish I could attach the report in this thread :-( )

    what is the print on object property of the frame(Fixed as well as the repeating frame)? I think this is reason.

  • I am unable to see the words on page 2 and on in my document

    I have an essay that I typed on a blank document of pages. In the thumbnails and word count, all of my words are in the essay but I cannot see anything from page 2 and on. I have closed and retyped twice and it still does this. Help?

    How are you running iOS on a Mac mini?
    What version of Pages are you using and what Apple product are you running it on?
    Peter

  • /TMWFLOW/CMSCONF - Unable to see overview of systems

    Hi
    I am unable to see an overview of systems at /TMWFLOW/CMSCONF.
    I have configured the system landscape at SMSY. I have 3 clients in the landscape which I use as DEV, QA and PRD.
    At SOLAR_PROJET_ADMIN, I have added these components to teh landscape.
    However I am unable to see any "Change Request Management" relevant tabs in the "System landscape" tab here (as some posts in this forum suggest).
    Are these two issue related?
    Regards
    SN

    Hi
    Yes I have created the project as "Internal Maintenance Project".
    The problems that I see are:
    1. I do not see any "Project Cycle" tab in System Landscape tab at SOLAR_PROJECT_ADMIN.
    2. At SOLAR_PROJECT_ADMIN-> System Landscape-> Systems: When I check the System Landscape, It says: Logical component ZECCis not used in Project ZPRJ. (However it shows a green light.) At SMSY however I see the project ZPRJ and the logical component assigned to the project with all its systems.
    3. /TMWFLOW/CMSCONF is not showing any projects/components. For projects to show up at this transaction I think there are some settings tht I have missed.
    Can anyone walk me through the steps that I need to have done in SMSY, DSWP, Transport management etc that can help me see what I have missed? I must have missed some configuration?
    Is there any Configuration in SPRO to be done?
    Regards
    SN

  • Enhancing Web request page in Service Order in web UI

    Hi,
    We are upgrading from CRM 4 to 7 and we would like to display web request page in / from service order page. As per standard web Ui The web request & service order displayed separately, I have enhaced the view but still I'm unable to see the web request (Component:webreq) in Service order ( BT116_SERVOH). Can please gude me step by step how to enhance this in CRM 7 web UI
    Thanks & Regards,
    CHANDRA

    Hi Deepak,
    I think you may not be able to get Subject Profile field in Service Order. We had a similar problem in case of Activity Transaction. I guess this may be a bug or maybe you may need to use Categorization Schema for the purpose. Need to do more research in this area.
    Regards,
    Deepak

  • Unable to see imported RFCs in the BPM

    Hi,
    I want to invoke a BAPI from a BPM, but I am unable to see the BAPI request / response interfaces in the BPM.
    I am trying to create Containers and Transformations in the BPM, but I am unable to select the BAPI request / response interfaces.
    What do I need to configure to invoke BAPIs from the BPM ? thanks,
    -Manish

    Hi Manish,
    you need to create three things:
    1. An abstract synchronous interface with the same message types as the BAPI
    2. An abstract asynchronous interface with the message type of the BAPI request
    3. An abstract asynchronous interface with the message type of the BAPI response
    From 2 and 3 you derive Container elements and use it for request and response of the synchronous interface.
    Regards
    Stefan Grube

  • How to tell if the AE programm is called from (1) SYSTEM PROCESS REQUEST or (2) page run control request

    We just wrote an AE program and is called through the vanilla SYSTEM PROCESS REQUEST.
    It's running on a daily basis ie. with RECURRENCE.
    Now we need to call the same program through the regular page run control request.
    But we are not how to recognize from inside the AE program if whether it's been called from SYSTEM PROCESS REQUEST or RUN CONTROL REQUEST.
    Any of you might have suggestion ?
    Any technique or workaround is also appreciated.
    THANKS in Advance .

    This AE pgm is currently automatically called from SYSTEM PROCESS REQUEST on a daily basis to load data from an input file deposited on the server ready for pickup.
    We would like to use the same AE pgm ( thus using the same validation and loading logic ) to load the same file format but defined by the user ( via attachment load ) as needed any time during the day.
    The user will initiate this AE pgm online ( ie. from a page with his parameters ).
    Currently, the pgm now already runs automatically daily and we wish to make it also available to be run by user anytime in the day
    To achieve that, we would need to know:
    Is the AE pgm ran by (a) the user or by the (b) SYSTEM PROCESS REQUEST so that the program can decide of where to take input file.
    (a) Take from an attachment defined by user or (b) from the input file already deposited on the server for pickup
    That is the reason why we try to detect who called the AE pgm in order decide where to pickup the input file.
    Your help is much appreciated as I do researches but so far haven't gotten a concluded decision.
    Thank you.
    Message was edited by: Kel_123

  • Unable to see process activities in component palette

    Hi
    I am unable to see the diagram view of BPEL(Even after successful migration from 10.1.2)
    I am using 10.1.3 JDev
    I am unable to see Process activities list in the componenet palette
    Can anybody help me ...
    Thanks
    -Praveen

    yes got the same issue but hasnt gotten the solution yet..

  • Regarding CRM EIC where i am unable to display HCM processes in IC Appl

    Hello Colleagues,
    I am working on CRM_EIC.
    There is an issue where i am unable to display HCM Processes in the IC application.
    I have launched the application from CRM system thru the t-code "WUI", and selected the business role "IC_EIC_AGENT".
    Given the pernr and confirmed and in "service request" in "Business Context"tab, selected "HCM Process" and click on New,
    it connects to the ERP system for the HR processes data , it doesn't display the list of processes.
    CRM System:QOM/508
    ERP system: QV5/004
    Can you please help regarding the above issue.
    Thanks in advance.
    Kind Regards,
    Gayathri.

    Hi Vinod,
    Thanks much for the response. I had not looked at the sap note earlier on, saw it after your reply.
    However, we are not using IE7.0 yet. I would like to mention here that independent of the portal, when I launch the CRM IC Webclient on any browser, it appears well and good, but when launched from within Enterprise Portal, page appears minus the toolbar. Do you have any idea/pointers on the same. However I plan to get the notes correction done and would like to thank you for an useful answer.
    Pls do let me know if there is anything missing on EP 7.0 or CRM 2007 that needs to be done additionally.
    Thanks and regards,
    Anupama

  • SharePoint Foundation Sandboxed Code Service - Unable to activate worker process proxy object within the worker process

    Issue:
    On a vanilla installation, the sandboxed code service (e.g. SPUCHostService.exe) is started; however, SPUCWorkerProcessProxy.exe and subsequently SPUCWorkerProcess.exe fails to start.
    Resolution/Workarounds attempted:
    Attempted 2 different Load balancing settings – local and remote (i.e. affinity)
    Ensured local computer policy on server for ‘RPC Endpoint Mapper Client Authentication’ and ‘Restrictions for Unauthenticated RPC clients’ is disabled.
    Ensured following key in registry is set properly - HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\RPC
    Attempted to bypass SharePoint’s check for certificate revocations at crl.microsoft.com
    Ensured the service account is added to the respective groups (e.g. Performance Log Users, Performance Monitor Users, IIS_IUSRS, WSS_ADMIN_WPG, WSS_WPG)
    Increased limit of ‘AbnormalProcessTerminationCount’ of SPUserCodeService via Powershell
    We have tried all possible workarounds from the following MSDN reference:
    http://blogs.msdn.com/b/sharepointdev/archive/2011/02/08/error-the-sandboxed-code-execution-request-was-refused-because-the-sandboxed-code-host-service-was-too-busy-to-handle-the-request.aspx
    ULS:
    02/21/2014 05:24:50.64  SPUCHostService.exe (0x0230)  0x0F74  SharePoint Foundation Sandboxed Code Service              fe8a               
    Medium               -  - Unable to activate worker process proxy object within the worker process: ipc://38432b45-2f32-4926-ade2-ef53ae1cd501:7000  
    02/21/2014 05:24:50.64  SPUCHostService.exe (0x0230)  0x0F74  SharePoint Foundation Sandboxed Code Service              fe8c               
    Medium               -  - Error activating the worker process manager instance within the worker process. - Inner Exception: System.InvalidOperationException: Unable to activate worker
    process proxy object within the worker process: ipc://38432b45-2f32-4926-ade2-ef53ae1cd501:7000     at Microsoft.SharePoint.UserCode.SPUserCodeWorkerProcess.CreateWorkerProcessProxies()    
    02/21/2014 05:24:50.64  SPUCHostService.exe (0x0230)  0x0F74  SharePoint Foundation Sandboxed Code Service              ei0t               
    Medium               - Process creation/initialization threw an exception. Stopping this process. "ipc://38432b45-2f32-4926-ade2-ef53ae1cd501:7000"
    02/21/2014 05:24:50.65  SPUCHostService.exe (0x0230)  0x0F74  SharePoint Foundation Sandboxed Code Service             
    fe87                Medium               -  - Error activating the worker process manager instance within
    the worker process. - Starting worker process threw - Inner Exception: System.InvalidOperationException: Unable to activate worker process proxy object within the worker process: ipc://38432b45-2f32-4926-ade2-ef53ae1cd501:7000     at Microsoft.SharePoint.UserCode.SPUserCodeWorkerProcess.CreateWorkerProcessProxies()   
    Any other insights on how I can troubleshoot the issue described?
    Thanks in advance!

    Hi ,
    For resolving your issue , you can do as the followings:
    1. Logged into the Web Server with the Timer Service Account.
    2. Ran the powershell command to check the SID of the account running the spucworkerprocessproxy.exe:  
    $(Get-SPManagedAccount -Identity "THE SERVICE ACCOUNT").Sid.Value
    3. Checked the registry :
    HKEY_USERS\[SID OF THE SERVICE ACCOUNT]\Software\Microsoft\Windows\CurrentVersion\WinTrust\Trust Providers\Software Publishing\State
    4. Changed the value 0x00023c00 to 0x00023e00
    In addition, here are some similar posts for you to take a look at:
    http://social.technet.microsoft.com/Forums/en-US/aae497df-5f0d-4f86-a724-c7b805ccd07f/sharepoint-sandboxed-code-service-troubles?forum=sharepointgeneralprevious
    http://blogs.technet.com/b/operationsguy/archive/2011/01/17/sharepoint-2010-sandboxed-code-solutions-and-web-proxy.aspx
    http://social.msdn.microsoft.com/Forums/en-US/c21e2c3a-a259-4d5f-8071-eff52b7bddc3/issue-sandbox-solution-too-busy-to-handle-the-request?forum=sharepointgeneralprevious
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • System launchd agent error starting/stopping system processes

    I installed PHP 5.4 via brew package manager. I kept the system Apache & configured it to work with this version of PHP rather than the system copy. I used launchctl (sudo launchctl load -w /System/Library/LaunchDaemons/org.apache.httpd.plist) to load apache automatically on boot. I created a Sites folder for Mountain Lion and opened http://localhost/index.php and got the standard PHP 5.4 system config page showing that everything is working fine. I checked my system logs just to be sure nothing was out of the ordinary and I am seeing these errors in my log even though everything seems to be fine and I am not seeing system crashes, slow runtimes, etc:
    9/5/12 2:38:51.292 PM com.apple.launchd[1]: (org.freeradius.radiusd[3055]) Exited with code: 1
    9/5/12 2:38:51.292 PM com.apple.launchd[1]: (org.freeradius.radiusd[3055]) Exited with code: 1
    9/5/12 2:38:51.292 PM com.apple.launchd[1]: (org.freeradius.radiusd) Throttling respawn: Will start in 10 seconds
    9/5/12 2:38:56.686 PM com.apple.launchd[1]: (org.isc.named[3056]) Exited with code: 1
    9/5/12 2:38:56.686 PM com.apple.launchd[1]: (org.isc.named) Throttling respawn: Will start in 10 seconds
    9/5/12 2:39:01.328 PM com.apple.launchd[1]: (org.freeradius.radiusd[3057]) Exited with code: 1
    9/5/12 2:39:01.328 PM com.apple.launchd[1]: (org.freeradius.radiusd) Throttling respawn: Will start in 10 seconds
    9/5/12 2:39:06.700 PM com.apple.launchd[1]: (org.isc.named[3058]) Exited with code: 1
    9/5/12 2:39:06.700 PM com.apple.launchd[1]: (org.isc.named) Throttling respawn: Will start in 10 seconds
    9/5/12 2:39:11.359 PM com.apple.launchd[1]: (org.freeradius.radiusd[3060]) Exited with code: 1
    9/5/12 2:39:11.359 PM com.apple.launchd[1]: (org.freeradius.radiusd) Throttling respawn: Will start in 10 seconds
    9/5/12 2:39:16.715 PM com.apple.launchd[1]: (org.isc.named[3061]) Exited with code: 1
    9/5/12 2:39:16.715 PM com.apple.launchd[1]: (org.isc.named) Throttling respawn: Will start in 10 seconds
    9/5/12 2:43:17.060 PM named[3171]: starting BIND 9.8.1-P1 -f
    9/5/12 2:43:17.060 PM named[3171]: built with '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--disable-dependency-tracking' '--prefix=/usr' '--sysconfdir=/private/etc' '--localstatedir=/private/var' '--enable-atomic=no' '--with-openssl=yes' '--with-gssapi=yes' '--enable-symtable=none' 'CC=/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.8.xctoolchain/u sr/bin/cc' 'CFLAGS=-arch i386 -arch x86_64 -g -Os -pipe -gdwarf-2 ' 'LDFLAGS=-arch i386 -arch x86_64 -framework IOKit -framework CoreFoundation' 'CXX=/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.8.xctoolchain/ usr/bin/c++' 'CXXFLAGS=-arch i386 -arch x86_64 -g -Os -pipe '
    9/5/12 2:43:17.064 PM named[3171]: /private/etc/named.conf:4: open: /etc/rndc.key: file not found
    9/5/12 2:43:17.064 PM named[3171]: loading configuration: file not found
    9/5/12 2:43:17.064 PM named[3171]: exiting (due to fatal error)
    9/5/12 2:43:17.065 PM com.apple.launchd[1]: (org.isc.named[3171]) Exited with code: 1
    9/5/12 2:43:17.065 PM com.apple.launchd[1]: (org.isc.named) Throttling respawn: Will start in 10 seconds
    9/5/12 2:43:22.164 PM com.apple.launchd[1]: (org.freeradius.radiusd[3173]) Exited with code: 1
    9/5/12 2:43:22.164 PM com.apple.launchd[1]: (org.freeradius.radiusd) Throttling respawn: Will start in 10 seconds
    9/5/12 2:43:27.075 PM named[3174]: starting BIND 9.8.1-P1 -f
    Process:         SleepServicesD [48]
    Path:            /System/Library/CoreServices/SleepServicesD
    Identifier:      SleepServicesD
    Version:         1.43
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [1]
    User ID:         0
    Date/Time:       2012-09-05 07:47:33.363 -0400
    OS Version:      Mac OS X 10.8.1 (12B19)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    Assertion failed: (ret == kIOReturnSuccess), function -[PowerStateTracker init], file /SourceCache/SleepServicesD_executables/SleepServicesD-1.43/SleepServicesD/Powe rStateTracker.m, line 148.
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib             0x00007fff8cbbe212 __pthread_kill + 10
    1   libsystem_c.dylib                  0x00007fff897deb34 pthread_kill + 90
    2   libsystem_c.dylib                  0x00007fff89822dfa abort + 143
    3   libsystem_c.dylib                  0x00007fff89823dd5 __assert_rtn + 146
    4   SleepServicesD                     0x000000010ce44e09 0x10ce43000 + 7689
    5   SleepServicesD                     0x000000010ce43e75 0x10ce43000 + 3701
    6   libdyld.dylib                      0x00007fff87b2b7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib             0x00007fff8cbbed16 kevent + 10
    1   libdispatch.dylib                  0x00007fff8bba8e26 _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                  0x00007fff8bba8a2a _dispatch_mgr_thread + 54
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff52dbcd28  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff52dbcd50  rsp: 0x00007fff52dbcd28
       r8: 0x00007fff77590278   r9: 0x0000000000000094  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x000000010ce4e16e  r13: 0x000000010ce4e050  r14: 0x00007fff77591180  r15: 0x000000010ce4e06a
      rip: 0x00007fff8cbbe212  rfl: 0x0000000000000206  cr2: 0x00007fff77589fe8
    Logical CPU: 0
    Binary Images:
           0x10ce43000 -        0x10ce50fff  SleepServicesD (1.43) <0FDAEB5E-4E24-3836-AFBD-81E309DEB0DC> /System/Library/CoreServices/SleepServicesD
        0x7fff6ca43000 -     0x7fff6ca7793f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff87083000 -     0x7fff870d4fff  com.apple.SystemConfiguration (1.12 - 1.12) <7A8300B5-F5B3-39F0-A4B2-4C0C293FA29F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff871b7000 -     0x7fff871dbff7  libc++abi.dylib (24.2) <340E7C7B-DC93-3AA2-B015-B1C9541EC255> /usr/lib/libc++abi.dylib
        0x7fff87314000 -     0x7fff87315ff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
        0x7fff87382000 -     0x7fff873a3ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8754e000 -     0x7fff875fffff  com.apple.LaunchServices (539 - 539) <04FA5C61-6349-3841-9609-B650B6222800> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff87772000 -     0x7fff877a8fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff877d8000 -     0x7fff87827ff7  libcorecrypto.dylib (106) <57BC99C6-3C3F-344C-BDD6-25E845D956F2> /usr/lib/system/libcorecrypto.dylib
        0x7fff87935000 -     0x7fff87936ff7  libdnsinfo.dylib (453.16) <38A3E0F4-E34C-3D45-A2C9-4CDE2DF007BD> /usr/lib/system/libdnsinfo.dylib
        0x7fff87aca000 -     0x7fff87b27ff7  com.apple.AE (645 - 645) <9C3E54BA-EE6B-3F02-8775-9C4AF40F40CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff87b29000 -     0x7fff87b2cff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff893df000 -     0x7fff8944cfff  com.apple.datadetectorscore (4.0 - 269.1) <C94C372B-3821-3A46-A8C2-091AB1CFF7F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff897c9000 -     0x7fff89895fef  libsystem_c.dylib (825.24) <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
        0x7fff89e95000 -     0x7fff89e96fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff89ec4000 -     0x7fff89ec7fff  com.apple.TCC (1.0 - 1) <DE7ECAC3-BD08-323A-9C12-EE4A49B72871> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8a2ae000 -     0x7fff8a421ff7  com.apple.CFNetwork (596.1 - 596.1) <62830510-738D-3719-AD51-68E816B13BB7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8a438000 -     0x7fff8a440ff7  libsystem_dnssd.dylib (379.27.1) <B9F7B01D-8FAF-3CA5-909E-4D52B8D2DD8A> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8a914000 -     0x7fff8a97dfff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff8a989000 -     0x7fff8a989fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8a9a5000 -     0x7fff8a9a7fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff8b648000 -     0x7fff8b656ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff8bab4000 -     0x7fff8bae5fff  com.apple.DictionaryServices (1.2 - 184) <B37F9A90-8954-3DEC-A216-8ABB15C615A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8bba4000 -     0x7fff8bbb9ff7  libdispatch.dylib (228.18) <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
        0x7fff8bbbc000 -     0x7fff8bbbcfff  libOpenScriptingUtil.dylib (148) <4DB14EC4-422C-3AE8-83BF-354FEC197FD3> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8bbbd000 -     0x7fff8bc3efff  com.apple.Metadata (10.7.0 - 707.1) <ED39A710-1D87-3207-BB7D-4465B2673C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8bd19000 -     0x7fff8bd26fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8bd82000 -     0x7fff8bd8afff  liblaunch.dylib (442.21) <224CB010-6CF8-3FC2-885C-6F80330321EB> /usr/lib/system/liblaunch.dylib
        0x7fff8bd8b000 -     0x7fff8bd8cfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8bdc2000 -     0x7fff8bdc7fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8c7ee000 -     0x7fff8cb05ff7  com.apple.CoreServices.CarbonCore (1037 - 1037) <5127E2AB-AE98-3393-AEF6-CA8C1090F921> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8cbaa000 -     0x7fff8cbabff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
        0x7fff8cbac000 -     0x7fff8cbc7ff7  libsystem_kernel.dylib (2050.9.2) <F646589B-13F8-3685-8C17-92C77993AE86> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8d38e000 -     0x7fff8d3a5fff  com.apple.GenerationalStorage (1.1 - 132.1) <EAB41613-0145-3CE5-AA60-A8A791A3EE22> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8d600000 -     0x7fff8d601fff  libDiagnosticMessagesClient.dylib (7) <56A70657-E8C2-3804-AB87-77DC100512A4> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8e379000 -     0x7fff8e3a4fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8e3a5000 -     0x7fff8e3aafff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8e580000 -     0x7fff8e58fff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8fb43000 -     0x7fff8fb49fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8fb96000 -     0x7fff8fb9dfff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff8fb9e000 -     0x7fff8fefaff7  com.apple.Foundation (6.8 - 945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8ffbd000 -     0x7fff8ffbfff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff900df000 -     0x7fff900edff7  libkxld.dylib (2050.9.2) <4BEE9BC3-3708-330E-89D6-03E715D712CC> /usr/lib/system/libkxld.dylib
        0x7fff90313000 -     0x7fff90410fff  libsqlite3.dylib (138) <8D6A6805-1494-30D1-9F2A-F58FA3C0D7EE> /usr/lib/libsqlite3.dylib
        0x7fff9044b000 -     0x7fff904d8ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff905f7000 -     0x7fff9070fa27  libobjc.A.dylib (532) <9FA80CDA-97F4-3801-8879-0C1B976BC5CA> /usr/lib/libobjc.A.dylib
        0x7fff90767000 -     0x7fff90772fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff9084e000 -     0x7fff90855fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff90856000 -     0x7fff90868ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff90904000 -     0x7fff90904fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff90988000 -     0x7fff9099ffff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff91197000 -     0x7fff9119dfff  com.apple.DiskArbitration (2.5 - 2.5) <348AC0CC-6BCE-3416-9141-A5C1164EDDFF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff912a3000 -     0x7fff9148cfff  com.apple.CoreFoundation (6.8 - 744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff9194b000 -     0x7fff91959fff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
        0x7fff91cb1000 -     0x7fff91cbeff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff91cbf000 -     0x7fff91cc5ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff91cc6000 -     0x7fff91d33ff7  com.apple.framework.IOKit (2.0 - 755.9.7) <9B7C5E7A-3F7A-3E70-8179-4384992B84E0> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff91f9d000 -     0x7fff9226aff7  com.apple.security (7.0 - 55178.0.1) <8102877E-C866-33D4-A947-02FC7F4BAA95> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff924c7000 -     0x7fff9256dfff  com.apple.CoreServices.OSServices (557 - 557) <F5955FD8-E6E1-359F-9D9D-381E55E3EF37> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff925a2000 -     0x7fff9260aff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff92615000 -     0x7fff92643ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff928ad000 -     0x7fff928aeff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff934b2000 -     0x7fff934c5ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff934c6000 -     0x7fff934cafff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff934d7000 -     0x7fff93523ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff93524000 -     0x7fff93546ff7  libxpc.dylib (140.37) <C552985C-2171-3136-A1B9-3AB21CBF7C4A> /usr/lib/system/libxpc.dylib
        0x7fff93547000 -     0x7fff93644ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff9380f000 -     0x7fff93a0ffff  libicucore.A.dylib (491.11.1) <17E8B610-6B16-3F91-B49C-7CAE0D08E9CF> /usr/lib/libicucore.A.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 21
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=79.5M resident=36.3M(46%) swapped_out_or_unallocated=43.2M(54%)
    Writable regions: Total=40.1M written=332K(1%) resident=408K(1%) swapped_out=0K(0%) unallocated=39.7M(99%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             31.3M
    MALLOC guard page                    32K
    STACK GUARD                        56.0M
    Stack                              8712K
    VM_ALLOCATE                           8K
    __DATA                             3240K
    __LINKEDIT                         52.8M
    __TEXT                             26.7M
    __UNICODE                           544K
    shared memory                        12K
    ===========                      =======
    TOTAL                             179.1M

    1. Mae sure that the ports you have specified in the Communiation tab are not specified anywhere else, either in PCo or in another application on the PCo worstation. For testing, set either MII or Legacy and use the same port number for each, just don't chec both boxes at the same time.
    The Legacy and MII port settings must be different, or you should receive an error in PCo.  As Steve mentioned, a port address can only be used once by any application on a given server.  Multiple PCo agents using the same port will cause a conflict as will trying to use the same port for both Legacy and MII connector for a single agent.  MII 11.5 only supports the Legacy (UDC) Connector, so I suggest that you do not select the MII connector check box and leave the port setting blank.  Select Legacy connector and set a port address for that connector.
    To determine if a port is available to use, you can open a command prompt and use the command netstat -a -o to list all the ports which are in use.  Please note, this is only active ports.
    2. I think you will need to get the compatibility issue between xMII 11.5 and PCo 2.1 answered by the PCo team; I have no way of testing this.
    MII 11.5 should work with PCo 2.1.  Configure the PCo agent to use the Legacy connector.  Create a UDC data server in MII and Pco should work like the UDS.
    Regards
    Chris Carney

  • Unable to see the pageviewer in a page from pages library in a custom page layout

    <File Url="Inbox.aspx" Type="GhostableInLibrary" Level="Published" Path="myPages\Pages\Inbox.aspx" >
    <AllUsersWebPart WebPartOrder="0" WebPartZoneID="Header" ID="inboxwp1">
    <![CDATA[<WebPart xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/WebPart/v2">
    <Title>Inbox</Title>
    <FrameType>Default</FrameType>
    <Description>Displays another Web page on this Web page. The other Web page is presented in an IFrame.</Description>
    <IsIncluded>true</IsIncluded>
    <ZoneID>wpz</ZoneID>
    <PartOrder>0</PartOrder>
    <FrameState>Normal</FrameState>
    <Height></Height>
    <Width />
    <AllowRemove>true</AllowRemove>
    <AllowZoneChange>true</AllowZoneChange>
    <AllowMinimize>true</AllowMinimize>
    <AllowConnect>true</AllowConnect>
    <AllowEdit>true</AllowEdit>
    <AllowHide>true</AllowHide>
    <IsVisible>true</IsVisible>
    <DetailLink />
    <HelpLink />
    <HelpMode>Modeless</HelpMode>
    <Dir>Default</Dir>
    <PartImageSmall />
    <MissingAssembly>Cannot import this Web Part.</MissingAssembly>
    <PartImageLarge>/_layouts/15/images/mscntvwl.gif</PartImageLarge>
    <IsIncludedFilter />
    <Assembly>Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c</Assembly>
    <TypeName>Microsoft.SharePoint.WebPartPages.PageViewerWebPart</TypeName>
    <ContentLink xmlns="http://schemas.microsoft.com/WebPart/v2/PageViewer">/_layouts/15/AppPages/InboxRedirectPage.aspx</ContentLink>
    <SourceType xmlns="http://schemas.microsoft.com/WebPart/v2/PageViewer">URL</SourceType>
    </WebPart>]]>
    </AllUsersWebPart>
    <AllUsersWebPart WebPartOrder="0" WebPartZoneID="LeftWP" ID="wpLeft">
    <![CDATA[
    <webParts>
    <webPart xmlns="http://schemas.microsoft.com/WebPart/v3">
    <metaData>
    <type name="myWebParts.ProjectLinks.ProjectLinks, m, Version=1.0.0.0, Culture=neutral, PublicKeyToken=52f3214933d771f7" />
    <importErrorMessage>$Resources:core,ImportErrorMessage;</importErrorMessage>
    </metaData>
    <data>
    <properties>
    <property name="Title" type="string">myprojectLinks</property>
    <property name="Description" type="string">My Visual Web Part</property>
    </properties>
    </data>
    </webPart>
    </webParts>
    ]]>
    </AllUsersWebPart>
    <Property Name="ContentTypeId" Value="0x010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF390076F7B5D03DD146D699D042E1C5D76EF7" />
    <Property Name="FileLeafRef" Value="Inbox.aspx" />
    <Property Name="Title" Value="Inbox" />
    <Property Name="PublishingPageLayout" Value="~SiteCollection/_catalogs/masterpage/myPageLayout/myPage.aspx, my custom Page Template"/>
    <Property Name="ContentType" Value="myPageCT" />
    <Property Name="_ModerationStatus" Value="3" />
    <Property Name="FileDirRef" Value="Pages" />
    <Property Name="FSObjType" Value="0" />
    </File>
    I have created a custom page layout in my site collec. using VS 2012 and deployed am able to see the page in the pages lib [inbox.aspx].
    Here, I have added a page viewer web part and I want to redirect to another application page, which is already coded [inboxredirect.aspx] in my solution[its another dll - another SP solution which has appln pages and web parts
    etc - ] 
    The issue is that, i am unable to see the page viewer web part when the page is displayed. inbox.aspx is a page which is created once my custompagelayouts solution is deployed and when i navigate to this page, i am stuck . i am getting
    the  " access denied " message is displayed.  
    can anyone help why this  error is displayed?
    in my inboxredirect.aspx page i am inherting from unsecuredlayoutspagebase class, so  i dont think , access denied message should come.
    using System;
    using System.Configuration;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.WebControls;
    namespace myproj.Layouts.AppPages
    public partial class InboxRedirectPage : UnsecuredLayoutsPageBase
    string projectName = string.Empty;
    protected void Page_Load(object sender, EventArgs e)
    string siteUrl = SPContext.Current.Web.Url;
    using (SPSite site = new SPSite(siteUrl))
    using (SPWeb web = site.OpenWeb())
    string urlProjectName =Request.UrlReferrer.ToString();
    projectName = urlProjectName.Split('/')[5];
    //end
    SPUser user = web.CurrentUser;
    if (user != null)
    above is my appln page to which i am redirecting.

    Solved it myself guys... (Well the major part)
    Got help from here...
    https://www.nothingbutsharepoint.com/sites/devwiki/articles/pages/blank-open-save-dialog-when-browsing-document-library-from-office-clients.aspx
    and
    http://www.sharepointconfig.com/2011/02/vs2010-list-definition-template-missing-file-dialog-view/
    with some tweaks of my own..
    Still working on it because its showing SharePoint 2010 header... And I need 2013 look...

Maybe you are looking for