Quantcast
Channel: SCN : All Content - SAP Enterprise Portal
Viewing all 3876 articles
Browse latest View live

SAP NetWeaver Portal Movie Challenge: Contributions

$
0
0

Beginning of 2014 we started the SAP Portal Movie challenge. In case you do not know about it, read this announcement blog.

 

In this document all blog contributions we receive for the SAP NetWeaver Portal movie challenge 2014 will be listed. At the end of the year the whole SCN Portal community will be able to vote in a poll in order to pick the best movie critic and movie producer blogs. The authors of the best blogs will receive an additional badge and more points.

 

 

SAP NetWeaver Portal Movie Critic Blogs:

 

February

 

SAP NetWeaver Portal Movie Critic: Mobile Portal Introduction by Dirk Mayrock

 

SAP NetWeaver Portal Movie Critic: My personal highlight by Martin Kreitlein

 

March

 

SAP NetWeaver Portal Movie Critic: An Overview needn’t to be a boring one by Florian Henninger

 

NetWeaver Portal Movie Critic: Mobile Movie Review by Tammy Powlas

 

SAP NetWeaver Portal Movie Critic: SAP Portfolio by Yuvraj Singh

 

SAP NetWeaver Portal Movie Critic: OpenText Content Management by Guillermo Sanchez

 

SAP NetWeaver Portal Movie Critic: Any Time, Any Where and on Any Device by Raj Kumar Salla

 

SAP NetWeaver Portal Movie Critic: Wikis's by Pavan Maddipatla

 

SAP NetWeaver Portal Movie Critic: Portal Sarcasm by Florian Henninger

 

"SAP Netweaver change the world“. by Karthick S

 

April

 

SAP NetWeaver Portal Movie Critic:SAP Portal Hangouts by Supriya Gupta

 

SAP NetWeaver Portal Movie Critic:Portal Content&Site Management-A marriage between SAP and OpenText by Veerabhadram R.A Mantha

 

SAP NetWeaver Portal Movie Critic: Mobile Edition Overview by Neha Chopra

 

SAP NetWeaver Portal Movie Critic:SAP Fiori and SAP NetWeaver Portal, mobile edition by KANNAN NAIR

 

June

 

NetWeaver Portal Movie Critic: SAP Fiori Launchpad on SAP Enterprise Portal by Naveen Vishal

 

August

 

SAP NetWeaver Portal Movie Critic: SAP TechEd Invitation


SAP NetWeaver Portal Movie Producer Blogs:

 

March

 

SAP NetWeaver Portal Movie Producer: Variable Speed Timer Control for Business Objects Dashboard by Peter Warren

 

 

At the end of the year the whole SCN Portal community will be able to vote in a poll in order to pick the best movie critic and movie producer blogs. The authors of the best blogs will receive an additional badge and more points.

 

More information in this announcement blog. We are looking forward to your contributions in 2014.


URGENT: Workitem ID not passed through UWL

$
0
0

Hi All,

We are using custom task for leave approval application and i have modified the com.sap.pct.erp.mss.addon.xml as per the sap note: 1600953.

I could successfully upload the new configuration and cleared the cache after upload.

Below is the new code as suggested by the sap note

 

<ItemType name="uwl.task.webflow.TS91000073.SAP_ECC_UWL_200" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="defaultAction" executionMode="default">
      <ItemTypeCriteria systemId="SAP_ECC_UWL_200" externalType=" TS91000073" connector="WebFlowConnector"/>
<CustomAttributes>
        <CustomAttributeSource id="WEBFLOW_CONTAINER" objectIdHolder="externalObjectId" objectType="WebflowContainer" cacheValidity="final">
          <Attribute name="REQUESTID" type="string" displayName="Request ID"/>
        </CustomAttributeSource>
      </CustomAttributes>
      <Actions>
        <Action name="defaultAction" groupAction="" handler="ObjectNavigationLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes">
          <Properties>
            <Property name="Operation" value="approveleaverequest"/>
<Property name="ObjectValue" value="LRF_REQUEST_ID=${item.REQUESTID}" />
           <Property name="DynamicParameter" value="LRF_REQUEST_ID=${item.REQUESTID}"/>
            <Property name="openInNewWindow" value="true"/>
            <Property name="ObjectName" value="employee"/>
            <Property name="System" value="SAP_ERP_HumanResources"/>
          </Properties>
          <Descriptions default="defaultAction"/>
        </Action>
      </Actions>

    </ItemType>

 

