Values may not produce the intended effect

Hi, I am building a website with Dreamwweaver CS5. I am have createda template and using CSS. In the content section I have created tables to be able to type text. In Dreamweaver all looks good, the text is within the content image I have created with CSS rules. But when I preview in browsers the text is off the content, displaced, and the content itsefl has srunk in size.
When I  check the compatibility with other browser it gives me this message:
´Support for the top, text-top, middle, bottom, and text-bottom values of the CSS property vertical-align is incomplete; these values may not produce the intended effect.
Affects: Internet Explorer for Macintosh 5.2´
Does anyone know how to fix this? Thank you.

Yep, DWCS5 still had an offline validator which would now be considered extremely outdated. DWCS5.5 added the online W3C validation tool which can be accessed at SnakEyez link, which is continually updated as standards are implemented.
IE5 should not be part of your "develop for" list though and, if you have a machine old enough to run it, you should stop using it for preview purposes as well. It really is a dead browser and won't help you in any appreciable way to get your sites working in modern browsers.
Text issues could be caused by a lot of different factors, if you could post a link to your site, we could take a look and see what's going on for you.

Similar Messages

  • Report Issue - A subquery filter may not reference the current report

    Hi,
    I a, trying to create a drill down report - I am getting below error when I drill down from summary report to detail -
    A subquery filter may not reference the current report (or contain a circular reference to any report).
    Error Details
    Error Codes: S6C66RYK:WIF3IYGO
    Recursion limit exceeded in Xml Expression Visitor
    The issue is I have a budget report which will drill down to display amount by each period -
    Jan-10 Feb-10 Mar-10
    1223 123 10
    Now I am trying to display detail GL transactions by clicking the amount field.
    This means summary report should pass period along with amount to display detail GL transactions.
    Please help me to resolve this issue.
    Thanks,
    Poojak

    Explain exactly how you create your 2 reports.
    The second one must have "is prompted" filters if you want it to use the values of the first one.

  • The item referred to by this shortcut cannot be accessed. You may not have the appropriate permissions

    Hi
    I originally posted this in the Windows 7 Networking forum and they advised to post it here.
    We use Windows 7 SP1 clients with Roaming Profile and Folder Redirection and they are connected to a Windows 2008 SP2 server.  We are getting issues when someone tries to open files on their redirected Desktop and they get the message "'The item
    referred to by this shortcut cannot be accessed. You may not have the appropriate permissions" if you click browse it then defaults to a different users profile.  If you click through the errors the file eventually loads.  If you open Word from
    the Start menu and then browse to the file it opens fine.  We have found that deleteting the Normal.DOTM file sometimes fixes the error, but only seems effective 50% of the time.  This doesn't happen for all users, and seems to occur in small
    groups and not all the time.  We have also had the same message come up with someone trying to open Word files an online learning resource we have created.
    There are a couple of events showing for about the time the error occured they are:
    Type Error Source Application Error Category Name 100 Event 1000
    Faulting application name: WINWORD.EXE, version: 14.0.4762.1000, time stamp: 0x4bae25b7
    Faulting module name: wwlib.dll, version: 14.0.4762.1000, time stamp: 0x4bae2623
    Exception code: 0xc0000005
    Fault offset: 0x00034b81
    Faulting process id: 0x1734
    Faulting application start time: 0x01d0234ef75c42aa
    Faulting application path: C:\Program Files (x86)\Microsoft Office\Office14\WINWORD.EXE
    Faulting module path: C:\Program Files (x86)\Microsoft Office\Office14\wwlib.dll
    Report Id: 6f74438b-8f42-11e4-9e45-00c2c6506cb5
    Type information Source Office Software Protection Platform Service Category Name 0 Event 1003The Software Protection service has completed licensing status check.
    Application Id=59a52881-a989-479d-af46-f275c6370663
    Licensing Status=
    1: 1f76e346-e0be-49bc-9954-70ec53a4fcfe, 1, 1 [(0 [0x00000000, 1, 0], [(?)(?)( 1 0x00000000 30 0 msft:rm/algorithm/hwid/4.0 0x00000000 0)(?)(?)(?)])(1 )(2 )]
    2: 9da2a678-fb6b-4e67-ab84-60dd6a9c819a, 1, 0 [(0 [0xC004F014, 0, 0], [(?)(?)(?)(?)(?)(?)])(1 )(2 )]
    3: dd457678-5c3e-48e4-bc67-a89b7a3e3b44, 1, 0 [(0 [0xC004F014, 0, 0], [(?)(?)(?)(?)(?)(?)])(1 )(2 )]
    The software protection message we get in clusters of about 6 or more multiple times through the day

    Hi
    An update.  We have approx 400 people with roaming profile/folder redirection on Windows 7/2008 and this only seems to have occurred to about 15 people, and then seems to clear up for a period and then happens again.  We also have a similar number
    of people with roaming profile/folder redirection on Windows 7/2003 system and we haven't had a report of this issue happening on this setup.
    So far we haven't been able to replicate the issue using a test account, so are struggling to find out what is causing it and why it is so random.
    Regrds
    Dave

  • Exe file not producing the output files

    Could anyone please help me with my exe file. I have an exe file "exeFile" which takes more than one file as input from the source "c:/files" and produces some files as output into the destination "c:/files". Both my source and destination is same. My code given below is neither showing any error nor outputting any files. My code is:
    private static void compilingFiles() throws IOException
         String FirstParam = "C:/files";      
         String SecondParam = "C:/files";
         Process proc =Runtime.getRuntime().exec("cmd /c start /MIN C:/files/exeFile " + FirstParam, (String[])null, new File(SecondParam));
    }

    After going through The reference, I modified my code as under. My first exe file "tex" is doing the necessary as before, that is producing the output files to the destination, but the second exe file "fi2t1" is not producing the necessary output.
    My output after running this file is:
    <ERROR>
    </ERROR>
    Process exitValue1: 0
    <ERROR>
    </ERROR>
    Process exitValue2: 0
    <ERROR>
    </ERROR>
    Process exitValue1: 0
    <ERROR>
    </ERROR>
    Process exitValue2: 0
    <ERROR>
    </ERROR>
    Process exitValue1: 0
    <ERROR>
    </ERROR>
    Process exitValue2: 0
    So as per The reference, I think my code is right - "So, MediocreExecJavac works and produces an exit value of 2. Normally, an exit value of 0 indicates success; any nonzero value indicates an error.".
    So please tell me where am I wrong. My code is:
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.util.*;
    public class FontDriverCompile
         public FontDriverCompile()
         void compileFile(File newFile, String renameSub, File outputfile) throws IOException
              String FirstParam = "C:\\Temp\\sample\\font-driver.tex";  
              String FirstParam2 = "C:\\Temp\\sample";
              String SecondParam = "C:\\Temp\\sample";  
              try
                   Process proc1 =Runtime.getRuntime().exec("cmd /c start /MIN C:/Temp/sample/tex " + FirstParam, (String[])null, new File(SecondParam));
                   InputStream stderr = proc1.getErrorStream();
                   InputStreamReader isr = new InputStreamReader(stderr);
                   BufferedReader br = new BufferedReader(isr);
                   String line = null;
                   System.out.println("<ERROR>");
                   while ( (line = br.readLine()) != null)
                        System.out.println(line);
                   System.out.println("</ERROR>");
                   int exitVal1 = proc1.waitFor();
                   System.out.println("Process exitValue11: " + exitVal1);
              catch (Throwable t)
                   System.out.println("t.printStackTrace()_1");
                   t.printStackTrace();
              try
                   Process proc2 =Runtime.getRuntime().exec("cmd /c start /MIN C:/Temp/sample/fi2t1 " + FirstParam2, (String[])null, new File(SecondParam));
                   InputStream stderr = proc2.getErrorStream();
                   InputStreamReader isr = new InputStreamReader(stderr);
                   BufferedReader br = new BufferedReader(isr);
                   String line = null;
                   System.out.println("<ERROR>");
                   while( (line = br.readLine()) != null)
                        System.out.println(line);
                   System.out.println("</ERROR>");
                   int exitVal2 = proc2.waitFor();
                   System.out.println("Process exitValue2: " + exitVal2);
              catch (Throwable t)
                   System.out.println("t.printStackTrace()_2");
                   t.printStackTrace();
    }Message was edited by:
    sony_tj

  • "Windows cannot access the specified device,path, or file.You may not have the appropiate permission

    We subscribe to a service called "Vault" which provies its documents in encrypted PDFs using the etd format. As well as Digitial Editions we have Acrobat Reader 9 installed on our PCs (Windows XP,SP2). When a user tries to download any of the documents they are seeing the following error:
    "Windows cannot access the specified device,path, or file.You may not have the appropiate permissions to access the item."
    However, if they open Digitial Edtions (or have had it open at some point in the past) before they download the document it opens without any problems. We use ZEN works to manage our PCs, and we use something called Dynamic Local User (DLU) which means that when a students logs into a PC the user's local Windows account is created on the fly, and then when they log out it is then deleted. This means that they are effectively using Digitial Edtions for the first time everytime they log into a PC.
    As anyone else seen the above error? Also, is there a way of stopping it? What does Digital Editions do the first time it is opened? Are there registry keys that we can add, which emulates the opening of Digital Editions so it doesn't have to be opened first before we can download the Vault documents?
    Any advice/tips would be most welcome.

    Hi
    Some required information are needed for us to help you.
    Hi NabeelOmer,
    We wonder if you have taken any action such as system restore after this issue occurred.
    You might also try this command to restore your access control list.
    Run this command to navigate to the drive letter, example is D
    D:
    To reset all permissions, run this command
    icacls * /reset /t /c /q
    Visual Studio is a very invasive program and which provides the ability to enumerate projects and solutions for system, user should never try uninstalling it manually without any guidance.
    Visual Studio made changes for your whole system, if the file has been moved or deleted this error would occur.
    Since you mentioned that you get this error almost everywhere even in control panel. We suggest you repair/reinstall your Visual Studio first and check if it could be fixed.
    How to: Repair Visual Studio
    https://msdn.microsoft.com/en-us/library/aa983433%28v=vs.90%29.aspx?f=255&MSPPError=-2147217396
    Regards
    D. Wu

  • Checkbox error "The Entered Value is Not on the List of Valid Values".

    Hi All,
    I have a check box attribute inside a node which is bounded to a field of type CHAR 1. I have given the property and value for the attribute as follows:
    Attribute Name     ZCHECK
    Type assignment     Type
    Type                          ZTABLE-ZCHECK
    Read-only                         0
    Default Value     
    Null Value                           0
    Input Help Mode     Automatic
    Determined Input Help     ZCHECK
    Type of Input Help     Fixed values for domains
    Formatting     
    Compression     Default Value
    I have created an onToggle Event for it.
    Now when i execute my component i do the following.
    First i click on a button called 'EDIT'. Now the check box comes to edit mode. Now when i click on the checkbox i get the following error. "The Entered Value is Not on the List of Valid Values".
    When i try to debug, there is no problem in the 'INIT' method. The error is throw even before going inside the onToggle Event for check box.
    Please explain how to over come this.

    Hi,
    Check your field ZTABLE-ZCHECK, if it is of type CHAR1 then only possible values for checkbox should be 'X' and ' '.
    May be your domain has some other values in Fixed Value List.
    its better to bind checkbox with attribute of type boolean
    Also, the input help for attribute bound to checkbox doesn't makes any logic.
    Regards
    Manas Dua
    Edited by: Manas Dua on Feb 26, 2010 3:11 PM

  • Reader 11.0.0.1 An error exist on this page. Acrobat may not display the page correctly. Please cont

    "An error exist on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem."
    Any ideas how to get rid of this? Realistically its not practical to contact them, nor the other 1,000,000 web site owners whom host pdf's.
    I really would like to disable the pop up only.
    Seem to get it on quite a few PDF's. This web page seems to have quite a few that produce the problem.
    http://www.2010.cannell.co.uk/manuals/manuals_porsche.html
    click on the link to the pdf, scroll down a few pages and it pops up.
    I do not get the error when using reader 10, only the new 11.0.0.1 version.

    Hi Pat,
    No problem withthe link you supplied.
    This is one that has the problem "948 Cayenne Owners Manual - 2008 - Turbo" http://www.2010.cannell.co.uk/manuals/manuals_porsche.html
    Just FYI, I look after 8000 clients, have the same problem on 3 of my test machines.
    All windows 7, 64 bit  IE9 fully patched.
    Using 32 bit IE
    Testing prior to upgrade from 10 to 11

  • I am running InDesign CS5.5 and trying to open an In Design File but getting an error message. " Cannot open the file "PDavidLCover.indd". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file

    I am running InDesign CS5.5 and trying to open an In Design File but getting an error message. " Cannot open the file "PDavidLCover.indd". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file me be open in another application."Please help I really need to get this file open.

    Since you've shown us the folder contents it's a good bet it isn't in use (no lock file). And it doesn't look like the file is mis-named as there doesn't seem to be anything else there that would be the .indd file (but just in case, open it in TextEdit and paste the first few lines here so we can see what the file header says), so the most likely case is the file is damaged. Is that on a removable device of some sort?
    You can try the tool at Repair corrupt InDesign Adobe files on Mac OS X  or send me a link to the file by private message and I'll try the recovery tool I have for Windows.

  • Print Problem - PDF is OK on Windows 7, but OK on Windows XP with "Acrobat Reader An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem."

    I have received a PDF which prints fine in Windows 7 but with Windows XP I get "Acrobat Reader An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem." and a blank piece of paper passes through the printer. I appreciate that Windows XP is no longer supported but I would like to think that the solution to this problem is not too difficult!
    I have tried Acrobat 9, 10 and 11.
    Any advice (apart from use Windows 7! ) would be most welcome.
    Many thanks.

    If you use the same Adobe Reader versions with the same PDF on Windows 7 and XP, then I would expect the outcome to be the same.
    Is this a local or online PDF?
    If local, is the file really exactly the same?
    If online, in what browser?

  • When I try to open iTunes, I get this error message: Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item. I get a different error message if I try to uninstall it.

    When I try to open iTunes, I get this error message: "Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item." I've been able to uninstall all Apple products except iTunes as I get this error message: "The Installer has insufficent privileges to modify this file: C:\Program Files\i Tunes\Acknowledgments.rtf." I've had the iTunes on my laptop for a year and a half with no problems until now.

    Any suggestions please?

  • Error in Acrobat 8: An error exists on this page. Acrobat may not display the page correctly...?

    Hi,
    We perform the e-signing on any PDF using our custom e-signature plug-in. Once that's done, when we try re-opening the PDF in Acrobat version 8.0.0.0, we get the following error:-
    "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem"
    Please note that this error occurs intermittently and is NOT observed in Acrobat 7 or 9.  Also, when a plain PDF is opened (i.e. a PDF without any signature on it) then there is NO error.
    Could you let me know what could be the issue here? I read it in Acrobat 8.1.3 release notes that such an error was a known bug in version 8.0.0.0 (http://kb2.adobe.com/cps/407/kb407016.html), but I am not sure of its cause.
    Let me know your comments/suggestions.
    Thanks!

    I am getting the same error even in Acrobat version 8.1.3.
    Additionally, I noticed that if we click on menu ‘Advanced->Sign&Certify->Preview Document’, then we get a notification as “This document is not PDF/SigQ compliant and may display inconsistently”. On clicking  ‘View report’ on that notification, the below dialog pops up. It has errors listed as:-
    Code 4000 : Unrecognized PDF content. The document contains PDF content or custom content not supported by the current version of Acrobat.
    Code 4002: PDF content contains erros.
    However, if we sign the PDF using default adobe signature functionality and reopen that PDF, the error does NOT come and the notification also says ‘This document is PDF/SigQ compliant’.
    Can anybody please suggest what could be missing in the custom sign that we apply? Is it because of any of the missing fonts or any other resources?
    Awaiting reply!
    Regards.

  • Getting error "Cannot open the file "*****.INDD". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file may be open in another application."

    How to fix this problem
    "Cannot open the file "*****.INDD". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file may be open in another application."

    When I have seen this message it is either when I try to open a document with an older version of Indesign E.g. an indesign 2014 document with Indesign CC.
    The other time I have seen it is to open an Indesign CC document with Indesign 2014 which does not have Mindsuite - a plugin I use. Mindsuite, as yet, has not upgrade the plugin for Indesign 2014 therefore it recognises that a the document was created withe a plugin that the 2014 version does not have installed.
    I believe your problem will be something like that.

  • Error in accessing I tunes-"Windows cannot access the specified device,path, or file. You may not have the appropriate permission to access the item"?

    Question- Cannot access to Itunes after downloading photos. Message was "Windows cannot access to the specified device, path or file. You may not have the appropriate permissions to access the item". Plse advise

    Do you get this message when you're trying to sync apps?

  • A small but very irritating bug in Mail: after pressing the spacebar after typing an apostrophe in a word such as "we're", the cursor moves to the left i.e. backwards, and not to the right, effectively deleting a space and not creating one.

    When composing an email in Mac Mail I've noticed a small but very irritating bug: pressing the spacebar after typing an apostrophe in a word, e.g. "we're", the cursor moves to the left i.e. backwards, and not to the right, effectively deleting a space and not creating one.
    Any ideas?

    I just recreated this problem on my iMac (wired KB, no wireless KB) by changing Mail > Preferences > Composing > Spellcheck from "as I type" to "never". Then type a contraction ending in 're and the space bar causes the cursor to jump back as others have stated, to the spot 'r|e
    Next, I went into System Preferences > Keyboard > Text, and turned off "use smart quotes" and the problem went away again.
    From this point (smart quotes off, spell checking never), if I turn Smart Quotes ON, the problem returns.
    The problem is dependent on the state of both settings.
    The spacebar in Mail "works" if I have either of the following setting combinations:
    Keyboard: smart quotes OFF, Mail: check spelling ANY SETTING
    Keyboard: smart quotes ON, Mail: check spelling AS I TYPE
    Other combinations FAIL
    Keyboard: smart quotes ON, Mail: Check spelling NEVER
    Keyboard: smart quotes ON, Mail: Check Spelling WHEN I CLICK SEND
    Looks to me like there's a bug in Mail > Preferences > Check spelling > NEVER and WHEN I CLICK SEND that interacts badly with Keyboard > Smart quotes ON.
    Thanks.
    Todd Smithgall

  • Warning (22,14): PLW-07204: may not be the conversion rate as a column.....

    Good morning
    To implement the following procedure from Oracle XE not me taking the last block, which shows me the following error at line 22 -> Warning (22,14): PLW-07204: may not be the conversion of column type will result in a suboptimal query plan
    create or replace Procedure Parse_EAN( pi_EAN In Number
    , pi_Banco In Number
    , pi_Num_Cuenta In Number )
    As
    v1 utl_file.file_type;
    v2 varchar2(100);
    Begin
    v1 := utl_file.fopen('PUBLIC_ACCESS','prueb' || to_char(sysdate, 'yyyymmdd') || '.dba', 'w');
    v2 := '01' || LPAD(pi_EAN, 13, 0) || TO_CHAR(TRUNC(SYSDATE), 'YYYYMMDD') ||
    LPAD(pi_Banco, 3, 0) || LPAD(pi_Num_Cuenta, 15, 0) || ' ';
    utl_file.put_line(v1, v2);
    For rec in (SELECT '02' || LPAD(PG.CODIGO_CUENTA, 25, 0) || LPAD(PG.VALOR_PAGO, 13, 0) ||
    LPAD(PG.COD_PROCEDENCIA, 2, 0) || LPAD(ROWNUM + 1, 7, 0) || ' ' cuerpo
    FROM PAGOS PG
    WHERE PG.EAN = pi_EAN) Loop
    utl_file.put_line(v1, rec.cuerpo);
    End Loop;
    For rec in _(SELECT '09' || LPAD(COUNT(PG.CODIGO_CUENTA), 9, 0) ||_
    LPAD(SUM(PG.VALOR_PAGO), 18, 0) || ' ' final1
    FROM PAGOS PG
    WHERE PG.FECHA_PAGO = (SELECT TO_CHAR(SYSDATE,'DD/MM/YYYY') FROM DUAL)
    AND PG.EAN = pi_EAN) Loop
    utl_file.put_line(v1, rec.final1);
    End Loop;
    utl_file.fclose(v1);
    Exception
    when others then
    dbms_output.put_line(sqlerrm);
    End;
    What should I do to run the whole procedure?
    tables...
    CREATE TABLE "PAGOS"
    (     "ID_PAGOS" NUMBER NOT NULL ENABLE,
         "CODIGO_BARRAS" VARCHAR2(62),
         "EAN" NUMBER(13,0),
         "CODIGO_CUENTA" NUMBER(18,0) NOT NULL ENABLE,
         "VALOR_PAGO" NUMBER(13,0) NOT NULL ENABLE,
         "FECHA_PAGO" DATE DEFAULT SYSDATE NOT NULL ENABLE,
         "NUM_LOTE" NUMBER DEFAULT NULL NOT NULL ENABLE,
         "COD_PROCEDENCIA" NUMBER DEFAULT 1 NOT NULL ENABLE,
         "FECHA_MODIFICACION" DATE DEFAULT SYSDATE NOT NULL ENABLE,
         "MODIFICADO_POR" VARCHAR2(50) DEFAULT USER NOT NULL ENABLE,
         "NRO_DOCUMENTO" NUMBER(9,0) NOT NULL ENABLE,
         CONSTRAINT "PAGOS_PK" PRIMARY KEY ("ID_PAGOS") ENABLE,
         CONSTRAINT "PAGOS_UK2" UNIQUE ("CODIGO_CUENTA", "NUM_LOTE", "FECHA_PAGO", "VALOR_PAGO") ENABLE,
         CONSTRAINT "PAGOS_UK1" UNIQUE ("CODIGO_BARRAS", "FECHA_PAGO") ENABLE
    ALTER TABLE "PAGOS" ADD CONSTRAINT "PAGOS_PROCEDENCIA_PAGO_FK1" FOREIGN KEY ("COD_PROCEDENCIA")
         REFERENCES "PROCEDENCIA_PAGO" ("ID_PROC_PAGOS") ENABLE
    and...
    CREATE TABLE "PROCEDENCIA_PAGO"
    (     "ID_PROC_PAGOS" NUMBER NOT NULL ENABLE,
         "DESCRIPCION_PAGO" VARCHAR2(80) NOT NULL ENABLE,
         "FECHA_MODIFICACION" DATE DEFAULT SYSDATE NOT NULL ENABLE,
         "MODIFICADO_POR" VARCHAR2(60) DEFAULT USER NOT NULL ENABLE,
         CONSTRAINT "PROCEDENCIA_PAGO_PK" PRIMARY KEY ("ID_PROC_PAGOS") ENABLE,
         CONSTRAINT "PROCEDENCIA_PAGO_UK1" UNIQUE ("ID_PROC_PAGOS", "DESCRIPCION_PAGO") ENABLE,
         CONSTRAINT "PROCEDENCIA_PAGO_UK2" UNIQUE ("DESCRIPCION_PAGO") ENABLE
    CREATE OR REPLACE TRIGGER "PROCEDENCIA_PAGO_TRG"
    before insert on PROCEDENCIA_PAGO
    for each row
    BEGIN
    SELECT PROCEDENCIA_PAGO_SEQ.NEXTVAL INTO :NEW.ID_PROC_PAGOS FROM DUAL;
    END;
    ALTER TRIGGER "PROCEDENCIA_PAGO_TRG" ENABLE
    Thank you very much for your cooperation_
    GOOD DAY ..._

    this is my solution
    trunc (pi_Fecha) the variable
    truncated variable that goes into the procedure trunc (variable) Parse_ean (x, y, z, variable)
    in this case the variable that enters pi_Fecha
    create or replace
    Procedure Parse_EAN( pi_EAN In Number
    , pi_Banco In Number
    , pi_Num_Cuenta In Number
    , pi_Fecha In Date)
    As
    v1 utl_file.file_type;
    v2 varchar2(100);
    fecha varchar2(8);
    Begin
    -- Aqui inicia el bloque de proceso que generar el archivo de Acuavalle.
    IF (pi_Ean = 7709998001589) then
    v1 := utl_file.fopen('PUBLIC_ACCESS','0'|| LPAD(pi_Banco,3,0)
    || to_char(pi_Fecha, 'yyyymmdd') || '.dba', 'w');
    v2 := '01' || LPAD(pi_EAN, 13, 0) || TO_CHAR(TRUNC(pi_Fecha), 'YYYYMMDD')
    || LPAD(pi_Banco, 3, 0) || LPAD(pi_Num_Cuenta, 15, 0)
    || ' ';
    utl_file.put_line(v1, v2);
    For rec in (SELECT '02' || LPAD((PG.CODIGO_CUENTA)||(NRO_DOCUMENTO), 25, 0)
    || LPAD(PG.VALOR_PAGO, 13, 0) || LPAD(PG.COD_PROCEDENCIA, 2, 0)
    || LPAD(ROWNUM + 1, 7, 0) || ' ' cuerpo
    FROM PAGOS PG
    WHERE PG.EAN = pi_EAN) Loop
    utl_file.put_line(v1, rec.cuerpo);
    End Loop;
    select to_char(sysdate,'DD/MM/RR')
    into Fecha
    from dual;
    For rec in (Select '09'
    || LPAD(COUNT(VALOR_PAGO), 9, 0)
    || lpad(sum(PG.VALOR_PAGO), 18,0)
    ||' ' final1
    From pagos PG
    Where PG.FECHA_PAGO = pi_Fecha
    AND PG.EAN = pi_EAN) Loop
    utl_file.put_line(v1, rec.final1);
    End Loop;
    utl_file.fclose(v1);
    end if;
    -- Aqui termina el bloque de proceso que generar el archivo de Acuavalle.
    Exception
    when others then
    dbms_output.put_line(sqlerrm);
    End;
    Edited by: Rey-user6318244 on 24/03/2009 11:47 PM

Maybe you are looking for