Quantcast
Channel: SCN : Discussion List - SAP Enterprise Portal
Viewing all 3723 articles
Browse latest View live

How to Make TLN display Vertically

$
0
0

Dear All,

 

I have a requirement for displaying the TLN vertically instead of Horizontal display can any one help me on the same.

 

Thanks


Change TLN From Horizonal appreance to Vertical

$
0
0

Dear SDN,

               I am designing the basic framework of a portal page for anonomous user for a prototype. My need is to change the TLN From Horizontal TLN TO a Vertical TLN to the left. I know that the par file needs to be edited for the TLN change.

So my questions are :-

1. If i make changes in the html part for TR And TD part of the code, will it work ?

2. I want to make this changes effective for an ananomous user , so i thought i would write A par, assign a page to this.Add mapping rules and assign a desktop to this.

 

Am i moving in corect direction, is there any documentation for the same.?

 

Regards,

Anirban Ghatak.

Migration of SAP provided HTMLB Based PAR files for 7.3 EhP1

$
0
0

Hi All,

 

This question related on how to migrate SAP provided HTMLB based PAR files or if there is any alternative option available in higher version of Portal.

 

We are migrating from 7.02 to 7.31 SP9 version. Client in past used the iViews which were based on the following PARs:

com.sap.pct.hcm.essmssviewer

com.sap.pct.hcm.rpt_reportselection

com.sap.pct.hcm.zrpt_reportselection


I migrated the files using PAR Migration Tool & when I tried running these applications. It gave me some more issues and is missing few more PARs like

com.sap.pct.hcm.orgmanagementeventing

com.sap.pct.hcm.hcm_util

com.sap.pct.hcm.objectanddataprovider and few more...


So, what is the procedure for migrating these HTMLB based iViews in 7.31 portals. Is there any equivalent iViews which are available in portal.

We are also having an ECC upgrade to EHP6. Does SAP provide any equivalent iViews.


Also, I noticed there are some iViews (MSS based) which are available under Migrated Content under Portal Content, which are also based on HTMLB iViews, so how do we migrate them?


Please share your experience & let me know how do I resolve that.


Thanks and Regards,

Srikant

Integration of Fiori Launch Pad in SAP Portal

$
0
0

Hello everyone,

 

Is it possible to integrate the Fiori Launch Pad into the SAP Portal? Any Ideas, Links to Documentation,...?

 

Thank you!

 

BR, René.

User J2EE_ADMIN within ESS scenario makes troubles

$
0
0

Hi!

 

I am about to configure ESS scenario for SAP ECC 6.0 IDES systenm with SAP EP 7.0.

The most of the configuration steps are executed (SLD, JCO, System objects, SSO, user assignement in HR, etc.).

 

Unfortunately when I try to execute in Portal Employee Self Services --> Employee Search

I get the following error, meanwhile I log in with other user

 

Critical Error

A critical error has occured. Processing of the service had to be terminated. Unsaved data has been lost.

Please contact your system administrator.

Benutzer J2EE_ADMIN existiert nicht im Zeitraum/ user J2EE_ADMIN does not exist in time profile

 

I tried to log in with J2EE_ADMIN user to portal, but this failed:

 

com.sap.portal.prt.runtime#sap.com/irj#com.sap.portal.prt.runtime#Guest#0##n/a##3cfaf0b0f3bd11dda891001f29e9e036#SAPEngine_Application_Thread[impl:3]_3##0#0#Error##Java###08:43_05/02/09_0006_21754250

#1#javax.servlet.ServletException at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.compile(JSPCompiler.java:114)

at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.run(JSPCompiler.java:140)

 

Question:

Can some one help to solve this problem please?

 

Any helpful information will be very appreciated!

 

Jürgen

 

SAP EP- IVIEW Duplicate

$
0
0

Dear Folks,

 

This is Kalyam. I am new to SAP EP. I am having doubt in this scenario.

 

Portal -error.JPG

 

As per the customer requirment i changed some fileds in Query designer and the same we posted it into portal and moved it to production.

 

But in portal it looks a duplicate happens which i marked in the aboe picture. i need only one report name that should be comes on PM.

 

Kindly give your answers.

 

 

Please share me step by step procedure to overcome the above issue

 

Thanks in advance.

 

--

Regards,

Kalyan.

Does JCA in 7.31 uses JCO3 for implementation?

How to configure sso between SAP PORTAL and SAP GATEWAY SERVER

$
0
0

Hi Experts,

 

Please help me.

 

How to configure SSO between SAP Portal and SAP Gateway server.

 

I want to integrate SAP Fiori in to portal.

 

Please help me in configuring this.

 

Any help is highly appreciated.

 

Thanks in advance.