Even after these steps the value of parameter LRF_REQUEST is empty when we see the technical help after opening the task from the UWL.

Am i mssing any thing or any other configuration is requred? please help.

 

Thanks & Regards

Jeet

Direct call to role in SAP portal 7.3

$
0
0

Hi,

Is it possible to make a direct call to a navigation role in SAP Portal 7.3? The role is stored in PCD.


Whats would be the syntax for that? http://myPortal/irj/portal?....

 

Thx.

Tasks are not appearing in UWL

$
0
0

Hi All,

 

When i am accessing UWL application in portal we are getting warning  "cannot Connect to Provider".

 

I did connection test of the system object and the connector is working fine (using SAP Logon Tickets). When checking the UWL log I have found the following messages:

 

"Problem in calling BWF API to retrieve inbox items in system

SAP_ECC_HumanResources"."com.sap.portal.connectivity.ConnectivityRuntimeException: No more storage to append internal table".

 

Please help me on this.'

 

Thanks,

Ravi.

iview error using SAP BusinessObject Document Viewer Template

$
0
0

Hi Guys,

 

While creating the iview as SAP BusinessObjects Document Viewer Template getting the error as "Error component failed , reason : Access is denied: com.sap.businessobjects.iviews.SAP_Document_Viewer_Wizard - user: test1, Original Exception : Access is denied:com.sap.businessobjects.iviews.SAP_Document_Viewer_Wizard - user: test1"

 

Please check the screen-shots.

 

T1.JPG

T2.JPG

 

 

Could anybody suggest how to get rid off this error.

 

Thanks & Regards

Venkatesh

Add portal roles using ABAP SPML APIs

$
0
0

On one of my recent SRM projects I had a requirement wherein a specific portal role was to be assigned to a portal user based on an action performed on one of the standard SRM webdynpro screen. The assigned role was also to be removed based on another action. Probably there could be some help available on SDN, but I was unable to find it. So thought of sharing this. Hope it helps some.....

 

SAP has provided a service wrapper interface /sapsrm/if_spml_srvc_wrapper with methods that help carry out operations on a portal user ID. I have shown below how a user can be assigned a specific portal role, y'all can try other methods available to create a portal user, delete one, delete roles and so on...


To assign a portal role we need to get the unique ID of the role which your portal administrator could provide you.

 

 

CONSTANTS:

*RFC Destination of portal in SM59

        lc_rfcdest        TYPE rfcdest VALUE 'PORTAL',    

*Portal user ID              

        lc_portal_user TYPE xubname VALUE 'TEST_USER',         

*Unique ID of the portal role

        lc_portal_role TYPE txt255 VALUE 'ROLE.PCD_ROLE_PERSISTENCE.EIuf/fYAf+G39przMn+8lcKhzII='.

 

DATA:

       lo_spml_wrpr   TYPE REF TO /sapsrm/if_spml_srvc_wrapper,

       lt_ep_roles    TYPE /sapsrm/t_ep_roles,

       ls_ep_roles    TYPE /sapsrm/s_ep_roles.

 

lo_spml_wrpr = /sapsrm/cl_spml_wrpr_factory=>get_spml_wrapper( lc_rfcdest ).

 

ls_ep_roles-uniqueid = lc_portal_role.

APPEND ls_ep_roles TO lt_ep_roles.

 

TRY.

 

     lo_spml_wrpr->add_role_ume_user(

       EXPORTING

         iv_logon_id = lc_portal_user

         it_roles       = lt_ep_roles   ).

 

   CATCH /sapsrm/cx_spml_connection.

     "Exception handling here

 

   CATCH /sapsrm/cx_spml_service.

     "Exception handling here

 

ENDTRY.



Best regards

Vipin Varghese

SUM execution returna an error

$
0
0

Dear all,

 

 

I am executing SUM to deploy SAPJVM Patches in Portal running on Linux Suse and Oracle.

First I had credential problems and i overcome it by changing the owner and mode or sapuxuserchk.

 

Now, I am facing the following error:

 

An error has occurred during the execution of the Read the global directory value step.

Assertion failed for (instanceToUse = null) at com.sap.sdt.j2ee.services.servicesimpl.DetermineSecStoreDirectoryService.determineSecStoreDir(DetermineSecStoreDirectoryService.java:95).

 

