Simple queries in portal

I am having some difficulty writing what I think should be simple queries for the portal. I cannot find any documentation about the tables and how they are linked. For instance, I need a report that gives information about items such as what folder they are in and what content area. I cannot determine how to link the content area into the query.

Hi ,
general structure to display an iview
Role -> Work set-> Page-> Iview .
If u want to create all these u have to go
1) Content Administration .-> In the list u will End Conten provided by SAP -> Right Click on -> select create iview (or) page (or ) Work Set or (Role )
selecte Create role -> U will seee ne page - > give name of role  , role id . -> click on next-> finish .
u will get like
u want edit the object right .
just click on object editing .
in right side u will get one  page there u will see Entry point should be enabled thats .
ur role is created now .
now u have to assign this role partcular user right
go to User Administration ->give user name -> search -> u will get ur user name -> select it user -> then u will sear for availa ble role -> type ur role id there click on search - > ur role is displayed over there -> Click on ADD -> Save it .
thats it ur role is added ur required user
now logoff from poratl and relogin u will see ur role .in top level navigation .
if u want measn i will send u with screen shot k .
Regards ,
venkat

Similar Messages

  • Help regarding integrating BEx queries onto portal

    Hi Friends,
    CAn anyone please help me in the steps and process required to follow for integrating the bex queries into portal.
    we have queries developed in bex analyser , the users want to access the reports via portal, for this to be acheived  do we need to integrate or develope the report templates in WAD and then integrate into portal or we can directly integrate these bex queries onto portal, your response and help is highly solicited, many thanks in advance!
    Regards
    Srinivas P
    Cell:09676771313

    Assuming you are using BW 7 objects. If you are satisfied with the formatting provided by the standard template (see transaction spro thread SAP Netweaver / business intelligence / settings for reporting and analysis / BEx Web / set standard web templates and read the accompanying documentation) you don't have to create individual templates.
    Simply create an iview of type Bex Web Application iView (sap netweaver 7 format) and specify "query=technical_name_of_query" as property value for the iview-property "Query-String Bex Web Application".
    If you want to use individual templates the property value would be at least "template=yourtemplate" (if queryname is provided as dataprovider in the wad-template) or "template=yourtemplate&query=yourquery".
    hth
    Klaus

  • Simple Queries on Reports

    Hi, I have some simple queries on reports, which are following. Any help is appreciated!!
    Q1. Where does following information go ??
    a. The heading that I want to print on only the first page of the Report, like Report Name,
    Company name, should go to Margin or Header or Body ?
    b. Where does the page numbers go ?
    c. Field titles/labels, that should print on the beginning of every page of the report
    Q2. How can I restrict the printing of a cloumn to once, when a same value is repeating more than once.
    This is the first column of the report, so if it's value is same in the next rows, i need to print it only once.
    Should I use format trigger or that can be simply done my setting some properties ? If format trigger,
    then how ?
    Q3. Is it possible that I have two parameters in my Parameter Form and after accepting first parameter
    value I show the the list of second parameters on the basis of first value choosen by the user ?
    e.g. If somebody chooses dept# 10, and then second field displays all the employees of dept# 10.
    Q4. Im my report, I want always a last page that is dipalying data from altogether different query which is no
    way related to my other main query. This is query is pretty simple and I just want to display the
    data always on the last page of the report. How would I handle the layout of this page ??
    Thanks!!
    Shalu

    Hi Shalu,
    Q1-
    a)If you want to Print heading on the First Page ONLY then it sholud be
    in MAIN SECTION/BODY olny.(Fields Property- Print OBject On- Should be
    First Page).
    b)Bottom-Right of the MARGIN Section.
    c)if Report Heading is in Main Section then in the layouts Main Frame,
    inside that you can keep (Field titles/labels).
    Q2- Go to Report Wizard try these two Report Style(Group Above and Group Left)
    i think this will solve your Problem...
    Q3- I thinnnnnnnk this is not possible.
    Q4- You can use Trailer Section of the Report.
    Regards,
    Ravi

  • Simple queries

    Hiya,
    I'm trying to run simple queries against my database but get the following error:
    Error: Could not fetch DOM element for doc id: 9167 in ..../mydbxml/lib/i386-linux-thread-multi/Sleepycat/DbXml.pm, line 497
    Some simplified test code that still generates this error is:
         $fullQuery = 'collection("/local/scratch/ar283/anthology/dbxml/anthology.dbxml")//PAPER';
         $txn = $mgr->createTransaction();
         $context = $mgr->createQueryContext();
         $expression = $mgr->prepare($txn,$fullQuery,$context);
         $results = $expression->execute($txn,$context);
         my $value;
         while( $results->next($value) ) {
    print "$value\n";
    print $results->size() . " objects returned for expression '" . "$fullQuery'\n" ;
         $txn->commit();
    I've also tried variations on the $results = $expression->execute($txn,$context); line, e.g.
         $results = $mgr->query($txn,$fullQuery,$context);
         $results = $mgr->query($txn,$fullQuery);
    But the same error occurs. Can anyone tell me what I'm doing wrong?
    Thanks,
    Anna

    Have you removed
    any environment files by accident.Not that I'm aware of. What files? From within my code? How could I be doing this?
    Once you are in this situation, it won't be fixed
    other than by recreating the data.Okay, thanks.
    How far do you get in your application before you hit
    this problem? I.e. what is
    working?Well, in the case of the the test query at the end of the building script, I successfully create the database as follows:
    my $theContainer = "/local/scratch/ar283/anthology/dbxml/anthology.dbxml";
    my $env = new DbEnv(0);
    $env->set_cachesize(0, 64 * 1024, 1);
    $env->open("/local/scratch/ar283/anthology/dbxml/",
    Db::DB_INIT_MPOOL|Db::DB_CREATE|Db::DB_INIT_LOCK|Db::DB_INIT_LOG|Db::DB_INIT_TXN|Db::DB_RECOVER, 0);
    my $mgr = new XmlManager($env);
    my $txn = $mgr->createTransaction();
    if ($mgr->existsContainer($theContainer)){
    $mgr->removeContainer($txn,$theContainer);
    $txn->commit();
    $txn = $mgr->createTransaction();
    my $container = $mgr->openContainer($txn, $theContainer, Db::DB_CREATE);
    $txn->commit();
    Then I populate it in a for loop of transactions like:
    my $xmlDoc = $mgr->createDocument();
    $xmlDoc->setContent( $recordString );
    $xmlDoc->setName( $theName );
    $container->putDocument($txn, $xmlDoc);
    $txn->commit();
    That all seems to work fine. When I tag on the following code for querying the container, I get the error message:
    $fullQuery = 'collection("/local/scratch/ar283/anthology/dbxml/anthology.dbxml")//PAPER';
    $txn = $mgr->createTransaction();
    $context = $mgr->createQueryContext();
    $expression = $mgr->prepare($txn,$fullQuery,$context);
    if ($debug){
         print "$0: full query is $fullQuery, expression is $expression\n";
    $results = $mgr->query($txn,$fullQuery);
    $txn->commit();
    I get my debug output of "full query is collection("/local/scratch/ar283/anthology/dbxml
    /anthology.dbxml")//PAPER, expression is XmlQueryExpression=ARRAY(0x87a7770)" then the next line causes the error.

  • Simple queries, but vital!!

    I have 3 very simple queries which I cannot figure out. I
    have little experience on Dreamweaver MX, and am in a position of
    having to edit and launch an existing site...
    1) I am trying to add a basic border around images and tables
    - just a thin black line to make them look neater - how do I go
    about this?
    2) to prepare for publishing, I assume I need to save all my
    pages and images in one place, and assign each link/image an
    address from my C-drive. At the moment everything is stored in, for
    instance, C:\Documents and Settings\Adam Lucas\My Documents\website
    updates\images etc - is this OK or do I need a more simple address
    to prepare for publishing?
    3) how do I go about publishing my website once all the
    finalised elements exist on my C-drive?
    any advice massively appreciated...

    > I have little experience on Dreamweaver MX,
    1. What is your knowledge level of HTML and CSS?
    2. Which Dreamweaver - is it 6.0 or 6.1? If it's the former,
    please update
    it to the latter from the updater on the Adobe site - there
    were quite a few
    quirks in the former that will make your life miserable.
    > 1) I am trying to add a basic border around images and
    tables - just a
    > thin
    > black line to make them look neater - how do I go about
    this?
    Andy has your answer - use CSS.
    > 2) to prepare for publishing, I assume I need to save
    all my pages and
    > images
    > in one place, and assign each link/image an address from
    my C-drive. At
    > the
    > moment everything is stored in, for instance,
    C:\Documents and
    > Settings\Adam
    > Lucas\My Documents\website updates\images etc - is this
    OK or do I need a
    > more
    > simple address to prepare for publishing?
    You *MUST* start with a local defined site. Do you have one?
    Have you read
    DW's F1 help about how to define a local and a remote site,
    and how to PUT
    and GET files?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "marcoppizio" <[email protected]> wrote in
    message
    news:[email protected]...
    >I have 3 very simple queries which I cannot figure out. I
    have little
    > experience on Dreamweaver MX, and am in a position of
    having to edit and
    > launch
    > an existing site...
    >
    > 1) I am trying to add a basic border around images and
    tables - just a
    > thin
    > black line to make them look neater - how do I go about
    this?
    >
    > 2) to prepare for publishing, I assume I need to save
    all my pages and
    > images
    > in one place, and assign each link/image an address from
    my C-drive. At
    > the
    > moment everything is stored in, for instance,
    C:\Documents and
    > Settings\Adam
    > Lucas\My Documents\website updates\images etc - is this
    OK or do I need a
    > more
    > simple address to prepare for publishing?
    >
    > 3) how do I go about publishing my website once all the
    finalised elements
    > exist on my C-drive?
    >
    > any advice massively appreciated...
    >

  • Extensive IO and CPU for simple queries

    Hi,
    I have a machine using oracle 9.2.0 and solaris 10.
    For every simple queries, it very big IO and a lot of CPU. This is only happend on one particular machine(We have same version db and soalris on other mahcine and it works fine).
    One example queris is when I use Enterprise Manager to get the "configuration" information of the instance,it use 50% IO. I get the trace file and tkprof as following:
    SELECT UNIQUE sp.name, sp.sid, DECODE(p.type, 1, 'Boolean', 2, 'String', 3,'Integer', 4, 'Filename', ' '), sp.value, p.issys_modifiable, p.description FROM v$spparameter sp, v$parameter p WHERE sp.name = p.name ORDER BY sp.name,sp.sid
    call count cpu elapsed disk query current rows
    Parse 4 0.02 0.01 0 0 0 0
    Execute 4 0.00 0.00 0 0 0 0
    Fetch 9 4.36 34.12 7980 0 0 783
    total 17 4.38 34.13 7980 0 0 783
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 5 (SYSTEM)
    Rows Row Source Operation
    261 SORT UNIQUE (cr=0 pr=0 pw=0 time=1214116 us)
    261 HASH JOIN (cr=0 pr=0 pw=0 time=1221296 us)
    361485 MERGE JOIN CARTESIAN (cr=0 pr=0 pw=0 time=370609 us)
    261 FIXED TABLE FULL X$KSPSPFILE (cr=0 pr=0 pw=0 time=19777 us)
    361485 BUFFER SORT (cr=0 pr=0 pw=0 time=6413 us)
    1385 FIXED TABLE FULL X$KSPPCV (cr=0 pr=0 pw=0 time=4180 us)
    1379 FIXED TABLE FULL X$KSPPI (cr=0 pr=0 pw=0 time=7001 us)
    It seems Oracle FTS the X$KSPPCV and X$KSPPI.
    Can anybody give me some suggestion to improve the performance?
    thanks.

    Is there a difference in the query plans on the two machines?
    Did you analyze the SYS and SYSTEM schemas on one system and not the other?
    Are there different initialization parameters on the two machines?
    What do you mean by "it use 50% IO"? I'm not sure what that means and I'm not sure how you're measuring that.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • REG:: Unable to save Queries in Portal

    Hi,
    I encountered a serious issue when I am trying to save BI 7.0 Queries in Portal.
    It says,"The Standard Transport system is Active. You cannot save"
    I searched some sdn pages and read OSS Note 356018.
    The solution they provided was to make the Activate Portal Activity Reports to false
    But in my senario, I cannot deactivate the activity Reports.
    Is there any other way to solve this issue ?
    Regards,
    Pappala.
    Edited by: VijayKPappala on Apr 20, 2010 9:25 AM

    I think only way is to switch off standard in RSA1.

  • Unable to create queries on portal

    Hi,
    We have implemented Buyer business package on portal and all the ABAP views are coming up fine. For the POWL views like "My Vendors", My Materials" there is an option to create a new query and then view the results in the table based on the query.
    Now this step of creating query is coming up for a particular user. But for certain users the view shows message "No active queries" and there is no option to even create a new query.
    Please let me know what authorization do I need to give in ECC so that they can get this option of creating new queries.
    Regards,
    Namrata

    Hi,
    That User may not have the authorizations on that InfoArea and MP, so check it. See SAP help on Roles and Authorizations.
    http://help.sap.com/saphelp_nw70/helpdata/en/44/599b3c494d8e15e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/be/076f3b6c980c3be10000000a11402f/frameset.htm
    Using RSECADMIN we can define the roles and authorizations in BI 7.
    See some good posting sin SDN
    First define the Roles as per your business and then assign the Objects i.e. Plant . Division etc..
    http://wiki.sdn.sap.com/wiki/display/BI/AnalysisAuthorizationsinBI-+approach
    http://help.sap.com/saphelp_nw70/helpdata/en/44/599b3c494d8e15e10000000a114084/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/659fa0a2-0a01-0010-b39c-8f92b19fbfea
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a6c54319-0e01-0010-20a4-fb81ad32f330
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ded59342-0a01-0010-da92-f6b72d98f144
    Thanks
    Reddy

  • Java system error, when publishing BI Queries to Portals...

    Hello all,
    I am getting the error 'Java system error: Exception in method processFunction.' when publishing the BI queries (7.0 with SP 14) into EP 7.0 portals. Our BI system is integrated successfully into Portals.
    Further diagnosis shows 'An error occurred in the BI components on the SAP J2EE Engine'.
    Please reply to this message with any relevant/useful details to resolve this problem. Thanks in advance...
    Thanks,
    Ram.

    also restart the J2EE engine from SMICM.
    Hope it Helps
    Chetan
    @CP..

  • Remove queries from Portal Roles

    Hi,
    We have a requirement in the portal and BW queries.
    We want to remove queries from the portal roles. That is the queries must not be physically deleted, but they should not appear in the portal when viewed through Business Explorer.
    Is this possible with in the portal. How can this be done?
    Regards,
    Sujana

    Hi
    Go to TCode
    PFCG.
    Enter the role in which the query is assigned.
    Then go to the Tab menu,
    Select the name of the report or Query.
    Remove the entry from the role.
    This will do what you need.
    Its in BW side not in R/3.
    Regards
    M.A

  • Simple queries on ALUI

    Hi All,
    I am newbie to AquaLogic Portal and have some queries.
    1-Do we need to worry about session synchronization of any means between the portal and tomcat?
    2-Can we validate that we do not receive any requests from users who are signed-off or session timed out on the portal server?
    Looking forward for your support.
    Thanks

    Hi Shalu,
    Q1-
    a)If you want to Print heading on the First Page ONLY then it sholud be
    in MAIN SECTION/BODY olny.(Fields Property- Print OBject On- Should be
    First Page).
    b)Bottom-Right of the MARGIN Section.
    c)if Report Heading is in Main Section then in the layouts Main Frame,
    inside that you can keep (Field titles/labels).
    Q2- Go to Report Wizard try these two Report Style(Group Above and Group Left)
    i think this will solve your Problem...
    Q3- I thinnnnnnnk this is not possible.
    Q4- You can use Trailer Section of the Report.
    Regards,
    Ravi

  • Simple Queries in PLM

    Hello,
    I have few doubts simple can you make them clear .
    Is PLM configuration done in R/3 , spro or its done in different server and there is integration between those server and r/3?
    Where is configuaration of EH&S (environment health and safety ) and receipe Management done .
    Please say this bcos if these are done in R/3  i will be relieved as i can go thru the tables and do some R&D.
    Also say something simple  more about CAD and DMS and how the documents are stored and what configuration is done in basis side and functional and technical side. Also specify where is this configuration done i mean in r/3 or in other servers.
    Some of the TCodes if you specify will be of very much helpful .
    Please give answers for these with your own points so that I can also start going through some documentation which I can get from SDN later.

    Hi,
    I have tried to answer some of your questions.
    1. Is PLM configuration done in R/3 , spro or its done in different server and there is integration between those server and r/3?
    Mostly as Chris said PLM config is done in SPRO
    2. Where is configuaration of EH&S (environment health and safety ) and receipe Management done .
    In SPRO Logistics - General->Product Lifecycle Management (PLM)->Recipe Management and Logistics - General->Product Lifecycle Management (PLM)->Environment, Health and Safety
    3. Also say something simple more about CAD and DMS and how the documents are stored and what configuration is done in basis side and functional and technical side. Also specify where is this configuration done i mean in r/3 or in other servers.
    You can go through help.sap.com or wiki http://wiki.sdn.sap.com/wiki/display/PLM/SAPPLM7.0includingSAPEasyDocumentManagement7.0
    4. Some of the TCodes if you specify will be of very much helpful .
    Which tcodes are you looking for?

  • SAP LSO Queries on Portal and Authoring Environment

    Hi Gurus,
    We are in the Process of implementing SAP LSO in ECC 6.0 environment.
    Can the gurus give some pointers on the following quries:
    Portal / Authoring Environment:
    1. How does the Collaboration Functionality Work in LSO Portal? Can you provide me a pointer for any documents or links the configuration and set up.
    2. I tried to install the LSOAE 6.00 in my PC. The Installation was successful but I am not able to open the application. I already have JDK 1.4.2 on my PC. Is there anything else that I need to do for opening the application?
    3. Can we link a PPT directly from the CMS without using the Authoring Environment? If so can you provide me the details on how this can be set up. ( Will the WBT functionality work without the Authoring Environment in SAP LSO).
    Please provide information.
    Thanks and Regards,
    Madhan.

    1. How does the Collaboration Functionality Work in LSO Portal? Can you provide me a pointer for any documents or links the configuration and set up.
    In general the KMC component is used for Collaboration, With infotype
    Collaboration Room (Infotype 5045)
    refer link for more detail. [http://help.sap.com/erp2005_ehp_03/helpdata/EN/45/5abb3f8e236d3fe10000000a114084/frameset.htm]
    2. I tried to install the LSOAE 6.00 in my PC. The Installation was successful but I am not able to open the application. I already have JDK 1.4.2 on my PC. Is there anything else that I need to do for opening the application?
    Pls update the JRE to latest version.
    3. Can we link a PPT directly from the CMS without using the Authoring Environment? If so can you provide me the details on how this can be set up. ( Will the WBT functionality work without the Authoring Environment in SAP LSO).
    No you can't do that, U need to publish any content form AE only. So that u can update the Publisher Database.
    Manually u can have the content in CMS, but no tag to it for SAP or in AE. Repository
    Amith Ingua
    Edited by: Amith Ingua on Jun 23, 2008 10:21 AM

  • Runtime error while running the queries on Portal

    Hello
    While running the BI7 query the error has occured .  Description of the error is
    Portal runtime error
    An exception has occured while processing your request . Send the exception Id to your adminstrator
    But when the query is being run in the direct portal  url it is working fine ,  it is only when we try to run the query with the user id which has single sign on .
    Unable to understand why this problem is there as the business demands to run all the query with the single sign on
    Please let me know the solution for this

    Hello.
    I have created a system alias. But still the problem persists.
    It still throws the same error.
    Could You please suggest some other option.
    Regards,
    SampathKumar G.

  • Simple question about Portal Workflow

    Hi.
    Is possible use Portal Workflow in order to use the UWL to inform a task for KM document for Approval process, without a backend connection with a SAP business workflow ??
    thanks in advance.
    Leandro

    thanks Deepa. I solved it.
    the problem was that the iview for "my task" I am using, is different the "my task" iview in eu_role role, and the approval workflow tasks not appear in my iview, and I confuse about de workflow without backend for this cause.

Maybe you are looking for