SAP EP.


"Calculated UME LDAP id is null" error received during runtime.

$
0
0

Hello All,

I am new to this community and this is my first post.
Therefore please pardon me for providing inadequate explanation/resources while mentioning my problem.

 

I am trying to build a SOAP webservice in SAP NetWeaver Developer Studio 7.3. This webservice will be used for integration between SAP user management  (AS Java)  with Dell's Quest Identity Management (Q1IM).

The webservice will be used for

Fetching

-> All UME Users

-> All UME Groups

-> All UME Roles

Add/Delete

-> User to/from Group

-> User to/from Role

Change

-> User Account Details

 

The current scenario is the webservice built in Java is ready and all the functional components are working fine during runtime except for one and that is when I try to retrieve all the UME Users.

Below mentioned piece of code is for getAllUser function

 

    public  SAPUser[] getAllUsers() throws UMException {

    IUserFactory userFactory = UMFactory.getUserFactory();

    IUserSearchFilter searchFilter = userFactory.getUserSearchFilter();

    searchFilter.setDisplayName("*", ISearchAttribute.LIKE_OPERATOR, false);

    ISearchResult searchResult = userFactory.searchUsers(searchFilter);

    ArrayList<SAPUser> ar = new ArrayList<SAPUser>();   

    while (searchResult.hasNext())

    {

    String uniqueid = searchResult.next().toString();

    if (uniqueid.startsWith("USER.PRIVATE_DATASOURCE.un"))

    {

        IUser user = userFactory.getUser(uniqueid);

        IUserAccount[] userAcc = user.getUserAccounts();

        for (int i = 0; i<userAcc.length;i++)

        {

        ar.add(new SAPUser(userAcc[i]));

        }

    }

    }

    SAPUser[] users = new SAPUser[ar.size()];

  return ar.toArray(users); 

    }

 

Similar logic have been used for Groups and Roles and they are working fine.

 

During runtime it gives following error

Web service returned error. Fault Code: "(http://schemas.xmlsoap.org/soap/envelope/)Server" Fault String: "Calculated UME LDAP id is null"

(Screenshot has also been attached)

I tried searching for a solution on internet and specially on SAP SCN but couldn't come across any suitable option.

Thereby my request to member-experts of this forum to please look into my matter mentioned above and provide some appropriate solution for it.

 

Thanks in advance.

Regards,

Tanuj Jaitly

Parameters Forwarded to Web Dynpro

$
0
0

Our portal is integrated with ERP system. We transfer roles from this system to the portal (New - From Backend System) and some iViews are generated automatically for menu items (they are placed in Migrated Content). If I add application parameters in menu item in ERP system - they are finely transferred to Application Parameters in iView.

 

And I need the same functionality for field "Parameters Forwarded to Web Dynpro" in iView. How to fill it from role? Our somehow else?

 

Generous reward for help

Upgrade SPS Stack : Error not a valid SDA or SCA / is not a valid SDU

$
0
0

hi Gurus,

 

we already installed SAP NW 7.4 SR1 Portal type usage, SAP Portal already connected with Solman to got Stack XML.

 

when we tried upgrade used SUM, we got Error when create stack from stack file.

 

before we upgrade SPS, we installed Business Package SRM 7.02 and sent SLD data to Solman SLD and LMDB sinchonized

 

error message was :

 

Jul 4, 2014 3:54:01 PM [Info  ]: Subcomponents of component sap.com/CORE-TOOLS have been processed.

Jul 4, 2014 3:54:01 PM [Info  ]: File /source/SPNEWS/CORETOOLS06_0-20009935.SCA has been analyzed for deployment components.

Jul 4, 2014 3:54:01 PM [Error ]: File /source/SPNEWS/ENGFACADE06_0-20009936.SCA is not a valid SDU file. Stack definition file /source/SPNEWS/stack.xml is rejected.

Jul 4, 2014 3:54:01 PM [Error ]: com.sap.sl.util.sduread.api.IllFormattedSduFileException: Error during attribute reading (entry=name=SDM-SDA-Comp-Version): received exception: invalid distance too far back

Jul 4, 2014 3:54:01 PM [Error ]: File /source/SPNEWS/ENGFACADE06_0-20009936.SCA is not a valid SDA or SCA file.

Jul 4, 2014 3:54:01 PM [Info  ]: Parsing of stack definition file /source/SPNEWS/stack.xml has finished.

Jul 4, 2014 3:54:01 PM [Error ]: The following problem has occurred during step execution: com.sap.sdt.j2ee.tools.spxmlparser.SPXmlParserException: Cannot construct a support package stack from file /source/SPNEWS/stack.xml.

Stack definition file /source/SPNEWS/stack.xml is rejected. See error messages in /oracle/BPD/stage/SUM/sdt/log/SUM/DEFINE-TARGET-SOURCE_01.LOG.

 

SCAN_INBOX log :

 

Jul 4, 2014 7:12:12 PM [Info  ]: Analyzing /source/SPNEWS/AJAXRUNTIME06_0-20009921.SCA...

Jul 4, 2014 7:12:12 PM [Error ]: The following problem has occurred during step execution: com.sap.sdt.j2ee.tools.newsdu.SDUProviderException: Error while analyzing the content of download directory.

Could not analyze some of the software delivery units.

Cannot check if SCA /source/SPNEWS/AJAXRUNTIME06_0-20009921.SCA has CR-SDA.

com.sap.sdt.slsdareader.SLSdaReaderException: Exception occured during extractSingleFile: invalid code lengths set

com.sap.sl.util.sduread.api.FileExtractionException: Exception occured during extractSingleFile: invalid code lengths set

.

 

we tried to re-download and re-upload to server, but still got isses, we downloaded use SAP Download Manager also

 

please help

 

-Gho

System copy in EP does not ask for Traget Database

$
0
0

Hi,We want to migrate our Enterprise Portal Oracle Database to DB2.

 

While taking a system copy ,it does not prompt for Traget system atall.

 

We have successfully migrated ECC and BI Databases where it asked target DB but here it does not prompt,what could be the issue?

 

Several versions of SWPM are tried but not able to identify the issue.

 

Has anyone faced such error?

 

Please advice..

New Portal App Server / Dialog Instance is missing content

$
0
0

Dear all,

 

We have a problem with a newly installed Portal application server / Dialog Instance: it is missing all applications in
/usr/sap/EPQ/J00/j2ee/cluster/server0/apps.

 

Background:  Our QA Portal environment has had only one instance for many years; it is currently on NetWeaver 7.31 SP09.  I recently installed a new Portal application server / Dialog Instance (call it "Server2"), using the installation guide "SAP Systems Based on the Application Server Java of SAP NetWeaver on Windows: MS SQL Server Using Software Provisioning Manager 1.0."  The installation went smoothly.

 

I can start and stop Server2 normally, and can log on to it as well, but applications like ESS, Business Intelligence, etc. are failing.  At the file system level Server2 is missing numerous files and directories. Following are some examples:

 

  • /usr/sap/EPQ/J00/j2ee/cluster/server0/apps
    Expecting 3 directories:  com.adobe, local, sap.com.
    What's in Server2:  only the sap.com directory
  • /usr/sap/EPQ/J00/j2ee/cluster/server0/apps/sap.com
    Expecting about 1,225 directories.
    What's in Server2:  only the irj directory
  • /usr/sap/EPQ/J00/j2ee/cluster/server0/apps/sap.com/irj
    Expecting 2 directories:  PortalRuntimeContainer, servlet_jsp.
    What's in Server2:  only the servlet_jsp directory
  • /usr/sap/EPQ/J00/j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp
    Expecting 2 directories and 2 files:  root and work directories, epbc.war and web_crc.properties files.
    What's in Server2:  only the root directory
  • /usr/sap/EPQ/J00/j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp
    Expecting 3 directories and about 5 files:  META-INF, portalapps, and WEB-INF directories.
    What's on Server2:  only the WEB-INF directory

 

Any help or advice about these missing files and directories would be very much appreciated.

 

Regards,

Jill

WPC - Custom Editor Components - How to...?

$
0
0

Hello,

 

I'm trying to create my own Editor Component in Web Page Composer for which I followed this Tutorial:

 

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

 

I get through it but in the end it doesn't work.

 

Obviously i have to create an entry in "Editor UI Elements" for my new Component?!

I created an entry with a default-Control and my Component shows in the WPC-Editor but obviously looks like the default-Control I've chosen.

 

I would like to create my own UI-Element for my custom component but until now I weren't able to do so.

The default Controls (e.g. TextElementControl) are in the package "com.sap.nw.wpc.editor.ui" which I also can't find.

 

 

Can anyone help me with this?

Anyone of you were able to create his/her own Editor Component?

 

Thanks in advance.

 

 

Greetings,

Default Coder in VIM in SAP Portal

$
0
0

Hi all experts,


When set and save the Default Coder in VIM in SAP Portal under Personalise setting, the next day or next time the coder's name is disappeared in the VIM SAP Portal screen and the most important is invoice does not route to the default coder set.


Capture.JPG


Have checked Chart of Authority, the two users (Approver and Default Coder) exist in User Details and COA Details. Approval COA and Optura User Mapping Object tables also have the two users.


Any idea/help to share what is the problem or missing configuration ?  Thanks in advance.


