Development integration with SQL*Forms

Dear All:
I do work for Intergraph and have a custommer who is asking about any development (like an OCX) for developing SQL*Forms with the help of that OCX (or whatever available tool) from the inside of our "object oriented Automation Server" called Geomedia, which is a GIS (geographic information system). The thing is that they want to use SQL*Forms from Geomedia in order to develop and customize the interface of their tabular data capture modules, keeping the aspect of their outside (standalone) system, developed with SQL*Forms. Is it possible? Is there any thing available for that?
Thanks in advance for your help and comment,
Gilberto Chavez.
Intergraph MEXICO.

Wolfram,
I think the answer to your question is going to be no, but can you explain your requirements in detail? I don't understand what you want to do.
Scott

Similar Messages

  • Enterprise portal integration with Oracle forms

    Hi
    Can anyone help me on this .
    "Enterprise portal integration with Oracle forms".
    I want to integrate oracle forms to EP .I am trying to work with app Integrator but I am not able to make any headway.Do you have any documents pertaining to this or any place where I can look for details.
    Thanks
    Alok

    Hi,
    i'm not aware of special integration feature with Oracle forms, but if as you said we are talking about a web application available via url then i see no problem doing so. the way you can implement the SSO is using something called Application Integrator which helps you build smart URL iView's that can use the portal framework (like systems, user profile , etc) , so you can build your oracle forms integration iView that will take the user password data from the portal (via system) using user mapping or sap logon tickets.
    for more details on Application Integrator see
    http://help.sap.com/saphelp_nw04/helpdata/en/70/5a3842134bad04e10000000a1550b0/frameset.htm
    regarding to the java applet, i don't really know what you mean by "jinitiator" but if your regular browser can do it then i see no reason for problems.
    i hope it helps

  • Rightfax Integration with Oracle forms

    We have Rightfax 9.3 integrated with our application running on Oracle forms 6i.
    We are plaaning to upgrade to Oracle forms 10g.
    We need to understand that if RightFax 9.3 can be configured with Oracle Forms 10g
    Also, is the invocation for RightFax dependent only on Oracle Forms and not dependent on the Windows Operating system installed on the server?
    Please help

    Thanks for the replies..
    I would need some more information.
    1 Right fax is already installed on windows server.
    Will we need upgraded drivers to configure right fax 9.3 with oracle 10g
    2. Will this require any kind of customization in rightfax configuration.
    3. Will this be a one to one fullfilment
    Request you all to help us on this.

  • Integration with Financial Form

    Dear Experts,
    We want to integrate Our application (which is a Image Repository System) with the Form in Oracle Financials.
    Example:
    when a user is entering a Invoice he can also attach a scan of the invoice from our repository with it.
    we may need to customize the Oracle Financials Form.
    How is this possible.
    Please Help
    Zia

    General ledger facts have no link to project dimensions, i.e there is no analysis of GL data from project dimensions. Thats why you dont see it in the GL subject area. If you added it yourself and turned it on, it probably has no effect.

  • Crystal reports integration with sql server and visual studio 2010

    when I am trying to open a crystal report  through code ( visual basic 2010 ) I get the error
    the report has no tables
    I am using SQL SERVER 2008 R2
    HERE IS THE CODE I WROTE 
    Imports System.Data
    Imports System.Data.OleDb
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Windows.Forms
    Imports CrystalDecisions.Shared
    Public Class frmRep
        Dim objConnection As New OleDbConnection("Provider=SQLOLEDB;Data Source=ASHRAF-PC\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=TEST")
        Dim objDataAdapter As New OleDbDataAdapter()
        Dim objDataSet As New DataSet()
        Private Sub CrystalReportViewer1_Load(sender As System.Object, e As System.EventArgs) Handles CrystalReportViewer1.Load
        End Sub
        Private Sub frmRep_Load(sender As Object, e As System.EventArgs) Handles Me.Load
            Dim cr As New ReportDocument
            objDataAdapter.SelectCommand = New OleDbCommand()
            objDataAdapter.SelectCommand.Connection = objConnection
            objDataAdapter.SelectCommand.CommandType = CommandType.Text
            objDataAdapter.SelectCommand.CommandText = "select * from bands"
            objConnection.Open()
            objDataAdapter.Fill(objDataSet, "bands")
            objConnection.Close()
            cr.Load("D:\MY VB 2010 PROJECTS\test2\test2\CrystalReport1.rpt")
            cr.SetDataSource(objDataSet.Tables("bands"))
            CrystalReportViewer1.ReportSource = cr
            CrystalReportViewer1.Refresh()
        End Sub
    End Class

    I suggest you post that question in a Crystal Reports forum.
    Markus

  • Talent Development Integration with Flexible Performance - please advise?

    Has anyone used the SAP Development Plans under the New SAP Talent Development EHP4?
    Is this primarily for key talent in a business or used for every employee?
    If you have used this, have you been able to integrate the development plan items from the new SAP Talent Development Plan into the SAP EHP4 Flexible Performance plan?
    Many thanks
    Oliver

    Hi Oliver,
    I have seen the forms used in the Portal before and they are much better looking than what you see in the backend! I haven't done any customization to get PMP forms to display in the Portal, but I have seen it done. It might be worth opening a new post with a clear heading asking the question specifically, as this should attract an answer (there are lots of people on the forums with PMP experience).
    When I refereed to "add a tab" I meant that some clients had changed a tab in the Talent Profile or added a new tab. The latter requires a lot of development while the former doesn't require so many. I think if you use the Accomplishments tab you can use the upload functionality to save documents etc. To do this you require customization of the Talent Profile web dynpro application.
    Best regards,
    Luke

  • Help with SQL & Form

    Want to create a recordset using this SQL statement but I get a msg that says Enter a Select statement. Seems it only recognizes Select as first part of the statement. This query runs fine in SQL. Anyway around this. Any help is greatly appreciated.
    IF EXISTS (SELECT DISTINCT  t_aven_dc_site.__NAME,  t_aven_dc_site._CONS_ID,
    CASE WHEN t_aven_dc_site_1._COMPANY_NAME IS NULL OR
    t_aven_dc_site_1._COMPANY_NAME = ' '
    THEN 'NA'
    ELSE t_aven_dc_site_1._COMPANY_NAME END
    AS Consultant
    FROM t_aven_dc_contact
    INNER JOIN t_aven_dc_site AS t_aven_dc_site_1 ON t_aven_dc_contact._INTERNID = t_aven_dc_site_1._INTERNID INNER JOIN
    t_aven_dc_site ON t_aven_dc_site_1._SPS_ID = t_aven_dc_site._CONS_ID
    WHERE
      t_aven_dc_site._IDB_CLNT_ID_N = 716166 )
    Select Distinct t_aven_dc_site_1._COMPANY_NAME AS Consultant FROM t_aven_dc_contact
    INNER JOIN t_aven_dc_site AS t_aven_dc_site_1 ON t_aven_dc_contact._INTERNID = t_aven_dc_site_1._INTERNID INNER JOIN
    t_aven_dc_site ON t_aven_dc_site_1._SPS_ID = t_aven_dc_site._CONS_ID
    WHERE
      t_aven_dc_site._IDB_CLNT_ID_N = 716166
    ELSE
    Select 'NA' As Consultant

    Acrobat in versions prior to 9 has the ADBC, Adobe Data Base Connection, object which through a series of function or method calls could interact with an SQL data base by passing the SQL statements as a parameter.
    The ability to connect to an SQL data base is now limited to LiveCycle Designer forms.

  • UCCX 8.0 database integration with SQL Server 2005 Express

    Dear Support Community,
    I need to set up a script to read SQL Server 2005 Express records.
    The SQL Server 2005 Express is compatible with the UCCX 8.0?
    Let me know if you need more information

    Nope, SQL Express is not supported. Please refer the comp matrix here http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_compatibility/matrix/crscomtx.pdf
    Supported Enterprise DBs with UCCX 8.0 are
    Oracle 10g R2, Oracle 10g XE
    Sybase Adaptive Server 12
    IBM DB2 8.2
    MS SQL Server 2000
    MS SQL Server 2005
    MS SQL Server 2008
    HTH
    GP.
    Pls rate helpful posts !!

  • BPM Integration with SQL Authenticator Provider in WebLogic

    Hi Gurus,
    Related to the explanation from this blog : http://orasoa.blogspot.com/2010/06/sqlauthenticator-and-human-worklist.html
    I have followed this review, I can see all user and groups from sql authenticator provider.
    And also I can assign bpm application roles to users from sql authenticator provider.
    But when I try to assign bpm application roles to groups from sql authenticator provider, the bpm application is not show from bpm workspace.
    Is there any clue to solve this problem?
    Cheers,
    Agus W

    Hi All,
    Found the reason for the exception. I was implementing the generated the CustomAuthenticatorImpl class (generated through WebLogic MBeanMaker utility) as the provider class by implementing the AuthenticationProvider interface. Keeping them separate solved the issue.
    Able to create the jar without any issues and also no error or exception after restart.
    Thanks.

  • Can sql*forms version 3 run in oracle 8 or higher database

    I support an application developed many years ago with sql forms version 3 - has .inp files for the source code. It is currently running on a 7.3.4 database. My bos has asked why the database cannot be updated to a newer version. It is my understanding theat newer versions of the database do not support the types of triggers used in sql*forms. is this correct?
    thanks
    tim

    all objects documented below are located in C:\...TNS_Admin folder (instant client install path similar to path structure mentioned by EdStevens). The tnsnames.ora and SQLNet.ora1 were copied from Development_Suite\NETWORK\ADMIN.
    Here are several key entries from tnsnames.ora :
    TOMACC=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=txri-oprdracdb-1-vip.tomkinsbp.com)(PORT=1522))
    (CONNECT_DATA=
    (SERVICE_NAME=TOMACC)
    (INSTANCE_NAME=TOMACC1)
    EBSOTM=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=txri-ebsdevdb-1.tomkinsbp.com)(PORT=1523))
    (CONNECT_DATA=
    (SERVICE_NAME=EBSOTM)
    (INSTANCE_NAME=EBSOTM)
    TOMAC5=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=txri-oqadb-1.tomkinsbp.com)(PORT=10501))
    (CONNECT_DATA=
    (SERVICE_NAME=TOMAC5)
    (INSTANCE_NAME=TOMAC5)
    TOMAC6=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=txri-oprdapp2-2.tomkinsbp.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=TOMAC6)
    (INSTANCE_NAME=TOMAC6)
    Here is sqlnet.ora1 (not sure the 1 should be there...but I copied it from Development_Suite as is:
    # sqlnet.ora Network Configuration File: C:\DevSuiteHome_1\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES, EZCONNECT, ONAMES, HOSTNAME)
    Here is Listener.Ora - looks totally wrong - likely created when I installed 11g_r2 is my guess
    # listener.ora Network Configuration File: C:\Program Files\app\Oracle\tns_Admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\app\eswistak\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\app\eswistak\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    ADR_BASE_LISTENER = C:\app\eswistak

  • About using SQL form 3.0

    Dear all,
    For that we can edit the trigger text in Trigger definition with sql form 3.0 designer, how to copy & paste the trigger text?
    Rgds,
    Edward

    Use the 'End' key to create a highlight box then use the arrow keys to enlarge your highlight selection. Press 'F1' to copy then use the 'Insert' key to paste your selection.

  • How to make column headers in table in PDF report appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp

    Hi my name is vishal
    For past 10 days i have been breaking my head on how to make column headers in table appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp.
    Given below is my code in c# on how i export datas from different tables in sql server to PDF report using iTextSharp:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    using System.Diagnostics;
    using System.IO;
    namespace DRRS_CSharp
    public partial class frmPDF : Form
    public frmPDF()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    Document doc = new Document(PageSize.A4.Rotate());
    var writer = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(6);
    table.TotalWidth =530f;
    table.LockedWidth = true;
    PdfPCell cell = new PdfPCell(new Phrase("Institute/Hospital:AIIMS,NEW DELHI", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK)));
    cell.Colspan = 6;
    cell.HorizontalAlignment = 0;
    table.AddCell(cell);
    Paragraph para=new Paragraph("DCS Clinical Record-Assigned Dialyzer",FontFactory.GetFont("Arial",16,iTextSharp.text.Font.BOLD,BaseColor.BLACK));
    para.Alignment = Element.ALIGN_CENTER;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(105f, 105f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn = new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select d.dialyserID,r.errorCode,r.dialysis_date,pn.patient_first_name,pn.patient_last_name,d.manufacturer,d.dialyzer_size,r.start_date,r.end_date,d.packed_volume,r.bundle_vol,r.disinfectant,t.Technician_first_name,t.Technician_last_name from dialyser d,patient_name pn,reprocessor r,Techniciandetail t where pn.patient_id=d.patient_id and r.dialyzer_id=d.dialyserID and t.technician_id=r.technician_id and d.deleted_status=0 and d.closed_status=0 and pn.status=1 and r.errorCode<106 and r.reprocessor_id in (Select max(reprocessor_id) from reprocessor where dialyzer_id=d.dialyserID) order by pn.patient_first_name,pn.patient_last_name", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("Reprocessing Date");
    table.AddCell("Patient Name");
    table.AddCell("Dialyzer(Manufacturer,Size)");
    table.AddCell("No.of Reuse");
    table.AddCell("Verification");
    table.AddCell("DialyzerID");
    while (dr.Read())
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString() +"_"+ dr[4].ToString());
    table.AddCell(dr[5].ToString() + "-" + dr[6].ToString());
    table.AddCell("@count".ToString());
    table.AddCell(dr[12].ToString() + "-" + dr[13].ToString());
    table.AddCell(dr[0].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(table);
    doc.Close();
    System.Diagnostics.Process.Start("AssignedDialyzer.pdf");
    if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.Yes)
    var writer2 = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    else if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.No)
    this.Close();
    The above code executes well with no problem at all!
    As you can see the file to which i create and save and open my pdf report is
    AssignedDialyzer.pdf.
    The column headers of table in pdf report from c# windows forms using iTextSharp are
    "Reprocessing Date","Patient Name","Dialyzer(Manufacturer,Size)","No.of Reuse","Verification" and
    "DialyzerID".
    However the problem i am facing is after execution and opening of document is my
    column headers in table in pdf report from
    c# and datas in it all appear in bold.
    I have browsed through net regarding to solve this problem but with no success.
    What i want is my pdf report from c# should be similar to following format which i was able to accomplish in vb6,adodb with MS access using iTextSharp.:
    Given below is report which i have achieved from vb6,adodb with MS access using iTextSharp
    I know that there has to be another way to solve my problem.I have browsed many articles in net regarding exporting sql datas to above format but with no success!
    Is there is any another way to solve to my problem on exporting sql datas from c# windows forms using iTextSharp to above format given in the picture/image above?!
    If so Then Can anyone tell me what modifications must i do in my c# code given above so that my pdf report from c# windows forms using iTextSharp will look similar to image/picture(pdf report) which i was able to accomplish from
    vb6,adodb with ms access using iTextSharp?
    I have approached Sound Forge.Net for help but with no success.
    I hope anyone/someone truly understands what i am trying to ask!
    I know i have to do lot of modifications in my c# code to achieve this level of perfection but i dont know how to do it.
    Can anyone help me please! Any help/guidance in solving this problem would be greatly appreciated.
    I hope i get a reply in terms of solving this problem.
    vishal

    Hi,
    About iTextSharp component issue , I think this case is off-topic in here.
    I suggest you consulting to compenent provider.
    http://sourceforge.net/projects/itextsharp/
    Regards,
    Marvin
    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.

  • Problem in submit button on adobe form integrated with web dynpro

    Hello,
    I'm facing prob in triggering web dynpro event onSubmit for Interactive form.
    I've created a submit button from web dynpro activex pallete on adobe form (integrated with web dynpro) to send the form as email.
    Then in the web dynpro view where this form is embedded i have created an action against onSubmit event and called a method within this.
    However, on clicking Submit button this event is not getting triggered.
    Please let me know what is lacking in this process?
    Thanks.

    Hi,
    I am also facing the same problem. i have developed a simple scenario under which user have to input his/her details and on submit button it will be updated to database.
    I have tried the above solution but after adopting this solution all the editable fields become non-editable.
    so the above solution is not working for me could you help me out.
    I think ... try this....
    When you create the Adobe Form from WebDynpro, you need to follow one step in SFP Transaction or inSE80 transaction. Open the Adobe Form in any one the transaction and now in SAP menu bar "Utilities" in that you will find the "INSERT THE WEBDYNPRO SCRIPT" just click on that one. Then you will see a new Script Object is being created with the name "ContainerFoundation_JS" under the "Variables" in the Heirarchy of the Object Pallete of the Adobe Form.
    This step is mandatory to use the SUBMIT Button of the "WebDynpro Native", to trigger the OnSubmit event of the WebDynpro.
    Thanks
    Edited by: shailendra2sap on Mar 6, 2009 12:24 PM

  • APEX 3.0.1 and SQL Developer integration - what is it?

    Hello
    In the Apex Release 3.0.1 page, it reads "Supports direct integration with Oracle SQL Developer 1.2.". What does this exactly mean? I looked at the patch notes but could not find any info... I am not a current user of SQL Developer (long way to go to get close to PL/SQL Developer's PL/SQL development functionality IMHO) but wouldn't mind giving it a try depending on what this "integration" means...
    Thanks
    Luis

    Hi Earl,
    I have blogged about that some time ago. See http://inside-apex.blogspot.com/2007/05/what-is-your-favorite-plsql-development.html
    For me the main advantages out of many are
    -) real code completion. Also for local variables, parameter,... and not just for tables/columns.
    -) showing unused variables, enforcing coding styleguides -> shows warning if you don't use the correct prefix for your parameters/local variables/...
    -) powerful template system with placeholders, conditions, autoreplace
    -) Refactoring support
    I think the biggest drawback of SQL Developer was (has been fixed I think with 1.1) that you couldn't do file based PL/SQL development.
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • SQL Express, Database Deploy with C# Form

    I made an application, and there is a problem with deploying a Form with SQL. Actualy, somehow i made to deploy, but there is an error with app launching. I installed app on other PC and this is what the part of problem said:
    "a database with the same name exists or specified file cannot be opened or it's located on unc share"
    .mdf file exists, but dunno whats wrong..
    This is my Connection string:
    SqlConnection con = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=Data Source=.;Integrated Security=True;AttachDbFilename=|DataDirectory|\Data.mdf")
    and this is app.config:

    Hi anonunder,
    Have you attached the database before? Please copy that .mdf file to another location, if it is copied successfully then the database is not attached, then the connection string should look like as follows, rather than your original connection
    string. Reference:
    Creating a Database Project with C# .NET.
    Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Data.mdf;Integrated Security=True;User Instance=True
    However, if you cannot copy that .mdf file to another location, then the database is attached, the connection string should look like as follows.
    Data Source=.\SQLEXPRESS;Initial Catalog=database;Integrated Security=True
    If the issue persists, please help to post the full error message for analysis.
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

Maybe you are looking for

  • Inserting a filename into BLOB

    There is a lot of talk about inserting a file into BLOB or just the file path and storing the file locally. I've decided to store the file on the server but what I don't know is how to capture that path and file name so I can insert it into the MySQL

  • High frequency measurement

    I need to measure a frequency around 3 Mhz the signal is in bursts. I have the example 2 counter.vi working with a siggen with a continuous output but can't get a reading on the burst. Below is the vi and scope shots of the signal I need to measure.

  • Import of Tables with CLOB problem.

    Hi, I am having problems with the import of tables with CLOB columns. Tables with CLOB columns will force the use of the tablespace in which it (table) was created originally. It will not be created on the new schema's default tablespace. Is there a

  • How to reduce the font size - "Portal Smart Text - CURRENT USER"

    Hi Gurus, I am showing the user name on the top left corner of our portal page. The default font size is little big(16 point size). How can I reduce the size to probably 10. I am using the "Built-In Navigation Item Types - Portal Smart Text - CURRENT

  • External Java Class and Oracle Workflow 2.6.3

    Hi, There is a requirement wherein I have to call an external Java class to fetch a string value from an external source and use that in the Oracle Workflow Notifications. After reading the Workflow documentation, I understand that Java classes can b