Error in Form and Perform

hello all,
i am using perform statement under a report but problem is that when i m giving further perfor in the form of that perform then it is giving error *Field "VAR" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement. .
even i have defined it in form ABC. plz help.
Code:
select matnr from mara into table itab where matnr in matnr.
if sy-subrc = 0.
perform abc.
endif.
form abc.
data : var type i.
if itab-matnr = 'TEST1'.
perform xyz.
else.
perform mno.
endif.
endform.
form xyz.
if var = '9'.
clear : var.
endif.
endform.
form mno.
endform.
regards saurabh.

Hi saurabh,
The error is coming inside this code
form xyz.
if var = '9'.
clear : var.
endif.
endform.
So either declare a new local variable here with name var.
Or
move the declaration of var
form abc.
data : var type i.  "<------------- this line
outside of the form, at a global level.
hope this helps.
regards,
amit m.

Similar Messages

  • READ_TEXT IN FORM AND PERFORM

    Hi all.
    I have an issue in Scripts.
    we are using standard program as print progarm and a zform as form.
    we want to print some text in themain window of the form.
    for that one I created a new progarm for form and perform.
    in taht form i am using this function module read_text to read the text.
    i sending all this text to an internal table.
    up to thuis ok...
    While the data transfering from form to perform (i.e to the form(script)) only the last line of the internal table is transfering.
    and i declared the exporting TABLE OF TYPE ITCSY.
    CAN ANY BODY HELP TO SOLVE THIS ISSUE,
    THANKS IN ADVANCE,
    rEGARDS,
    ESWAR.M

    Hi venkat,
    1. while calling subroutines from sapscripts,
    there is a special technique,
    which has got its own limitations.
    2.
    FORM abc
    TABLES
    in_tab STRUCTURE itcsy
    out_tab STRUCTURE itcsy.
    ENDFORM.
    3. The perform in se38 program should be of the
    above format only.
    4.<b> We cannot pass internal tables.</b>
    5. Rather we need to pass
    VARIABLE NAME
    VARIABLE VALUE
    (see the structure of itcsy in se11)
    6. In this form, we have to read
    the internal table in_tab
    to capture the variable name and its value.
    7. Similary, to return the values,
    we have to put one record (for each variable)
    in out_tab.
    regards,
    amit m.

  • Error starting forms and reports manageed servers on windows server 2008

    Everithing was ok during install and configuration steps, put forms and reports, run application, 2 days later, servers stoped and it has been impossible to start them:
    [2013-09-26T12:20:03.199-04:00] [AdminServer] [NOTIFICATION:28]
    [] [oracle.sysman.core.pagemodel.logmgmt.msgs.LogMessagesPageModel] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 09f1d44aa5c550d0:-67c617bc:1415b0acd1e:-8000-00000000000000c3,0]
    [APP: em] Falta la configuración de registro o no es válida para los destinos: /Farm_FormsReports/FormsReports/WLS_FORMS, /Farm_FormsReports/FormsReports/WLS_REPORTS
    any suggestions?
    weblogic 10.3.4
    forms 11.1.1.4
    windows server 2008 x64
    JDK :java 6u30 x64

    delete all, re-install all... ok

  • How to find trace file error in form

    hai all,
    i have big problem in my form in apps i open the form one error is ocuured,
    i got the trace file and check the error,
    PARSE ERROR #82:len=2903 dep=0 uid=173 oct=3 lid=173 tim=4265689973879 err=904 this is the trace file error meassage,
    how to find this error in form and also this is occured one select statement,how to find this select statement where can be used in form,
    i have one button ,when ever i press the button this error is ocuured,i check this button pl/sql procedure code but in this code not using that sql statement,
    if any one know to find the sql statement through trace file.
    plz give the replay as soon as possible.
    thank's

    The newest SQL Developer can converts the trace to readable format too, I'm not shure if you see the sql statement related to the error then.
    It seems you get ORA-00904 which says you use an invalid coumn in a dml statement.
    Normally such error should pop up in message - do you overwrite the message handling or use exception handling in you form which block this message?
    Easiest way to find this is to compile the form against the target database.
    If this does not give an error, you should check, if you use dynamic sql statements which are wrong.
    If you call database routines from your form, than this could be the errro cause too.

  • FRM-40655: SQL error forced rollback: clear form and re-enter transaction.

    Hello ,
    I have ORACLE 10G & Forms 6i on Windows server 2008 . When I open the forms for some work , it give me error in few minis.
    FRM-40655: SQL error forced rollback: clear form and re-enter transaction.
    I have not done anything unusual in form design. it was working properly from a long time.
    Yesterday i set the default profile to idle_time = 20. Will that make any problem ???
    I checked my Alert Log but no sign of any deadlock in it, or any other unusual activity ....
    What is the solution ???
    Thanks in advance ..

    This happens due to dead lock situation
    To avoid this problem, add NOWAIT option to the UPDATE and DELETE statements, which returns ORA-00054 error, trap this error and display user defined message like 'The record is being accessed and try after some time'.
    This even improves the performance
    because no process waits for the locks preventing dead locks.
    If it is due to the UPDATE's or DELETE's with base table blocks in the form, in the PRE-UPDATE and PRE-DELETE triggers write SELECT statements to select the particular row with FOR UPDATE NO WAIT option. Handle by trapping the ORA-00054 error

  • HCM Form and Process ERROR No error agents maintained in table T5ASRERRORAG

    Hi All,
    I am setting up HCM form and Process  and I am done with Setting up new scenario and form and workflow steps. When I do the check consistency for Processes I get these 4 error below and not sure what do i do about these error
    No error agents maintained in table T5ASRERRORAGENTS
    Case type for Step Object H_SO is not defined
    Case type for Scenario Obj. H_FO is not defined
    Case type for Process Object H_PO is not defined
    Any help will be appreciated.
    Thanks,
    -Ashwani

    Some elaboration would help here a LOT! Would it be possible to get some more info about it?
    I am following this tutorial: http://help.sap.com/saphelp_erp60/helpdata/EN/42/f273461e5132c3e10000000a1553f6/frameset.htm
    and didn´t find any "sub-chapters" about this. am I missing something? Or could you tell me the number of the tutorial step which I performed in a wrong way or did NOT performed?
    Thank you, cheers Otto

  • Can we use Perform statement in start routine ,Form and endform.

    Hi,
    Can we use Perform statement in start routine ? Then write the ABAP code between Form and Endform.
    Example : Can I use Perform ABC in start routine. Then define ABC at the end of start routine.
          Form ABC,
          ......<ABAP> code .....
          Endform.

    Hi,
    In BI 7.0 we have start routines defined using Class where you might be able to create your own performs, but in case of BW3.5 Start routines are defined using Form so there I don't think it will allow you to create one more form.
    But you can surely try both the approaches.
    Reards,
    Durgesh.

  • Report, Form, and Data Component portlets go to error page

    I am able to add Report Form and Data Component portlets to my page, but when I click on the define button it takes me to my error page.
    Have I missed configuring something?

    hello friends,
    thanks for replly,
    i m using command noe after table node in main window, but i want display the data below the main window , it is diplaying  new page as required but only missing data below the main window.
    to be more clear i want to print all the window in first page then only go for next page , so is there any condition or parmeter in main window to go next page only agfter completion of first page.
    dont worry abt points.

  • Forms and Reports: Automated Test tools - functionality AND performance

    All,
    I'm looking to get a few leads on an automated test tools that may be used to validate Oracle forms and reports (see my software configuration below). I'm looking for tools that can automate both functional tests and performance. By this I mean;
    Functional Testing:
    * Use of shortcut keys
    * Navigation between fields
    * Screen organisation (filed locations)
    * Exercise forms validation (bad input values)
    * Provide values to forms and simulate user commit, and go and verify database state is as expected
    Performance Testing:
    * carry out tests for fixed user load
    * carry out tests for scaled step increase in user load
    * automated collection of log files and metrics during test
    So far I have:
    http://www.neotys.com/
    Thanks in advance for your response.
    Mathew Butler
    Configuration:
    Red Hat Enterprise Linux x86-64 architecture v4.5 64 bit
    Oracle Application Server 10.1.2.0.2 ( with patch 10.1.2.3 )
    Oracle Developer Suite (Oracle Forms and Reports) V10.1.2.0.2 ( with patch 10.1.2.3 )
    Oracle JInitiator 1.3.1.17 or later
    Microsoft Internet Explorer 6

    are there any tools for doing this activity like oracle recommended tools?
    Your question is unclear.  As IK mentioned, the only tool you need is a new version of Oracle Forms/Reports.  Open your v10 modules in a v11 Builder and select Save.  You now have a v11 module.  Doing a "Compile All PL/SQL" before saving is a good idea, but not required.  The Builders and utilites provided with the version 11 installation are the only supported tools for upgrading your application.  If you are trying to do the conversion of many Forms files in a scripted manner, you can use the Forms compiler in a script.  Generating new "X" files will also update the source modules (fmb, mmb, pll).  See MyOracleSupport Note 955143.1
    Also included in the installation in the Forms Migration Assistant.  Although it is more useful to people coming from older versions, it can also be used to move from v10 to 11.  It allows you to select more than one file at a time.  Documentation for this utility can be found in the Forms Upgrade Guide.
    Using the Oracle Forms Migration Assistant

  • Getting error while creating form and report on webservice: ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.

    i am using the following description to create a web service reference:
    web reference :REST
    Name :Yahoo Map
    URL :http://local.yahooapis.com/MapsService/V1/mapImage
    HTTP Method: GET
    Basic Authentication: No
    Add Parameter:
    Name       Type
    appid        String
    location    String
    Output Format: XML
    XPath to Output Parameters : /Result
    Output Parameter:
    Name       Path       Type
    Url          /text()      String
    Then i tried to create form and report on webservice:
    Web Service Reference Type: Yahoo Map
    Operation: doREST
    All the fields i keep as default
    I tick the checkbox (url)in report Parameter
    After clicking next whereever required i click create button
    I get the following error
    ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.
    Please someone help to solve this as i need to fix it urgently.

    i exported the application from apex.oracle.com and imported it to our environment
    import went fine, but when I ran the IR page I got
    ORA-20001: get_dbms_sql_cursor error ORA-00904: : invalid identifier
    evidently the problem is a lack of public execute on DBMS_LOB, which is used in the generated IR source.
    while waiting for the DBA to grant privs on DBMS_LOB, changing the dbms_lob.getlength call to length() fixes the IR.
    however, i am not getting the download link on the associated form page... changed templates, that's not the issue -- we'll see if that's a dbms_lob issue as well

  • APEX:Getting error while creating form and report on webservice: ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.

    I am using Apex 4.2.2.00.11
    am using the following description to create a web service reference:
    web reference :REST
    Name :Yahoo Map
    URL :http://local.yahooapis.com/MapsService/V1/mapImage
    HTTP Method: GET
    Basic Authentication: No
    Add Parameter:
    Name       Type
    appid        String
    location    String
    Output Format: XML
    XPath to Output Parameters : /Result
    Output Parameter:
    Name       Path       Type
    Url          /text()      String
    Then i tried to create form and report on webservice:
    Web Service Reference Type: Yahoo Map
    Operation: doREST
    All the fields i keep as default
    I tick the checkbox (url)in report Parameter
    After clicking next whereever required i click create button
    I get the following error
    ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.
    Please someone help to solve this as i need to fix it urgently.

    336554,
    Looks like there is a 127-column limit on the number of report columns supported when using that wizard. Do you have more than that?
    57434

  • Error while opening supplier/customer forms and payment manager templates

    we are having 11.1.0.7 database and 12.1.1 E-business suite with 10.1.2.3 forms
    user is getting
    Error Page
    You have encountered an unexpected error. Please contact the System Administrator for assistance.
    while accessing supplier/customer forms and payment manager templates and this gets resolved after bouncing the application. the current instance is a staging one and this will be replicated to production so please help or suggest any solution or work around
    thanks
    pankaj

    There should be a link on the error page for further details about the error. Can you post the contents of that error link page ?
    Pl also check the Apache logs for any errors - see MOS Doc 419839.1 (How to enable Apache, OC4J and OPMN logging in Oracle Applications R12) for name and location of the Apache log files.
    HTH
    Srini

  • Getting "ORA-12703" error in forms 10.1.2.3.0 and database 11.1.0.6.0

    Hello All,
    I am using forms 10g (10.1.2.3.0) version with database 11g (11.1.0.6.0).
    I did some modification in a package. That package is getting called in the forms. After doing modification (just add one if condition) in the package procedure (Not added parameter) I connected to the application and calling the form. I am getting the error message "ORA-12703". After that if I am just compile all the forms, one form is working fine. But in some other form it is not working properly. Still I am getting the error message "ORA-12703". I just put some debug message in the package and form, I compiled both form and package. At this time both are working fine. But if I am putting some debug message in the package only then it is not working. Getting the same error message.
    Does it a forms or database issue or I need to do some thing? Any suggestion welcome.
    Thanks
    SUN

    ORA-12703 this character set conversion is not supported
    Cause: An attempt was made to use the CONVERT function to convert between two character sets, and the requested conversion is not possible due to unavailability of one or both character sets.
    Action: Use character sets available on the system in the CONVERT function.
    What character set do you have on the database and what charset on the client side? Maybe SQL*Net issues the convert function when you use different charsets for both?

  • Error while configuring Oracle Forms and Reports 11g

    Hi,
    I have been trying to install oracle forms and reports from last 5 days.
    I have installed weblogic server 10.3.6
    and trying to install forms and reports 11.1.2
    Earlier while installing I did not configure it as it was giving some error so I just installed it but not again I have to configure it and I am getting the same error its as follows:-
    INST-07286: Specified Oracle Middleware home location does not have version 10.3.5.0 of WebLogic server. If the version is incorrect then configuring with the Weblogic server will fail.
    Provide a Oracle Middleware home location which contains WebLogic server with version 10.3.5.0 or upgrade the Weblogic server to 10.3.5.0 and restart the install.
    I have latest version of WLS but still its not accepting.
    Please help me guys , struggled a lot for it...What shall I do?

    Thanks Guys for you suggestions I came one step foreward
    For this I downloaded the exact version 10.3.5 and problem got resolved.
    But now getting new problem at the end of configuration part on Creating Domain, process is getting stuck. I waited for more than an hour but still progress is 0%.
    Edited by: 966714 on Oct 26, 2012 7:25 PM

  • Error while Rebuild Forms and Reports Executables

    Dear Experts,
    Kindly note that while running the below commands I am facing the below error.
    Please look into it and advise.
    Rebuild Forms and Reports Executables
    cd $ORACLE_HOME/forms/lib32
    Note: if this directory does not exist:
    cd $ORACLE_HOME/forms/lib
    $ make -f ins_forms.mk sharedlib install
    cd $ORACLE_HOME/reports/lib32
    Note: if this directory does not exist:
    cd $ORACLE_HOME/reports/lib
    $ make -f ins_reports.mk install
    [applmgr@ORACLE lib]$ make -f ins_forms.mk sharedlib install
    for libs in libfrmjsl.so.0 libd2f.so.0 libia.so.0 libic.so.0 libicg.so.0 libid1.so.0 libid2.so.0 libidd.so.0 libidg.so.0 libidl.so.0 libie.so.0 libifc.so.0 libifg.so.  0 libig.so.0 libigo.so.0 libihm.so.0 libiic.so.0 libilfrm.so.0 libimc.so.0 libimg.so.0 libioc.so.0 libiod.so.0 libipc.so.0 libipg.so.0 libiplsn.so.0 libiplsd.so.0 lib  irm.so.0 libit.so.0 libitg.so.0 libiwc.so.0 libiwg.so.0 libsosd.so.0 libibfrmw.so.0 libicw.so.0 libifcw.so.0 libijc.so.0 libijcw.so.0 libiffw.so.0 libiicw.so.0 libiif  w.so.0 libiiiw.so.0 libimfw.so.0 libipfw.so.0 libiqw.so.0 libitw.so.0 libiwcw.so.0 libiwfw.so.0 libixw.so.0 libsosdw.so.0; do \
                    rm -f /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib//$libs ; \
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/bin/genshlib /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib//$libs ; \
            done
    rm -f frmbld
    gcc -m32 -o frmbld -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/forms/lib/ -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/ -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2  /lib//stubs -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386 -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server -L/u01/applmgr/ORACLE/ apps/tech_st/10.1.2/jdk/jre/lib/i386/native_threads \
            /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/s0nnmain.o \
            /u01/applmgr/ORACLE/apps/tech_st/10.1.2/forms/lib/sslidtab.o \
            /u01/applmgr/ORACLE/apps/tech_st/10.1.2/forms/lib/ui10.o /u01/applmgr/ORACLE/apps/tech_st/10.1.2/forms/lib/uiicxd.o \
            /u01/applmgr/ORACLE/apps/tech_st/10.1.2/forms/lib/ifzxtb.o \
            /u01/applmgr/ORACLE/apps/tech_st/10.1.2/forms/lib/sixn.o \
            /u01/applmgr/ORACLE/apps/tech_st/10.1.2/forms/lib/sixp.o \
            /u01/applmgr/ORACLE/apps/tech_st/10.1.2/forms/lib/iwvgbm.o \
            /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/libie.a -lilfrm /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/libie.a -lig -lifg -lig -limg -liwg -lidd -lidl -l  idg -lid2 -lidg -lid1 -ligo -litg -lihm -limg -lipg -licg -lipc -limc -lifc -lijc -liwc -liplsd -liod -lioc -lic /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/libsosd  .a -liic -lit -lic /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/libsosd.a -lipc  \
            /u01/applmgr/ORACLE/apps/tech_st/10.1.2/forms/lib/istuic.o \
            -lrws \
            -lnn -lobx -lzrc  -lvgs -lde -lucol  -lca -luicc -lmma -lmmiw -lmmov -lmma -lmmos -lmmoi  -lmmia -lmmft -lmmcm  -luihx -luc -luipr -luimotif -lot -lrem -lree   -lrec -luiimg -luimotif -luipr -luiimg -luc -lrem -luimotif -luia -ltknqap -luipr -luimotif -lutt -lix -lixd -lix -lixd -lrod -lror -lros -lrod -lror -lros -lrod -ld  fc -luat -lutc -lutj -lutl -lutsl -lpls10 -lplp10 -lplc10 -lpls10  -lplp10 -lslax10 -lsql10 -lpthread -lclntsh  `cat /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/l dflags`    -lnsslb10 -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lncrypt10 -ln  sgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -lnnetd10  -lvsn10 -lcommon10 -lgeneric10 -lmm  -lcore10 -lxml10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 `cat /u01/a  pplmgr/ORACLE/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat /u01/applmgr/ORACLE/apps/tech_st/10.1.2  /lib/ldflags`    -lnsslb10 -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lcore10 -lxml10 -lunls10 -lsnls1 0 -lnls10 -lcore10 -lnls10 -lclient10 -lnnetd10  -lvsn10 -lcommon10 -lgeneric10  -lcore10 -lxml10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10   `cat /u01/applmgr/CDV1E BS1/apps/tech_st/10.1.2/lib/sysliblist` -Wl,-rpath,/u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib,-rpath,/u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386:/u0  1/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/xawt:/lib:/usr/lib  -lm `cat /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/sysliblist` -ldl -lpthread -lm     -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/stubs/ -lsnls10 -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/l  ib/i386 -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/native_threads -ljvm  -Wl,-rp  ath,/usr/X11R6/lib  -Wl,--as-needed -lXi -lXtst -Wl,--no-as-needed -L/usr/X11R6/lib -lXm -lXt -lX11 -lm -lXp -lXext
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_timedwait@GLIBC_2.3.2'
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_signal@GLIBC_2.3.2'
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `realpath@GLIBC_2.3'
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_wait@GLIBC_2.3.2'
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_init@GLIBC_2.3.2'
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `__stack_chk_fail@GLIBC_2.4'
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_destroy@GLIBC_2.3.2'
    collect2: ld returned 1 exit status
    make: *** [frmbld] Error 1
    [applmgr@ORACLE lib]$
    [applmgr@ORACLE lib]$ make -f ins_reports.mk install
    rm -f /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib//librwu.so; \
            rm -f /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib//librw.so
    rm -f rwsutil.o rwspid.o ; \
            /usr/bin/ar x /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib//librwu.a  rwsutil.o rwspid.o ; \
    (LD_OPTIONS="-z muldefs"; \
            /usr/bin/gcc -m32 -o /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib//librwu.so -shared -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/ -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/stubs/ rwsutil.o rwspid.o \
            -lm /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/libclntsh.so -lpthread  -Wl,-rpath,/usr/X11R6/lib  -Wl,--as-needed -lXi -lXtst -Wl,--no-as-needed -L/usr/X11R6/lib -lXm -lXt -lX11 -lm -lXp -lXext `cat /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/sysliblist` -lc )
    rm -f zrhitem.o zrhcursor.o; \
            /usr/bin/ar x /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib//librw.a zrhitem.o zrhcursor.o
    rm -f rwbuilder
    gcc -m32 -o rwbuilder -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2//lib/ -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/ -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib//stubs  -rdynamic -Bdynamic -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386 -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/native_threads -ljvm rxmasb.o /u01/applmgr/ORACLE/apps/tech_st/10.1.2/reports/lib/ui10.o /u01/applmgr/ORACLE/apps/tech_st/10.1.2/reports/lib/uiicxd.o /u01/applmgr/ORACLE/apps/tech_st/10.1.2/reports/lib/rwsng.o /u01/applmgr/ORACLE/apps/tech_st/10.1.2/reports/lib/rwscl.o /u01/applmgr/ORACLE/apps/tech_st/10.1.2/reports/lib/rwssc.o /u01/applmgr/ORACLE/apps/tech_st/10.1.2/reports/lib/rwssc0.o /u01/applmgr/ORACLE/apps/tech_st/10.1.2/reports/lib/rwsdt.o /u01/applmgr/ORACLE/apps/tech_st/10.1.2/reports/lib/rwscr.o -lrw /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib//librw.a  -lobx -lnn -lrws -lde /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib//libzrc.a -lrws   -lucol -luicc -lca -lmma -lmmiw -lmmov -lmma -lmmos -lmmoi  -lmmia -lmmft -lmmcm  -lvgs -luihx -luc -luipr -luimotif -lot -lrem -lree -lrec -luiimg -luimotif -luipr -luiimg -luc -lrem -luimotif -luia -ltknqap -luipr -luimotif -lutt -lix -lixd -lrod -lror -lros -lrod -lror -lros -lrod -luat  -ldfc -lutc -lutj -lutl -lutsl -lpls10  -lplp10 /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/libplc10.a -lpls10  -lplp10 -lslax10 -lsql10 -lclntsh  `cat /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -lnnetd10  -lvsn10 -lcommon10 -lgeneric10 -lmm  -lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 `cat /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -lnnetd10  -lvsn10 -lcommon10 -lgeneric10    -lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 -lclient10 -lnnetd10  -lvsn10 -lcommon10 -lgeneric10  -lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10   `cat /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/sysliblist` -Wl,-rpath,/u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib,-rpath,/u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386:/u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/xawt:/lib:/usr/lib  -lm `cat /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/sysliblist` -ldl -lpthread -lm   -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib -L/u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib/stubs/ -lsnls10 -lpthread  -ljvm -Wl,-rpath,/usr/X11R6/lib -Wl,--as-needed -lXi -lXtst -Wl,--no-as-needed -L/usr/X11R6/lib -lXm -lXt -lX11 -lm -lXp -lXext  /u01/applmgr/ORACLE/apps/tech_st/10.1.2/lib//librw.a -lnsl
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_timedwait@GLIBC_2.3.2'
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_signal@GLIBC_2.3.2'
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `realpath@GLIBC_2.3'
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_wait@GLIBC_2.3.2'
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_init@GLIBC_2.3.2'
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `__stack_chk_fail@GLIBC_2.4'
    /u01/applmgr/ORACLE/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_destroy@GLIBC_2.3.2'
    collect2: ld returned 1 exit status
    make: *** [rwbuilder] Error 1
    Regards
    Mohammed. Abdul Muqeet

    Please implement the solution in (Upgrading JDK To 7_25 - Step 3.7 Rebuild Forms Reports: Error: Collect2: Ld Returned 1 Exit Status (Doc ID 1569998.1)).
    Thanks,
    Hussein

Maybe you are looking for