Unsupported option using Kylix

Hi.
I'm getting the message
"Unsupported option Calling Standard Pascal"
whenever I try and call a shared library created
using Kylix and an Oracle 9i database on Linux.
The result is the same whether I use "stdcall,cdecl,
etc. or nothing" after the function.
The exact same program written in Delphi 6 and
Oracle 8i works (all on windows) BUT NOT
using Oracle 9i. I get the same problem as above.
Any body have any ideas?
What can be the difference between 8i and 9i that
causes this?
Is there some extra setup info that I miss?
Maybe something in the init file?
Thanks in advance.
PS. This problem, at the moment, is the only reason
the client will not convert to 9i.

Hi.
The problem WAS NOT in the shared library.
Used stdcall and it works the way it should.
After a long and wild goose chase - the details
which is of no concern ;)
The problem was actually hidden in a sql script ie.
FUNCTION GETCODE(BmtRaw varChar2) RETURN Varchar2 is external
name "BmtMessage"
library external_Decodex
language C
-- Calling Standard Pascal <-- The culprit
parameters (BmtRaw string);
The calling standard pascal is apparently no longer
supported in Oracle 9!
Removed the line in the scripts out of pure frustration
- and all seems well.
Tx to who ever took the time to read this.
Hope the solution might be of help to someone else.