You can find more information in the files /usr/sap/SPP/SUM/sdt/log/SUM/DETECT-SECSTORE-DIRECTORY_01.LOG and ProcessOverview.html.

 

To troubleshoot the problem use the provided information. An SAP Note may provide a solution to this problem. Search for SAP Notes with the following keywords:

 

DETECT  input_credentials  input-credentials-dialog  detect-secstore-directory  com.sap.sdt.j2ee.services.servicesimpl.DetermineSecStoreDirectoryService  class com.sap.sdt.util.diag.DevelopmentSupportRequiredException

 

An error has occurred during the execution of the Read the global directory value step.

 

When searching in sap notes with recommended key worlds I could not find the solution.

 

Can you please help me top overcome this problem.

 

Best regards


Ernesto

Iview preview not accessing in SAP EP 7.3

$
0
0

Hi all,

 

In jsp im trying to loading iview preview but giving accees denied error.

 

 

public String mgetURL(IPortalComponentRequest p_request)

{

 

  return "/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.pgxcd.Content!2fcom.pgdf.Content.su_portal!2fiViews!2fcom.pg.ivu_SuppReqChngesApp ";

 

}

 

the same url im able to access with administrator User.

 

But im not able to access with test user which doesnt have admin rights.

 

ERROR :

 

Error component failed , reason : Access is denied: pcd:portal_content/com.pgxcd.Content/com.pgdf.Content.su_portal/iViews/pg.com.ivu_SuppReqChngesApp - user:TestID5,

 

i have followed below link to check permissions for portal objects.

 

http://scn.sap.com/docs/DOC-16308

 

http://help.sap.com/saphelp_nw04/helpdata/en/ee/acd8403e37762ae10000000a155106/content.htm

 

 

Any help?

 

Cheers,

Prasad.


500 internal error in portal?

$
0
0

Dear All,

 

I am new to EP?

 

We are in EHP6 and 7.30.

 

In ESS for few services there is an error in portal?

 

Error.png

 

 

 

--

Regards

 

Ravi Singh

Read XML Form Builder Data

$
0
0

  Dear All,

 

I want to read all the data from xml form builder file which is located in KM Folder.

 

I want to pass all the related data to other third party tool .

 

how can I pass that data to other tool from KM folder directly .

 

please give me solution for the same.

 

Thanks in advance .

 

Thanks & Regards,

Meghal Shah

Logon war file loaction portal 7.3

$
0
0

Hi

I am new to SAP portal. I want to customize our portal login page by adding a new button in the existing page. I know the default location of the war file(tc~sec~ume~logon~ui.war ) but since our portal has already been customized I would like to know the current location of my portal logon war file. I also came to know that there is no way to extract the war file directly from portal and that we need to go to th filesystem (usr/sap/sid...) in order to download the war file. Is there any way to find the location of my war file from portal???

 

Thanks in advance

Error while testing ECC and Portal-Connect to SAP gateway failed

$
0
0

Dear Experts,

 

While testing ABAP connection in Portal i am getting below error.

 

SAP Portal - UME - Biller Direct Tab

$
0
0

Hello Eperts,

 

In the UME of the portal when viewing an ID we can see the BILLER DIRECT Tab where you can view the profile of the user ID in the backend (ECC) and also assign Business Partners. All of sudden we noticed that this tab no longer shows up. Any idea what to do about this situation or where to check?

 

-Wes

Expire JSESSIONID URL/Service to call from mobile client side.

$
0
0

Hello All

 

I'm creating a mobile hybrid application that leverage SiteMinder installed in Netweaver Portal  for SSO. I'm able to manage the expiration of the SMSESSION and MYSAPSSO2 cookies but having issues expiring the JSESSIONID cookie upon logout of the mobile application.

 

I found the service in ABAP stack that help me to expire MYSAPSSO2 and I was wondering if there is something similar but in Netweaver Portal.

 

http://<SAP_System:port>/sap/public/bc/icf/logoff

 

Any idea or suggestion on how to trigger the expiration from client side?

Masthead Log off link clicking time getting Exception.

$
0
0

Dear Experts,

 

Please give solution.I am facing exception when i clicking the log off link in the masthead.This is the Error.

 

Exception ID:06:49_21/08/14_0011_9271950

[EXCEPTION]

com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component

