Rolando

I have a problem with an application in the HTML DB that I am creating. the problem is: Error print success message checksum content error: Action procesada./6À1Ç9ÁFE08952600ACEC1E0188ÅC/: 4730F16841157B21D061A969F6640A61. the design I did it with Oracle designer.
the model contains three tables:
1. file .tab the designer
PROMPT Creating Table 'CONSULTOR'
CREATE TABLE CONSULTOR
(ID_CEDULA NUMERIC(12) NOT NULL
PROMPT Creating Table 'CONCEPTO'
CREATE TABLE CONCEPTO
(ID_CONCEPTO NUMERIC(3) NOT NULL
,DESC_CONCEPTO VARCHAR2(120)
,FACTURABLE VARCHAR(5)
PROMPT Creating Table 'GENERAL'
CREATE TABLE GENERAL
(ID_GENERAL NUMERIC(5) NOT NULL
,CONC_ID_CONCEPTO NUMERIC(3) NOT NULL
,CONS_ID_CEDULA NUMERIC(12) NOT NULL
,FECHA_ACT DATE
,DESCRIPCION_ACT VARCHAR2(120)
,CANTIDAD_HORAS NUMERIC(5)
2. file .con the designer
PROMPT Creating Primary Key on 'CONSULTOR'
ALTER TABLE CONSULTOR ADD (CONSTRAINT
CONS_PK PRIMARY KEY
(ID_CEDULA))
PROMPT Creating Primary Key on 'GENERAL'
ALTER TABLE GENERAL ADD (CONSTRAINT
GENE_PK PRIMARY KEY
(ID_GENERAL))
PROMPT Creating Primary Key on 'CONCEPTO'
ALTER TABLE CONCEPTO ADD (CONSTRAINT
CONC_PK PRIMARY KEY
(ID_CONCEPTO))
PROMPT Creating Foreign Key on 'GENERAL'
ALTER TABLE GENERAL ADD (CONSTRAINT
GENE_CONC_FK FOREIGN KEY
(CONC_ID_CONCEPTO) REFERENCES CONCEPTO
(ID_CONCEPTO))
PROMPT Creating Foreign Key on 'GENERAL'
ALTER TABLE GENERAL ADD (CONSTRAINT
GENE_CONS_FK FOREIGN KEY
(CONS_ID_CEDULA) REFERENCES CONSULTOR
(ID_CEDULA))
3 file . lis de designer
Reconcile Report: C:\Documents and Settings\rolando\Mis documentos\aso\SDSDF.lis
Generated on Tue Jun 07 09:55:25 2005 by Server Generator 9.0.4.3.14
====== ======== ================ ==============
Object Property Repository Value Database Value
====== ======== ================ ==============
Object Property Repository Value Database Value
Table CONCEPTO * NOT IN DATABASE * ***
Object Type
Data Persistence Permanent
Cluster
Index Only No
Cached
Initial Transactions
Max Transactions
Percent Free
Percent Used
Initial Extents
Next Extent
Min Extents
Max Extents
Percent Increase
Freelists
Freelist Groups
Tablespace
Parallel No
Comment
Column ID_CONCEPTO * NOT IN DATABASE * ***
Datatype NUMERIC
Max Length 3
Scale
Mandatory Yes
Default Value
Domain
Comment
Column DESC_CONCEPTO * NOT IN DATABASE * ***
Datatype VARCHAR2
Max Length 120
Scale
Mandatory No
Default Value
Domain
Comment
Column FACTURABLE * NOT IN DATABASE * ***
Datatype VARCHAR
Max Length 5
Scale
Mandatory No
Default Value
Domain
Comment
Primary Key CONC_PK * NOT IN DATABASE * ***
Enabled Yes
Deferred No
Immediate No
Exception Table
Key Column ID_CONCEPTO
Index CONC_PK * NOT IN DATABASE * ***
Unique Yes
Global No
Bitmapped No
Compute Statistics No
Reverse No
Nosort No
Initial Transactions
Max Transactions
Percent Free
Percent Used
Initial Extents
Next Extent
Min Extents
Max Extents
Percent Increase
Freelists
Freelist Groups
Tablespace
Parallel No
Snapshot Log No No
Table CONCEPTO Differences: 1
Object Property Repository Value Database Value
Table CONSULTOR * NOT IN DATABASE * ***
Object Type
Data Persistence Permanent
Cluster
Index Only No
Cached
Initial Transactions
Max Transactions
Percent Free
Percent Used
Initial Extents
Next Extent
Min Extents
Max Extents
Percent Increase
Freelists
Freelist Groups
Tablespace
Parallel No
Comment
Column ID_CEDULA * NOT IN DATABASE * ***
Datatype NUMERIC
Max Length 12
Scale
Mandatory Yes
Default Value
Domain
Comment
Primary Key CONS_PK * NOT IN DATABASE * ***
Enabled Yes
Deferred No
Immediate No
Exception Table
Key Column ID_CEDULA
Index CONS_PK * NOT IN DATABASE * ***
Unique Yes
Global No
Bitmapped No
Compute Statistics No
Reverse No
Nosort No
Initial Transactions
Max Transactions
Percent Free
Percent Used
Initial Extents
Next Extent
Min Extents
Max Extents
Percent Increase
Freelists
Freelist Groups
Tablespace
Parallel No
Snapshot Log No No
Table CONSULTOR Differences: 1
Object Property Repository Value Database Value
Table GENERAL * NOT IN DATABASE * ***
Object Type
Data Persistence Permanent
Cluster
Index Only No
Cached
Initial Transactions
Max Transactions
Percent Free
Percent Used
Initial Extents
Next Extent
Min Extents
Max Extents
Percent Increase
Freelists
Freelist Groups
Tablespace
Parallel No
Comment
Column ID_GENERAL * NOT IN DATABASE * ***
Datatype NUMERIC
Max Length 5
Scale
Mandatory Yes
Default Value
Domain
Comment
Column CONC_ID_CONCEPTO * NOT IN DATABASE * ***
Datatype NUMERIC
Max Length 3
Scale
Mandatory Yes
Default Value
Domain
Comment
Column CONS_ID_CEDULA * NOT IN DATABASE * ***
Datatype NUMERIC
Max Length 12
Scale
Mandatory Yes
Default Value
Domain
Comment
Column FECHA_ACT * NOT IN DATABASE * ***
Datatype DATE
Max Length
Scale
Mandatory No
Default Value
Domain
Comment
Column DESCRIPCION_ACT * NOT IN DATABASE * ***
Datatype VARCHAR2
Max Length 120
Scale
Mandatory No
Default Value
Domain
Comment
Column CANTIDAD_HORAS * NOT IN DATABASE * ***
Datatype NUMERIC
Max Length 5
Scale
Mandatory No
Default Value
Domain
Comment
Primary Key GENE_PK * NOT IN DATABASE * ***
Enabled Yes
Deferred No
Immediate No
Exception Table
Key Column ID_GENERAL
Index GENE_PK * NOT IN DATABASE * ***
Unique Yes
Global No
Bitmapped No
Compute Statistics No
Reverse No
Nosort No
Initial Transactions
Max Transactions
Percent Free
Percent Used
Initial Extents
Next Extent
Min Extents
Max Extents
Percent Increase
Freelists
Freelist Groups
Tablespace
Parallel No
Foreign Key GENE_CONC_FK * NOT IN DATABASE * ***
Enabled Yes
Deferred No
Immediate No
Cascade Delete RESTRICT
Cascade Update RESTRICT
Exception Table
Join Table CONCEPTO
Key Column CONC_ID_CONCEPTO
Referenced Column CONCEPTO.ID_CONCEPTO
Foreign Key GENE_CONS_FK * NOT IN DATABASE * ***
Enabled Yes
Deferred No
Immediate No
Cascade Delete RESTRICT
Cascade Update RESTRICT
Exception Table
Join Table CONSULTOR
Key Column CONS_ID_CEDULA
Referenced Column CONSULTOR.ID_CEDULA
Snapshot Log No No
Table GENERAL Differences: 1
====================================================================================================================================
Total Differences: 3
====================================================================================================================================

Rolando - We don't need all that information about the data model and such. Can you describe what the application does on the page that gives the error? I mean, you submit the page, it performs some after-submit processes (what do they do and how many processes are there?) and then it has some kind of branch to the same page or another page. Describe the processes, show us the success message for each process, exactly as they are formatted in the process definition page, and describe the branches (to the same page, another page, do they use URL redirects? And also please post the entire URL that you see when the error page is displayed.
Finally, please provide all the output from the About HTML DB page: Workspace Home -> Click the About HTML DB link under Workspace Administration on the far right side of the page. Then copy all the output and show it here.
Scott

Similar Messages

  • Where to download Rolando?

    Hello,
    I read about a clone of the program for the sony psp Loco Roco, this clone should be named as Rolando. But no were in the app store is this program standing? Where can I download it?
    greets Peter

    Hello and Welcome to Apple Discussions. 
    Downloads outside of the App Store are extremely limited (maximum of 100 copies) so the short answer is that you can only download it from the App Store. You'll just have to wait until it becomes available there.
    mrtotes

  • If I restore to 2.1, will I lose my application data for Rolando

    i'm tired of my iPhone's caller ID not working long enough. i always have to reset my network settings to get it to work, and i shouldn't have to. if i restore to 2.1, will i lose my game save data? like if i click set up as new iphone? my second oldest setting is still 2.2, i think, i thought it was 2.1 , but when i restored yesterday, it was still 2.2, and i'm still having the same problem, although, admittedly, i'm not having the same 2.2 problems most people are complaining about.

    No, only the data and settings will be erased. Follow this article and don't use the backup afterwards and you should be ok.
    Backing Up, updating, and restoring your iPhone and iPod touch software

  • Cisco jabber for android no ask outgoing call

    Is available:
    1) cucm 8.6
    2) The samsung galaxy S4 mini smartphone (android 4.2.2) with the client of cisco jabber for android v 9.1.4
    On the smartphone, in the cisco jabber settings, it is specified - to ask for each outgoing call through what to ring.
    If to open the address directory of phone and to click a call, the call is made through SIM a card.
    How to set up, what the request through what to make an outgoing call would be output?

    Take in mind the supported list of devices, in my experience it can be troublesome if you want to uses some of the brands not listed (I played with a Huawei and a LG without luck)
    Check http://www.cisco.com/c/en/us/products/collateral/unified-communications/jabber-android/data_sheet_c78-649887.html (Device and OS Requirements)
    Regards.
    Rolando Valenzuela.

  • How can I get the material consumption of the month for each specific Finished Good?

    (Sorry, I first opened this discussion in another space. I guess here's where it belongs).
    Dear Experts,
    This is the first time I open a discussion. I'm new at this. I've been reading for a couple of months your forums and certainly you've helped me a lot. Thanks for that. Keep it up! ^_^
    Now on business. Let me explain a bit about what I'm looking for.
    I've been looking for a report that shows me the material consumption of the month in quantities. Raw Material and Packaging Material to be more specific. Also I need to see the consumption of those materials by each specific Finished Good.
    For example, I know the consumption of Flour of all the month, but we use it for all our Finished Goods or SKU's as we call them, since we make cookies. How can I know how much Flour each Finished Good actually used?
    I've been trying with different T-Codes, reports, etc. The last thing I've got is using transaction MB51 and filtering movements type from 261 to 262. The beauty of this report is that shows me the Process Order number, since I can match the PO number to a Finished Good with another report from BI (or BEX, however you call it).
    Everything was fine until I found that there are some PO's that are not directly related to a Finished Good, but to a Semi Finished Good. In some cases I'm able to match the Finished Good, since the majority of Semi Finished Goods are uniques to a Finished Good. But there are three specific cases that are my problem right now:
    Cream X: We use it for three Finished Goods.
    X Syrup: We use it for all the Finished Goods.
    Refined X Sugar: We use it for three Finished Goods.
    So those three are Semi Finished Goods which are related to certain numbers of PO's I have on the report.
    In the end, with the report from MB51 I have all the list of materials (filtering only Raw and Packaging), I have the consumption of the month (filtering movements 261 and 262) and I have the PO number related to each material. Of course one material is listed many times on the report, but with different PO number.
    Then, like I said, I can match the PO number to a Finished Good, except in the cases where the PO is not matched to a Finished Good, but to a Semi Finished Good like the three examples I gave you.
    I don't know if there's another way to track the Finished Good having the PO number. I've tried T-Code COR3, but couldn't get too far.
    I hope I explained myself a bit clear and also sorry if my English is not so good.
    Thanks in advance. ^_^
    Warm regards,
    Rol

    Hi Rolando,
    If the purpose is to find the consumption of a material, you can get it from report "MC.9". Plz let me know if it's useful.
    Rgds,
    Sudheer.

  • Creative Cloud for UK Charities

    Does anyone know how one goes about getting Creative Cloud from Adobe if one's a UK based charity? All the information I see is referring to the US only.

    Hi Rolando IV,
    You might try contacting our UK sales department at  0800 0280148
    -Dave

  • Microphone jack not working with IOS 7

    Hi, I don't know where to report to, I've been using IOS on my iPhone 4 and iPad 3 since yesterday and looks pretty great but I noticed that the microphone jack is not working to speak with siri or even answering to a call, please let me know if you find any solution.

    I tried this and it worked. I thought it was ios7 but I may have dropped the phone around the same time....
    www.youtube.com/watch?v=0jhWxYTVxe4
    Feb 25, 2012 - Uploaded by Rolando Desrets
    Is your iPhone 4 not working when you make or receive a call?

  • Java Code in BPEL 2.0 to set nested variable

    Hi,
    Using BPEL 2.0 Java Embedding I want to copy the a value to the result element under outputVariable payload.
    I am using following code
    <extensionActivity>
    <bpelx:exec name="Java_Embedding" language="java">
    <![CDATA[try{     
             BPMWorkspaceServices WorkspaceServices = new BPMWorkspaceServices();    
             XMLElement instId = (XMLElement) getVariableData("inputVariable","payload");    
             String url = WorkspaceServices.getTaskURL("weblogic.jndi.WLInitialContextFactory", "t3://host:port", "abcde", "abcde",instId.getTextContent());    
             XMLElement elem = (XMLElement) getVariableData("outputVariable","payload");        
             elem.setTextContent(url);    
            } catch (Exception e) {     
    System.out.println("**************Error Testing Test URL **************");
    e.printStackTrace();
    }]]>
    </bpelx:exec>
    </extensionActivity>
    I am getting the folowing output payload:-
    <outputVariable>
    <part name="payload">
    <processResponse>http://abcde.com</processResponse>
    </part>
    </outputVariable>
    However I wanted the thing like
    <outputVariable>
    <part name="payload">
    <processResponse>
    <result>http://abcde.com</result>
    </processResponse>
    </part>
    </outputVariable>
    What code should I write in Java Embedding in BPEL 2.0?
    Please help!
    Regards,
    Sam

    Hello Rolando Carrasco,
    Thank for responding my question. I figure out the issue. It is because we need to import the java API's what we are using in the java embedding.
    Thank you,
    Raj

  • Put a video up on a website

    hi all    i am trying to get my Videos up on a website    yes i have my videos are up on youtube  but once i get to this website  and click on the film thingy  i get this        i try and try  but i cant get a video up
    General
    Advanced
    Source
    General
    Type
    File/URL
    List
    Dimensions
    x
    Constrain Proportions
    Preview 

    Flash isn't a video format.
    Use .m4v
    Flash video players support it too.
    Samples :
    http://www.wyodor.net/_Movies/rolando/
    http://www.wyodor.net/_Flash/FlexiPlayer/
    Or try this :
    http://www.wyodor.net/_Demo/html5/HTML5Video.html
    Or this :
    http://cafenoir.atspace.com/cultureclub/Movies.html
    And look beyond iWeb :
    http://camendesign.com/code/videoforeverybody
    Edit : Use this free app in the Mac App Store to convert to any video format
    [MiroVideoConverter|http://itunes.apple.com/app/mirovideoconverter-mvc/id4126992 10?mt=12]
    Message was edited by: Wyodor

  • Java embedding code in BPEL 2.0 giving deployment errors

    Hello,
    I am using Jdeveloper and SOA 6 11.1.1.0.6 version. BPEL 2.0
    When i use simple sysout in the java embedding it is deploying fine but when using XMLElement api in the java embedding it s giving deployment error.
    Please suggest me how to make it work.
    Please see the error message below:
    Error deploying archive sca_FetchAttachments_rev1.1.jar to partition "default" on server soa_server1 [http://XXX.XXX.com:8001]
    [01:04:09 PM] HTTP error code returned [500]
    [01:04:09 PM] Error message from server:
    There was an error deploying the composite on soa_server1: Error occurred during deployment of component: FetchAttachments to service engine: implementation.bpel, for composite: FetchAttachments: ORABPEL-05250

    Hello Rolando Carrasco,
    Thank for responding my question. I figure out the issue. It is because we need to import the java API's what we are using in the java embedding.
    Thank you,
    Raj

  • Can't upload HD video

    Hello everyone,
    I can't upload HD video with iWeb '09 to MobileMe. When I visit the website, there is just the QT logo with a question mark.
    I edited the HD video in Final Cut Express and exported it as a QT movie (.mov), using the H.264 video codec. File size is about 75 MB.
    Why doesn't the .mov file play on my Mobile Me hosted website?
    Thank you for all suggestions.
    Stefan

    It never occurred to me to equate the price of MobileMe with the movies I make.
    Anyway, here's your HD movie, published with iWeb to MobileMe. With a companion HD movie I made with Picasa. Both are 28MB.
    http://www.wyodor.net/_dummy/chai.html
    The Picasa movie can also be viewed [here|http://www.wyodor.net/_Movies/rolando> (bottom row, second from the left). I think it is more pleasing for the visitor.
    Here are (video)samples with code for your pleasure to study and nim:
    http://www.wyodor.net/iFrame/
    http://www.wyodor.net/MoreEmbed/
    And here are tutorials that explains how to embed such movies, or other HTML code, in an iWeb page.
    [Using the iWeb HTML Snippet|http://www.wyodor.net/blog/archives/2009/07/entry_213.html]
    [How to add a movie to your blog |http://www.wyodor.net/iWebBlogTest/Wyodor1/archives/2009/05/entry35.html] (Don't be misled by the title. It works equally well in iWeb.)
    You may have to learn HTML/CSS/JavaScript.

  • Issue with java embedding activity in bpel 2.0

    Hi.
    I tried the following code inside BPEL 2.0
    <extensionActivity>
    <bpelx:exec name="MillitoDate" language="java">
    <import location="java.text.DateFormat" importType="http://schemas.oracle.com/bpel/extension/java"/>
    <import location="java.text.SimpleDateFormatt" importType="http://schemas.oracle.com/bpel/extension/java"/>
    <import location="java.util.Calendar" importType="http://schemas.oracle.com/bpel/extension/java"/>
    <import location="java.util.*" importType="http://schemas.oracle.com/bpel/extension/java"/>
    <import location="java.lang.*" importType="http://schemas.oracle.com/bpel/extension/java"/>
    <import location="java.io.**" importType="http://schemas.oracle.com/bpel/extension/java"/>
    <![CDATA[
    DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss.SSS");
    Calendar calendar = Calendar.getInstance();
    long now = 1365523483000L;
    calendar.setTimeInMillis(now);
    String s=formatter.format(calendar.getTime());
    setVariableData("outputVariable","payload","/client:processResponse/client:result",s);
    ]]>
    </bpelx:exec>
    </extensionActivity>
    But, I am getting following error while deploying "the exception reported is: java.lang.RuntimeException: failed to compile execlets of CleanupProcess". Also, i Tried adding try catch block but no succèss, thé same code is working perfectly in java project.

    Hello Rolando Carrasco,
    Thank for responding my question. I figure out the issue. It is because we need to import the java API's what we are using in the java embedding.
    Thank you,
    Raj

  • Jabber statistics Report - tool to get the report

    Hi,
    Our customers want to see how many IM Messages have been sent through since the servers are Built? we can see them from RTMT but it shows the real time since the server is restarted. Is it possible or is there any tools?
    Also, they want to see login/logout per person. As far as I can see there is no way to pull up this reports. Is there any tools for it?
    Thanks,
    HM

    Thanks Rolando,
    The purpose is Business related, they want to see how much their staff using Jabber so they can decide to roll it our for everyone or provide training and so on.
    There should be some tools out there to be able to get those reports?
    Thanks,
    Hamed

  • Audio problem in Encore 2.0

    Hello,
    I have a problem with my sound card (Conexant AC-97) and Adobe Encore DVD 2.0.
    I use Encore from the version 1.0, so I know all the application features, and the version 1.5 works fine on my PC. I've upgraded to the 2.0 version, but with this version, when I launch the preview of the timeline, I hear only a little bit of the audio trace followed by no sound.
    I read that Encore 2.0 recognizes an ASIO card only if a DirectSound driver is installed with it. Most ASIO sound cards ship with both an ASIO and a DirectSound driver which are installed by default. Encore DVD recognizes any audio card that has a DirectSound driver (as mentioned in this KB http://www.adobe.com/support/techdocs/332017.html), and my card is recognized, but I think this audio card is not so much recent and it doesn't work with Encore 2.0.
    These are my PC data:
    HP Pavilion zd7038
    Audio Card: Conexant AC-97
    Video Card: nVidia GeForce 5700
    RAM: 1 Gb
    Any suggestion is appreciated.
    Best regards
    Rolando Ramieri

    Hi Neil,
    thank you for the response.
    I know that Conexant AC-97 isn't a soundcard :-)
    I downloaded the last driver for the card from the HP support, but this is an old driver (04/2002) and it makes no difference :-(
    The strange thing is the soundcard works fine with other applications (such as Adobe Premiere Pro 2.0), and I have the problem only with Encore DVD 2.0.
    I can try to disable Windows Sounds, but I don't think that is the problem.
    Can I make some configuration to Encore DVD to support my soundcard?
    Best regards
    Rolando

  • Uccx 9.0 expected wait time returns a -1 value

    Guys I am trying to use the expected wait time feature in UCCX, however the value returned is -1 each time this step is executed. All the other feature such as average wait time etc all works, its just the expected wait time that doesnt. Any ideas please?

    During your tests, the call activating the script you are debugging is actually in queue and with a real wait time?
    I could find any related bug, can you check this links:
    Link1 -- Link2
    I will try to find additional information.
    Rolando Valenzuela

Maybe you are looking for

  • Problem with logging in Creative Cloud account

    Hi, I have a problem with my Creative Cloud account. It seems like I logged out about a week ago and when I tried to log in again just now I didn't succed as the program said I have logged out of the system. My password is correct, I even changed it,

  • What is the best way to move files to a NAS

    Hello, I want to consolidate all my files on a NAS wired to my airport extreem with access by both the imac and the macbook pro.  Here's a bit of optional background on my situation: My tidy little home network consists of two computers (imac Intel C

  • InDesign CC crashing when exporting file to idml

    I am working on a large document (600+ pages). Whenever I export to idml InDesign crashes. It always crashes when the progress bar is at about 24%. I am able to export to PDF with no issues and also save as a new indd file with no issues. I am using

  • Authorization for UD

    Dear Experts, There is a requirement that the quality inspector who is doing results recording and valuate the batch should not be allowed to do UD . Only the quality manager should be able to do the UD if the batch is rejected for any inspection cha

  • BAPI for Posting with clearing

    Hi all, Is there any BAPI which can do posting with clearing?Generally we can acheive this through a transaction F-04.BAPI required which can acheive the functionality of F-04.Any Inputs will be highly appreciated with points. Thanks and Regards Kira