Building  portal in manual

hi,
i want to build a portal in manual,but fail. following steps:
1. install Oracle 9ias infrastructure and 9ias middle tier with J2EE and web cache.
2. OPCA install portal repository.(no errors)
3. OPCA install and config portal midtier.(create OID lightweight user exception in custom mode, cant not login database in typical mode)
4. logon the portal home page.( wwc-00000 or nothing)
OS:Windows 2000 Advanced server chinese+sp3
iAS: Oracle 9iAS R2 NO PATCH
Machine: DUAL CPU PIII 866 1G RAM
why?

Use System varaible SY-TABIX so that u will get the numbre of records.
After initilization event u define start of selection event also.
Regards,
Pravin

Similar Messages

  • Building portal EAR without workshop

    Has anyone successfully built an EAR file without using either the wlwBuild.sh/cmd
    or the wlwBuild ant tag? I have a number of reasons why this particular method
    isn't viable, I won't go into the details.
    My current method works fine with the server in "development mode", but once I
    create a "production mode" domain all of my pageflow portlets fail to find the
    pageflow URI. The current method simple creates an exploded EAR and deploys it.
    I cracked open the ear file generated by workshop and noticed a bunch of extraneous
    stuff like the ".workshop" directory. Is all of this stuff really necessary? Does
    anyone know what the special sauce is for getting an ear to work in production
    mode?
    Thanks,
    -jeff

    I'm afraid it's not easy to build WebLogic portal applications without workshop. But work is under progress to build plugins for Eclipse that will enable developers to build portal applications (Pollinate project- you can find more information on Apache website).
    Seenu.

  • Build portal pages

    Hello,
    I have installed Oracle AS 10g (Rel 2).
    Portal is the part of this installation.
    I wanted to buiild portal page.
    I am new to PORTAL.
    Could any one knows any link which coveres how to build portal pages?
    Is there any default template available in the installation?
    Regards,
    DN

    Also the user guide, part of the iAS Documentation:
    http://download-west.oracle.com/docs/cd/B14099_12/portal.htm
    accessible from
    http://www.oracle.com/technology/documentation/appserver1012.html
    (click "View Library", then click the "Portals" tab).

  • Portal Administration Manual

    Where can I download a copy of the Portal Administration manual?

    There is not a Portal Administration Manual per se. However, there are several manuals which pertain to the Administrator's functions (Installation, Configuration, mod_plsql Guide). Go to the documentation section of portalcenter (http://portalcenter.oracle.com/servlet/page?_pageid=2752&_dad=ops&_schema=OPSTUDIO). At the bottom of the page are several of the manuals in PDF and HTML format.
    Good luck, Cheryl

  • Starting to build portal

    hi all,
    I have started the portal configuration (after its installation)and I have deployed the portal to the middle tier. Now I have two questions:
    1. How should I configure the portal schema through the Portal Dependency Settings File and is it necessary?
    2. Do I need aministrator user/password in order to start building the portal after that?

    hi all,
    I have started the portal configuration (after its installation)and I have deployed the portal to the middle tier. Now I have two questions:
    1. How should I configure the portal schema through the Portal Dependency Settings File and is it necessary?
    I don't understand the question. It seems to me that you want to configure portal (Mid Tier), and Infrastructure, if you have one installed, in certain kind of environment. Which version of iAS have you installed?
    2. Do I need aministrator user/password in order to start building the portal after that?
    Yes, absolutely. To build portal, you would need either orcladmin or portal passwords. These password you must have provided during installation.
    Good Luck!

  • Need help to build Portal Insert URL in OAM..

    Hi All,
    I have a requirement to customize the user Manager screen in such a way that i need to get only the search criteria tab(but not any of the tabs or links) and the search results.
    To achieve this i have builded below Portal URL.
    http://training.orademo.com/identity/oblix/apps/userservcenter/bin/userservcenter.cgi?program=search&comp=true
    By using this above URL i am able to hide all the tabs in the browser but i need to have that search criteria to be displayed in the screen.
    Can any one please suggest me the solution to achieve this.
    Its bit urgent requirement.
    Thanks in advance.
    Siva Pokuri.

    Hi Colin,
    Thanks for your quick response.
    URL that i posted will search the users in OAM. But my requirement is like i have to select the attribute and search type and search value from that page(in that Page i should not have UserManager, GroupManager, Org Manager, Identity SYstem Console tab and My Profile , reports ...etc links should not be appear) i sould be able to select the attribute that i would like to search only. so the search functionality should be there.
    Based on this req i have to build the URL.
    Please help me.
    Thanks & Regards,
    Siva Pokuri.

  • How to get DDIC information when building your fieldcatalog manually

    Hi guys!
    I try to build ma alv fieldcatalog manually. For each field i want to set a DDIC Dataelement.
    I tried this way.
    Data:
    lt_fcat type lvs_t_fcat,
    ls_fcat type lvs_s_fcat,
    ls_fcat-ref_field = 'ZZ_MY_DATAELEMENT'
    *... and some other information
    append ls_fcat to lt_fcat
    ...but it's not working the the column text is provided by the data_element.
    I know about the lvc_fieldcatalog_merge function, but i need to find a way to do this manually!
    thanks for your help

    hI
    There are field for the short, medium an long text too, are't there?
    SCRTEXT_L
    SCRTEXT_M
    SCRTEXT_S
    Max

  • Fighting linker errors when building Qt app manually

    Hi all,
    some time I was using Qt and building apps in IDE (Code::Blocks). Now I need to find a way to build manually - an app must be built on a machine without IDE or anything similar. I followed official manual, but project failed at linking. I'm now using test project, it consists of two files, and still fails:
    main.cpp:
    #include <QApplication>
    #include "header.hpp"
    int main(int argc, char* argv[])
    QApplication app(argc, argv);
    TestClass asdf(0);
    asdf.show();
    return app.exec();
    header.hpp:
    #include <QWidget>
    #include <QtGui>
    class TestClass : public QWidget
    Q_OBJECT
    public:
    TestClass(QWidget* parent);
    protected:
    void paintEvent(QPaintEvent* event);
    TestClass::TestClass(QWidget* parent) : QWidget(parent)
    setWindowTitle( tr("Testing window") );
    resize(200, 200);
    void TestClass::paintEvent(QPaintEvent* event)
    QPainter ps(this);
    ps.drawLine(10, 10, 100, 100);
    Then I ran qmake -project; qmake test1.pro; make. The following error occured:
    moc_header.o: In function `TestClass::paintEvent(QPaintEvent*)':
    moc_header.cpp:(.text+0x80): multiple definition of `TestClass::paintEvent(QPaintEvent*)'
    main.o:main.cpp:(.text+0xc0): first defined here
    moc_header.o: In function `TestClass::TestClass(QWidget*)':
    moc_header.cpp:(.text+0xf0): multiple definition of `TestClass::TestClass(QWidget*)'
    main.o:main.cpp:(.text+0x0): first defined here
    moc_header.o: In function `TestClass::TestClass(QWidget*)':
    moc_header.cpp:(.text+0xf0): multiple definition of `TestClass::TestClass(QWidget*)'
    main.o:main.cpp:(.text+0x0): first defined here
    collect2: ld returned 1 exit status
    make: *** [test1] Error 1
    It generated the following test1.pro:
    # Automatically generated by qmake (2.01a) Fri Sep 10 16:42:10 2010
    TEMPLATE = app
    TARGET =
    DEPENDPATH += .
    INCLUDEPATH += .
    # Input
    HEADERS += header.hpp
    SOURCES += main.cpp
    It's quite strange since in Code::Blocks it builds flawlessly. Is it error in code, or configs need to be corrected?

    falconindy wrote:Add #include guards to header.hpp
    Include guards made nothing. Still the same error.
    stqn wrote:
    I don't know why it builds in Code::Blocks, but I would do as the error message suggests and move the functions definitions from the header to a cpp file.
    Or move them into the class declaration.
    It solved the problem, but I simply can't understand, why definitions in header are causing an error. Basically it is correct, since in C99 aren't any rule rejecting it, only a recommendation. E.g., Boost is made the same way - definitions are put in headers.

  • Dynamically build Portal URL

    Hello experts,
    I'm searching for a possibility to build up dynamically a portal url like this:
    http://<hostname>:<port>/irj/portal?NavigationTarget=navurl://dcaceb3f782aa37c63aedfdc8347c7b5&....
    &CurrentWindowId=WIDDefaultExternal1250835714537&NavigationContext=navurl://39fccbe94b41d07fd15b942490ec5e9e
    The goal is it to start the browser with the seached URL from an ABAP report. How to start the internet browser I allready now. Is there any ABAP class for building such urls with parameter support?
    Thanks in advance.
    Best Regards
    Clemens

    hi,
    this is one [WAY|http://help.sap.com/saphelp_nw04/helpdata/en/d3/ab0b5decd045e482d0deae9f9c90d5/frameset.htm]
    let me know is that ok for u or  ......
    if u r using webdynpro for abap  check for the manus Dua post
    How to open URL IView with dynamic url parameter (navigate_absolute)
    let me know u need more info
    ravidndra

  • Cbs build portal application dc fail.  Build Plugin IS NOT DEFINED for this

    hi all
    I use NW7.0 ehp1,have portal and a nwdi.
    I create a track at nwdi . and develop a portal application .
    local build is ok . but when i check in .run a activitce.  dc is broken.
    log is -
    CBS Request Log - [  300/DEP_PESKM_D  ]
    Build number assigned: 314
    Change request state from QUEUED to PROCESSING
    REQUEST PROCESSING started at 2010-11-05 02:17:38.921 GMT
        ACTIVATION request in Build Space "DEP_PESKM_D" at Node ID: 13,975,650
         [id: 300; parentID: 0; type: 4]
         [options: NO OPTIONS]
        Waiting for access: 79 ms
        ===== Pre-Processing =====  started at 2010-11-05 02:17:39.000 GMT
            List of requested for activation activities:
                'deep.com_PESKM_1' compartment
                    tet
                        [ISN 111][created by YANLIANG at 2010-11-05 10:17:31.0][OID 6b2f604ae87c11df94ff000000d54062]
                There is 1 activity in compartment deep.com_PESKM_1
                1 activity will be processed by this request
            Analyze dependencies to predecessor activities... started at 2010-11-05 02:17:39.031 GMT
                Analyzing predecessors in compartment "deep.com_PESKM_1"
                    No dependencies to predecessor activities found.
            Analyze dependencies to predecessor activities... finished at 2010-11-05 02:17:39.046 GMT and took 15 ms
            Analyze versions... started at 2010-11-05 02:17:39.046 GMT
                List Active Versions Report: "HTTP/1.1 207 Multi-Status" finished at 2010-11-05 02:17:41.812 GMT and took 2 s 766 ms
                Synchronize metadata for [deep.com.cn/dc_logo_par] started at 2010-11-05 02:17:41.812 GMT
                    Verification of DL [ws/PESKM/deep.com_PESKM/dev/active/] finished at 2010-11-05 02:17:41.906 GMT and took 0 ms
                    Verification of cache (level 2: Comparison of attributes) finished at 2010-11-05 02:17:41.937 GMT and took 31 ms
                Synchronize metadata for [deep.com.cn/dc_logo_par] finished at 2010-11-05 02:17:41.937 GMT and took 125 ms
                < CHANGE > 'deep.com.cn/dc_logo_par' DC
            Analyze versions... finished at 2010-11-05 02:17:41.937 GMT and took 2 s 891 ms
            Analyze activities... started at 2010-11-05 02:17:41.937 GMT
                Loading component definitions
                1 component to be build in compartment "deep.com_PESKM_1"
            Analyze activities... finished at 2010-11-05 02:17:42.000 GMT and took 63 ms
            Calculate all combinations of components and variants to be built...
            Analyze request DC BV... started at 2010-11-05 02:17:42.109 GMT
                    'deep.com.cn/dc_logo_par' variant 'default'
                    'deep.com.cn/dc_logo_par' variant 'default' cannot be built. ACTIVATION will fail.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
            Analyze request DC BV... finished at 2010-11-05 02:17:42.140 GMT and took 31 ms
        ===== Pre-Processing =====  finished at 2010-11-05 02:17:42.187 GMT and took 3 s 187 ms
        Change request state from PROCESSING to FAILED
        Error! The following problem(s) occurred  during request processing:
        Error! The following error occurred during request processing:Activation failed due to component "deep.com.cn/dc_logo_par" variant "default". The component is BROKEN.
    REQUEST PROCESSING finished at 2010-11-05 02:17:42.187 GMT and took 3 s 266 ms
    No build logs available for the request.
    Edited by: yan liang on Nov 5, 2010 3:12 AM

    Hi Yan,
    please check the NWDI troubleshooting guide:
    http://wiki.sdn.sap.com/wiki/display/TechTSG/%28NWDI%29%28CBS%29Q0030
    --> Understanding Broken and Dirty DCs
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30b7c94e-fc6b-2910-30b8-d34a7b51309e
    Did you import the dependent build plugins for the track in question?
    (tab "development" in the /devinf --> CMS webui --> Transport studio)
    See also the sap note: #1080927 - Creating CMS Tracks for Common Application Types (http://service.sap.com/sap/support/notes/1080927)
    Best Regards,
    Ervin

  • Building Portal F/W

    Any ideas on building new Portal F/W components ?
    So that this F/w can be utilized for portalizing any web application.
    Can anybody provide with any reference to any good link or guide regarding the same?
    Thanks in advance.
    best regards

    DaVBMan wrote:
    Sorry but no. Old phone upgraded and all is moving along fine. Now I don't like the "Contacts" shortcut. I am fine with favorites or getting to contacts the old fashioned way. Did read some found the Contacts shortcut slower. I just moved that to another screen as I will never use it.
    Everything else is just fine.
    Do note, for every app you open, it remains in memory (however suspended) which could slow you down if you installed a lot of stuff and opened them at anypoint since last reboot. (see this thread http://discussions.apple.com/thread.jspa?threadID=1605571&tstart=0 )
    I will try that. Cheers mate.

  • Building portal app does not package war web applications

    Hi,
    I'm building a portal application ear from workshop. This generates the ear fine, but when I open up the ear in winzip, I see that the web application inside of my portal application has not been packaged up as a war file. It is packaged up as a directory structure. This works fine when I deploy the app. But how do I get it to build an ear with a war file in it for each web app?
    Thanks,
    -- Anant

    Anant,
    How are you creating the EAR a the momment?
    There are 2 ways of doing this from workshop:
    1) From file menu select build>build ear, workshop compiles the and EAR file for deployment and puts it in the applications root dir, the same dir that holds the .work file
    2) Use the wlwbuild.cmd
    Both of these methods create EARs that are suitable for deployment on your production server. I don't know how the wars are packaged in the ears using these methods, I guess you can have a look. I really don't think having archived war files in an archived ear or exploded war files in an archived ear makes much difference.
    My preference is for expoloded EAR with exploded WARs and EJBs for maximum ease when you may need to make quick change.
    Hope this helps

  • Building portal/CMS

    Hi.
    I started to build a CMS/Portal in JSP, and I don't know where to start. Is there any resources on the net which can hel me?

    Have you guys tried GlueCode.No, can you please give some more info.
    http://galileo.spaceports.com/~ibidris/

  • Failed builds in custom build template requiring manual destroy

    I have changed the default UpgradeTemplate.xaml to use a different versioning logic. I have created a custom workflow activity to read the current version from my project's GlobalAssemblyInfo.vb file and increase only the last part of the build number (if
    GlobalAssemblyInfo.vb has a version 5.0.1501.15XX, each build show increase the XX part).
    This is working, but when the build fails, I need to delete the queued build and destroy it via TFSBuild.exe.
    How can I fix this?
    If you found this post helpful, please "Vote as Helpful". If it actually answered your question, remember to "Mark as Answer". Se achou este post útil, por favor clique em "Votar como útil". Se por um acaso respondeu sua dúvida,
    lembre de "Marcar como Resposta".

    Hi Juliano,     
    Thanks for your post.
    Yes, you can execute the
    TFSBuild.exe delete command to delete the failed build manually if you want.
    Do you mean that you want to delete the failed build automatically once the TFS build fails?
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.
    Exactly. As my build template checks the current version number in the GlobalAssemblyInfo file, if a build
    5.0.1501.1501 fails, the next build will try to use the same version number. However, even when I choose to "retry build", TFS says that there is a build with this number already.
    I think it's ok to delete the failed build by calling the command line tool, but if you have a suggestion on how can I prevent this.
    Thanks.
    If you found this post helpful, please "Vote as Helpful". If it actually answered your question, remember to "Mark as Answer". Se achou este post útil, por favor clique em "Votar como útil". Se por um acaso respondeu sua dúvida,
    lembre de "Marcar como Resposta".

  • Learning to build tabular form manually

    Hi,
    I am attempting to understand how to build a tabular form manually. I have gone through the Oracle How To document ...
    http://www.oracle.com/technology/products/database/application_express/howtos/tabular_form.html
    and then I found another example at
    http://www.devshed.com/c/a/Oracle/Adding-Processes-to-HTML-DB-Applications/2/
    I have gotten the query below to work up to a point, when I uncomment the line that is commented I get the following error ...
    1 error has occurred
    Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. ORA-00904: "TEMP": invalid identifier
    Can anyone tell me what the problem is.
    This is the query ...
    SELECT empno
          , APEX_ITEM.HIDDEN(1,empno)
          , APEX_ITEM.TEXT(2,ename,10,10) ename
          , APEX_ITEM.TEXT(3,job,9,9) position
          , APEX_ITEM.SELECT_LIST_FROM_LOV(9,mgr,'managers',NULL, 'NO') mgr
          , APEX_ITEM.DATE_POPUP(4,rownum,hiredate,'Month dd, yyyy') hd
          , APEX_ITEM.TEXT(5,sal,12) sal
          , APEX_ITEM.TEXT(6,comm,12) comm
          , APEX_ITEM.SELECT_LIST_FROM_QUERY(7,deptno,'SELECT deptno d , empno r FROM emp WHERE deptno > 0 ORDER BY 1') deptno  
          --, APEX_ITEM.CHECKBOX(8,empno,DECODE(temp,'Y','CHECKED',NULL)) temp
       FROM emp
    ORDER BY 1Thank You
    Ben

    Thank You,
    I thought if someone used the emp table as an example they wouldnt change its structure. Makes it very confusing.
    Ben

Maybe you are looking for