Application name : com.vendor.masthead

Component : pcd:com.sap.portal.system/gpal_hidden_content/gpar/com.vendor.masthead/logoffConfirmMsg

Component class : com.sapportals.portal.navigation.LogoffConfirmMsg

User : Administrator

at com.sap.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:786)

at com.sap.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:245)

at com.sap.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:107)

at com.sap.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:141)

at com.sap.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:206)

at com.sap.portal.prt.pom.PortalNode.service(PortalNode.java:590)

at com.sap.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:233)

at com.sap.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:107)

at com.sap.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:141)

at com.sap.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:520)

at com.sapportals.portal.prt.connection.ServletConnection._handleRequest(ServletConnection.java:224)

at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:101)

at com.sap.portal.prt.dispatcher.DispatcherServlet.service(DispatcherServlet.java:132)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)

at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:202)

at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:103)

at com.sap.portal.http.EnrichNavRequestFilter.doFilter(EnrichNavRequestFilter.java:49)

at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)

at com.sap.portal.prt.dispatcher.CustomHeaderFilter.doFilter(CustomHeaderFilter.java:58)

at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)

at com.sap.portal.http.EnrichNavRequestFilter.doFilter(EnrichNavRequestFilter.java:49)

at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)

at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:441)

at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:210)

at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:441)

at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:430)

at com.sap.engine.services.servlets_jsp.filters.DSRWebContainerFilter.process(DSRWebContainerFilter.java:38)

at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:81)

at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:278)

at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:81)

at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)

at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)

at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)

at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)

at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)

at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)

at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)

at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

at com.sap.engine.services.httpserver.filters.SessionSizeFilter.process(SessionSizeFilter.java:26)

at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)

at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

at com.sap.engine.services.httpserver.filters.MemoryStatisticFilter.process(MemoryStatisticFilter.java:57)

at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)

at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

at com.sap.engine.services.httpserver.filters.DSRHttpFilter.process(DSRHttpFilter.java:43)

at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)

at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:475)

at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.process(Processor.java:269)

at com.sap.engine.services.httpserver.server.rcm.RequestProcessorThread.run(RequestProcessorThread.java:56)

at com.sap.engine.core.thread.execution.Executable.run(Executable.java:122)

at com.sap.engine.core.thread.execution.Executable.run(Executable.java:101)

at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:328)

Caused by: com.sap.portal.prt.core.PortalRequestManagerException: PortalRuntimeException

at com.sap.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:347)

at com.sap.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:380)

at com.sap.portal.prt.component.AbstractComponentResponse.include(AbstractComponentResponse.java:88)

at com.sap.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:222)

at com.sapportals.portal.navigation.LogoffConfirmMsg.doContent(LogoffConfirmMsg.java:24)

at com.sapportals.portal.prt.component.AbstractPortalComponent.doRefresh(AbstractPortalComponent.java:358)

at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:203)

at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:129)

at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher$5.service(RequestDispatcherFactory.java:308)

at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:292)

at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher.service(RequestDispatcherFactory.java:298)

at com.sap.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:229)

... 57 more

Caused by: com.sap.portal.prt.broker.PortalComponentNotFoundException: getJSPResourceComponent failed

at com.sap.portal.prt.broker.PortalAppBroker.getJSPResourceComponent(PortalAppBroker.java:461)

at com.sap.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:300)

... 68 more

Caused by: com.sap.portal.prt.om.ObjectNotAvailableException: Object: [jsp/LogoffConfirmMsg.jsp@com.axis.masthead.logoffConfirmMsg] load failed

at com.sap.portal.prt.om.ObjectsManager.createObejctHandle(ObjectsManager.java:246)

at com.sap.portal.prt.om.ObjectsManager.getObjectHandle(ObjectsManager.java:147)

at com.sap.portal.prt.broker.PortalAppBroker.getJSPResourceComponent(PortalAppBroker.java:456)

... 69 more

Caused by: com.sapportals.portal.prt.runtime.PortalRuntimeException: Error while processing jsp: portal module name = com.axis.masthead, JSP name = jsp/LogoffConfirmMsg.jsp

at com.sap.portal.prt.servlets_jsp.JSPProcessor.processJsp(JSPProcessor.java:67)

at com.sap.portal.prt.broker.JSPComponentItem.getComponentInstance(JSPComponentItem.java:131)

at com.sap.portal.prt.broker.PortalComponentItem.load(PortalComponentItem.java:371)

at com.sap.portal.prt.om.ObjectsManager.createObejctHandle(ObjectsManager.java:234)

... 71 more

Caused by: com.sap.engine.services.servlets_jsp.jspparser_api.exception.JspParseException: [Error in executing the compilation process: [ Compilation Failed! Exit Code=1

 

My portal  version is  7.4.

Thanks for advance,

 

Durga Rao.


UME as LDAP read only, what is the password

$
0
0

Hi,

 

If the portal or java instance is setup as UME = LDAP read only + database pointing to AD and the user is then assgined roles/groups in the Java UME with access to allow logon.

 

1. What is the password of the users to use?

2. I know the AD password is definitly not synchronised as it is one way encrypted. Does the user needs to be set a new password in portal to login with?

3. Will this password be stored on the Java UME only?

4. what happens if the users AD password changes, will it affect the password stored in the Java UME?

 

Thank you.

 

John

Changing the default images for sap portal 7.3

$
0
0

Hi ,

 

we are on portal 7.3 and currently working on changing the look and feel as per the customer branding standards and the requirement is to change the standard images like the ones under  Ess, Mss,content admin, user admin and various others roles there on the portal , please assist me how we can achieve this level of customization .I know how to change a standard image but role specific i am not really sure

 

Thanks

EP 7.4 WPC - Dynamic List at run time

$
0
0

Hi Experts,

 

I am using Dynamic List to display Arcticles in other pages.

 

How to use dynamic list to display only the published content?

 

I tried the below scenario,

 

When I Provide the Design time path or Global Shared Content Path in the Target Folder Property of Dynamic List, it pulls out the articles, even before the page has been published.

 

I also tried to provide the Runtime path in the Target Folder Property of the Dynamic List, but it states that as incorrect target folder.

 

Please let me know,how to use the Dynamic List pointing to Runtime as we need to display the Published Content.

 

Thanks & Regards,

Palani

EP Portal 7.4 Web Page Composer Web Content Browser "Select" button missing

$
0
0

Hallo Guys

 

We rencently upgraded our EP Portal from NW7.31 to NW7.40 SP6

After the upgrade, the option to select portal content when browsing went missing. There used to be a button "SELECT" right next to the file. (Clicking on the file opens the document, it does not insert the link)

 

Reproduce the error:

 

1. Create/Open WPC content (e.g. Teaser, Linklist etc.)

    Go to: Area Management -> Content Library

   

    New.jpgOR Edit.jpg

 

2. For any of the Links, browse for the content on the portal

 

    Browse.jpg

3. Try to select the file from the web content browser

   Missing.jpg

 

Any ideas on how to get that button back?

 

Kind regards

Antonette

SAP NW Portal 730 Loadbalancing to Backend ERP Systems and UWL Problem

$
0
0

Hi Guys,

 

i have a problem with the Loadbalancing Configuration for the UWL Access to the Backend R3 Systems.

 

I go to SystemAdmin - System Landscape - System Management, choose my System an changed Connection Method from Dedicatedt Server to Load Balancing.

 

 

Then the Connection Test for Connextors did not work anymore.

 

If it is on Dedicated, all  three connection Tests (SAP Web AS Connection, ITS Connection, Connection Test for Connectors) works fine.

 

I allready read and configured the following (quite logical to fill in the SMLG Logon Group)

 

 

http://help.sap.com/saphelp_nw74/helpdata/de/4c/4c3bd7a12f6f83e10000000a42189e/content.htm

Bei R/3 mit Lastausgleich ( SAP_R3_LoadBalancing ) müssen Sie zusätzlich folgende Eigenschaften pflegen:

  • Gruppe: <GRUPPE> 
  • Message Server: <MESSAGE_SERVER> 
  • Server-Port: <SERVER_PORT> (I tried 3200 and 3600)

 

 

 

 

If i try the connect after this, the Test for the connectors didn't work and in UWL i get the following message:

 

 

 

 

The Systemalias seems correct:

 

 

The Destintion in NWA seems correct configured too, ping will work>

 

 

 

 

 

 

I would like to distribute the connections from our NW Portal to the backend ERP System from our PAS to one or two other AAS via LogonGroups.

 

Thanks a lot for any Ideas to solve my Problem.

Viewing all 3876 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>