Regarding Support of Dynamic system  resolution for iview "Skills profile"

Hi All,
  I wanted to know whether of dynamic system resolution "VIR" is supported for persinfo  webdnpro Java iview ??
Also I would like to know the procedure that is to be followed so that a iview uses the dynamic system configuration.What are the actual steps ?
If there are any documents related to this please let me know it would really help.
Thanks in advance!
Regards,
Sowmya

you guys can refer to this weblog:
<a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1432">https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1432</a>
Ashish Shah

Similar Messages

  • Dynamic system resolution for portal published BI content

    I have a Dev-Tst-Prd ABAP stack BI landscape with a corresponding Dev-Tst-Prd Java stack portal landscape.
    My BI developers create reports and webdynpro applications which are then published to our portal and made available via iViews.  These iViews refer to the target applications via URLs which contain hardcoded hostnames and port numbers.  This makes it a pain when portal content is transported from Dev to Tst and then to Prd.
    All my BI systems are known by the SAP_BW alias.  I have a different system definition in each portal for the SAP_BW alias pointing to the corresponding BI backend.
    Can I use dynamic system resolution for this?  If so, how?
    I want a URL like http://<devhost.domain>:<devport>/sap/bc/webdynpro/sap/appname to be transportable.  Obviously if that starts out as http://dev.mycompany.com:8100/sap/bc/webdynpro/sap/appname, it won't work when it arrives in tst where it needs to be http://tst.mycompany.com:8110/sap/bc/webdynpro/sap/appname.  If I could store the URL as something like http://<%JSP SAP_BW %>/sap/bc/webdynpro/sap/appname this could be transportable if there was something in dynamic system resolution to resolve the variable appropriately at runtime in each system.
    As a Netweaver administrator, rather than a portal developer, I'm a little lost as to where to even start.

    Success!  Thank you for your help.
    What finally worked?
    Create a Portal Component iView of type com.sap.portal.appintegrator.sap
    Set URL Template to http://<System.wap.ITS.hostname>/sap/bc/webdynpro/sap/zcs_wd_cc_app
    Set System to SAP_BW (where SAP_BW is an alias for the System entry for the system where we want the WebDynpro app to run)
    Where did the help come from?
    SDN (Mr Nicholls in particular)
    SAP Help (http://help.sap.com/saphelp_nw70/helpdata/en/21/dfd241cb76c417e10000000a155106/frameset.htm in particular)
    Where did the parameter value reference come from?
    The "wap.ITS.hostname" attribute name came from the portal's system definition for SAP_BW.  Under System Administration -> System Configuration -> System Landscape -> Portal Content the entry for the SAP_BW system can be displayed.  In that system entry there is a field labelled SAP ITS host which contains the fully qualified hostname and port number for the ITS server delivering my application.  Expanding the detail of this field (click the arrow head beside the name) shows its Property ID to be wap.ITS.hostname.
    So this last answers my earlier question about where to find the valid contexts and attributes per context for the variables to substitute in the URL template.  The contexts are the names of the fields available to configure the iView, the attributes are the Property IDs of the relevant information fields in the obect described by the context.
    Note:  This solution ended up only being required for WebDynpro content.  The generated URL for WebDynpros appears to resolve any load-balance ITS URL to a specific host and port before publishing, the method here leaves the resolution until runtime - a great advantage in performance and flexibility.
    The Web Application Designer published report content was generated in a transportable form already.

  • Dynamic system resolution "VIR"

    Hi All,
    I wanted to know whether of dynamic system resolution "VIR" is supported for persinfo webdnpro Java iview ??
    Also I would like to know the procedure that is to be followed so that a iview uses the dynamic system configuration.What are the actual steps ?
    If there are any documents related to this please let me know it would really help.
    Thanks in advance!
    Regards, Sowmya

    you guys can refer to this weblog:
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1432">https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1432</a>
    Ashish Shah

  • Dynamic System Resolution issues

    hello forumers,
    i'd like to implement a Dynamic System Resolution scenario, on an EP7 sp14.
    based on the examples i've found on the sap web site, i ve created some content (R/3 transaction Iviews using an alias "SAP_SRM")
    I tried to change the target R/3 server, based on the group to which the user belong !
    i've created a portal service : portalapp.xml =
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="releasable" value="false"/>
        <property name="startup" value="true"/>
        <property name="ServicesReference" value="com.sap.portal.usermanagement,com.sap.portal.ivs.api_dynamicSystemService"/>
      </application-config>
      <components/>
        <registry>
        <entry path="/runtime/alias.mappers/SAP_SRM" name="DSRPortalService" type="service"/>
      </registry>
      <services>
        <service name="DSRPortalService">
          <service-config>
            <property name="className" value="com.airbus.DSR.DSRPortalService"/>
            <property name="startup" value="true"/>
          </service-config>
        </service>
      </services>
    </application>
    and a service called DSRPortalService:
    public String getAlternativeSystem(IUser user, String alias) {
              String pcdLocation = "pcd:portal_content/SRMSystems/";
              String system = "xgi";
              String userName = user.getUniqueName();
              IGroupFactory fact = UMFactory.getGroupFactory();
              try {
                   if (user
                        .isMemberOfGroup(
                             fact.getGroupByUniqueName("Group1").getUniqueID(),
                             true)) {
                        //the user is french
                        system = "xgi";
                   } else if (
                        user.isMemberOfGroup(
                             fact.getGroupByUniqueName("Group2").getUniqueID(),
                             true)) {
                        //the user is German
                        system = "xda";
              } catch (UMException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              return pcdLocation + system;
    when i try to acces to the R/3 trasancation i get the following exception:
    Exception ID:01:18_15/01/09_0001_1852850
    [EXCEPTION]
    com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : pcd:portal_content/Olivier/ROLES/DSR/DSRRole/SRM
    Component class : com.sapportals.portal.sapapplication.SAPApplicationIntegratorComponent
    User : to29267
         at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:973)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:524)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:407)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: com.sapportals.portal.prt.runtime.PortalRuntimeException: Exception in SAP Application Integrator occured: Unable to parse template &#39;&lt;System.ConnectionString&gt;&#39;; the problem occured at position 0. Cannot process expression &lt;System.ConnectionString&gt; because Invalid System Attribute:
    System:    &amp;#39;SAP_LocalSystem&amp;#39;,
    Attribute: &amp;#39;ConnectionString&amp;#39;.
         at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContentPass(AbstractIntegratorComponent.java:123)
         at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContent(AbstractIntegratorComponent.java:98)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         ... 29 more
    have you got any ideas ?
    best regards,
    Olivier.

    hello,
    thanks for your quick reply !
    i alredy used your blog to create my DSR scenario ...
    as you could see, i didn't even change the alias and i used the name you have prrovided in your blog !
    please find just behind a copy of "portal runtime" in the System Administration:
    Portal Application Name Depends on Dependents Access State
    NewPortalAppProject   com.sap.portal.ivs.api_dynamicSystemService
    com.sap.portal.usermanagement   service: NewPortalAppProject|DSRPortalService     (refresh)
    Portal Service Items :
    Class Name Class Name Factory Pool Size Nb Accessed Last Accessed Time Last Stopped Time State
    com.airbus.DSR.DSRPortalService none 0 1 Thu Jan 15 11:05:25 CET 2009 never started (restart)
    and also the content of runtime in the portal Registry browser:
    You are here: ROOT/runtime/alias.mappers
    Child list of the current context:
    Name Class name
    SAP_SRM java.lang.String - NewPortalAppProject|DSRPortalService 
    do you have any idea of what i might have forgotten please ?
    best regards,
    Olivier.

  • Dynamic System Resolution

    Hi
    i want to use the IDynamicSystemService Interface to dynamically resolve the System Based on the
    User Group.
    1.Has anyone done this ?
    2. this interface is part of which jar file ?
    3. I have to create a Portal Application Project and add a Portal Service to it. is it correct ?
    Any answers ?
    Regards
    Rajendra

    Solved.
    For Ref to otheres.
    1 .this is part of com.sap.portal.ivs.api_dynamicSystemService_api.jar file.
    2 .need to create a Portal Service.
    3. Refer this URL for Details of How to do it : [Dynamic System Resolution|http://help.sap.com/saphelp_nw70/helpdata/en/21/dfd241cb76c417e10000000a155106/content.htm]
    Best Regards
    Rajendra
    Edited by: Rajendrakumar Gaikwad on Sep 18, 2008 9:12 AM

  • Dynamic System Resolution and Custom Login Modules

    I'm trying to achieve the following, and wondered whether anyone could validate that is possible, and possible solutions.
    We want to use Dynamic System Resolution to programatically determine which system alias (and therefore which R3 client) should be returned based on the user. So far so good.
    When the user logs in, we want them to be able to specify which R3 client they wish to use whilst logged in to EP. We are considering writing a custom login module to do this, which will strip the client the user wishes to use out of the j_user username, and stores the client value *somewhere* so that the Dynamic System Resolution code can access it and base the system alias it returns on the user's prefered client.
    Considering the DSR code only has access to the IUser object it would be handy if our login module could store the prefered client as an attribute in the IUser object. Is it possible to set custom attributes in custom login modules for a given user?
    We want to do this to avoid having to have an EP instance per client in a given R3 system, and to avoid duplicating worksets by creating delta linked copies and overriding the client number.
    Any suggestions?
    Cheers,
    Steve

    Hello,
    Before even doing such an elaborated construction, I do not succeed in writing a working Dynamic System Resolution.
    The service doing the resolution is never called when the method getSystemID() is invoked.
    I know that the registry is read (I first test with a system alias which was in the PCD and get an error when debugging, I forget that you cannot use the same system alias in the PCD and in the Dynamic System Resolution service) but afterward the resolving service is not called.
    Has anyone an idea ?
    Thanks a lot
    Best regards
    Richard

  • What are the supported Platforms and system requirements for JSE?

    What are the supported Platforms and system requirements for JSE?

    Hi There,
    The following are the system requirements & the support platforms for JSE :-
    * Solaris 9 and 8 Operating Systems (SPARC Platform Edition)
    o UltraSPARC II 450-MHz system with 512 MB of memory and 850 MB of disk space
    o Recommended: UltraSPARC III 750-MHz system with 1 GB of memory and 1 GB of disk space, or higher.
    * Solaris 9 Operating System (x86 Platform Edition)
    o Pentium III 500-MHz system with 512 MB of memory and 850 MB of disk space
    o Recommended: Pentium III 1-GHz system with 1 GB of memory and 1 GB of disk space, or higher
    * Windows 2000 and Windows XP
    o Pentium III 500-MHz system with 512 MB of memory and 850 MB of disk space
    o Recommended: Pentium III 1-GHz system with 1 GB of memory and 1 GB of disk space, or higher

  • Package : com.sap.portal.dynamicsystem - Dynamic System Resolution

    hi all
      We are using EP 6.0 SP 13.
      And i am implementing Dynamic System Resolution....
    But i am unable to implement the Interface<b>IDynamicSystemService</b>.
      Could anybody help me ????
    Thanks
    Kay

    Yes the people in this forum
    /community
    where you also posted the question.
    You shouldn´t post your questions in all forums in the hope to get a quicker answer.
    Helmut

  • What are the supported Macintosh Operating System versions for IBM SPSS Statistics 18,19 and 20?   Question  I would like to know what are the supported Macintosh Operating system versions for IBM SPSS Statistics versions 18, 19 and 20? Answer  Please see

    What are the supported Macintosh Operating System versions for IBM SPSS Statistics 18,19 and 20?
    Question
    I would like to know what are the supported Macintosh Operating system versions for IBM SPSS Statistics versions 18, 19 and 20?
    Answer
    Please see the list below:
    - IBM SPSS Statistics 18 and 19 releases are supported on Apple Macintosh OS 10.5 (Leopard) and 10.6 (Snow Leopard) with Intel processor.
    - IBM SPSS Statistics 20 release is supported on Apple Macintosh OS 10.6 (Snow Leopard) and 10.7 (Lion) with Intel processor.
    - The IBM SPSS Statistics versions 18 and 19 are not supported on Mac OS 10.7 (Lion).
    THIS MEANS THAT TO USE LION ONE FIRST HAS TO UPGRADE TO SPSS STATISTICS 20.

    Whilst the 2012-02-15 edition of IBM's matrix does not mention Lion, a few users have noted that:
    • 18.0 can be troublesome
    • an updated version of 18.x should be better.
    Related files
    PASWStatistics_1 803_Mac_Patch.dmg and IBM SPSS Statistics 18.0.3.4 Hotfix Mac.zip are no longer available from the spss.com domain, and I could not find them in an IBM domain. If you download from unofficial sources, proceed with caution.
    Related pages
    In Apple Support Communities:
    • will PASW (SPSS) 18 work with LION
    • PASW statistics 18 crashes every time
    • Java Virtual Machine & SPSS 18 with a question from me.
    Elsewhere:
    • SPSS on Lion « Decorator Pattern
    • SPSS / PASW Mac Patch 18.0.3 and Graphing Fix | The Personal Website of Philip Fizur
    • Patching PASW 18 (or SPSS 18) for Mac OS X (Leopard, Snow Leopard, Lion) to version 18.0.3.1
    • and other sources, including one domain that I treat as reputable but I'll respectfully not share that link here.
    At a glance, you might find that 18.0.3.4 is compatible with Lion.

  • NO Edit for ESS Skills Profile

    Hi,
       have any one an Idea how we can deativate the EDIT Buttons in iView for ESS - Skills Profile ?
    So Employees should not maintain their Skills Profile on Portal, but only to disply it.
    We are running EP 7.0 (NW04s, SP09), ERP2005 SP05, BP ESS 1.0
    Thanks and Regards,
    Nazih

    Dear Nazih,
    we are in 4.6c, ITS and its with display mode with us .. yes you can restrict it in IMG:
    Personal Management -> Employee Self-Service -> ESS Settings for Specific Customers -> Skills -> Define Root Qualification Group. and read the help, what you need is there.
    by selecting an ID for the root object, you can determine the scope in which you can display or maintain the qualifications.
    i dont think so the Portal i-view settings need to be changed related to your point..
    i hope this will help
    good luck
    Abdulrahman

  • To Statble in System resolution for in Swing Apllications

    Dear Guys,
    How can set same resolution in swing applications when changing System resolutions.
    Adavance in Thanks

    java.awt.Dimension screenSize = java.awt.Toolkit.getDefaulftToolkit().getScreenSize();That's what You're looking for ??

  • Error in Iview Skills profile (career & job)

    Hi All,
    I am getting this error while working on the iview on skill profile  Career & job in ESS.
    please give answer IT IS VERY URGENT
    <b>Skills Profile   
      500   Internal Server Error
      SAP NetWeaver Application Server 7.00/Java AS 7.00 
    Failed to process request. Please contact your system administrator.
    [Hide]
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
       com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException: Screen output without connection to user., error key: RFC_ERROR_SYSTEM_FAILURE
        at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:102)
        at com.sap.xss.hr.skl.FcSklBusinessLogic.saveProfile(FcSklBusinessLogic.java:242)
        at com.sap.xss.hr.skl.wdp.InternalFcSklBusinessLogic.saveProfile(InternalFcSklBusinessLogic.java:715)
        at com.sap.xss.hr.skl.FcSklBusinessLogicInterface.saveProfile(FcSklBusinessLogicInterface.java:136)
        at com.sap.xss.hr.skl.wdp.InternalFcSklBusinessLogicInterface.saveProfile(InternalFcSklBusinessLogicInterface.java:382)
        ... 50 more
    See full exception chain for details.</b>
    best regards,
    Iqbal

    Hi,
    I think you might have using SICF to test web service.
    To test the same you need J2EE instance.
    go to transaction
    WSADMIN ->administrative settings and enter the j2ee server address (http://server.domain.com:port) and then click on your service and click test.
    if you dont have a j2ee instance, you can use some free third party tools to test your WS.
    goto this URL to get webservice studio.
    It might be also due to one of the meta data connections are not working.
    Please configure all ur _MetaData Jco connections with a User name and Password and test. Please dont use SAP Logon Ticket for _MetaData connections.
    http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=65a1d4ea-0f7a-41bd-8494-e916ebc4159c
    *******please reward points if the information is helpful to you*************

  • Disable iView "Skills Profile" under "Career and Job"

    I would like to disable the Skills Profile iview under "Career and Job" in ESS since we will not be using this functionality.  How can I accomplish this?  We would like the entire section:
    Skills
    Skills Profile
    View the skills catalog and create or change your own skills profile.
    to disappear.

    Shafi,
    For remove both title and link (i assume you've the standard customizing):
    1) Again, i suggest you make a copy of this Subarea to Area assignation:
    EMPLOYEE_CAREER_ERP2005     EMPLOYEE_CAREER_SUBSKILLS_2005     1
    from
    Go to (SPRO > Personnel Management > Employee Self-Service > General Settings > Homepage for Self-Services > Subareas > Assign Subareas to Areas) > Assign Subareas to Areas (Find Entries)
    to
    Go to (...) > Assign Subareas to Areas (Add and Change Entries)
    2) Change the "1" for " " in the new entry and save the changes
    Kind regards

  • Removing or replacing system resolutions

    I have finally purchased a replacement mini for use with my HDTV. I've gotten all the custom resolutions (overscan correction) created and installed using DisplayConfigX. It looks great.
    My problem is that I can't get rid of those "standard" resolutions that OSX is always providing. Things like 640x480, 640x480 (stretched), 720x480, and 1024x588 (?). These resolutions do not work with my HDTV, and I want to avoid any application attempting to select them (the g-force visualizer for instance). There is a selection in DisplayConfigX to "Disable system resolutions for this monitor" but it doesn't.
    Does anyone know of a way I can remove these resolutions or at least prevent them from being selectable through the display preferences?
      Mac OS X (10.4.8)  

    SwitchRes X allows you to disable resolutions. As far as I know it doesn't remove them. It just doesn't allow them to be selected. I haven't actually used that feature so I can't confirm that it works as advertised. I am just noting that it is there.

  • What are the System Requirements for Web Server hosting Adobe Air application

    Working on a project that is using Adobe Air . The Adobe support site has system requirements for the client side application, but for the server side, what are the system requirements?
    Using a Windows server, would expect to have approx. 100 concurrent connections at any given time.

    Adobe AIR applications are installed on the end user's computer. They are not hosted on a web server. You can deploy an AIR file, which is the installer file for an AIR application, via your web server.

Maybe you are looking for

  • GR/IR Slip NO_Report Required

    Hi I did the config for GR/IR Slip No thro OMC1 and OMJ6. Now i can able to see the GR/IR Slip no got generated internally in MB51 report. Not starigt by clicking the doc no and clicking the details i can able to see. Now the req here is whr can i ge

  • Where can i find Win8 graphic drivers for Qosmio X870-BT2G23?

    Hello, I brought the new Qosmio X870. It comes with Seagate Mumentos XT 750GB hybrid drive, I have installed Intel 120GB SSD on the free slot and 1st surprise no option for RAID on BIOS. As top of the line gaming machine this option should be availab

  • How to use reserved word in MAX() function?

    Hello, I migrated from SQL Server 7 to Oracle 8.1.7 and have to keep the same tables, columns etc names as it used to be in sql server. One of my tables have colunm called 'Row' and as far as I understand it's reserved word in Oracle I need to bypass

  • Emails are blank

    I just sent my first email using iPhoto '11 via the "tell a friend" button to share my MobileMe gallery. I've never had a problem prior to this version. 2 people have emailed me back stating that the emails were blank. In their reply, you could see b

  • IWeb can't publish...

    says "You are offline.  Please check your internet connection"....but my internet connection is fine.  In fact, if I click "visit published site" it connects just fine. I tried publishing to a local file in "Documents" and that also returns an error: