How to check Portal integrated in Landscape

What transacton code can I use to check a portal is running in the landscape that I am working with and whether BI (7.0) is already integratedin that portal?

BI Portal Integration can be checked by launching a query using Bex tools and executing it or publishing it to portal.
You can use transaction RSRT (Query Monitor) and use Java Web to test it as well.
Using transaction SM30 check table RSPOR_T_PORTAL and see what portal URL is used by your BI system. If your BI and Portal Integration is complete then URL prefix will have this information.
Ranjit Mereddy
SAP Netweaver Consultant
Indus Consulting Group

Similar Messages

  • How to check up Integrity of basis on the server ?

    How to check up
    1. Integrity of basis on the server
    2. Presence of necessary fields in bases
    Why ask ?
    There is for a long time imported in ZCM station XP.
    In properties of agent ZCM at this station I see that all politicians are applied successfully.
    In the https://zcmserver | ws Xp_KAP| Relationships | Assigned Policies | Inherited
    for Dynamic Local User Policy "01UsersRightsDLU" Deployment Status = Unknown.
    If remove (unreg) from ZCM this WS and import Again - all properies will be OK...
    ( I have some such for a long time imported machines with similar problems. )
    Serg

    Originally Posted by AndersG
    Skoltogyan,
    > Thanks. I will look forward to hearing
    Sorry. I shuould have spotted that myself. The command you entered is wrong. You entered:
    /opt/zdc # ./zdc verify -b /var/opt/novell/zenworks/database/zenworks_AMI_COMPANY_ZONE.db
    Should have been:
    /opt/zdc # ./zdc verify -b /blabla/zcm_10.x.x.zdc
    Ie you enter the full path to the baseline file, not the database for -b
    Anders Gustafsson (NKP)
    The Aaland Islands (N60 E20)
    Novell has a new enhancement request system,
    or what is now known as the requirement portal.
    If customers would like to give input in the upcoming
    releases of Novell products then they should go to
    http://www.novell.com/rms
    cd /opt/zdc
    ./zdc verify -b
    and in the log-file get 3 errors:
    1)
    + Initializing native libraries.
    [ERROR] [ZDCNative]
    [!] Could not load native library, native features will be disabled
    [DEBUG] [ZDCNative] /opt/zdc/lib/native/libzdcnative.so: librpm-4.4.so: cannot open shared object file: No such file or directory
    java.lang.UnsatisfiedLinkError: /opt/zdc/lib/native/libzdcnative.so: librpm-4.4.so: cannot open shared object file: No such file or director
    y
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.jav a:1751)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java :1676)
    at java.lang.Runtime.loadLibrary0(Runtime.java:822)
    at java.lang.System.loadLibrary(System.java:993)
    at com.novell.zenworks.zdc.system.platform.ZDCNative. initialize(ZDCNative.java:20)
    at com.novell.zenworks.zdc.system.platform.ZDCNative. <clinit>(ZDCNative.java:33)
    at com.novell.zenworks.zdc.DiagnoseZen.startZDC(Diagn oseZen.java:105)
    at com.novell.zenworks.zdc.DiagnoseZen.start(Diagnose Zen.java:64)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Native MethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(De legatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at com.novell.zenworks.zdc.boot.Bootstrap.main(Bootst rap.java:110)
    [INFO ] [DiagnoseZen]
    + Attempting to connect to database.
    [TRACE] [DatabaseConnector] Establising JDBC connection.
    [TRACE] [DatabaseConnector] JDBC connection established.
    [INFO ] [DiagnoseZen]
    2)
    [ERROR] [ZDCNative]
    [ERROR] [FileVerifier] File '/opt/novell/zenworks/share/tomcat/webapps/zenworks-reportadmin/WEB-INF/web.xml' is missing!!!
    [ERROR] [FileVerifier] File '/opt/novell/zenworks/share/tomcat/webapps/zenworks-reportadmin/WEB-INF/classes/com/novell/zenworks/webservice/reportadmin/ReportAdminImpl.class' is missing!!!
    [ERROR] [FileVerifier] File '/opt/novell/zenworks/share/tomcat/webapps/zenworks-reportadmin/WEB-INF/classes/com/novell/zenworks/webservice/reportadmin/ReportAdminTieSkeleton.class' is missing!!!
    [ERROR] [FileVerifier]
    3)
    [TRACE] [DBObjectComparer] Constraint 'fk_zDevice_ZUID' is okay.
    [TRACE] [DBObjectComparer] Comparing Triggers
    [ERROR] [DBObjectComparer] Mismatch in Trigger 'tg_IsRetired_Ins_Upd' structure!!!
    Expected: [Name: tg_IsRetired_Ins_Upd, Table: zDevice, Definition hash: 5e61ed8]
    Found : [Name: tg_IsRetired_Ins_Upd, Table: zDevice, Definition hash: d789549a]
    [DEBUG] [DBObjectComparer] Additional Information:
    create trigger -- when zDevice is retired or unretired let NC_Workstation know
    tg_IsRetired_Ins_Upd after update on
    zenadmin.zDevice
    referencing old as oldtable new as newtable
    for each row
    begin
    declare @Retired1 tinyint;
    declare @RetiredDate1 datetime;
    declare @ZUID1 binary(16);
    if(newtable.Retired <> oldtable.Retired) then
    set @Retired1=newtable.Retired;
    set @ZUID1=newtable.ZUID;
    if(@Retired1 = 1) then
    set @RetiredDate1=newtable.RetiredDate;
    update NC_WORKSTATION set
    NC_WORKSTATION.IsDeleted = @RetiredDate1
    where NC_WORKSTATION.ZenWorksAgentID = @ZUID1;
    update NC_COMPONENT set
    NC_COMPONENT.IsDeleted = @RetiredDate1
    where NC_COMPONENT.IsDeleted is null
    and WORKSTATIONOID = any(select WORKSTATIONOID from NC_WORKSTATION where ZENWORKSAGENTID = @ZUID1)
    else
    set @RetiredDate1=oldtable.RetiredDate;
    update NC_WORKSTATION set
    NC_WORKSTATION.IsDeleted = null
    where NC_WORKSTATION.ZenWorksAgentID = @ZUID1;
    update NC_COMPONENT set
    NC_COMPONENT.IsDeleted = null
    where NC_COMPONENT.IsDeleted >= @RetiredDate1
    and WORKSTATIONOID = any(select WORKSTATIONOID from NC_WORKSTATION where ZENWORKSAGENTID = @ZUID1)
    end if
    end if
    end
    [ERROR] [TableHelper]
    [!] 1 errors found while verifying Triggers of Table zDevice
    [DEBUG] [TableHelper] Verifying table 'zDeviceCreationInfo'
    [TRACE] [DBObjectComparer] Comparing Columns

  • How to Check Referential Integrity for a field in Transformations.

    Hi All,
    We have a requirement where we need to check the referential integrity for a field in Transformation.
    How can we Check Referential Integrity in Transformations?
    Regards,
    Rk.

    Hi,
    you can check the referential integrity checkbox iis available in the transforamtaion there is a check box referential integrity from the source rules.
    Thanks,
    Ramesh.

  • How to check tables integrity

    Hello all,
    we have a big problem in CO area. Since last week we can't calculate production order costs and product costs.
    We have check all the things we can, including notes, and the only thing we think that could solve the problem is to check the integrity of tables.
    Is there any program, transaction, or anything to make it?.
    thanks a lot.

    Hi,
    Please try this once more.
    Go to SE11.
    Enter the data dictionary table in the 'Database Table' field.
    Click 'Display' and press 'Enter'.
    The page 'Dictionary: Display Table' will open.
    Please click on the 'Entry Help/Check' tab.
    Observe the fields 'Foreign Key' and 'Check Table'.
    Reward if this is of help.

  • How to check Portal IP

    Dears,
    I want to check the IP address of server on which my EP 6.0 server has been installed.
    Please check in portal from where I can get this information.
    Shivam

    Not sure if an option like that in there in the portal. You could try looking at
    http://<hostname:port>/sap/monitoring/SystemInfo
    Thanks,
    GLM

  • How to check does my notebook use integrated or AMD graphic card?

    How to check does my notebook use integrated or AMD graphic card? Some games show me that they use integrated card: http://img849.imageshack.us/img849/4125/98ab1c28dc9f4b51b537435.png ?
    This question was solved.
    View Solution.

    Hello,
    First click in Start Menu, Control Painel in the up right side click in Category and left in Small Icons.
    Search Device Manager.
    Display Adapters.
    Which is your Operation System ?
    Windows 7?
    If yes.
    Click with the right clickpad in the desktop and select Display.
    Screen Resolution you can see how graphic your used or change if you want to.
    Att Cristian
    If this answer help you click in Kudos to tanks.
    Tanks
    If this answer help you click in Kudos to tanks.
    If you don't have more question click in Accept as Solution to close this case.
    Best Regards Cristian Derick.
    Senior Support Analyst.

  • How to check the unused users in portal.

    Hi Guru,
    We are doing auditing in Portal server.Can any tell us
    How to check the unused users in portal?.
    Regards,
    Vivek

    Use portal activity reporting  for monitoring the users. This way you can monitor the users in the portal who logged on to the portal.
    Below are things you can monitor from portal activity report iview
    1) number of users logged on during the period of time.
    2) Details of the users who logged on
    3) monitoring particular iview/page
    Check the below threads for more help
    http://help.sap.com/saphelp_nw04s/helpdata/en/47/87329cc84a199ce10000000a42189d/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/47/87346dc84a199ce10000000a42189d/frameset.htm
    Raghu

  • What is 'Supports Portal Integration' check box for?

    Hi.
    I just wondering what is 'Supports Portal Integration' check box use for..
    what is difference when this check box is on or not?
    thank you..

    Hi,
    It all has to do with session mngmnt. See also
    http://help.sap.com/saphelp_nw2004s/helpdata/en/83/132197c3564643af326a5ebccb604f/frameset.htm
    Eddy
    PS.
    Put yourself on the SDN world map (http://sdn.idizaai.be/sdn_world/sdn_world.html) and earn 25 points.
    Spread the wor(l)d!

  • How to check Integration Server Client and ABAP stack Client?

    How to check Integration Server Client and ABAP stack Client? How to check,,pls tell in detailed steps???
    Points would be awarded.
    Arnab

    hi,
    Must be the server has different clients,one declared as application server ie abap stack client and the other declared as Integration server ie XI. U might be trying to open idx5 in application server client, in which idx5  exists but you cant open the screen even, that can be achieved through we02.
    000 is the default client when  XI server is installed .We can create separate clients on the system through sccl tcode.
    As told we can find the client  on sap logon screen.
    Logon to sxmb_adm and check whether the client is declared as an application system(r/3) or Integration server(xi).Try idx5 in xi not r/3
    Edited by: NagaDurga Nannapaneni on Aug 28, 2008 11:36 AM

  • How to create Process Integration in SLD

    Hello colleagues,
    I need create Process Integration in SLD my version is PI 7.4.
    In development system I have create this process
    How to create in production?
    Thanks.

    Hi Victor,
    you can create the SLD objects in DEV and transport the same in to Quality and PROD systems.
    check the below blog.
    http://scn.sap.com/people/daniel.graversen/blog/2012/03/11/sld-setup-and-transport-for-sap-pi
    http://help.sap.com/saphelp_nw70/helpdata/en/f1/92b248db68409487661ff13239127d/frameset.htm
    You can check this blog for the general SLD setup recommendation of SAP:
    http://scn.sap.com/people/boris.zarske/blog/2008/03/21/sld-general-recommendation-how-to-set-up-the-system-landscape-directory
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9e76e511-0d01-0010-5c9d-9f768d644808
    Regards
    Srinivas

  • Access denied:com.sap.ip.bi.web.portal.integration.launcher

    Hi Friends,
    I have installed a Standalone Portal ( EP, EP core, BI Java) , configured LDAP as data source and imported the Portal content from Source system . ( in Development, Quality, Production)
    I completed all configuration and testing completed.
    But the portal user created with customized  iviews roles are working fine in Development and Production.
    But ....Access denied:com.sap.ip.bi.web.portal.integration.launcher error is encountered in Quality system.
    In QAS system, while installation I have selected EP, EP core as Usage type.. and after Insatllation I have installed additional Usage tye BI JAVA using JSPM
    Whereas in DEV, PRD ( EP, EP core, BI Java) were taken as Usage types while installation only..
    Above reason may effect the Test user for access denied error.
    Please suggest.
    Thanks
    Venkat

    Ramana,
    It looks like a permissions issue, right click on the system created for BI under System Admin-System Configuration-System landscape and open the permissions and ensure you have the everyone group added there and enduser checked.
    Good Luck!
    Sandeep Tudumu

  • How to check SSO user from database?

    Hi:
    I've posted this topic in Forms forum:
    How to check SSO user from database?
    then as I've been told, it's better to post it here, so ...... here is the question:
    I'm writing a "before delete trigger" to insert into log table before delete. Is there a way that I know from database the current SSO user when SSO users share one database user?
    Just like in Oracle Application Express there is v('APP_USER') to know the current user.
    Saad,

    End users are manipulating data through Oracle Forms(and SSO through portal) and the thing I need is to trace the SSO username from database without modifying forms, I mean purely from database taking into consideration that SSO users are sharing one database user. Is it possible?
    Saad,

  • Authentication issue with Xcelsius/Portal integration

    I am facing an issue with the way we have integrated our Xcelsius dashboard with our corporate portal. I know this probably is more of a SDK question than Administration, but I figured I will ask it here anyway since Tim and some others are diverse enough in their knowledge base. This might be LONG post but please advise if anyone has any good pointers.
    We have an Xcelsius dashboard that needs to be served up via our corporate intranet (based on MS Sharepoint 2007). Now we are NOT using the MS Sharepoint Portal Integration Kit, but just doing a basic integration of the SWF call within a web part on Sharepoint. All this means is that within a portlet (web-part) on Sharepoint, I am making a HTTP call to the openDocument URL to invoke the SWF file. So the SWF is actually served up from our Tomcat App Server, and displayed onto this frame within the portal. That is the basic idea.
    To achieve this, what I did was write some custom code using the Java SDK to modify the openDocument a little bit. By doing so, I was able to insert some behind-the-scenes-login code wherein no matter who the portal user (Win AD-based) is, he is logged in to BOE as a generic "dashboard-user" and the dashboard is served up. This worked fine for the first dashboard where all we had was SWF and some WebI linking using openDocument (no full-InfoView access).
    But in this second dashboard now, what we also have is a hyperlink for users to get to InfoView to do Ad-hoc reporting. What this does is open a child browser window from within the portal (dashboard) --- and it remembers the BOE session for the generic user id "dashboard-user" and logs the end-user in to InfoView using that. But what I actually want is that the end-users, on this new window, should only be prompted at the traditional InfoView logon screen where they can manually enter their Windows AD password and get in. Thus, I would like to keep the dashboard SWF page session separate from the InfoView ad-hoc session, which I cannot seem to do because of the browser relationship and session maintenance.
    I am trying to find a way where I can simulate a single sign-on for dashboard viewers on the portal, but at the same time let them jump off to InfoView as themselves.
    Any thoughts on how I can do this?
    Notes:
    We DO NOT have Single Sign-On enabled for InfoView
    We are using Windows AD authentication (manual, no SSO)
    We are on Tomcat

    Sarang Deshpande wrote:
    1) If the InfoView app on Tomcat (desktoplaunch) is configured with Vintela, openDocument calls from the portal with automatically work using behind the scenes SSO, correct?
    in XIR2 everything that falls under infoview should SSO when infoview is setup for SSO (not the case in XI 3.x)
    Sarang Deshpande wrote:
    2) What is the best practice when it comes to the service accounts needed? I have implemented Windows AD manual auth already so I have a service account that use for that. Should I be using the same on and making vintela/SSO-specific changes to it...or should I have a separate vintela service account and deal with two different ones..each for a diff purpose?
    There is no best practice per se but the less service account the lower your chances to duplicate an SPN, functionally everything seems to work just as well with multiple as it does with 1 (of course with 1 there is less management work) If you click the SSO link in my forum sticky post I have a section explaining this with some suggested methods of deploying a service account(s)
    Sarang Deshpande wrote:
    3) Other than some minor browser configurations that might be required, is there anything else that I should communicate to the team about what might be required to be "pushed" to users' PCs?
    Using the default config nothing should be required on the client machine (unless SSO has been disabled in the browser or you intend to use a url that contains a period ..... (i.e. FQDN or IP) with hostname URL (the default) it should just work.
    To note if you have XP SP2 or older there is a microsoft spnego bug you may need to apply a fix if you aren't patched to SP3 (about 5% of our customers run into this).
    Regards,
    Tim

  • How to print a report in landscape?

    Hi,
    I am using crystal report for visual studio 2010 and I buid a win form test application in c#. I add a crystalReportViewer1, and reportDocument1(unTyped) on the form. In the design time the report (.rpt) is in portrait paper orientation. I want to change the paper orientation to landscape at the runtime. The code snippet is as followed,
    reportDocument1.FileName = @"D:\DotNet Execises\CrystalReportsApplication\CrystalReportsApplication\CrystalReport1.rpt";
    reportDocument1.Load(reportDocument1.FileName, OpenReportMethod.OpenReportByTempCopy);
    crystalReportViewer1.ReportSource = reportDocument1;
    reportDocument1.PrintOptions.PrinterName = @"
    LINDY\HP LaserJet 4000 Series PCL 6";
    reportDocument1.PrintOptions.PaperOrientation = PaperOrientation.Landscape;
    When I click a button to print the report
            private void btnPrintCrystal_Click(object sender, EventArgs e)
                crystalReportViewer1.PrintReport();
    in the print dialog box the paper orientation is correct,ie. landscape. But the actual printout is still in the portrait. Why? how can I print it in landscape?
    Thanks

    Open the report up and check on the Dissociate... option or do it in code and also.
    Try this ... cboCurrentPrinters is a dialog box I created to fill the local user printers in a list
           private void button1_Click(object sender, System.EventArgs e) // Print To P button
                   System.Drawing.Printing.PrintDocument pDoc = new System.Drawing.Printing.PrintDocument();               
                   CrystalDecisions.ReportAppServer.Controllers.PrintReportOptions rasPROpts = new CrystalDecisions.ReportAppServer.Controllers.PrintReportOptions();
                CrystalDecisions.ReportAppServer.ReportDefModel.PrintOptions newOpts = new CrystalDecisions.ReportAppServer.ReportDefModel.PrintOptions();
                   pDoc.PrinterSettings.PrinterName = cboCurrentPrinters.Text;
                pDoc.PrinterSettings.SupportsColor.ToString();
                if (pDoc.PrinterSettings.SupportsColor)
                    MessageBox.Show("Printer Supports Color", pDoc.PrinterSettings.SupportsColor.ToString());
                   rasPROpts.PrinterName = cboCurrentPrinters.Text;               
                   rasPROpts.PaperSize = (CrPaperSizeEnum) pDoc.PrinterSettings.PaperSizes[cboCurrentPaperSizes.SelectedIndex].Kind;
                   rasPROpts.PaperSource = (CrPaperSourceEnum) pDoc.PrinterSettings.PaperSources[cboDefaultPaperTrays.SelectedIndex].Kind;
                newOpts.PrinterName = cboCurrentPrinters.Text;
                newOpts.PaperSize = (CrPaperSizeEnum) pDoc.PrinterSettings.PaperSizes[cboDefaultPaperSizes.SelectedIndex].Kind;
                newOpts.PaperSource = (CrPaperSourceEnum) pDoc.PrinterSettings.PaperSources[cboDefaultPaperTrays.SelectedIndex].Kind;
                newOpts.DissociatePageSizeAndPrinterPaperSize = true;
                newOpts.PaperOrientation = CrPaperOrientationEnum.crPaperOrientationLandscape;
                   rptClientDoc.PrintOutputController.PrintReport(rasPROpts);
                   MessageBox.Show("Printing report.", "RAS", MessageBoxButtons.OK,MessageBoxIcon.Information );
    Don

  • CIN: How to check the material document posted without excise invoice

    Hi Guru,
    Please advise how to check the material document posted without excise invoice.
    I have tried tcode J1I7 but it seems start to collect the excise invoice first and then material document.
    But my case is to find the material document WITHOUT excise invoice for internal tracking purpose.
    At the moment we start from tcode MB51 to get the list of material document and check in J_1IEXCHDR / J_1IEXCDTL
    Best regards,
    Pakorn

    Hi,
    Try creating a Query in Tcode SQVI by combining tables MKPF and J_1IEXCHDR/J_1IEXCDTL for your requirement.
    Check these threads how to create Query.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/6018c1ae-8c44-2d10-6ea9-c3fad2c82880?QuickLink=index&…
    http://ptgmedia.pearsoncmg.com/images/9780672329029/samplechapter/0672329026_CH03.pdf
    Regards
    Binoy

Maybe you are looking for

  • How to reset safari on macbook pro

    Hi, I was wondering if you could help me. I am currently getting pop ups from offers4u on my internet and it's getting on my nerves, i was wondering is there any way to get rid of these.I have tried adblocker but its not working. any other suggestion

  • Authentication for multiple services

    I wanna setup a bunch of web services (squirrelmail, blojsom blog, dokuwiki wiki, and an online calendar system - if i can find one). Obviously, I want to make these private, so only employees see them. All of these require separate authentication. I

  • Adobe Air Packager for RoboHelp

    Hello! I have been experimenting with the RoboHelp Packager for Adobe Air. I really like the many extra features using Adobe Air allows for Help Files and of course, I also like that you can finally do a Help File that looks and feels more up-to-date

  • Finder's Slideshow feature: Where are the controls?

    When I try to use the slideshow in Finder, its doesn't behave as advertised in Help. I don't see the promised full controls, just Zoom In/Out, Add to iPhoto and Quit. Nor can I advance the playback using the Arrow key, in fact the first image just si

  • I get an error while opening the NWDS

    I get following error Problems during startup. Check the .log file inthe .metadata directory of your workspace. Is it because too many projects are open on my workspace ? Should I delete the files, which files should i remove from the workspace thank