New Fiori Launchpad and Fiori apps show as blank page in portal

$
0
0

Hi,

 

we are running a NW7.40 SP7 portal and try to integrate the new Fiori applications that belong to the Business Suite but are unsuccessful. I'm not a Fiori expert but something has changed in the architecture. Launching Fiori apps directly from the SICF nodes is no longer possible; the new ABAP based Fiori Launchpad is required (sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?). And as a result, the URL has changed to /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?sap-client=300#LeaveRequest-createLeaveRequest for instance and now the standard method of integration (creating a SAP UI5 iview) no longer works. The ivews just return an empty page, in every browser.

 

Launching any other ABAP UI5 application via an iview works fine, so I'm wondering what could be the reason.

 

I've tried to enable the same experience using the new portal Fiori Framework Page (FFP) but in the end that results in the same problem as it requires a working iview for each Fiori application.

 

Any ideas?

Marcel Rabe

Using SAML 1.1 & 2.0 together on SAP Portal 7.31

$
0
0

Hi,

 

Our requirement is to configure SSO to External(non-SAP) applications from portal 7.31  using SAML.

 

We are analyzing the scenario of having SAML 1.1 & 2.0 together:

 

We are in touch with the third parties (non-SAP applications) to decide upon SAML 1.1 and 2.0. Meanwhile, we want to check if both can be setup in the portal at the same time.Please suggest if having SAML 1.1 and SAML 2.0 together on portal is possible.

Thanks.

 

Regards,

Anushree

SUM Stuck on Deploy Java Core Components

$
0
0

I am having issues getting the SUM to move past a certain point in the install. several components have deployed, but it won't move past this phase. The last lines in the OperateSDM_xx.log are:

 

Jul 7, 2014 3:54:48 PM   Info: Finished successfully: development component 'tc/uddi/dbschema'/'sap.com'/'SAP AG'/'7.0213.20120926145310.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.02.15.0.20140102073203''/'3'

Jul 7, 2014 3:54:48 PM   Info: Starting to save the repository

Jul 7, 2014 3:54:48 PM   Info: Finished saving the repository for 203 ms.

Jul 7, 2014 3:54:48 PM   Info: Starting: Update: Selected development component 'SQLTrace'/'sap.com'/'SAP AG'/'7.0213.20121105124354.0000'/'3' updates currently deployed development component 'SQLTrace'/'sap.com'/'SAP AG'/'7.0110.20110526130531.0000'/'0'.

Jul 7, 2014 3:54:48 PM   Info: SDA to be deployed: C:\usr\sap\SBD\JC02\SDM\root\origin\sap.com\SQLTrace\SAP AG\3\7.0213.20121105124354.0000\SQLTrace.ear

Jul 7, 2014 3:54:48 PM   Info: Software type of SDA: J2EE

Jul 7, 2014 3:54:48 PM   Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****

Jul 7, 2014 3:54:48 PM   Info: Starting cluster instance processes.

Jul 7, 2014 3:54:48 PM   Info: Starting the instance JC_dalweaver_SBD_02 running on host dalweaver

Jul 7, 2014 3:54:51 PM   Info: Starting the instance JC_dalweaver_SBD_02 processes. The instance is running on host dalweaver 

Jul 7, 2014 3:54:51 PM   Info: Starting the process server0

 

The server0 process starts and is green but nothing else happens.  The install just stalls at this point. I have tried restarting the process and restarting the server. I have no idea what it is waiting for. Any ideas what I might need to do?

NWA 7.3 : Looking for "security roles" (Policy Configuration) ...

$
0
0

Hi guys,

 

We deployed a simple application in our new SAP NW 7.3 JAVA instance; by calling the application, we receive "error 403 : Error: You are not authorized to view the requested resource."; this was fixed wihtin NW 7.x by adding a user/group within security roles of the selected component ( Visual Admin => Security Provider => Policy Configurations => select component and than security roles );

 

where to do this within NWA 7.3 ?

 

any ideas;

 

Thanks

Oliver

Change TLN From Horizonal appreance to Vertical

$
0
0

Dear SDN,

               I am designing the basic framework of a portal page for anonomous user for a prototype. My need is to change the TLN From Horizontal TLN TO a Vertical TLN to the left. I know that the par file needs to be edited for the TLN change.

So my questions are :-

1. If i make changes in the html part for TR And TD part of the code, will it work ?

2. I want to make this changes effective for an ananomous user , so i thought i would write A par, assign a page to this.Add mapping rules and assign a desktop to this.

 

Am i moving in corect direction, is there any documentation for the same.?

 

Regards,

Anirban Ghatak.

Viewing all 3723 articles
Browse latest View live


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