Unable to execute Extras -- Display generated program in BW 7.0

When I try to execute Extras --> Display generated program for a Transformation in RSA1 (BW 7.0) I get the following message:
Unable to find a tool to process the request
Message no. SEU_MANAGER026
Does any one know what's the reason for that?
Kindly help me to correct this.
Thank you in advance.

Hi,
Try and check OSS notes: 501565 and 761681
Hth.,
Jacob

Similar Messages

  • Unable to activate transformation, error generating program

    Hi,
    We are currently on SAP EHP 1 for SAP NetWeaver 7.0
    SAP_BW Release 701 Support Package SAPKW70107
    BI_CONT Release 705 Support Package SAPK-70501INBICONT
    When I try to activate my transformation between 0PLANT and infosource ZPLANT_TEXT(Generated from 3.x infosource 0PLANT_TEXT), I get the below error message
    Syntax error in GP_MET_RSTRAN_MASTER_TMPL, row 0 (-> long text)
    Error during generation(Message no. RSTRAN511)
    Error when resetting Transformation 06L8E7JA476EMLRHOX35W9KX6TMS8XSX to the active version(Message no. RSO410)
    Long Text:
    Syntax error in GP_MET_RSTRAN_MASTER_TMPL, row 0 (-> long text)
    Message no. RG102
    Diagnosis
    SQL error 1654 occurred when accessing program GP_MET_RSTRAN_MASTER_TMPL part LREF.
    When  I check for the program GP_MET_RSTRAN_MASTER_TMPL in SE38 is does not exist.
    Can anyone help me figure out this problem?
    Thanks

    I ran the program RS_TRANSTRU_ACTIVATE_ALL with below parameters
    Source System = <logical system name of our src system>
    InfoSource (* gen) = 0PLANT_TEXT
    Got the error message as
    Error generating program
    Error generating program
    Transfer structure 0PLANT_TEXT_DC NOT activated successfully Activate manually
    Long Text:
    Message no. RSAR245
    Diagnosis
    An error occurred during program generation:
    Template:   RSTMPL80
    Error code: 6
    Row:        0
    Message:
    Procedure
    Correct the template to remove the problem.
    Incase I give the InfoSource (* gen) = ZPLANT_TEXT
    I get the message
    No Transfer Structure Selected

  • Query generated program not imported to Quality server

    Hi All,
    I am working on a query. It is an existing query which has been converted to an ABAP program in Z.
    The requirement was to make some minor changes in the existing report, like change in the selection screen and include an extra column in the output.
    report.
    when I checked the transaction it had a Z program, when i went into it, it was a SAP generated program with the report name starting in Z.
    It was not possible to make the changes in the existing program.
    So i created a new Infoset YSTP_INFOSET with the requested changes and a new user group YSTP_USRGP assigned to the infoset in SQ02 and SQ03 respectively.
    Query area is a global area.
    I created a new query in SQ01 and when i executed gave me correct result.
    i went to SE38 there it displayed the program name AQZZYSTP_USRGP==ZQUERY_WYT3===
    this name i assigned to the transaction in SE93.
    It was working fine till it was moved to the quality system. In the next system when i tried to test i got a short dumb telling that the report was not found.
    The Infoset and the User group are present in the quality system. but the program is not moved.
    Please tell me how to move this? its an urgent issue and it needs to be solved today.
    Points will be awarded .
    Please help.
    Regards,
    Rekha

    Hi Cristophe,
    Yes the user groups is copied and pasted in the transaction. Attaching the screen shots for your reference.
    I have assigned all the users in user group. Attaching that screen shot as well.
    @Raymond - could you please let me know how to transport. I have tried the truck icon in user group and infoset i have tried to transport but i dont get any transport request. Please let  me know how to solve this.
    Am i assigning the users correct? let me know please.
    Regards,
    Rekha

  • RUNTIME ERROR IN GENERATED PROGRAM. Overflow converting ''

    Hi,
    While executing the below code i am getting the error
    " RUNTIME ERROR IN GENERATED PROGRAM. Overflow converting ' ' am new to ABAP , can anyone kindly help me where i have went wrong ? .
    IF ( V_DO_CDS_NAME_MAIN <> '' ).
        ABAP.
            DATA: ref_it_tab TYPE REF TO data,
                  ref_wa TYPE REF TO data.
            FIELD-SYMBOLS: <fs_itab> TYPE ANY TABLE.
            FIELD-SYMBOLS: <fs_wa> TYPE ANY.
            FIELD-SYMBOLS: <fs_field> TYPE ANY.
            CREATE DATA ref_it_tab TYPE STANDARD TABLE OF (V_DO_CDS_NAME_MAIN) WITH NON-UNIQUE DEFAULT KEY.
            ASSIGN ref_it_tab->* TO <fs_itab>.
            SELECT * FROM (V_DO_CDS_NAME_MAIN) INTO TABLE <fs_itab> where C1 = V_WORK_ITEM_ID_MAIN.
            CREATE DATA ref_wa LIKE LINE OF <fs_itab>.
            ASSIGN ref_wa->* TO <fs_wa>.
            loop at <fs_itab> assigning <fs_wa>.
                assign component 'CLIENT' of structure <fs_wa> to <fs_field>.
                V_CLIENT = <fs_field>.
                assign component 'C0' of structure <fs_wa> to <fs_field>.
                V_C0 = <fs_field>.
                assign component 'C1' of structure <fs_wa> to <fs_field>.
                V_C1 = <fs_field>.
                assign component 'C2' of structure <fs_wa> to <fs_field>.
                V_C2 = <fs_field>.
                assign component 'C3' of structure <fs_wa> to <fs_field>.
                V_C3 = <fs_field>.
                assign component 'C4' of structure <fs_wa> to <fs_field>.
                V_C4 = <fs_field>.
                assign component 'C5' of structure <fs_wa> to <fs_field>.
                V_C5 = <fs_field>.
                assign component 'C6' of structure <fs_wa> to <fs_field>.
                V_C6 = <fs_field>.
                assign component 'C7' of structure <fs_wa> to <fs_field>.
                V_C7 = <fs_field>.
                assign component 'C8' of structure <fs_wa> to <fs_field>.
                V_C8 = <fs_field>.
                assign component 'MESSAGE_ID' of structure <fs_wa> to <fs_field>.
                V_MESSAGE_ID = <fs_field>.
                assign component 'TIMESTAMP' of structure <fs_wa> to <fs_field>.
                V_TIMESTAMP = <fs_field>.
                assign component 'EXTRACTKEY' of structure <fs_wa> to <fs_field>.
                V_EXTRACTKEY = <fs_field>.
                assign component 'STATEID' of structure <fs_wa> to <fs_field>.
                V_STATEID = <fs_field>.
                assign component 'DEVICE_ID' of structure <fs_wa> to <fs_field>.
                V_DEVICE_ID = <fs_field>.
            ENDLOOP.
        ENDABAP.
    ENDIF.

    Hi Mubeen,
    While Copying the cotes have come closer otherwise its working fine , i was able to find the error .
    There are ten predefined ABAP data types. There are 100 possible type combinations between these elementary data types. ABAP supports automatic type conversion and length adjustment for all of them except type D (date) and type T (time) fields which cannot be converted into each other.
    I commented the TimeStamp part where i had given the ABAP Type as D and it started working .
    But now i want to display the content of  "TimeStamp"  field but i am not able to do so .
    This is the format in which it has to be displayed 2009.011.915.3353.
    Which ABAPTYPE i need to use ?.
    i am able to display in this format 20090119153353
    regards
    Harsha

  • Unable to execute transaction S_ALR_87013542

    Hi all,
    I am unable to execute the above tcode. Whenever this transaction is executed, nothing happens.
    Currently I have to execute this tcode via program 'GP0YUXRUZYY9JFVAAF55MKIVHFJ100' to get to this transaction.
    Anybody know why this happens?
    Appreciate your feedback.
    Rgds,
    SS

    Hi,
    In case one is using these reports first time, it is advisable to generate them so that the Reports are executed from the respective Tcode.
    To generate all such reports go To Tcode:OKS7 and select all and hit generate and later Save.
    Hope it helps...
    Thanks!!!

  • How to insert abap code in LSMW generated program?

    hi,
    i m working on LSMW for loading data in SAP
    i would like to insert abap code into the generated program....
    it's because i have 1 BKPF segment (header data), 2 BSEG segments, but i cannot define rules by customizing for the second BSEG segment(LSMW doesn't permitt).
    i already tried to insert code directly into the program, but obviously it disapears at each time i generate the program.
    i saw that apparently a code insertion has already be made into this program and the subject of this insertion is to define rules for the second BSEG (exactly what i want to do....) and this modification doesn't disapear at new prog generation.....
    Any idea ?

    Hi
    Why dont you use the FORM provided by LSMW
    To use this please do the following
    1.Goto option <b>Maintain Field Mapping and Conversion Rules</b>
    2.Goto menu <b>EXTRAS->LAYOUT->Form Routines</b>
      Here you will now get many options like
       Global Data
       Begin of Transaction
    Begin of Processing
    Begin of Record
      like wise the End of these also.
    Please put a breakpoint and check where you want to insert your code.
    Note:
    This is only for the Conversion Program and does not affect the main program used to update the Standard Tables
    Hi , I was reading your earlier post .. It seems that you have worked on EMIGALL. Consider a similar situation, it is like writing the code in the events till CALL01...
    Thanks
    DOminic
    Message was edited by: Dominic  Pappaly

  • How to deal with generated programs in eCATT SAPGUI recording?

    Hi experts and professionals,
    I am trying to automate testing of our solutions by eCATTs and so far i have not been able to find solution for following problem.
    Whole test scenario is very simple:
    Check InfoProvider data (query, lookup, listcube,...)
    Create DAP on InfoProvider
    Archive InfoProvider
    Check InfoProvider data (query, lookup, listcube,...)  again
    Compare results from step 1. and 4. (must match)
    Reload archived data
    Check InfoProvider data (query, lookup, listcube,...)  again
    Compare results from step 1. and 7. (must match)
    As you can see, one of the required test steps is to check InfoProvider's data in transaction LISTCUBE.
    But transaction LISTCUBE generates its program "name" every time it is executed and
    I am struggling to find a way how to deal with these generated programs in eCATT SAPGUI recording.
    Key is that solution must be generic and work for all SAP BW releases from 7.0 upwards
    (having in mind that LISTCUBE can read NLS data from SAP BW 7.3 release).
    Error description from eCATT log:
    Screen Check Error: Expected Transaction: LISTCUBE, Actual Transaction: LISTCUBE.
    Expected Program: GP0KOZE7EFIUBN10MZUFWX90W80, Actual Program: GPBP24INA6VV77SL0XKU5NA642O.
    Expected Screen Number: 1000, Actual Screen Number: 1000.
    There Is Probably an Error in SAPGUI recording.
    ExceptionClass:CX_ECATT_APL_CAPTURE  ExceptionId:SCREEN_CHECK_ERROR
    RaisingClass:CL_APL_ECATT_LINE_INTERPRETER  Include:CL_APL_ECATT_LINE_INTERPRETER=CM00J  Line:443
    Is there any way how to avoid program check in eCATT script?
    Anything that would help me to find solution will be greatly appreciated.
    Best Regards,
    Igor

    Dear Igor,
    Your issue is caused by the "screen check" which eCATT processes here.
    In General this screen check is a very usefull activity, since is ensures that only those screens are processed by automation, which initially where recorded. This should ensure as much as possible to invoke only intended activities.
    Remember, that the driver of the screen flow is still the automated transaction program ( but not the test tool). So application logic decides which screen is send next.
    Using screen check the test tool tries to ensure that menu items and buttons and other activities are only automated when the tool "believes" to work on the intended screen.
    For generic test scripts and often in context of generated programs the screen check might hurt a bit.
    To overcome this, one might try to make the check dynamic (as Sheetal suggests correctly).
    If here the name of program cannot be determined for any reason, one can use another method and do following:
    - Change the value of ProcessedScreen-Active to 'R'
    This will disable/skip the screen-check for this ProcessedScreen.
    Sure the solution includes a certain risk, since not checking the correct screen to appear might lead to automation of actions with not desired impact.
    Maybe this can improve your solution.
    Kind Regards
    Jens

  • Generated Program from transformation

    Hi,
    I have created a transformation and transported it into production. I had to changed one of the routine on a key figure. The last changed key figure is now executed last in the generated program.
    Example:
    Start routine: declared global variables X and Y.
    Transformation: 3 key figures
    A
    B
    C
    Routine is used to calculate A. This value is passed to the global variable X. X is then used in B and passed to global variable Y. Y is then used to calculate C.
    When i first created the transformation, the sequence was working well. But after the change in routine on A. The sequence is changed and the generated program has a sequence:
    B
    C
    A
    The key figures in the transformation remain in the same order as before.
    Is this the way the generated program works. Is there any way to resequence the generated program based on the order of the key figures in the transformation.
    Or deleting and recreating the transformation the only way.
    Thank you,
    Ravi.

    if you have just changed the routine then it should not change the execution sequence...
    can you make these changes at start routine itself??
    Edited by: Sharayu Kumatkar on Apr 23, 2009 11:16 AM

  • Unable to execute rate request.

    Hi Frens,
    I got an error, as i tried to rate a program in oracle insbridge rate manager, as given below
    *"Unable to execute rate request. Please try your request again later. Data at the root level is invalid. Line 1, position 1. "*
    please help me out.

    stanley wrote:
    Hi Andy,
    here is a sample rate request xml which i have tried.
    <rate lob="20">
    <heading>
    <program parent_id="100" program_id="2" program_ver="1" />
    </heading>
    <c i="0" desc="Policy">
    <m i="9" n="a" v="" />
    <m i="10" n="b" v="" />
    </c>
    </rate>
    thanks in advance..A few things you need to make sure:
    1. LOB value (20) is appropriate? You can find the appropriate value in RateManager. 20 = Worker's Comp.
    2. parent_id (100) is appropriate? You can find the appropriate value in IBFA as Subscriber.

  • Unable to execute command adprmkey in upgrading 11i to 12.1.1

    Hello Team Leaders:
    I am in the process of upgrading EBS 11.5.10.2 to Release 12.1.1. I have imported the database, Layed down the apps and have started applying patches. While running adpatch I have encountered:
    java.lang.Exception: ERROR: Unable to execute command: adprmkey /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndlist.jar.tmp
    at oracle.apps.ad.jri.util.JarSignerOptions.getOptions(JarSignerOptions.java:50)
    at oracle.apps.ad.jri.util.JarSignUtils.signJarWithJarsigner(JarSignUtils.java:132)
    at oracle.apps.ad.jri.adjmx.mergeAndExtract(adjmx.java:1313)
    at oracle.apps.ad.jri.adjmx.main(adjmx.java:970)
    Done Analyzing fndlist.jar : Fri Oct 26 2012 16:06:42
    ERROR: The following jars failed to get generated properly.
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndforms.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndewt.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndewtpv.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndaol.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/wfapi.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndaroraclnt.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndmail.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndactiv.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndformsi18n.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/mapclient.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndxmlparserv2.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/cs/jar/cs.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/az/jar/azwizard.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/jtf/jar/jtfgrid.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/cct/jar/cctbasic.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/msd/jar/msejar.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/wps/jar/wpsgantt.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndlist.jar
    I then tried relinking on jar manually:
    cd /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar
    ll fndaroraclnt.jar
    -rw-r--r-- 1 applfint dba 1135766 Apr 1 2009 fndaroraclnt.jar
    adrelink.sh force=y "fndaroraclnt.jar "
    Errors:
    adrelink: error: Product library for product "fndaroraclnt.jar" not found.
    "fndaroraclnt.jar" might not be listed correctly in your OFT1_ofintest.env file,
    you may be missing some files for product "fndaroraclnt.jar",
    or "fndaroraclnt.jar" could be an invalid product.
    adrelink will not try to link product "fndaroraclnt.jar".
    Continuing work on other products...
    adrelink is exiting with status 1
    What is my problem?
    Mathias

    Hi Hussein,
    Following command in (11864081 12.1.3 Java.lang.Exception: Unable To Find Or Read Parameter File /d01/oracle/R12DEV/apps/a [ID 1479911.1]), I have executed:
    adrelink.sh force=y "ad adprmkey"
    And the output errors are:
    /usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgcc_s.so: undefined reference to `__stack_chk_fail@GLIBC_2.4'
    collect2: ld returned 1 exit status
    make: *** [u02/applfint/apps/apps_st/appl/ad/12.0.0/bin/adprmkey] Error 1
    Done with link of ad executable 'adprmkey' on Sun Oct 28 01:59:50 EDT 2012
    Relink of module "adprmkey" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory /u02/applfint/apps/apps_st/appl/ad/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    I checked and do have permissions on /u02/applfint/apps/apps_st/appl/ad/12.0.0/bin:
    drwxr-xr-x 2 applfint dba 4096 Oct 28 02:10 bin
    Browsing around the system I noticed:
    1) three broken links in /usr/lib/gcc/x86_64-redhat-linux/4.4.4/32:
    libgfortran.so -> ../../../../libgfortran.so.3.0.0
    libmudflapth.a -> ../../../i686-redhat-linux/4.4.4/libmudflapth.a
    libmudflap.a -> ../../../i686-redhat-linux/4.4.4/libmudflap.a
    libgomp.so -> ../../../../libgomp.so.1.0.0
    2) Following MOS note 11864081 12.1.3 Java.lang.Exception. Check this out:
    adrelink.sh force=y "ad adprmkey"
    Failed with:
    usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgcc_s.so: undefined reference to `__stack_chk_fail@GLIBC_2.4'
    collect2: ld returned 1 exit status
    make: *** [u02/applfint/apps/apps_st/appl/ad/12.0.0/bin/adprmkey] Error 1
    Done with link of ad executable 'adprmkey' on Fri Oct 26 18:14:16 EDT 2012
    Relink of module "adprmkey" failed.
    3) My OS :
    uname -a
    Linux ofintest.corp.phillips.com 2.6.32-100.28.5.el6.x86_64 #1 SMP Wed Feb 2 18:40:23 EST 2011 x86_64 x86_64 x86_64 GNU/Linux
    4) rpm -q glibc
    glibc-2.12-1.80.el6_3.5.x86_64
    glibc-2.12-1.80.el6_3.5.i686
    5) gcc -v
    Using built-in specs.
    Target: x86_64-redhat-linux
    Configured with: ../configure prefix=/usr mandir=/usr/share/man infodir=/usr/share/info with-bugurl=http://bugzilla.redhat.com/bugzilla enable-bootstrap enable-shared enable-threads=posix enable-checking=release with-system-zlib enable-__cxa_atexit disable-libunwind-exceptions enable-gnu-unique-object enable-languages=c,c++,objc,obj-c++,java,fortran,ada enable-java-awt=gtk disable-dssi with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre enable-libgcj-multifile enable-java-maintainer-mode with-ecj-jar=/usr/share/java/eclipse-ecj.jar disable-libjava-multilib with-ppl with-cloog with-tune=generic with-arch_32=i686 --build=x86_64-redhat-linux
    Thread model: posix
    gcc version 4.4.4 20100726 (Red Hat 4.4.4-13) (GCC)
    6) g++ --version
    g++ (GCC) 4.4.4 20100726 (Red Hat 4.4.4-13)
    Copyright (C) 2010 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    7) ls -al /usr/bin | grep gcc
    lrwxrwxrwx. 1 root root 3 Oct 17 12:28 cc -> gcc
    -rwxr-xr-x 2 root root 268088 Dec 1 2010 gcc
    -rwxr-xr-x 2 root root 268088 Dec 1 2010 x86_64-redhat-linux-gcc
    8) rpm -qf /usr/bin/x86_64-redhat-linux-gcc
    gcc-4.4.4-13.el6.x86_64
    I hope this information helps in troubleshooting this issue for us.
    Thanks
    Mathias
    Thanks,

  • Display Standard Program Graphic Report in Adobe Form

    Hi All,
    I'm new this field and really need you all expertise..
    I have requirement which is to display Standard Program SAP Business Graphic Report (eg: Profile Matchup) in Adobe Form.
    I also have read this blog but there is something i'm not clear...
    /people/alex.liu/blog/2009/08/12/how-to-display-a-dynamically-generated-business-chart-from-igs-in-webdynpro-for-abap-application-and-adobe-interactive-form
    What are the steps I should do:-
    Looking forward for any reply..tqvm
    Edited by: ahmad azlan on Jun 20, 2010 3:37 PM

    When you need to send a picture into the offline form:
    another image question - using Regular ABAP not web dynpro and
    Display a logo dynamically in adobe form
    When you need to send a picture into the online form:
    /people/bhawanidutt.dabral/blog/2007/11/15/how-to133-integrate-adobe-form-on-webdynpro-for-abap-and-deploy-it-on-portal
    Otto
    p.s.: refine your question, please

  • How to compile and execute a Pro*C program on Unix?

    Hello Gurus,
    I am new to Pro*C. I just wrote a sample Pro*C program 'first.pc' to read some information from some tables and print it on screen.
    I am not sure how to compile it and execute it to see the output of my very first program.
    After searching a lot I tried following ..
    -- Step 1 compile the program into .c program
    $->ls -lrt first.pc
    -rwxrwxrwx    1 sqloper4 staff          1069 Oct 31 03:39 first.pc
    $->proc first.pc
    Pro*C/C++: Release 8.1.7.0.0 - Production on Sat Oct 31 05:43:35 2009
    (c) Copyright 2000 Oracle Corporation.  All rights reserved.
    System default option values taken from: /oracle/app/oracle/product/8.1.7/precomp/admin/pcscfg.cfg
    $->ls -lrt first*
    -rwxrwxrwx    1 sqloper4 staff          1069 Oct 31 03:39 first.pc
    -rw-r--r--    1 sqloper4 staff             0 Oct 31 05:43 first.lis
    -rw-r--r--    1 sqloper4 staff          6648 Oct 31 05:43 first.c
    $->
    -- Step 2 Generate the .o file
    $->cc -I${ORACLE_HOME}/precomp/public -c first.c
    first.c: In function 'main':
    first.c:154: warning: return type of 'main' is not 'int'
    $->
    $->ls -lrt first*
    -rwxrwxrwx    1 sqloper4 staff          1069 Oct 31 03:39 first.pc
    -rw-r--r--    1 sqloper4 staff             0 Oct 31 05:43 first.lis
    -rw-r--r--    1 sqloper4 staff          6648 Oct 31 05:43 first.c
    -rw-r--r--    1 sqloper4 staff          3709 Oct 31 05:45 first.o
    $->
    -- Step 3 After that link the .o to libraries and produce the exe
    $->cc -o exe_name -L $ORACLE_HOME/lib -lclntsh
    ld: 0711-317 ERROR: Undefined symbol: .main
    ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
    collect2: ld returned 8 exit status
    $->
    $->ls -lrt first*
    -rwxrwxrwx    1 sqloper4 staff          1069 Oct 31 03:39 first.pc
    -rw-r--r--    1 sqloper4 staff             0 Oct 31 05:43 first.lis
    -rw-r--r--    1 sqloper4 staff          6648 Oct 31 05:43 first.c
    -rw-r--r--    1 sqloper4 staff          3709 Oct 31 05:45 first.o
    $->After all above still I am not sure how to proceed and 'execute' the program.
    Could you please help me with the steps to 'Compile and execute' a Pro*C program ?
    Oracle DB Version : Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production
    OS : Unix
    Thanks in advance!

    Hi All,
    After reading Pro*C Question thread I have tried below steps to compile my .C program, but failed with the given errors
    $->cc -I$ORACLE_HOME/precomp/public -L$ORACLE_HOME/lib first.c -o sample
    ld: 0711-317 ERROR: Undefined symbol: .sqlcxt
    ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
    collect2: ld returned 8 exit statusAfter receiving above error I tried below command as an alternative
    $->cc -I$ORACLE_HOME/precomp/public -L$ORACLE_HOME/lib first.c -o first -lclntsh -lsql10
    collect2: library libsql10 not foundCould you please help in resolving above error? Whats missing exactly?

  • Unable to execute command   $ADPERLPRG $FND_TOP/patch/115/bin/TXK

    Utility /Script To Check The Techstack Component Versions (Forms, Http Server, JDK, Framework, Database, etc) [ID 601736.1]
    unable to execute command
    $ADPERLPRG $FND_TOP/patch/115/bin/TXKScript.pl \ -script=$FND_TOP/pa
    tch/115/bin/txkInventory.pl -txktop=$APPLTMP \ -contextfile=$CONTEXT_FILE \ -ap
    pspass=apps/apps \ -outfile=$APPLTMP/Report_App_Inventory.html
    APPLICATION environment already set .
    Location on which command executed
    <FND_TOP>/patch/115/bin
    command executed in single line
    error message
    ERROR processing <arg> script : Argument value cannot be an empty string
    *******FATAL ERROR*******
    PROGRAM : (/applprod/oracle/prdappl/fnd/11.5.0/patch/115/bin/TXKScript.pl)
    TIME : Tue Aug 24 01:05:04 2010
    FUNCTION: TXK::Common::doError [ Level 1 ]
    ERRORMSG: ERROR processing <arg> script : Argument value cannot be an empty stri
    ng
    FOR DATABASE TIER ALSO
    bash-3.00$ $ADPERLPRG $ORACLE_HOME/appsutil/bin/TXKScript.pl -script=$ORACLE_HO
    ME/appsutil/bin/txkInventory.pl -txktop=$ORACLE_HOME/appsutil/temp -contextfile
    =$CONTEXT_FILE -appspass=apps -outfile=$ORACLE_HOME/apsutil/temp/Report_DB_Inve
    ntory.html
    gives error
    *** ALL THE FOLLOWING FILES ARE REQUIRED FOR RESOLVING RUNTIME ERRORS
    *** STDOUT = /applprod/oracle/prddb/9.2.0/appsutil/temp/TXK/txkInventory_Tue_A
    ug_24_01_21_57_2010_stdout.log
    bash-3.00$
    Thanks
    Rahul

    Hi,
    $ADPERLPRG $FND_TOP/patch/115/bin/TXKScript.pl \ -script=$FND_TOP/pa
    tch/115/bin/txkInventory.pl -txktop=$APPLTMP \ -contextfile=$CONTEXT_FILE \ -ap
    pspass=apps/apps \ -outfile=$APPLTMP/Report_App_Inventory.htmlDo not use the back slash when running the command (as shown below) and you should be OK then.
    $ADPERLPRG $FND_TOP/patch/115/bin/TXKScript.pl -script=$FND_TOP/patch/115/bin/txkInventory.pl -txktop=$APPLTMP -contextfile=$CONTEXT_FILE-appspass=apps/apps outfile=$APPLTMP/Report_App_Inventory.html
    FOR DATABASE TIER ALSO
    bash-3.00$ $ADPERLPRG $ORACLE_HOME/appsutil/bin/TXKScript.pl -script=$ORACLE_HO
    ME/appsutil/bin/txkInventory.pl -txktop=$ORACLE_HOME/appsutil/temp -contextfile
    =$CONTEXT_FILE -appspass=apps -outfile=$ORACLE_HOME/apsutil/temp/Report_DB_Inve
    ntory.htmlSame for this command.
    Thanks,
    Hussein

  • Unable to execute java version of ojc, error string C:\jdk\jdev\bin\ojcw

    I Can't deploy EJB to WebLogic Server 6.1.
    I get error:
    Checking weblogic-ejb-jar.xml for completeness...
    Wrote EJB .jar file to C:\java\webservices\weather\ejb1.jar
    Generating WebLogic EJB container classes...
    C:\jdk\jdk\jre\bin\javaw.exe -classpath C:\jdk\jdev\lib\ext\weblogic.jar;C:\jdk\jdk\jre\lib\rt.jar;C:\jdk\jdk\jre\lib\i18n.jar;C:\jdk\jdk\jre\lib\sunrsasign.jar;C:\jdk\jdk\jre\lib\jsse.jar;C:\jdk\jdk\jre\lib\jce.jar;C:\jdk\jdk\jre\lib\charsets.jar;C:\jdk\jdk\jre\classes;C:\jdk\jdev\lib\ojc.jar;C:\jdk\jdev\lib\jdev-rt.jar;C:\jdk\jdk\jre\lib\ext\activation.jar;C:\jdk\jdk\jre\lib\ext\jcert.jar;C:\jdk\jdk\jre\lib\ext\jndi.jar;C:\jdk\jdk\jre\lib\ext\jnet.jar;C:\jdk\jdk\jre\lib\ext\jta.jar;C:\jdk\jdk\jre\lib\ext\mail.jar;C:\jdk\j2ee\home\ejb.jar;C:\jdk\j2ee\home\jaxp.jar;C:\jdk\j2ee\home\jdbc.jar;C:\jdk\j2ee\home\jaas.jar;C:\jdk\j2ee\home\jsse.jar weblogic.ejbc -compiler C:\jdk\jdev\bin\ojcw.exe -classpath C:\jdk\jdev\lib\ext\weblogic.jar;C:\jdk\jdk\jre\lib\rt.jar;C:\jdk\jdk\jre\lib\i18n.jar;C:\jdk\jdk\jre\lib\sunrsasign.jar;C:\jdk\jdk\jre\lib\jsse.jar;C:\jdk\jdk\jre\lib\jce.jar;C:\jdk\jdk\jre\lib\charsets.jar;C:\jdk\jdk\jre\classes;C:\jdk\jdev\lib\ojc.jar;C:\jdk\jdev\lib\jdev-rt.jar;C:\jdk\jdk\jre\lib\ext\activation.jar;C:\jdk\jdk\jre\lib\ext\jcert.jar;C:\jdk\jdk\jre\lib\ext\jndi.jar;C:\jdk\jdk\jre\lib\ext\jnet.jar;C:\jdk\jdk\jre\lib\ext\jta.jar;C:\jdk\jdk\jre\lib\ext\mail.jar;C:\jdk\j2ee\home\ejb.jar;C:\jdk\j2ee\home\jaxp.jar;C:\jdk\j2ee\home\jdbc.jar;C:\jdk\j2ee\home\jaas.jar;C:\jdk\j2ee\home\jsse.jar C:\java\webservices\weather\ejb1.jar C:\DOCUME~1\jakubowg\USTAWI~1\Temp\wlejb61185.jar
    fatal error: unable to execute java version of ojc, error string <C:\jdk\jdev\bin\ojcw.exe>
    Exec failed .. exiting
    **** weblogic.ejbc returned with a non-zero exit status:
    #### Deployment incomplete. #### 2002-06-27 11:19:29
    Does anyone give me some advices?
    Grzegorz

    try to compile your programm from command prompt
    change dir to hello.java directory
    to compile programm type:
    javac hello.java
    if it will compile successfully run it by typing
    java hello
    if it will not be helpfull uninstall JDK 1.4 and instal JDK again. I'd recomend JDK 1.5.

  • Cannot execute my first JSF Program

    Hey all. I am trying to execute my first JSF program but i get this output on the browser when i try to run my login.jsp file through tomcat version 5.
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: /login.jsp(17,0) According to the TLD attribute for is mandatory for tag outputLabel
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:83)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:402)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:274)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:722)
         org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1458)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2176)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2226)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:759)
         org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1458)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2176)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2226)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:759)
         org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1458)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2176)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2226)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:759)
         org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1458)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2176)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2226)
         org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2232)
         org.apache.jasper.compiler.Node$Root.accept(Node.java:485)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2176)
         org.apache.jasper.compiler.Validator.validate(Validator.java:1515)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:253)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:459)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:442)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:552)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:291)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:142)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)Here is my login.jsp
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
        <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
        <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <f:view>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Login Page</title>
    <f:loadBundle basename="com.tutorial.messages" var="msg"/>
    </head>
    <body>
    <h:form>
    <h:messages layout="table"></h:messages>
    <h:panelGrid columns = "2">
    <h:outputLabel rendered="true" value="#{msg.name}"></h:outputLabel>
    <h:inputText value ="#{loginBean.name}"></h:inputText>
    <h:outputLabel rendered="true" value ="#{msg.password}"></h:outputLabel> }
    <h:inputSecret value="#{loginBean.password.convertedId}">
    <f:converter converterId="javax.faces.Long"></f:converter >
    <f:validator validatorId="com.tutorial.validatePassword"></f:validator >
    <h:commandButton action="login" value="Login"></h:commandButton>
    </h:inputSecret>
    </h:panelGrid>
    <h:commandButton action = "login" value = "#{msg.login}"></h:commandButton>
    </h:form>
    </f:view>
    </body>
    </html>Here is my welcome.jsp
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
        <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Welcome</title>
    <f:loadBundle basename="com.tutorial.messages" var ="msg"/>
    </head>
    <body>
    <f:view>
    <h:form>
    <h:outputLabel value = "#{msg.welcome} #{loginBean.name }"></h:outputLabel>
    </h:form>
    </f:view>
    </body>
    </html>I have a LoginBean class which is simple and i am sure nothing is wrong in that. the stack trace tells me that my outputLabel in jsp is not right? but by searching on goole and the tutorial i dont see anything wrong. here is my faces-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC
        "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
        "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config>
         <managed-bean>
              <managed-bean-name>
              loginBean</managed-bean-name>
              <managed-bean-class>
              com.tutorial.LoginBean</managed-bean-class>
              <managed-bean-scope>
              session</managed-bean-scope>
         </managed-bean>
         <navigation-rule>
              <display-name>
              login</display-name>
              <from-view-id>
              /login.jsp</from-view-id>
              <navigation-case>
                   <from-outcome>
                   login</from-outcome>
                   <to-view-id>
                   /welcome.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <validator>
              <display-name>
              Validate Password</display-name>
              <validator-id>
              com.tutorial.validatePassword</validator-id>
              <validator-class>
              com.tutorial.validatePassword</validator-class>
         </validator>
    </faces-config>Thank you so much for looking into it.

    its a Small issue
    just use the following
    <code><h:outputText rendered="true"
    value="#{msg.name}"></h:outputText></code>
    instead of <code><h:outputLabel rendered="true"
    value="#{msg.name}"></h:outputLabel> </code>
    and your problem will be fixed.Thanks Master. You are awesome ;). it worked. sorry i was using the tutorial for JSF in jbuilder. dont have intentions to learn right now until i am good in JSP but had to set up everything to run JSF.
    Thank you bro.

Maybe you are looking for

  • Select-option in ABAP objects

    Hi Guys,            I need a small help from you. I want to know how to populate the value from select-option to abap object. Please help me, it is very important

  • ALV grid display-my columns are multiplying.

    I have been searching for the solution for my small problem..So I hope this question hasn`t been asked before. I have an ALV grid in a pop up display using 'REUSE_ALV_GRID_DISPLAY'. I have an input field on my screen that helps me display only certai

  • Nikon D7000 & lenses missing?

    Hi, all!  Just imported new images from my Nikon D7000 into LR3.3; the camera type is recognized, but the lens (the kit 18-105mm VR 3.5/5.6) isn't there.  Downloaded the profile downloader, and that camera/lens combo wasn't in there.  Downloaded the

  • Import Photo Albums

    How do I import my albums from Album Starter Edition 3.2 to Photoshop Elements?

  • Printing with referenced images

    I have a print component in my Flex application which works fine if I embed the header image to be printed.  But if I merely link it as an external file, it appears to load, but somehow the print code creates the page too rapidly and the header does