FRM-47032 : when converting from forms6i to forms10g

Hello,
There is a weird error I get when I execute a form that I have converted from forms6i (in a 8i db) into forms10g
There is no pb when I execute de form in the 8i db
But, it seems that the initialisation of a parameter cannot be done in the same way in the 10g
I get the message "FRM-47032: Cannot set value of parameter BLABLABLA in DEFAULT parameter list: internal error"
This parameter BLABLABLA is declare as a CHAR and defaulted with 'NO'
Any idea?

Thanks for the reply.
Anyway, after a long search, I found out that the problem was somewhere else, in our Webutil configuration...
And, therefore, the error I got, come from the ON_ERROR trigger, that ran right before the PRE_FORM trigger (because of a bad configuration of webutil)
All is fine now.
and the issue is closed.

Similar Messages

  • Hypertext links are not always preserved from Word to PDF, using Aperçu or Adobe, depending on OS 10 or Lion. Why? This generally works perfectly in Windows. Why are Apple and Adobe unable to correctly handle links when converting from Word to PDF?

    Hypertext links are not always preserved from Word to PDF, using Aperçu or Adobe, depending on OS 10 or Lion. Why? This generally works perfectly in Windows. Why are Apple and Adobe unable to correctly handle links when converting from Word to PDF?
    Depending on the system version, and Office Word version:
    - a pure URL link starting with http or even www sometimes works in PDF, either produced by Aperçu or Adobe, sometimes does not work;
    - other kind of links where the text under display is not a URL, never work!
    I like everything with Apple computers and software, except PDF generation. Output files are usually bigger in size, and no better quality, than under Windows. Furthermore, it is weird that something as common as hyperlinks does not work correctly!
    I related this question with Mac OS X Snow Leopard, but the problem is still there with Mac OS Lion.
    This problem seems to have been around for years, without any proper solution from Apple and/or Adobe! To me, this is very embarrassing!

    Greetings NoNameGiven,
    If I understand the problem correctly (I’m not sure I do) you would prefer ‘iii’ to be read as “eye eye eye” rather than “three”? The alt text property is the only way that I know of to make this happen. Hope this helps.
    a ‘C’ student

  • How do I maintain column formatting when converting from PDF to Excel?

    How do I maintain column formatting when converting from PDF to Excel? All info is no longer on the lines or in the columns they started out being in? Any help would be appreciated.

    Sara,
    Perhaps I am expecting too much from Adobe ExportPDF. The reason I subscribed to this service, for which I pay a yearly fee, was that I need a way to  convert scanned and digital documents to Word &/or Excel. I read the link you included but to be candid the more I tried to understand what was written the more confused I got. The process should not be this difficult. Currently I am using a NEAT scanner to create PDF documents of whatever I scan. After I changed the OCR setting on Adobe ExportPDF the output was much better but not to the point it was usable as it was. Information that appears to be lines and columns are sometimes not recognizing two columns and just putting them together in one. Obviously not usable. The other thing it does is bunch numbers that appear in a column that are just a bunch of numbers that I have no way of fixing. 
    Please let me speak to someone who can help me. Right now I not getting anything of value in my paid subscription.

  • When converting from a .wav to a .mov is there a loss of audio quality when using QuickTime?

    When converting from a .wav to a .mov is there a loss of audio quality when using QuickTime?

    When converting from a .wav to a .mov is there a loss of audio quality when using QuickTime?
    That would depend on your work flow. MOV is the generic QuickTime file container and is not related to any particular data compression format. If you perform a simple "Save" or "Save As..." action that merely copies the data in the WAV file to an MOV file, then the data remains unchanged and maintains its original quality. If, on the other hand, your transcode/re-compress the original data to a different compression format, then there is always the potential for some loss in quality. Depending on the codec and/or settings, the potential loss could be inaudible to severe.

  • Default PR Type when convert from Planned Order

    Hi all,
    How can I default my PR Type when convert from Planned Order after MRP run. This can done via MRP Group control but how to go about controlling via Planned Order profile?
    Which planned object type and planned order profile to be used? assuming that i need my planned to be output at LA type and convert to NB1 PR type instead of the default NB PR type?
    Thanks.
    Regards,
    Andrew

    Hi,
    The system determines the document type from the stettings u are making in "planned order Profile" in Customising for MRP. There u define the order type, the procurement key and the special procurement key and also the account assignment category. So based on the procurement key and the special procurement key maintained in the Marterial master, the document type is selected.
    Production > Materials Requirement Planning > Procurement Proposals > Planned Order > Define order profile
    Choose the planned order type - NB1 Within this you specify the P req doc type to be used.
    Through MRP group and the different PR document type for MRP generated PR is possible only if you assign the document type to MRP group in the MRP configuration.
    Please try and come back.
    Regards,
    R.Brahmankar
    Edited by: R Brahmankar on Aug 28, 2008 10:54 AM

  • Moving Scriptlet Code to backing bean when converting from JSP - Facelets

    Hello!
    We are converting our application from jsf1.2 to 2.0 and all jsps are being converted to XHTML. Some are trivial while others had very complex scriptlets.
    I would like to know what are some of the recommended ways of moving Scriptlet Code to backing bean when converting from JSP -> Facelets.
    I have thought about listeners, actionListeners, putting code getXXXX() of the backing bean and then calling #{bean.XXXX} but not sure whats the best way.
    I do appreciate the response!
    Eg of a jsp page:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="/WEB-INF/xxx-jsf.tld" prefix="l" %>
    <%@ taglib uri="/WEB-INF/yyy-pp.tld" prefix="p" %>
    <%@ page import="com.ttyy.search.beans.jsf.AdvancedSearchFormManagedBean" %>
    <%@ page import="com.kkee.util.*"%>
    <%
        AdvancedSearchFormManagedBean advancedSearchFormManagedBean = (AdvancedSearchFormManagedBean) request.getSession().getAttribute("AdvancedSearchFormManagedBean");
        if (advancedSearchFormManagedBean == null) {
           advancedSearchFormManagedBean = new AdvancedSearchFormManagedBean();
           request.getSession().setAttribute("AdvancedSearchFormManagedBean", advancedSearchFormManagedBean);
        advancedSearchFormManagedBean.initializeForAdvancedSearchOptions();
        advancedSearchFormManagedBean.setQuickSearch();
         request.setAttribute("portletHeader", "Hello " + advancedSearchFormManagedBean.getPerson().getFirstname() + ", check out the latest programs in your practice areas and jurisdictions");
    %>
    <h:form id="MYCenterForm">
         <p:portletRenderer portletSetName="test of portlet"
              portletContainer="#{PortletContainerManagedBean}"
              id="MYCenter"
              portletScope = "TEST_SCOPE"
              suppressIfNoData="true"
              portletSkinName="SOME_SKIN">
              <f:facet name="persistenceToolkit">
                   <h:commandLink id="persistenceToolkitLink"
                        actionListener="#{PortletContainerManagedBean.persistPortletSetStateListener}">
                        <h:outputText value="Save State Of Portlet Set" id="persistenceToolkitLinkText"/>
                   </h:commandLink>
              </f:facet>
         </p:pagePortletSetRenderer>
    </h:form>
    <%
         String flag = PropertyItems.getInstance().getPropertyItem("response.time.flag");
         if("1".equals(flag)){
              ResponseTime rt = (ResponseTime) session.getAttribute("responseTime");
            if(rt!=null){
                rt.setDesc("my cle loaded");
                long now = System.currentTimeMillis();
                long start = rt.getStart() + rt.getTotal();
                rt.setInterval(now-start);
                rt.setTotal(rt.getTotal()+rt.getInterval());
                LogUtil.log(rt.toString(), LogUtil.DEBUG_LEVEL);
                session.setAttribute("responseTime", rt);
    %>

    That helps.
    This could be another topic question but itst kind of related to what i am doing right now. while converting JSP to facelet (in jsf2) I came across another issue.
    <h:commandLink id="Save" rendered="#{RegistrationBean.isNOTInOrigionalRegistrationMode}" action="#{RegistrationBean.updateProfile2Submit}" styleClass="#{portalSkinManagedBean.contentPortletSkin.strongTextStyle}">
              <l:htmlSkinnedImage id="SaveImage" style="border:0;" url="save.gif" alt="Save Information"/>
    </h:commandLink>When I click on the generated link, I get this. And this is happening for all the h:commandLink in the application.
    http://localhost:9080/registration/updateProfile2.jsf[request.getQueryString()=null][request.getRequestedSessionId()=F1CCE237DD81D301F1C4DBA6910FFD8A][request.isRequestedSessionIdFromCookie()=true][request.isRequestedSessionIdFromURL()=false][request.isRequestedSessionIdValid()=true]Parameters:[rolePracticeAreasForm:title=rolePracticeAreasForm:primaryPracticeArea=10002javax.faces.ViewState=-2943345291093118815:-4400303399130292206rolePracticeAreasForm:practiceAreasMod2=10148.1rolePracticeAreasForm:practiceAreasMod1=10002.1rolePracticeAreasForm:Save=rolePracticeAreasForm:SaverolePracticeAreasForm=rolePracticeAreasFormrolePracticeAreasForm:otherField=rolePracticeAreasForm:fromMyAccount=1]||
    javax.servlet.ServletException: Index: 0, Size: 0
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:325)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.legaledcenter.util.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:250)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.springframework.orm.hibernate3.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:198)
         at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.jscape.framework.galileo.support.upload.UploadFilter.doFilter(UploadFilter.java:71)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at java.util.ArrayList.RangeCheck(ArrayList.java:547)
         at java.util.ArrayList.get(ArrayList.java:322)
         at javax.faces.component.AttachedObjectListHolder.restoreState(AttachedObjectListHolder.java:161)
         at javax.faces.component.UIComponentBase.restoreState(UIComponentBase.java:1427)
         at com.sun.faces.application.view.StateHolderSaver.restore(StateHolderSaver.java:121)
         at com.sun.faces.application.view.StateManagementStrategyImpl$4.invokeContextCallback(StateManagementStrategyImpl.java:289)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1253)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at com.sun.faces.application.view.StateManagementStrategyImpl.restoreView(StateManagementStrategyImpl.java:284)
         at com.sun.faces.application.StateManagerImpl.restoreView(StateManagerImpl.java:177)
         at com.sun.faces.application.view.ViewHandlingStrategy.restoreView(ViewHandlingStrategy.java:119)
         at com.sun.faces.application.view.FaceletViewHandlingStrategy.restoreView(FaceletViewHandlingStrategy.java:434)
         at com.sun.faces.application.view.MultiViewHandler.restoreView(MultiViewHandler.java:143)
         at com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:199)
         at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
         at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:110)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         ... 22 more
    ********** Message End *************Thanks

  • Overflow when converting from "1.64174e+11"

    Hi ,
    I am working on PS module and facing the above mentioned error.Whenever I am attching any material haveing value more than Rs 100000 the system gives "Overflow when converting from "1.64174e+11""
    The detailed error description is given below,
    Runtime Errors         CONVT_OVERFLOW
    Except.                CX_SY_CONVERSION_OVERFLOW
    Date and Time          24.11.2008 11:19:23
    Short dump has not been completely stored (too big)
    Short text
         Overflow when converting from "1.64174e+11"
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPFV45P" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_CONVERSION_OVERFLOW', was not
          caught in
         procedure "KALKULATIONSWERT_UEBERNEHMEN" "(FORM)", nor was it propagated by a
          RAISING clause.
         Since the caller of the procedure could not have anticipated that the
         exception would occur, the current program is terminated.
         The reason for the exception is:
         When attempting to convert the value "1.64174e+11", an overflow occurred.
    Missing RAISING Clause in Interface
         Program                                 SAPFV45P
         Include                                 FV45PF0K_KALKULATIONSWERT_UEBE
         Row                                     8
         Module type                             (FORM)
         Module Name                             KALKULATIONSWERT_UEBERNEHMEN
    Trigger Location of Exception
         Program                                 SAPFV45P
         Include                                 FV45PF0K_KALKULATIONSWERT_UEBE
         Row                                     140
         Module type                             (FORM)
         Module Name                             KALKULATIONSWERT_UEBERNEHMEN
    Source Code Extract
    Line  SourceCde
      110       MTCOM-MATNR = VBAP-MATNR.
      111       MTCOM-BWTAR = VBAP-BWTAR.
      112       CALL FUNCTION 'MATERIAL_READ'
      113            EXPORTING
      114                 SCHLUESSEL    = MTCOM
      115            IMPORTING
      116                 MATDATEN      = MBEW
      117            EXCEPTIONS
      118                 ERROR_MESSAGE = 04
      119                 OTHERS        = 04.
      120       MOVE SY-SUBRC TO SAV_SUBRC.
      121     ENDIF.
      122
      123     IF T685A-KRECH = 'C'.
      124       IF SAV_SUBRC = 0 AND MBEW-PEINH NE 0.
      125         KOMV-KPEIN = MBEW-PEINH.
      126       ELSE.
      127         KOMV-KPEIN = 1.
      128       ENDIF.
      129 * Falls keine ET da, Zielmenge nehmen (Gut-/Lastschrift, Kontrakt ...)
      130       DATA: DA_MENGE LIKE VBAP-KWMENG.
      131       IF TVAP-ETERL EQ SPACE AND VBAP-KWMENG = 0.
      132         DA_MENGE               = VBAP-ZMENG.
      133       ELSE.
      134         DA_MENGE               = VBAP-KWMENG.
      135       ENDIF.
      136       IF DA_MENGE > 0.
      137         DA_WERT         =  DA_WERT  * KOMV-KPEIN * 1000
      138                          / DA_MENGE * VBAP-UMVKN / VBAP-UMVKZ.
      139       ENDIF.
    >>>>>       KOMV-KBETR      = DA_WERT.
      141     ELSEIF T685A-KRECH = 'B'.
      142       KOMV-KBETR      = DA_WERT.
      143     ELSE.
      144       KOMV-KWERT      = DA_WERT.
      145     ENDIF.
      146
      147     KOMV-WAERS         = DA_KALKO-FWAER.
      148     RV45A-KOEIN        = DA_KALKO-FWAER.
      149     KOMV-KMEIN         = VBAP-MEINS.
      150     PERFORM KOMV_PRUEFEN USING SPACE
      151                          CHANGING SY-SUBRC.
      152 * Nur für den ersten Lauf prüfen, ob Status gesetzt werden muß
      153     IF SAV_INDEX = 1.
      154       DA_SUBRC = SY-SUBRC.
      155     ENDIF.
    156     IF SY-SUBRC = 0.
    157       PERFORM KOMV_BEARBEITEN.
    158     ENDIF.
    159   ENDDO.
    Pl suggest.
    Rgds

    Hi,
    Try to declare your variable using Packed Number:
    DATA: va_num TYPE P DECIMALS 3.
    Hope this helps.
    Patrick

  • Overflow when converting from "3.60001e+11"

    Hi Guys,
    I'm Working with my PO using MIRO, I don't know why the error occurs. I've used the SAP Version 620 but end up with an error, then used Version 710 and successfuly created the transaction, but I'm stacked with version 620. I'm not allowed to transact it using the Version 710 that's why im looking for a patch or upgrade within 620 that i can use so that it can be solve.
    I'm in need of your help guys. I know there someone out there that can help me.
    THE ERROR
    Runtime Errors         CONVT_OVERFLOW                                              
    Exception              CX_SY_CONVERSION_OVERFLOW                                   
           Occurred on     03/28/2011 at 01:00:47                                                                               
    Overflow when converting from "3.60001e+11"                                                                               
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "SAPLEINS" had to be terminated because one of the        
    statements could not be executed.                                                                               
    This is probably due to an error in the ABAP program.                                                                               
    Error analysis                                                                               
    An exception occurred. This exception is dealt with in more detail below     
    . The exception, which is assigned to the class 'CX_SY_CONVERSION_OVERFLOW', 
    was neither                                                                 
    caught nor passed along using a RAISING clause, in the procedure             
    "DISTRIBUTE_ACC_ASSIGN_RE" "(FORM)"                                         
    Since the caller of the procedure could not have expected this exception     
    to occur, the running program was terminated.                               
    The reason for the exception is:                                             
    When attempting to convert the value "3.60001e+11",                          
    an overflow occurred.                                                        
    How to correct the error                                                                               
    The exception must either be prevented, caught within the procedure   
    "DISTRIBUTE_ACC_ASSIGN_RE"                                           
    "(FORM)", or declared in the procedure's RAISING clause.              
    To prevent the exception, note the following:                         
    If the error occurred in one of your own programs or in an SAP program
    that you modified, try to correct it yourself.                                                                               
    You may able to find an interim solution to the problem               
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:

    I won't post here if i already got the answer in SAP notes. I've spent 3 days searching for the answer. The only answer i got is the upgrade but can't be consider. OSS notes didn't provide me any answer. Hope u can help me
    Edited by: docgon on Mar 30, 2011 2:38 AM

  • Upload maxdb  really needed? - Overflow when converting from 32768

    hello,
    I am facing with a run time error that does not make sense when uploading maxdb database. The error is:  "Overflow when converting from 32768".
    I am following this configuration tutorial:
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/45/17a790d8000064e10000000a1553f7/frameset.htm
    Anyway, is there a need to upload this database? We installed netweaver mobile with SQL server database.
    Help please.
    Thanks.
    Edited by: João Carneiro on Feb 8, 2011 2:10 PM

    Hi,
    Uploading MAXDB is not mandatory. It is needed only when multiple devices need to be installed with MAXDB through setup or software packages, which helps administrator to roll out multiple devices, so that end users will get all the necessary software to install the device.
    Hope this clarifies your query.
    Thanks and Regards,
    Suma

  • Grainy Image when converting from PAL to NTSC...

    Hi,
    I'm using Compressor 2.0.1 to convert a PAL movie to NTSC. I find that the output is extremely Grainy, the blacs are Muddy and the Highlights are colored.
    Any suggestions?
    Thanks and Regards,
    Rajnesh

    There are many options when converting from PAL to NTSC with Compressor's Frame Controls panel. Have you tried other settings? Note, however, that the highest quality settings are pretty slow so be prepared for a fairly long wait even on your Power Mac G5.
    Otherwise, you might want to try the freeware utility JES Deinterlacer (available on VersionTracker.com). JES Deinterlacer is pretty fast at PAL <-> NTSC conversion and the results are better than you will get with the basic settings in Compressor 2.

  • How can I keep the formatting when converting from Word to pages?

    How can I keep the formatting when converting from Word to pages?

    Use only formatting that is supported (in the same manner) in both applications. You'll need to find which that is through trial and error. Beyond those formatting options, you'll need to do some corrections, as Fruhulda suggests.
    Regards,
    Barry

  • How do I get PRO to not include codes when converting from Word?

    When converting from word, I get all of the codes printed too.How do I get it to not show in Adobe?  I'm on a deadline and right now not happy that I upgraded.  Need my old adobe back!
    Board of Directors Meeting{ PRINT \p para "[
    /EMC pdfmark [ /StPop pdfmark" }
    { PRINT \p para "[ /Subtype /P /Title () /StPNE pdfmark" }{
    PRINT \p para "[ /StBMC pdfmark" }{ PRINT \p para "[ /EMC pdfmark [ /StPop pdfmark" }
    { PRINT \p para "[ /Subtype /P /StPNE

    Thanks Bill for your reply.
    I am using Acrobat XI, just downloaded it and Word 2003.  There are no punctuations on my form, I just hit return to go to the next lines. 
    I put in a little square check box and that is also causing issues.  I checked to make sure the field codes are off on the original word doc. 
    I did try from the printer to save and adobe and I get the same codes.  Other people that I work with are able to get my document to save correctly in acrobat with the same versions of word and XI. 
    It has to be some small setting on my computer. 

  • Problems Converting from Form6i to Forms10g/Reports10g - first experiences

    Hello,
    We are converting a Forms6i application to Forms10g.
    There is one fmb-file with a size of more than 3100kb.
    First step and surprise is that after using the
    forms migration assistant for converting the file from
    6i to 10g the size is minimized and now about 1000kb.
    We did not use the migration assistant and opened all
    6i files with FormBuilder10g (WindowsXP)
    Assuming that the conversion will be done if we are saving the file in form10g-builder.
    After doing a lot of chances in the big-fmb file and saving it -
    closing the form and opening it - the changes were lost!
    (Perhaps because there was more than one crash of form builder?)
    My questions are:
    - how can i check if the integrity of my fmb-file is ok?
    - is the minimum hardware requirement for developing a 10g-FMB file on a PC more than > 256MB RAM/450 MHz Processor?
    - for WindowsXP there is a DeveloperSuite 10g PreView -
    what does that mean? when will the final version be released?
    My experiences are:
    - if you are integrating a 10g Report with a parameter form in forms10g: first it does not work - you have to integrate a javabean in forms (encrypted userid in cookie
    before calling the report) or the other solution i read was funny with nearly no security (userid in hex in the url).
    how can u call a 10g report from the web without writing all your credentials in cgicmd.dat and without having oid (single sign on)?
    a solution would be writing your credentials encrypted in a cookie and then calling the report with the parameter form -
    but how? if you have never done java before?
    - handling with formbuilder10g is much more slower than formbuilder6i: is forms10g written in java?
    - you have to do a lot of configuration before calling a report on your development pc.
    thx for any comments and tips
    ps:
    shall i use webforms10g now or learn java/jdeveloper or wait for java.net (=cooperation Microsoft and Sun)? <

    Hello Frank,
    Thank you for your 9i/10i secure calls to web.show_document solution. I spend hours with it but could'nt get it working. I followed all the instructions from the pdf document. Everything looks fine ( java console output included ) but the cookie isn't created.
    I watched the tcp packet for the http header to see if any cookie information was included, but this isn't the case. I switched browsers (IE5 and IE6) and changed their security settings to very low. Nothing seems to matter. Still getting the REP-51018: Need database user authentication error. What am I doing wrong???
    I'm running 9.0.4 (10g) forms reports services edition on Windows 2000.
    ============
    Forms code :
    ============
    DECLARE
    rep_url varchar2(2000);
    BEGIN
    rep_url:='http://cen0060s:9989/reports/rwservlet?server=repcl&report=ebn2900r.rep'
    ||'&desformat=htmlcss&destype=cache&envid=ebn&userid=';
    set_custom_property('control.userid_bean',1,'WRITE_LOGOUTPUT','true');
    set_custom_property('control.userid_bean',1,'ADD_USERID',
    get_application_property(username)||'/'||
    get_application_property(password)||'@'||
    get_application_property(connect_string));
    set_custom_property('control.userid_bean',1,'SET_MAX_AGE','30');
    set_custom_property('control.userid_bean',1,'SET_COOKIE_DOMAIN','.dlg.agro.nl');
    set_custom_property('control.userid_bean',1,'SET_COOKIE_PATH','/reports/');
    set_custom_property('control.userid_bean',1,'WRITE_USERID_COOKIE','10g');
    SYNCHRONIZE; <-- Metalink bulletin regarding REP-51018 errors
    WEB.SHOW_DOCUMENT(rep_url, '_blank');
    END;
    ===============
    Applet output :
    ===============
    Loading http://cen0053s/forms90/java/frmrwinteg.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Versie van Forms-applet is: 9.0.4.0
    4.0 (compatible; MSIE 5.5; Windows NT 5.0; LNV; .NET CLR 1.1.4322)
    FrmReportsInteg0: Debugging true
    FrmReportsInteg0: Adding new userid string "EBN_OWNER/[email protected]"
    FrmReportsInteg0: Default cookie domain:
    FrmReportsInteg0: set RW_AUTH10g
    FrmReportsInteg0: Arguments: encryptionKey=reports9i; Reports version=RW10g
    FrmReportsInteg0: Cookie value for RW10g is: EBN_OWNER/[email protected];1093349923071:30
    FrmReportsInteg0: Encoded cookie value is: ZF/zcPJEKWXsS9Rh4pfD3079dl+p4fnz20rz8aM2PdMW4ITpb+rYdtWOF2GUmqkXrw==
    FrmReportsInteg0: Complete cookie string is: userid=ZF/zcPJEKWXsS9Rh4pfD3079dl+p4fnz20rz8aM2PdMW4ITpb+rYdtWOF2GUmqkXrw==
    FrmReportsInteg0: Added domain " " to cookie
    FrmReportsInteg0: Generated Cookie String: userid=ZF/zcPJEKWXsS9Rh4pfD3079dl+p4fnz20rz8aM2PdMW4ITpb+rYdtWOF2GUmqkXrw==; domain= ; path=/
    FrmReportsInteg0: IE Cookie Set

  • How do I make the images look clear in PDF when converted from MS Word?

    Hi
    When I convert an MS Word-2010 file (which  contains  images also) to PDF through Acrobat X Pro, some images which are of bigger size do  not look very clear. Is there any workaround for this problem? Please  reply. It's quite urgent.
    Thanks

    In my experience (not necessarily the best), I find it best to rescale image copies with a graphics package before importing into WORD or whatever. Resize and then set the resolution to about 600 dpi before you import. The issue of using the clipboard appears to be an issue with WORD 2007 and such. I clipped a 300 dpi image into my technical word processor and then back to a graphic editor and all was preserved. I did the same with WORD 2007 and everything got messed up and the resultant image looked terrible. In fact, in WORD I got the same result if I imported the picture or clipped it from my graphics package. So it appears there are some strange issues with WORD itself.
    I am not trying to make any claims here, but just making an observation. The original image was at 300dpi. WORD also changed the 8-bit B&W photo to a 24-bit photo and reduced the number of pixels from 774 per width to 252 per width about a factor of 3 reduction in pixel resolution when clipped. When I expanded the image size in WORD, then the clip size increased also. When I do the same expansion of the image size in my word processor and then clip back to IrfanView, the original image is retained. My only conclusion is that OFFICE 2007 plays around with graphics and it does not seem to make any difference if you clip the image into WORD or import it, WORD still messes around with it. My guess this is just a general MS thing.
    Some folks a year or 2 ago got me to looking at nice sunsets in PPT. There were all sorts of issues with creating the PDF (AA8) from the PPT to get a reasonable result. The image obtained from the MS converter seemed to keep the picture nice. The images obtained from PDF Maker and printing to the Adobe PDF printer gave slightly different results and tended to break the image into smaller parts that often left little lines in the picture if you zoomed in. Folks were blaming this on Acrobat and yet using the same version of Acrobat with OFFICE 2003 the sunset came out great.
    This post is a bit jumbled, but the jist is that a lot of the graphics issues with WORD files seem to go back to WORD itself  and possibly with hooks MS put into OFFICE (OK, no proof on that and probably impossible to prove) to mess up Acrobat conversions. It would be interesting to see if the same result for the PDF is obtained from other converters, or if it is just something that OFFICE 2007 does "nicely" for Acrobat.
    Sorry for going off the deep end, but I just have a major annoyance with OFFICE starting with 2007, particularly for things like this. They couldn't get equations right either, just one more thing that they messed up. As far as I am concerned, a lot of the issues stem from MS and not Acrobat.
    Just for the heck of it, I ran the PPT picture through Open Office and used both the PDF export and the print to the Adobe PDF printer. Both retained the full image. However, when clipping from OOP to Irfanview, the resolution was 96dpi. The result seemed to be dependent on the zoom. So there are definitely some issues with copy and paste, at least with how some packages handle it.

  • How to avoid the dialogue when converting from context menu

    This is a follow-up to http://forums.adobe.com/message/2016146#443364 which was locked due to a bug.
    i would like to know how i can avoid the 'save as' dialogue when using the context menu to convert a word file to pdf using windows XP/acrobat 8/word 2007.
    so far, it always prompts me for the filename, which is annoying as it does not allow me to batch-convert several files and let the thing run its course.
    the solution provided by Steve in the other thread does not work - even if the plugin from word does not propt for a filename, it still does when triggered from explorer/context menu.
    so back to square one: how to avoid that dialogue when not opening word at all?
    cheers, thanks for any help. michael

    For a permanent change, START>PRINTERS>right click on Adobe PDF printer and select properties>General>Printing Preferences>Adobe PDF Settings. Under the settings tab, uncheck the box related to asking for a name. Pretty sure that is the location, but it may vary with version.

Maybe you are looking for

  • Call RFC (Abap) with Javascript

    Hi all, i'm new to Javascript. Now i have to write a small piece of code in Javascript that calls an Abap RFC. Does anyone have an example for something like that ? Greetings Henning

  • Hierarchy Drill Down in Visual Composer 7.0 SP more than 7

    Hi Every one Iam working in Visual Composer, when iam drilling down the herarchy node(+) in the Visual Composer not able to go to the detail level...and I have written all the code of API in the Drill down Functionality... Can you please help me out

  • Help for jsp plugin

    The applet is not showing image on applet when running through following url. Remember It runs by simple applet tag in html but not through <jsp:plugin tag in jsp file. the following two links for same inker.jar file. not ok not running=====>"http://

  • SD-Third party sales- Invoice

    Hi ,   One of my customer doing third party sales , Sales order-PO-MIGO-MIRO -vf01 The customer completed SO-PO-MIGO-MIRO...when doing VF01 it displaying an erros "ITEM IS NOT RELEVANT FOR BILLING" But in my item category TAS the billing relevance fi

  • Contents in XMLParser for PL/SQL

    How do you get the contents between tags in a XML document? example: <ejb name="My bean"> <maximum-pool-size>20</maximum-pool-size> </ejb> I want the "20"-value. How do your extract this from a node in a DOM tree? thanx.