Similar Messages

  • Read Selcet Options using DYNP_VALUES_READ

    Hi friends,
       I have declared a Select option with no intervals, Multiple values can be entered
       I am trying to Read the Select options using DYNP_VALUES_READ in  AT ...ON HELP REQUEST for another field on selection screen
      I am able to read only one value of the  selection option using the above FM, Any inputs on how to read the multiple values
    Thanks
    Chandra

    P681634 wrote:
    Hi friends,
       I have declared a Select option with no intervals, Multiple values can be entered
       I am trying to Read the Select options using DYNP_VALUES_READ in  AT ...ON HELP REQUEST for another field on selection screen
      I am able to read only one value of the  selection option using the above FM, Any inputs on how to read the multiple values
    Thanks
    Chandra
          FORM VARIANTEN_AUSWAHL                                        *
          Auswahl einer ALV Variante für die Liste (F4)                 *
    -->  pvari  : Variantenname                                        *
    FORM varianten_auswahl CHANGING p_vari LIKE disvariant-variant.
    **commented by ajay_05/13/2008
    DATA: x_exit(1)  TYPE c,
           x_variant  LIKE disvariant,
           x_variant2 LIKE disvariant.
      DATA: fieldvalues TYPE dynpread OCCURS 1 WITH HEADER LINE,
            crepid      like sy-repid,
            summb       LIKE fieldvalues-fieldvalue.
      crepid = sy-repid.
    Feld SUMMB vom Dynpro einlesen.
    (Da der PAI noch nicht durchlaufen ist!)
      CLEAR fieldvalues.
      REFRESH fieldvalues.
      MOVE: 'SUMMB' TO fieldvalues-fieldname.
      APPEND fieldvalues.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname               = crepid
          dynumb               = '1000'
        TABLES
          dynpfields           = fieldvalues
        EXCEPTIONS
          INVALID_ABAPWORKAREA = 1
          INVALID_DYNPROFIELD  = 2
          INVALID_DYNPRONAME   = 3
          INVALID_DYNPRONUMMER = 4
          INVALID_REQUEST      = 5
          NO_FIELDDESCRIPTION  = 6
          INVALID_PARAMETER    = 7
          UNDEFIND_ERROR       = 8
          DOUBLE_CONVERSION    = 9
          STEPL_NOT_FOUND      = 10
          OTHERS               = 11.
      if sy-subrc = 0.
        READ TABLE fieldvalues INDEX 1.
        summb = fieldvalues-fieldvalue.
      else.
        clear summb.
      endif.
    Aktueller Reportname
      x_variant-report  = sy-repid.
    ...       Variantenname
      x_variant-variant = p_vari.
    Anzeigevarianten für (Nicht)Summenbericht unterschiedlich!
      IF summb = 'X'.
        x_variant-handle = 'SUMX'.
      ELSE.
        x_variant-handle = ''.
      ENDIF.
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
        EXPORTING
          is_variant = x_variant
          i_save     = 'A'
        IMPORTING
          e_exit     = x_exit
          es_variant = x_variant2
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 2.
      Keine Varianten für den Report vorhanden
        MESSAGE ID sy-msgid TYPE 'S'      NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        IF x_exit = space.
        Augewählten Variantennamen übernehmen
          p_vari = x_variant2-variant.
        ENDIF.
      ENDIF.
    ENDFORM.                    "varianten_auswahl
    Edited by: Ajay kumar on May 11, 2009 8:03 AM
    Edited by: Ajay kumar on May 11, 2009 8:04 AM

  • Check if in Word document (Word 2013) advanced option "Use fonts that are stored on the printer" is set

    Is it possible in a VBA macro to check whether an opened word document has the advanced option "Use fonts that are stored on the Printer" is set.
    I have a word macro that opens and processes thousands of word documents.  The processing needs to be different based on whether this option is set or not.
    Thanks,
    Harry Spier
    Harry Spier

    Hi Harry,
    I'm afraid that we're not able to retrieve this option value. The Advanced Options are actually stored as application level. Some of the options can be accessed with the Word.Application.Options property. But there're also many options that are not
    exposed in the Word Object Model. As you can see in this figure, there's no property corresponding to "Use fonts that are stored on the printer":
    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.

  • Dynamic select-options using parameter

    Hi experts,
    It the user selects one value from dropdown list, it should generate one select-option using that name. Is it possible?
    for example, (pls see my code).
    If user selects 'Malek' from parameter, <b>and press 'ENTER'</b>
    <b>select-option should display with that name</b> like
    Malek      malek-low  malek-high
    And if user selects some other like 'Amran'. It should generate(and append)
    Malek      malek-low  malek-high
    amran      amran-low amran-high
    and so on....
    report c.
    data: t_return like ddshretval occurs 0 with header line.
    data: begin of t_names occurs 0,
           name like usr01-bname,
          end of t_names.
    parameters : i_inspec like usr01-bname.
    at selection-screen on value-request for i_inspec.
      perform get_names.
    form get_names.
      t_names-name = 'Malek'.
      append t_names.
      t_names-name = 'Amran'.
      append t_names.
      t_names-name = 'Ow CC'.
      append t_names.
      t_names-name = 'titbit'.
      append t_names.
      call function 'F4IF_INT_TABLE_VALUE_REQUEST'
        exporting
          retfield    = 'T_NAMES-NAME'
          dynpprog    = sy-cprog
          dynpnr      = sy-dynnr
          dynprofield = 'I_INSPEC'
          value_org   = 'S'
        tables
          value_tab   = t_names.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno with
        sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      read table t_return index   1.
    endform.                    "GET_NAMES
    Reward guaranteed,
    thanks
    kaki

    Use At selection-screen output,use screen internal table..
    User Dynamic Selection
    at selection-screen output.
      select single * from t000md.
      loop at screen.
        case screen-group1.
          when 'REL'.
            if not  p_old is initial.
              screen-input = '0'.
              screen-required = '0'.
              screen-invisible = '1'.
            endif.
            modify screen.
          when 'BEL'.
            if not p_new is initial.
              screen-input = '0'.
              screen-required = '0'.
              screen-invisible = '1'.
            endif.
            modify screen.
          when 'ARB'.
            if  p_new is initial.
              screen-input = '0'.
              screen-required = '0'.
              screen-invisible = '1'.
            endif.
            modify screen.
          when 'MTA'.
            if  p_new is initial.
              screen-input = '0'.
              screen-required = '0'.
              screen-invisible = '1'.
            endif.
            modify screen.
        endcase.
      endloop.

  • Save as option using javascript

    Hi Experts,
    I am try to write code for "save as" option using javascript.
    could you please help me........

    There is no saveas function in indesign javascript, use save function instead,
    var myFolder = new Folder("~/Desktop/Your_Folder");
    app.activeDocument.save(myFolder.fsName + "\\" + "myIndesignFile.indd");
    Vandy

  • HT3625 I have a 2012 macBook Pro 13" and the option "Use audio port for" does not appear at all in the sound menu. why is this? im running  mountain Lion 10.8.2

    I have a 2012 macBook Pro 13" and the option "Use audio port for" does not appear at all in the sound menu. why is this? im running  mountain Lion 10.8.2

    Because line-in has been removed.
    It does allow for an Apple headset with mic., but I don't know if it would work with third-party ones.
    You'll need to use a Griffin iMic or similar to use line-in via a USB port.
    The same goes for the 15" retina, the newest MBA and the new iMac (whenever it finally arrives).

  • I can't get ahome page that has 6 or 8 tablets of most common used websites. Tried Option "use current pages" without success. Can you help?s

    Since having Firefox I have used as a Home page a page with "tablets" showing the most recent pae of my most popular websites. By clicking on this I returned immediately to that site. Suddenly it's disappeared and I can't get it back. I tried "Options Use current pages" but that doesn't work. Help!

    You can set the home page to about:newtab to have the page with the 5x3 tiles showing.
    You can check the home page setting:
    *Tools > Options > General > Startup: Home page
    Firefox supports multiple home pages separated by '|' (pipe) symbols.
    *https://support.mozilla.org/kb/How+to+set+the+home+page
    You can check the value of the <b>browser.newtab.url</b> pref that sets the new tab page page and make sure it is set to about:newtab.
    See this article about the New Tab page (about:newtab):
    *https://support.mozilla.org/kb/new-tab-page-show-hide-and-customize-top-sites

  • "Embedding OLE objects is unsupported. Use File- Import to import media." Error dialog while concurrently Flash CC executions

    Hi,
    we are using Flash CC an a dedicated windows server with two userprofiles. Each user has its own licence.
    If we run a jsfl script singly, this script runs fine.
    If we run the same jsfl script on both users we get the error:
    "Embedding OLE objects is unsupported. Use File->Import to import media."
    I read the article addItem() -> "Embedding OLE objects is unsupported" , but it could not the problem, because the script runs fine singly.
    Could it be possible that both users uses the same Flash CC Clipboard ore are there any other shared modules etc?
    Best regards
    Alex

    can you write how to use ?
    i write
    "import the flash.display.MovieClip; "
    still error ahhh
    i try to change extends MovieClip instead Spirt
    and not error stop(); and gotoAndStop Already
    but
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at MemoryGame/nextTurn()
              at MemoryGame/clickStart()
    i got thissssssss TT
    import flash.display.Sprite;
    import flash.events.*;
    import flash.text.*;
    import flash.utils.Timer;
    import flash.media.Sound;
    import flash.media.SoundChannel;
    import flash.net.URLRequest;
    import flash.display.MovieClip;
    that i import

  • Unsetting Option -- Use iTunes for Internet Music Playback

    In the advanced pane of the iTunes Systems Preferences, there is an Option -- "Use iTunes for Internet Music Playback". You can click on the SET button to use this feature.
    But how do you UNSET it? I no longer want to use ITunes for Internet Music Playback.
    I am running iTunes 7.02 and Tiger 10.4.8.
    RobK

    It's in Preferences>Advanced>General.
    Hope this helps.
    M

  • Why can't I set up POP/IMAP emails for my Muse website in Business Catalyst? I don't have the option 'use this service for email as well as hosting the website' under Advanced options

    Why can't I set up POP/IMAP emails for my Muse website in Business Catalyst? I don't have the option 'use this service for email as well as hosting the website' under Advanced options.
    Is this due to my Hosting Plan? Appreciate any answers.

    Your site is a CCM site which is on a WebBasics plan (This plan does not provide hosted emails on Business Catalyst).
    If you want to create email addresses on this site, you would need to setup your email server elsewhere and configure the MX records on your site to point to that external mail server.
    If you want to use Business Catalyst's hosted email services you would need to use a WebBasics+ or higher siteplan. To upgrade your CCM free site, Access your site's admin area  -> Site Management -> Upgrade Now -> choose the desired site plan and billing frequency -> Add personal and credit card details -> Submit.
    Please refer this article about setting up email accounts on your BC site: http://docs.businesscatalyst.com/user-manual#!/site-settings/email-users
    For setting up records to point to external mail server, check out http://docs.businesscatalyst.com/user-manual#!/site-settings/email-users/creating-inboxes- for-your-users
    Regards,
    Surjeet

  • What is "FND : Diagnostics %"  profile option used for ?

    What is "FND : Diagnostics %" profile option used for ?
    How is it different from "FND : Debug%" profiles ?

    I guess my above update was misleading (Sorry for that) .. Please find below more details about (FND: Diagnostics) and (FND: Debug Log Enabled):
    Both profile options are used to configure logging, the difference between them is (FND: Debug Log Enabled) is a database profile option used to configure logging while (FND: Diagnostics) is used to configure logging to screen.
    Logging to screen provides:
    - The ability to enable logging on a per HTTP request or per HTTP session basis.
    - Dynamic configuration which does not require restarting any servers or changing any log profiles.
    - A convenient lightweight mechanism to diagnose performance issues. Each message is timestamped to the millisecond.
    If Logging to Screen is enabled, then the Java log messages generated for a particular HTTP Request-Response are buffered in memory and appended to the end of the generated HTML page.
    This feature does not affect any existing configurations of file or database logging. File or database logging continues to behave per the configured middle tier log properties and/or log profile values.
    Note that this mechanism currently provides only Java layer messages. Regular file or database logging should be used if messages from other layers (e.g., PL/SQL) are needed.
    In brief ..
    FND: Diagnostics (Self-Service) --> To see this, Login as that user and navigate to self-service, Click the Diagnostics link in the upper right corner
    - Default = “No”
    - Recommendation = “No”
    - Requires APPS password to use Examine function
    - Usually set to “Yes” during development

  • PM Scripts: how to get into "Document setup" - "Compose to printer"option using PageMaker scripts?

    Hi
    I wonder if there is any way to set appropriate printer in "Document setup" -> "Compose to printer" option using PageMaker scripts.
    Going through the PageMaker Script Guide I couldn't find such functionality.
    I will appreciate your help
    /Joanna

    This is what you need: http://www.amazon.com/Pagemaker-Scripting-Guide-Desktop-Automation/dp/tech-data/1568303181
    If the script is not in that book, then it doesn't exist.
    There used to be PDF version, but I can't find it.

  • How do you remove a web address from compatibility view option using a script?

    How do you remove a web address from compatibility view option in IE using a script or a GPO? 
    Not seeing any options.
    Casey
    This topic first appeared in the Spiceworks Community

    luckyfromhialeah wrote:
    How do you remove a web site from popular list?
    If you mean from the Safari menubar item "Popular"
    Choose "Show All Bookmarks" from the Bookmark menu in the main menubar, or click the icon for that in Safari's menubar -
    The page that opens should show a list of Bookmarks. In the Left column, click the item under Collections named Bookmarks Bar.
    In the new view, locate the folder named Popular and click the reveal triagle to the left of its name - it will open and reveal all the items listed in Popular.
    Find the one you want to remove, click it once to select it, then press the Delete key on the keyboard.

  • Location settings/GPS can't change the options - used to be able to!

    I've read another thread with the same problem and people are saying you must've been connected to something with GPS - I haven't, nobody in my house has a phone or anything else that connects to GPS so it's not possible.
    I was trying to get this new Facebook Places working and did something that seemed to work for a few 8520 users - Update the OS through the Desktop Software. I updated to the latest one and when I go Options > Advanced Options > Location Settings (It used to be GPS Settings or something similar, not Location Settings) I used to get GPS none and be able to switch my Location Services off and on. Since updating, I only get GPS none and Location Services off, no option to change either.
    BB Maps used to find my location fine, Foursquare was good at finding very nearby locations so it must work using something other than GPS.  I've updated everything only to try and get bloody FB Places working and it's not even worth it, I can't even use BB Maps now!
    Is there anything I can do? I've tried re-installing maps and Foursquare but neither can find my location anymore so I believe it was something to do with the update.

    The Curve 8520 does not have GPS so that's where the problem lies.
    I hope that clears things up.
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Alv drilldown-fields are hiding in secondary list-when layout option used

    hey guys,
    i displayed alv grid using fms.
    the basic list has default layout option.
    but when user gives a deault layout,and try to see secondary list,the fields appear as hidden.
    one has to unhide them manualy to see.

    Kumar,
      Check the Field catalog Before displaying Secondary list, If NO_OUT is set for Hidden fields.
    Thanks,
    Kishore

Maybe you are looking for

  • Problems by the Installation of Adobe Photoshop Elements 12

    Problems by the Installation of Adobe Photoshop Elements 12  can some one help me please?

  • How to get the context name for a proxied servlet container

    I have been using tags to build links for applications that use Tomcat and I was wondering if tags that detect the host url can be used if the servet container is behind a proxy. For example let's say that the Tomcat context is called app_under_test

  • Having Problems in Graphs

    Hi I am tryiing to create to a graph one line would show different colours based on their individual contribution as for ex. one project has total cost as Rs. 300 and the individual cost of the testing and the development is Rs 100 and Rs. 200 so tha

  • N82 caller display: displays number but not the na...

    Hi, I have a Nokia N82 running on the Fido network in Canada. I have the caller ID display and I'm supposed to have the name display combined with the number display. So when someone calls me, it should say the name AND the number. Here's the descrip

  • IPhoto can not install

    My email was hacked so I had to get a new app store ID and then I needed to reinstall my OS now it's asking me to pay for iPhoto but it was free before. Why is this? What is the point of getting a mac if you don't get basic apps with it?