Problems using button to add an amount to another amount

I'm trying to add an amount (field A) to another amount (field B) and keep the total in field B. I have a submit button that runs a process that has the following source:
DECLARE
BEGIN
:P5_COSTO_ABOGADO := NVL(TO_NUMBER(:P5_COSTO_ABOGADO, 'FML999G999G999G999G990D00'), 0) + NVL(TO_NUMBER(:P5_COSTO_ABOG, 'FML999G999G999G999G990D00'), 0) ;
END;
And the process point is On Submit - Before Computations and Validations.
The "When Button pressed" is the one I design for it. SUBMIT (Compute).
Is not working. What is wrong with it?
This is the debug.
0.10: A C C E P T: Request="SUBMIT"
0.11: Metadata: Fetch application definition and shortcuts
0.11: NLS: wwv_flow.g_flow_language_derived_from=FLOW_PRIMARY_LANGUAGE: wwv_flow.g_browser_language=en-us
0.11: alter session set nls_language="AMERICAN"
0.11: alter session set nls_territory="AMERICA"
0.11: NLS: CSV charset=WE8MSWIN1252
0.11: ...NLS: Set Decimal separator="."
0.11: ...NLS: Set NLS Group separator=","
0.11: ...NLS: Set date format="DD-MON-RR"
0.11: ...Setting session time_zone to -06:00
0.12: Fetch session state from database
0.12: ...Check session 2727706520181913 owner
0.12: ...Metadata: Fetch Page, Computation, Process, and Branch
0.12: Session: Fetch session header information
0.12: ...Metadata: Fetch page attributes for application 109, page 5
0.12: ...Validate item page affinity.
0.13: ...Validate hidden_protected items.
0.13: ...Check authorization security schemes
0.13: Session State: Save form items and p_arg_values
0.14: ...Session State: Save Item "P5_NOMBRE_RECLAMANTE" newValue="JACQUELINE RAMOS" "escape_on_input="N"
0.14: ...Session State: Save Item "P5_NUMERO_RECLAMANTE" newValue="123456" "escape_on_input="N"
0.14: ...Session State: Save Item "P5_NOMBRE_ACCIDENTADO" newValue="HAROLD RAMOS" "escape_on_input="N"
0.14: ...Session State: Save Item "P5_DIR_POSTAL_OCURRENCIA" newValue="AVE CAMPO RICO" "escape_on_input="N"
0.14: ...Session State: Save Item "P5_PUEBLO_POSTAL_OCURR" newValue="CAROLINA" "escape_on_input="N"
0.14: ...Session State: Save Item "P5_ZIP_CODE_OCURR" newValue="" "escape_on_input="N"
0.14: ...Session State: Save Item "P5_ABOGADO_RECLAMANTE" newValue="JACQUELINE RAMOS" "escape_on_input="N"
0.14: ...Session State: Save Item "P5_DIR_ABOGADO_RECLAMANTE" newValue="CALLE BOTELLA ESQ TAPON ULTIMO PISO SIN ESCALON" "escape_on_input="N"
0.14: ...Session State: Save Item "P5_TEL_ABOGADO_RECLAMANTE" newValue="" "escape_on_input="N"
0.14: ...Session State: Save Item "P5_ABOGADO_AEE" newValue="ANTONIO SILVA" "escape_on_input=""
0.14: ...Session State: Save Item "P5_DIR_ABOGADO_AEE" newValue="CALLE COLIBRI" "escape_on_input="N"
0.14: ...Session State: Save Item "P5_TEL_ABOGADO_AEE" newValue="" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_QTY_RECLAMADA" newValue="10000000" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_QTY_PAGADA" newValue="" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_NUM_CHK_PAGADA" newValue="" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_FECHA_CHK_PAGADA" newValue="" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_TIPO_2" newValue="" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_COSTO_ABOG" newValue="500" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_COSTO_ABOGADO" newValue="$1,000.00" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_COSTO_PERITO" newValue="" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_COSTOS_PERITOS" newValue="$500.00" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_COSTO_TRANSCRIP" newValue="" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_COSTOS_TRANSCRIPCION" newValue="$1,000.00" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_COSTO_TAQ" newValue="" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_COSTOS_TAQUIGRAFOS" newValue="$1,000.00" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_COSTO_OTRO" newValue="" "escape_on_input="N"
0.15: ...Session State: Save Item "P5_COSTOS_OTROS" newValue="" "escape_on_input="N"
0.16: ...Session State: Save Item "P5_X" newValue="" "escape_on_input="N"
0.16: ...Session State: Save Item "P5_NUM_CASO_LEGAL" newValue="N/A" "escape_on_input="N"
0.16: ...Session State: Save Item "P5_NUM_SEGUIMIENTO" newValue="N/A " "escape_on_input="N"
0.17: ...Session State: Save Item "P5_TIPO_1" newValue="Reclamación" "escape_on_input="N"
0.17: ...Session State: Save Item "P5_FECHA_OCURRENCIA" newValue="07/07/2009" "escape_on_input="N"
0.17: ...Session State: Save Item "P5_FECHA_RECLAMACION" newValue="07/14/2009" "escape_on_input="N"
0.17: ...Session State: Save Item "P5_TIPO_3" newValue="vs -> AEE" "escape_on_input="N"
0.17: ...Session State: Save Item "P5_DIR_OCURRENCIA" newValue="FJFJGJGJG" "escape_on_input="N"
0.17: ...Session State: Save Item "P5_CONCEPTO" newValue="ACCIDENTE DE AUTO" "escape_on_input=""
0.17: ...Session State: Save Item "P5_PUEBLO_OCURRENCIA" newValue="ARECIBO" "escape_on_input="N"
0.17: ...Session State: Save Item "P5_DIRECTORADO" newValue="JURÍDICA" "escape_on_input=""
0.17: ...Session State: Save Item "P5_TRIBUNAL" newValue="Estatal" "escape_on_input="N"
0.17: ...Session State: Save Item "P5_JUEZ" newValue="SOTOMAYOR" "escape_on_input="N"
0.17: ...Session State: Save Item "P5_INVESTIGADOR" newValue="FRANKLIN DE LEÓN" "escape_on_input=""
0.17: ...Session State: Save Item "P5_SALA" newValue="CAROLINA" "escape_on_input="N"
0.17: ...Session State: Save Item "P5_DESCRIPCION" newValue="ESTO ES UNA PRUEBA" "escape_on_input="N"
0.17: ...Session State: Save Item "P5_STATUS" newValue="Activo" "escape_on_input=""
0.18: ...Session State: Save Item "P5_CERRADO_POR" newValue="GJGJGJG" "escape_on_input="N"
0.18: ...Session State: Save Item "P5_REFERIDO_AUDITORIA" newValue="" "escape_on_input="N"
0.18: Processing point: ON_SUBMIT_BEFORE_COMPUTATION
0.18: ...Process "ADD_COSTO_ABOG": PLSQL (ON_SUBMIT_BEFORE_COMPUTATION) DECLARE BEGIN :P5_COSTO_ABOGADO := NVL(TO_NUMBER(:P5_COSTO_ABOGADO, 'FML999G999G999G999G990D00'), 0) + NVL(TO_NUMBER(:P5_COSTO_ABOG, 'FML999G999G999G999G990D00'), 0) ; END;
0.19: Encountered unhandled exception in process type PLSQL
0.19: Show ERROR page...
0.19: Performing rollback...
REGISTRO Y SEGUIMIENTO DE LAS DEMANDAS Y RECLAMACIONES
DIRECTORADO DE ASUNTOS JURÍDICOS
División de Litigación
(AMALDONADO8580)
ORA-06502: PL/SQL: numeric or value error
Error
OK

I modified the reset process and conditioned it to "when CANCEL button is pressed". See the debug.
0.00: A C C E P T: Request="SUBMIT"
0.00: Metadata: Fetch application definition and shortcuts
0.00: NLS: wwv_flow.g_flow_language_derived_from=FLOW_PRIMARY_LANGUAGE: wwv_flow.g_browser_language=en-us
0.00: alter session set nls_language="AMERICAN"
0.00: alter session set nls_territory="AMERICA"
0.00: NLS: CSV charset=WE8MSWIN1252
0.00: ...NLS: Set Decimal separator="."
0.00: ...NLS: Set NLS Group separator=","
0.00: ...NLS: Set date format="DD-MON-RR"
0.00: ...Setting session time_zone to -06:00
0.00: Fetch session state from database
0.01: ...Check session 2781321738472298 owner
0.01: ...Metadata: Fetch Page, Computation, Process, and Branch
0.01: Session: Fetch session header information
0.01: ...Metadata: Fetch page attributes for application 109, page 5
0.01: ...Validate item page affinity.
0.02: ...Validate hidden_protected items.
0.02: ...Check authorization security schemes
0.02: Session State: Save form items and p_arg_values
0.02: ...Session State: Save "P5_NOMBRE_RECLAMANTE" - saving same value: "JACQUELINE RAMOS"
0.02: ...Session State: Save "P5_NUMERO_RECLAMANTE" - saving same value: "123456"
0.02: ...Session State: Save "P5_NOMBRE_ACCIDENTADO" - saving same value: "HAROLD RAMOS"
0.02: ...Session State: Save "P5_DIR_POSTAL_OCURRENCIA" - saving same value: "AVE CAMPO RICO"
0.02: ...Session State: Save "P5_PUEBLO_POSTAL_OCURR" - saving same value: "CAROLINA"
0.02: ...Session State: Save "P5_ZIP_CODE_OCURR" - saving same value: ""
0.02: ...Session State: Save "P5_ABOGADO_RECLAMANTE" - saving same value: "JACQUELINE RAMOS"
0.02: ...Session State: Save "P5_DIR_ABOGADO_RECLAMANTE" - saving same value: "CALLE BOTELLA ESQ TAPON ULTIMO PISO SIN ESCALON"
0.02: ...Session State: Save "P5_TEL_ABOGADO_RECLAMANTE" - saving same value: ""
0.02: ...Session State: Save "P5_ABOGADO_AEE" - saving same value: "ANTONIO SILVA"
0.02: ...Session State: Save "P5_DIR_ABOGADO_AEE" - saving same value: "CALLE COLIBRI"
0.02: ...Session State: Save "P5_TEL_ABOGADO_AEE" - saving same value: ""
0.02: ...Session State: Save "P5_QTY_RECLAMADA" - saving same value: "10000000"
0.02: ...Session State: Save "P5_QTY_PAGADA" - saving same value: ""
0.03: ...Session State: Save "P5_NUM_CHK_PAGADA" - saving same value: ""
0.03: ...Session State: Save "P5_FECHA_CHK_PAGADA" - saving same value: ""
0.03: ...Session State: Save "P5_TIPO_2" - saving same value: ""
0.03: ...Session State: Save "P5_COSTO_ABOG" - saving same value: "500"
0.03: ...Session State: Saved Item "P5_COSTO_ABOGADO" New Value="$1,000.00"
0.03: ...Session State: Save "P5_COSTO_PERITO" - saving same value: ""
0.03: ...Session State: Save "P5_COSTOS_PERITOS" - saving same value: "$500.00"
0.03: ...Session State: Save "P5_COSTO_TRANSCRIP" - saving same value: ""
0.03: ...Session State: Save "P5_COSTOS_TRANSCRIPCION" - saving same value: "$1,000.00"
0.03: ...Session State: Save "P5_COSTO_TAQ" - saving same value: ""
0.03: ...Session State: Save "P5_COSTOS_TAQUIGRAFOS" - saving same value: "$1,000.00"
0.03: ...Session State: Save "P5_COSTO_OTRO" - saving same value: ""
0.03: ...Session State: Save "P5_COSTOS_OTROS" - saving same value: ""
0.03: ...Session State: Save "P5_X" - saving same value: ""
0.03: ...Session State: Save "P5_NUM_CASO_LEGAL" - saving same value: "N/A"
0.03: ...Session State: Save "P5_NUM_SEGUIMIENTO" - saving same value: "N/A "
0.03: ...Session State: Save "P5_TIPO_1" - saving same value: "Reclamación"
0.03: ...Session State: Save "P5_FECHA_OCURRENCIA" - saving same value: "07/07/2009"
0.03: ...Session State: Save "P5_FECHA_RECLAMACION" - saving same value: "07/14/2009"
0.03: ...Session State: Save "P5_TIPO_3" - saving same value: "vs -> AEE"
0.03: ...Session State: Save "P5_DIR_OCURRENCIA" - saving same value: "FJFJGJGJG"
0.03: ...Session State: Save "P5_CONCEPTO" - saving same value: "ACCIDENTE DE AUTO"
0.03: ...Session State: Save "P5_PUEBLO_OCURRENCIA" - saving same value: "ARECIBO"
0.03: ...Session State: Save "P5_DIRECTORADO" - saving same value: "JURÍDICA"
0.03: ...Session State: Save "P5_TRIBUNAL" - saving same value: "Estatal"
0.03: ...Session State: Save "P5_JUEZ" - saving same value: "SOTOMAYOR"
0.03: ...Session State: Save "P5_INVESTIGADOR" - saving same value: "FRANKLIN DE LEÓN"
0.03: ...Session State: Save "P5_SALA" - saving same value: "CAROLINA"
0.03: ...Session State: Save "P5_DESCRIPCION" - saving same value: "ESTO ES UNA PRUEBA"
0.03: ...Session State: Save "P5_STATUS" - saving same value: "Activo"
0.03: ...Session State: Save "P5_CERRADO_POR" - saving same value: "GJGJGJG"
0.03: ...Session State: Save "P5_REFERIDO_AUDITORIA" - saving same value: ""
*0.03: Processing point: ON_SUBMIT_BEFORE_COMPUTATION*
*0.03: ...Process "ADD_COSTO_ABOG": PLSQL (ON_SUBMIT_BEFORE_COMPUTATION) DECLARE BEGIN :P5_COSTO_ABOGADO := NVL(TO_NUMBER(:P5_COSTO_ABOGADO, 'FML999G999G999G999G990D00'), 0) + NVL(TO_NUMBER(:P5_COSTO_ABOG, '999G999G999G999G990D00'), 0) ; END;*
*0.04: ...Session State: Saved Item "P5_COSTO_ABOGADO" New Value="1500"*
0.04: Branch point: BEFORE_COMPUTATION
0.04: Computation point: AFTER_SUBMIT
0.04: Tabs: Perform Branching for Tab Requests
0.04: Branch point: BEFORE_VALIDATION
0.04: Perform validations:
0.04: ...Item Not Null Validation: P5_FECHA_OCURRENCIA
0.04: Branch point: BEFORE_PROCESSING
0.04: Processing point: AFTER_SUBMIT
0.04: ...Do not run process "Process Row of DJUR_REGISTRO", process point=AFTER_SUBMIT, condition type=, when button pressed=SAVE
*0.04: ...Do not run process "reset page", process point=AFTER_SUBMIT, condition type=, when button pressed=CANCEL*
0.04: Branch point: AFTER_PROCESSING
0.04: ...Evaluating Branch: AFTER_PROCESSING type: "REDIRECT_URL" button: 5865832216570805 branch: (Unconditional)
0.00:
0.00: S H O W: application="109" page="5" workspace="" request="" session="2781321738472298"
0.01: Language derived from: FLOW_PRIMARY_LANGUAGE, current browser language: en-us
0.01: alter session set nls_language="AMERICAN"
0.01: alter session set nls_territory="AMERICA"
0.01: NLS: CSV charset=WE8MSWIN1252
0.01: ...NLS: Set Decimal separator="."
0.01: ...NLS: Set NLS Group separator=","
0.01: ...NLS: Set date format="DD-MON-RR"
0.01: ...Setting session time_zone to -06:00
0.01: NLS: Language=en-us
0.01: Application 109, Authentication: CUSTOM2, Page Template: 7583125804620784
0.01: ...Session ID 2781321738472298 can be used
0.01: ...Application session: 2781321738472298, user=AMALDONADO8580
0.01: ...Determine if user "[email protected]" workspace "5742627952469825" can develop application "109" in workspace "5742627952469825"
0.01: Session: Fetch session header information
0.01: ...Metadata: Fetch page attributes for application 109, page 5
0.01: Fetch session state from database
0.02: Branch point: BEFORE_HEADER
0.02: Fetch application meta data
0.02: Computation point: BEFORE_HEADER
0.02: Processing point: BEFORE_HEADER
0.03: Show page template header
REGISTRO Y SEGUIMIENTO DE LAS DEMANDAS Y RECLAMACIONES
DIRECTORADO DE ASUNTOS JURÍDICOS
División de Litigación
0.04: Computation point: AFTER_HEADER
0.04: Processing point: AFTER_HEADER
0.04: ...Process "Fetch Row from DJUR_REGISTRO": DML_FETCH_ROW (AFTER_HEADER) F|#OWNER#:DJUR_REGISTRO:P5_SECUENCIA_PK:SECUENCIA_PK
0.04: Authorization Check: "11032751347059544" User: "AMALDONADO8580" Component: "tab"
(AMALDONADO8580)| Logout
ADMINISTRACION
0.05: Region: Breadcrumb
División Jurídica (Home)Registro Demandas y ReclamacionesDatos
COSTO DE ABOGADO AÑADIDO
0.05: Computation point: BEFORE_BOX_BODY
0.05: Processing point: BEFORE_BOX_BODY
0.05: Region: Datos del Reclamante/Demandante
Datos del Reclamante/Demandante
0.05: Item: P5_NOMBRE_RECLAMANTE TEXT
Reclamante:
0.05: Item: P5_NUMERO_RECLAMANTE TEXT
Núm Reclamante:
0.05: Item: P5_NOMBRE_ACCIDENTADO TEXT
Accidentado:
0.05: Item: P5_DIR_POSTAL_OCURRENCIA TEXTAREA
Dirección Postal: AVE CAMPO RICO
0.05: Item: P5_PUEBLO_POSTAL_OCURR TEXT
Pueblo:
0.05: Item: P5_ZIP_CODE_OCURR TEXT
Código Postal:
0.05: Region: Datos Abogado Reclamante
Datos Abogado Reclamante
0.06: Item: P5_ABOGADO_RECLAMANTE TEXT
Abogado:
0.06: Item: P5_DIR_ABOGADO_RECLAMANTE TEXTAREA
Dirección: CALLE BOTELLA ESQ TAPON ULTIMO PISO SIN ESCALON
0.06: Item: P5_TEL_ABOGADO_RECLAMANTE TEXT
Tel.:
0.06: Region: Datos Abogado AEE
Datos Abogado AEE
0.06: Item: P5_ABOGADO_AEE COMBOBOX
Abogado: SELECCIONE ANTONIO SILVA CARLOS AQUINO CÁNDIDA NEGRÓN EDDIE CUEVAS EDWIN J. RIVERA FERNANDO MACHADO JORGE MAFUS MARÍA MÉNDEZ PATRICIA GUIJARRO VIRIDIANA VAZQUEZ
0.06: Item: P5_DIR_ABOGADO_AEE TEXTAREA
Dirección: CALLE COLIBRI
0.06: Item: P5_TEL_ABOGADO_AEE TEXT
Tel.:
0.06: Region: Detalles Financieros
Detalles Financieros
0.06: Item: P5_QTY_RECLAMADA TEXT
Cantidad Reclamada:
0.06: Item: P5_QTY_PAGADA TEXT
Cantidad Pagada:
0.06: Item: P5_NUM_CHK_PAGADA TEXT
# Chk
0.06: Item: P5_FECHA_CHK_PAGADA PICK_DATE_MM_DD_YYYY
Fecha
0.06: Item: P5_PAG3 STOP_AND_START_HTML_TABLE
0.06: Item: P5_TIPO_2 RADIOGROUP
Transacción Sentencia
0.07: Region: Costos Asociados
Costos Asociados
0.07: Item: P5_COSTO_ABOG TEXT
Abogado:
0.07: Item: P5_COSTO_ABOGADO TEXT
0.07: Item: P5_COSTO_PERITO TEXT
Peritos:
0.07: Item: P5_COSTOS_PERITOS TEXT
0.07: Item: P5_COSTO_TRANSCRIP TEXT
Transcripción:
0.07: Item: P5_COSTOS_TRANSCRIPCION TEXT
0.07: Item: P5_COSTO_TAQ TEXT
Taquígrafo:
0.07: Item: P5_COSTOS_TAQUIGRAFOS TEXT
0.07: Item: P5_COSTO_OTRO TEXT
Otros:
0.07: Item: P5_COSTOS_OTROS TEXT
0.07: Item: P5_X HIDDEN_PROTECTED
0.08: Item: P5_TOTAL DISPLAY_ONLY_ESCAPE_SC Total: $3,500.00
Compute
0.08: Region: Datos de la Reclamación/Demanda
Datos de la Reclamación/Demanda
0.08: Item: P5_SECUENCIA_PK DISPLAY_ONLY_ESCAPE_SC
Número Asignado:
2009163
0.08: Item: P5_NUM_CASO_LEGAL TEXT Núm Caso Legal:
0.08: Item: P5_NUM_SEGUIMIENTO TEXT Número Seguimiento AEE:
0.08: Item: P5_TIPO_1 CHECKBOX
Tipo:
Reclamación Demanda
0.08: Item: P5_FECHA_OCURRENCIA PICK_DATE_MM_DD_YYYY Fecha Ocurrencia:
0.08: Item: P5_FECHA_RECLAMACION PICK_DATE_MM_DD_YYYY Fecha Reclamación:
0.09: Item: P5_TIPO_3 RADIOGROUP
Clase:
vs -> AEE AEE -> vs
0.09: Item: P5_DIR_OCURRENCIA TEXTAREA Lugar de Ocurrencia:
FJFJGJGJG
0.09: Item: P5_CONCEPTO COMBOBOX
Concepto:
SELECCIONE ACCIDENTE DE AUTO ANIMALES CANCELACIÓN CAÍDAS COBRO DE DINERO CONTACTO ELÉCTRICO DAÑOS A LA PROPIEDAD DISCRIMEN INCENDIO INCUMPLIMIENTO DE CONTRATO LEY 33 PAGARÉ QUIEBRA SERVIDUMBRE SUSPENSIÓN SERVICIO ELÉCTRICO TELEFÓNICA
0.09: Item: P5_PUEBLO_OCURRENCIA TEXT Pueblo:
0.09: Item: P5_DIRECTORADO COMBOBOX
Directorado:
N/A EJECUTIVO GENERACIÓN, TRANSMISIÓN Y DISTRIBUCIÓN JURÍDICA PLANIFICACIÓN Y PROTECCIÓN AMBIENTAL RECURSOS HUMANOS SERVICIO AL CLIENTE SERVICIOS ADMINISTRATIVOS
0.09: Region: Detalles
Detalles
0.09: Item: P5_TRIBUNAL RADIOGROUP
Tribunal:
Estatal Federal Administrativo
0.09: Item: P5_JUEZ TEXT Juez:
0.09: Item: P5_INVESTIGADOR COMBOBOX
Investigador:
SELECCIONE FRANKLIN DE LEÓN HÉCTOR DEL VALLE JUAN QUIÑONEZ MANUEL RODRÍGUEZ RAFAEL LUGO RODOLFO ESCALERA VIOLETA VÁZQUEZ
0.09: Item: P5_SALA TEXT Sala:
0.09: Item: P5_DESCRIPCION TEXTAREA
Descripción Caso:
ESTO ES UNA PRUEBA
0.10: Item: P5_LINEA STOP_AND_START_HTML_TABLE
0.10: Item: P5_STATUS COMBOBOX
Status:
Activo Cerrado - Denegado Cerrado - Desestimado Cerrado - Desistimiento Cerrado - Devuelto Cerrado - Prescrito Cerrado - Sentencia Cerrado - Transacción
0.10: Item: P5_CERRADO_POR TEXT Cerrado por:
0.10: Item: P5_REFERIDO_AUDITORIA CHECKBOX Referido a Auditoría
0.10: Region: COMENTARIOS
COMENTARIOS
Añadir Comentarios
0.10: show report
0.10: determine column headings
0.10: parse query as: JURIDICA
0.10: binding: ":P5_SECUENCIA_PK"="P5_SECUENCIA_PK" value="2009163"
0.10: print column headings
0.11: rows loop: 15 row(s)
Comentarios Usuario
this is a test. AMALDONADO8580
1
0.11: Region: -
Salir
Actualizar
0.11: Computation point: AFTER_BOX_BODY
0.11: Processing point: AFTER_BOX_BODY
0.11: Computation point: BEFORE_FOOTER
0.11: Processing point: BEFORE_FOOTER
0.11: Show page tempate footer
Home Application 109 Edit Page 5 Create Session Activity No Debug Hide Edit Links Show Edit Links
0.11: Computation point: AFTER_FOOTER
0.11: Processing point: AFTER_FOOTER
0.11: Log Activity:
0.11: Execute Count=0
0.11: End Show:

Similar Messages

  • Problems using buttons

    Hi! I have a problem with my hp deskjet ink advantage 3515. I can't use up and down buttons. I open the printer and I can only press the OK button for COPY. Then I can only press the OK button for balck and white copying. I can't go down to choose paper type or settings or scan or anything else. When I first bought the printer I faced the same problem, but, after a while, it started working properly. I haven't used it in a while and now the problem reappeared. I don't know what I did the first time that made it work and I don't know what to do now. I truly hope someone can help me ... 

    Thank you for your response. I've tried your suggestions:
    1. I've plugged the printer directly into a wall outlet for power and didn't work .
    2. I've tried several times to install the latest Firmware Update, as you suggested, and got the same error "Problem found'' (I looked for an error state, I made sure the printer was powered on, so I supose the printer couldn't connect to my computer). Than I decided to reinstall the printer for the third time (I've reinstalled it two times before asking for your help) and guess what? It worked! I still don't know what the problem was, but now it's solved, just like the last time... 
    So, thank you again for your help and wish you a nice day!

  • Problem using buttons to switch sets

    I just want to do the simple thing of using the set buttons to switch up and down between sets but its proving infuriating. Lets say i have 4 sets….and i want to just cycle up and down them….i assign the set up button to previous set and set down button to next set…..but it doesn't work…or sometimes just jumps between set one and set four ignoring the sets in-between. Anyone know what the deal is?

    Think I've figured it out. I had 4 sets with no patches (don't need to switch patches)…..when i added a patch to each set it would switch between them using the buttons.

  • Add-on  starting and stopping using Buttons In SAP BusinessOne

    Hi,
    I have a requirement that   Add-on should be  start and stop should  be done using Button.  When ever i click on Button add-on should start and  after click the button add-on should be stop...
    anyone  have any idea...
    Thanks,
    Y.

    Well... stopping it is no problem, you can stop the addon with a button. But starting it with a button? What is going to place this button in B1? And what is going to handle the event of the button being pressed to start the addon?
    This can't be done without creating another addon (or using an existing one) just to create the button and listen for its event. So it kind of defeats the purpose.
    But all users can have access to addon manager, why not just trigger it from there, where there already are Start and Stop buttons?

  • How do I use a button to add "1" to a number?

    I'm sure this is so simple that I'm going to be smacking my forehead when someone gives me the answer but for the life of me, I can't figure out how to do this.
    I'm making a simple pdf that lists ticket prices for an event. I want the button to add one to the number of tickets ordered every time it's clicked. I need the starting value to be "0" tickets. How do I do this?

    Hi,
    Use a variable to strore the value. In the click event of the button increment the value. In the click event of the button, you can put the following code.
    var count +=1;
    Thanks,
    Bibhu.

  • JDev- how to add data from postgres using buttons in a JClientEmptyForm

    hi! can anyone help me about my problem.. im working on a system that needs to use buttons for adding entries... can anyone give me some reference code that can help me figure out the solution to my problem.. i really appreciate if u answer immediately...thankz..

    Open the file, parse it, populate an ArrayCollection or XMLListCollection, and make the collection the DataGrid dataProvider:
    http://livedocs.adobe.com/flex/3/html/help.html?content=Filesystem_08.html
    http://livedocs.adobe.com/flex/3/html/help.html?content=12_Using_Regular_Expressions_01.ht ml
    http://livedocs.adobe.com/flex/3/html/help.html?content=dpcontrols_6.html
    http://livedocs.adobe.com/flex/3/langref/mx/collections/ArrayCollection.html
    http://livedocs.adobe.com/flex/3/langref/mx/collections/XMLListCollection.html
    If this post answered your question or helped, please mark it as such.

  • HT1452 I have a Toshiba Canvio 1TB external hard drive on my Mac. I've used it for 4-5 months with no problems, but now cannot add to it (I use it mostly for photo storage) to it. I can still access information previously added. Ideas?

    I have a Toshiba Canvio 1TB external hard drive on my Mac. I've used it for 4-5 months with no problems, but now cannot add to it (I use it mostly for photo storage) to it. I can still access information previously added. Ideas?

    I cannot find this 300GB "Backup" in the Finder, only in the Storage info when I check "About This Mac".
    You are probably using Time Machine to backup your MacBook Pro, right? Then the additional 300 GB could be local Time Machine snapshots.  Time Machine will write the hourly backups to the free space on your hard disk, if the backup drive is temporarily not connected. You do not see these local backups in the Finder, and MacOS will delete them, when you make a regular backup to Time Machine, or when you need the space for other data.
    See Pondini's page for more explanation:   What are Local Snapshots?   http://pondini.org/TM/FAQ.html
    I have restarted my computer, but the information remains the same. How do I reclaim the use of the 300GB? Why is it showing up as "Backups" when it used to indicate "Photos"? Are my photos safe on the external drive?
    You have tested the library on the external drive, and so your photos are save there.  
    The local TimeMachine snapshot probably now contains a backup of the moved library.  Try, if connecting your Time Machine drive will reduce the size of your local Time Machine snapshots.

  • Query for create manual tabular form using apex collection add row button functionality

    Hello everyone
    My requirement is i created a tabular form manually using apex collection but if i click on add row button then previously selected data refreshed and added new row in this form it is fine.but i don't want to refreshed previously selected data and click on add row button then add new row .how it is possible? plz help
    Thanks & Regards,
    Ujwala

    Ujwala
    Instead of starting a new thread with the same question as Query for create manual tabular form using apex collection add row button functionality.
    Could you answer the question about what you see while debug the javascript code.
    If you don't understand the question or have trouble debug javascript let us know.
    Nicolette

  • Web Analysis Problem using the "Send to Excel" service

    I built reports using WebAnalysis 9.3.0.
    I attached the "Send to Excel" service button to my report. I am using a combination of Excel 2003 & 2007.
    I have the following settings in my webanalysis.properties file:
    MaxDataCellLimit=200000
    XLExportMaxRows=60000
    XLExportMaxColumns=200
    My problem is when I try to use the "Send to Excel" button. For "small" reports Excel opens quickly with my report information. Small being around 1,000 rows and 20 columns. If I add more rows, say another 400 or so - Excel never opens with my report information. Web Analysis sits there for about 5 minutes or so and does nothing. After that I can start using WA again - but no report in Excel.
    I get the same result by right clicking on the report in WA Studio and selecting "Export Data..."
    Any ideas?
    Thanks!

    Hyperion support suggested I try adding the Excel path to my webanalysis.properties file
    So I now have:
    ExcelPath=D:\\Progra~1\Micros~1\\OFFICE11\\Excel.exe;C:\\Progra~1\Micros~2\\OFFICE11\\Excel.exe
    MaxDataCellLimit=200000
    XLExportMaxRows=60000
    XLExportMaxColumns=200
    ResolveDimSetAliases=false
    Where D:\\Progra~1\Micros~1\\OFFICE11\\Excel.exe is the path to Excel as installed on the server where WA Studio is installed.
    And C:\\Progra~1\Micros~2\\OFFICE11\\Excel.exe is the path to Excel as installed on my laptop.
    This did not correct my problem.
    Am I using the ExcelPath=.... correctly?
    I was not sure this would work since WA Studio successfully starts Excel for "smaller" reports. But I tried it anyway.
    Any ideas?

  • Airport setup asst. doesnt work.  Is there way to use Windows to add airpor

    Airport setup asst. doesnt work. Is there way to use Windows to add airport express to my current linksys network so that my iTunes will play through my stereo?
    Previously the air-assit recognized the air-exp unit but kept asking for a password to continue. I tried passwords like admin and public but nothing worked. Then Windows network connections kept trying to connect my laptop to the internet using the air-exp. Don't remember what I did to fix that problem but now my laptop doesn't try using it to connect me to internet anymore.
    However, now air-asst. doesn't read the air-exp anymore. Windows network connections DOES read it now but doesn't try to use it anymore to connect me to the internet.
    I have a linksys WAP and separate linksys router. If memory serves, when I firt got the air-exp about 6 months ago I could not connect either and Apple tech support had to help me. I think, but not sure, they had me use Windows to add the air-exp to my wireless network. Also if my memory serves me, but not sure, I had to type in either some IP or MAC addresses in order to get the air-exp to connect to my existing network. I DO remember thinking after it was finally working that "Wow, this is definately NOT a plug and play thing." It wasn't very easy to set up.
    I lost my laptops wireless connection last week and couldn't connect to my network and had to call linksys tech support. They had me input a new IP and DNS address because somehow my laptop "lost" the previous ones. Since then I have not been able to use my air-exp to connect to my stereo.
    I have called Apple tech support but since my 90 days is up they want to charge me $49.95 for up to five days worth of tech support. Which I think is a rip off becau linksys will help you out at anytime for fee but that's a topic for another discussion group. Common Apple, how about a $10 charge for one day of tech support, or even just 15 minutes worth to get my gear working again?
    Anyway, if anyone knows of any on-line walkthroughs of how to deal with these airport express set-ups or problems please let me know. Or, of course if anyone can walk me through this that would be even better. THANKS

    Thank you for your help.
    When I run air-util a window called base station chooser comes up and all the fields are blank. When I push "re-scan" nothing happens. When I push "other" a window pops up asking for IP address and password. I typed in the IP address given to me from Linksys tech and tried to move on but it came back asking me to fill in the password. I tried the default linksys password "admin" but it came back with an error.
    Do I hard (factory) reset the air-express by simply pushing the reset button or do I have to hold it in while I plug it in or simply push the button for a certain length of time?
    Thanks again.

  • Safari crashes or will not quit also the same problem using Yahoo Mail

    Iv been having a problem using Safari & Yahoo Mail. When opening specific e-mails or opening attachments withing the e-mail, Safari will crash. Not once or twice, but 2, 3, 4 or more times. Each time I send in a report to Apple telling them what is happening. I do not have the same problem if I use "Camino" with Yahoo Mail.
    I'm also having problems in that there are times when Safari seems to just be sitting there and not opening a page or will not quit when I hit the "Quit Safari" button. It will just sit there and if I bring up the "Force Quit Application" it shows that Safari is (not responding). Then I have to Force Quit Safari to get it to do something.
    Know this is really 2 situations, but does it mean that Safari is corrupted? Is it possible to have to much in Safari? To many bookmarks, to many RSS, things like that? Does Safari have it's own max like your HD?

    Morning Maria,
    Thanks for the help. I'll try to post the thing I found in the crash log, but it seems to be rather large. Checked and re-checked, but what I'm posting is the only thing that started or stopped like you said at the end. The entire thing runs for pages and pages. Remember I said that it's been an on going problem where Safari will crash 2,3,4 or more times in a 5 minute period. I send a report when ever that report window pops up. That adds up to a lot, LOL.
    If I understand you right as well. You're saying that the Safari cache folder should show a big flat ZERO if the cache is emptied and then I go back to check the folder. Does that mean then that when I empty the cache from Safari>Empty Cache ... that it isn't doing exactly everything? So that I will have to start going to Preferences to do it or to remove that folder more?
    BTW, does it hurt if I would remove and trash all those crash report logs that are in the files? Right now it shows 10.8MB in there.
    Okay, not that this will help, but here is what I found on the Safari crash log:
    Host Name: Macintosh
    Date/Time: 2007-04-22 09:56:44.165 -0500
    OS Version: 10.4.9 (Build 8P135)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [58]
    Version: 2.0.4 (419.3)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 206
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x14218191
    Thread 0 Crashed:
    0 com.apple.WebCore 0x95d5e458 RenderArena::allocate(unsigned long) + 48
    1 com.apple.WebCore 0x95d5f498 khtml::RenderStyle::operator new(unsigned long, RenderArena*) + 28
    2 com.apple.WebCore 0x95d6ff80 khtml::CSSStyleSelector::styleForElement(DOM::ElementImpl*, khtml::RenderStyle*, bool) + 264
    3 com.apple.WebCore 0x95d6fd70 DOM::NodeImpl::createRendererIfNeeded() + 104
    4 com.apple.WebCore 0x95d6fcf0 DOM::ElementImpl::attach() + 24
    5 com.apple.WebCore 0x95d6ed88 KHTMLParser::insertNode(DOM::NodeImpl*, bool) + 2440
    6 com.apple.WebCore 0x95d6cfa0 KHTMLParser::parseToken(khtml::Token*) + 612
    7 com.apple.WebCore 0x95d6a084 khtml::HTMLTokenizer::processToken() + 460
    8 com.apple.WebCore 0x95d6b9c0 khtml::HTMLTokenizer::parseTag(khtml::TokenizerString&) + 6256
    9 com.apple.WebCore 0x95d6990c khtml::HTMLTokenizer::write(khtml::TokenizerString const&, bool) + 928
    10 com.apple.WebCore 0x95da34c4 khtml::HTMLTokenizer::timerEvent(QTimerEvent*) + 244
    11 com.apple.WebCore 0x95da3384 -[KWQObjectTimerTarget sendTimerEvent] + 80
    12 com.apple.Foundation 0x92be5f68 __NSFireTimer + 116
    13 com.apple.CoreFoundation 0x907f2578 __CFRunLoopDoTimer + 184
    14 com.apple.CoreFoundation 0x907deef8 __CFRunLoopRun + 1680
    15 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    16 com.apple.HIToolbox 0x9329bb20 RunCurrentEventLoopInMode + 264
    17 com.apple.HIToolbox 0x9329b1b4 ReceiveNextEventCommon + 380
    18 com.apple.HIToolbox 0x9329b020 BlockUntilNextEventMatchingListInMode + 96
    19 com.apple.AppKit 0x937a0ae4 _DPSNextEvent + 384
    20 com.apple.AppKit 0x937a07a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    21 com.apple.Safari 0x00006740 0x1000 + 22336
    22 com.apple.AppKit 0x9379ccec -[NSApplication run] + 472
    23 com.apple.AppKit 0x9388d87c NSApplicationMain + 452
    24 com.apple.Safari 0x0005c77c 0x1000 + 374652
    25 com.apple.Safari 0x0005c624 0x1000 + 374308
    Thread 1:
    0 libSystem.B.dylib 0x9000b6e8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b63c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf2170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92bf20a8 -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x95b86e30 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002c0a8 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b6e8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b63c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c0a6a8 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002c0a8 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b6e8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b63c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c0b7e8 +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002c0a8 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001fc2c select + 12
    1 com.apple.CoreFoundation 0x907f1434 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002c0a8 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c768 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003124c pthreadcondwait + 480
    2 com.apple.Foundation 0x92bea30c -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9b13142c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002c0a8 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002c768 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003124c pthreadcondwait + 480
    2 com.apple.Foundation 0x92bea30c -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x9383d708 -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002c0a8 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x90055648 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071e88 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf74b8 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bf730c AsyncFileThread(void*) + 56
    4 libSystem.B.dylib 0x9002c0a8 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x9000b6e8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b63c mach_msg + 60
    2 ...romedia.Flash Player.plugin 0x061bb688 nativeShockwaveFlashTCallFrame + 1368296
    3 libSystem.B.dylib 0x9002c0a8 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000095d5e458 srr1: 0x000000000200f030 vrsave: 0x00000000fff00000
    cr: 0x28024224 xer: 0x0000000000000004 lr: 0x0000000095d5f498 ctr: 0x0000000095fdf664
    r0: 0x0000000095d5f498 r1: 0x00000000bfffe070 r2: 0x0000000005e9d4ac r3: 0x0000000014218191
    r4: 0x000000000000003c r5: 0x0000000000000000 r6: 0x0000000000000001 r7: 0x0000000000000001
    r8: 0x0000000005f02e81 r9: 0x0000000008119a40 r10: 0x0000000005f00e7d r11: 0x0000000005e9d470
    r12: 0x0000000095fdf664 r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000001
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x00000000000064d7 r19: 0x0000000000000000
    r20: 0x000000001017d27b r21: 0x00000000873141c0 r22: 0x0000000000000054 r23: 0x0000000000412a00
    r24: 0x0000000000000000 r25: 0x0000000000000001 r26: 0x0000000008119a40 r27: 0x0000000008119a40
    r28: 0x0000000000000000 r29: 0x0000000000000001 r30: 0x0000000007b91090 r31: 0x0000000095d6fe84
    Binary Images Description:
    0x1000 - 0xdcfff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x3734000 - 0x3736fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x3fbb000 - 0x4023fff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x5f05000 - 0x6219fff com.macromedia.Flash Player.plugin 9.0.28 (1.0.4f22) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bdfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90215000 - 0x9021afff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021c000 - 0x90269fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90294000 - 0x90345fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90374000 - 0x9072ffff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bc000 - 0x90895fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.10 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd1fff com.apple.CFNetwork 4.0 (129.20) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe6000 - 0x90ffefff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100e000 - 0x9108ffff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d5000 - 0x910fffff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91110000 - 0x9111efff libz.1.dylib /usr/lib/libz.1.dylib
    0x91121000 - 0x912dcfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913db000 - 0x913e4fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913eb000 - 0x913f3fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f7000 - 0x9141ffff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91432000 - 0x9143dfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91442000 - 0x914bdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fa000 - 0x914fafff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fc000 - 0x91534fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154f000 - 0x91621fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91674000 - 0x91705fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174c000 - 0x91803fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91840000 - 0x9189efff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cd000 - 0x918f1fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91905000 - 0x9192afff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193d000 - 0x9197ffff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199b000 - 0x919affff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bd000 - 0x91a03fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1a000 - 0x91ae1fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2f000 - 0x91b44fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b49000 - 0x91b67fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6d000 - 0x91c24fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c73000 - 0x91c77fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c79000 - 0x91ce1fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce6000 - 0x91d23fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2a000 - 0x91d43fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d48000 - 0x91d4bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4d000 - 0x91e2bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4b000 - 0x91e4bfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4d000 - 0x91f32fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3a000 - 0x91f59fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc5000 - 0x92033fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203e000 - 0x920d3fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ed000 - 0x92675fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a8000 - 0x929d3fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a03000 - 0x92af1fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af4000 - 0x92b7cfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbd000 - 0x92de8fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f15000 - 0x92f33fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3e000 - 0x92f98fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb6000 - 0x92fb6fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb8000 - 0x92fccfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe4000 - 0x92ff4fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93000000 - 0x93015fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93027000 - 0x930aefff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c2000 - 0x930cdfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d7000 - 0x93104fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311e000 - 0x9312efff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313a000 - 0x931a0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d1000 - 0x93220fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324e000 - 0x9326bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327d000 - 0x9328afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93293000 - 0x935a1fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f1000 - 0x936fdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93702000 - 0x93722fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93796000 - 0x93796fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93798000 - 0x93dcbfff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94158000 - 0x941cafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94203000 - 0x942c7fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94319000 - 0x94319fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9431b000 - 0x944dbfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94525000 - 0x94562fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9456a000 - 0x945bafff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945c3000 - 0x945d7fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9466d000 - 0x946a5fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946e8000 - 0x94704fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94718000 - 0x9475cfff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94780000 - 0x9478ffff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94797000 - 0x947a3fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947e9000 - 0x94801fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94808000 - 0x94addfff com.apple.QuickTime 7.1.5 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94ba1000 - 0x94c12fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94c85000 - 0x94ca5fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94dad000 - 0x94eddfff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94f6f000 - 0x94f7efff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94f86000 - 0x94fb3fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94fba000 - 0x94fcafff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94fce000 - 0x94ffdfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9500d000 - 0x9502afff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95b84000 - 0x95c12fff com.apple.WebKit 419 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95c6e000 - 0x95d04fff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95d41000 - 0x9604dfff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x961d6000 - 0x961fffff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x974b9000 - 0x974d8fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97cde000 - 0x97cebfff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x99537000 - 0x9a0e4fff com.apple.QuickTimeComponents.component 7.1.5 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9b12e000 - 0x9b164fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9b181000 - 0x9b193fff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI

  • Problem placing buttons on top of a background image

    My knowledge of Java isn't the greatest and I am currently having problems placing buttons on top of a background image within a JApplet (this is also my first encounter with Applets).
    I'm using a Card Layout in order to display a series of different screens upon request.
    The first card is used as a Splash Screen which is displayed for 5 seconds before changing to the Main Menu card.
    When the Main Menu card is called the background image is not shown but the button is.
    While the Applet is running no errors are shown in the console.
    Full source code can be seen below;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.net.*;
    // First extend JApplet
    public class WOT extends JApplet {
         //--------------- Variables are declared here -----------------
         private CardLayout contentCardLayout = new CardLayout();  // declare CardLayout
         private Container contentContain;     // declare content Container
         private JPanel contentCard, splashScreen, mainMenu, menuImage; // declare content Panels
         private JLabel splash, menu, map; // declare image labels
         private ImageIcon mapBtn; // declare ImageIcons
         private JButton mapOption; // declare option Buttons
         private Timer timer; // declare Timer
         private ActionListener actionListener, mapOptionListener; // declare ActionListener
    //--------------- Initialise Applet -----------------
      public void init() {
         //--------------- Set-up Card Layout -----------------
         contentCard = new JPanel(contentCardLayout); // assign card panels to CardLayout
         //--------------- Splash Screen -----------------
         splashScreen = new JPanel();
         splash = new JLabel(new ImageIcon(getClass().getResource("img/bg.gif")));
         splashScreen.add(splash);
         splashScreen.setSize(600,800);
         splashScreen.setLocation(0,0);
    //--------------- "View Map" Option Button -----------------
         mapBtn = new ImageIcon(getClass().getResource("img/map.gif"));
         mapOption = new JButton(mapBtn);
         mapOption.setBorder(null);
         mapOption.setContentAreaFilled(false);
         mapOption.setSize(150,66);
         mapOption.setLocation(150,450);
         mapOption.setOpaque(false);
         mapOption.setVisible(true);
    //--------------- Main Menu Screen -----------------
         //menuImage = new JPanel(null);
         //menuImage.add(mainMenu);
         //menuImage.setLocation(0,0);
         mainMenu = new JPanel(null);
         menu = new JLabel(new ImageIcon(getClass().getResource("img/menu.gif")));
         menu.setLocation(0,0);
         mainMenu.add(menu);
         //mainMenu.setBackground(Color.WHITE);
         mainMenu.setLocation(0,0);
         mainMenu.setOpaque(false);
         //mainMenu.setSize(150,66);
         mainMenu.add(mapOption);
         //--------------- Map Image Screen -----------------
         map = new JLabel(new ImageIcon(getClass().getResource("img/map.gif")));
         //--------------- Add Cards to CardLayout Panel -----------------
        contentCard.add(splashScreen, "Splash Screen");
         contentCard.add(mainMenu, "Main Menu");
         contentCard.add(map, "Map Image");
    //--------------- Set-up container -----------------
          contentContain = getContentPane(); // set container as content pane
          contentContain.setBackground(Color.WHITE); // set container background colour
           contentContain.setLocation(0,0);
           contentContain.setSize(600,800);
          contentContain.setLayout(new FlowLayout()); // set container layout
           contentContain.add(contentCard);  // cards added
           //--------------- Timer Action Listener -----------------
           actionListener = new ActionListener()
                    public void actionPerformed(ActionEvent actionEvent)
                             //--------------- Show Main Menu Card -----------------
                             contentCardLayout.show(contentCard, "Main Menu");
         //--------------- Map Option Button Action Listener -----------------
           mapOptionListener = new ActionListener()
                    public void actionPerformed(ActionEvent actionEvent)
                             //--------------- Show Main Menu Card -----------------
                             contentCardLayout.show(contentCard, "Map Image");
         //--------------- Timer -----------------               
         timer = new Timer(5000, actionListener);
         timer.start();
         timer.setRepeats(false);
    }Any help would be much appreciated!
    Edited by: bex1984 on May 18, 2008 6:31 AM

    1) When posting here, please use fewer comments. The comments that you have don't help folks who know Java read and understand your program and in fact hinder this ability, which makes it less likely that someone will in fact read your code and help you -- something you definitely don't want to have happen! Instead, strive to make your variable and method names as logical and self-commenting as possible, and use comments judiciously and a bit more sparingly.
    2) Try to use more methods and even classes to "divide and conquer".
    3) To create a panel with a background image that can hold buttons and such, you should create an object that overrides JPanel and has a paintComponent override method within it that draws your image using the graphics object's drawImage(...) method
    For instance:
    an image jpanel:
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import java.net.URISyntaxException;
    import java.net.URL;
    import javax.imageio.ImageIO;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    public class BackgroundImage
        // **** this will have to be changed for your program:
        private static final String IMAGE_PATH = "../../m02/a/images/Forest.jpg";
        private BufferedImage myImage = null;
        private JPanel imagePanel = new JPanel()
            @Override
            protected void paintComponent(Graphics g)
            {   // *** here is where I draw my image
                super.paintComponent(g);  // **** don't forget this!
                if (myImage != null)
                    g.drawImage(myImage, 0, 0, this);
        public BackgroundImage()
            imagePanel.setPreferredSize(new Dimension(600, 450));
            imagePanel.add(new JButton("Foobars Rule!"));
            try
                myImage = createImage(IMAGE_PATH);
            catch (IOException e)
                e.printStackTrace();
            catch (URISyntaxException e)
                e.printStackTrace();
        private BufferedImage createImage(String path) throws IOException,
                URISyntaxException
            URL imageURL = getClass().getResource(path);
            if (imageURL != null)
                return ImageIO.read(new File(imageURL.toURI()));
            else
                return null;
        public JPanel getImagePanel()
            return imagePanel;
    }and an applet that uses it:
    import java.lang.reflect.InvocationTargetException;
    import javax.swing.JApplet;
    import javax.swing.SwingUtilities;
    public class BackgrndImageApplet extends JApplet
        @Override
        public void init()
            try
                SwingUtilities.invokeAndWait(new Runnable()
                    @Override
                    public void run()
                        getContentPane().add(new BackgroundImage().getImagePanel());
            catch (InterruptedException e)
                e.printStackTrace();
            catch (InvocationTargetException e)
                e.printStackTrace();
    }

  • Custom master page branding is missing buttons to add Web Parts

    I've created a custom master page which does not display the "add" or "cancel" buttons when adding web parts to the page. These elements are controlled by CSS tags such as: .ms-wpadder, .ms-wpadder-cell, .ms-wpadder-buttonArea, .ms-wpadder-zoneArea, #s4-ribbonrow
    among others. I have attached a screenshot on my SkyDrive account
    SharePoint Master Page Screenshot
    which displays the web part objects but not the buttons to add them to your page. The cells of the #s4-ribbonrow are red .ms-wpadder-cell have been colored orange for display purposes. Here is some code I am experimenting with to solve the problem
    #s4-ribbonrow{background-color:red !important; padding-bottom:50px !important;min-height: 43px; max-height:200px; overflow-y: hidden;}
    .ms-wpadder-buttonArea .ms-wpadder-zoneArea{padding-bottom:50px; background-color:aqua;}
    .ms-wpadder-cell{min-height:220px !important; background-color:orange;}
    .ms-wpadder{padding-bottom:50px !important;}
    #RibbonContainer{background-color:transparent;}
    body #s4-ribboncont{background-image:none; padding-top:150px;}
    Alex Dove - MA, MCP, SharePoint certified developer

    Hi Pivotal,
    I think you use other style, because I apply your style on v4.master but this hide all ribbon
    panels, anyway I think your issue related with  
    body #s4-ribboncont
    padding-top: 150px;
    Try to decrease or remove padding-top.
    Hope that helps a little
    Regards,
    Senior Sharepoint Developer [email protected]

  • Problem using Detail group region

    Hi Guys,
    I'm having problems using a detail group container. The problem is that when the detail group is placed in the detail region group, there is no button under that group to add a new row to the group. Is this a bug in JHS or have I done something wrong?
    The reason I'm using the container is that I want selective rendering of detail groups depending on the state of an item in the parent group.
    Regards
    Bar
    JDev: 10.1.3.2.0
    JHS: 10.1.3.1.26

    Bar,
    I could reproduce both problems. To fix the problem with the New button, you can change the content of the tableGroupButtons.vm template:
    #if ($JHS.page.hasDetailPageComponents || $JHS.page.hasGroupRegionPageComponents)
    <af:panelButtonBar id="${group.shortName}TableGroupButtons">
    #JHS_PARSE("NEW_BUTTON_NOT_IN_FORM_LAYOUT" ${JHS.current.model})
    </af:panelButtonBar>
    #end
    To fix the issue with the roles check, you can enter the rendered expression that is missing in the rendered property of the group region.
    Steven Davelaar,
    JHeadstart Team.

  • Problem when trying to add a master-detail

    Hi all.
    I have customize a list in sharepoint with infopath.
    Now I want to add the master detail to this form.
    If I add a Web Part, from the list, no problems... I can create a filter between them and the master details works perfect. The problem of this is that I have an infopath form for the master and a 'sharepoint list' desing for the detail, and is not very
    good looking.
    So, what I want is to add for the detail, another infopath form, but I not able to.
    I have added a web part - category form - Infopath form web part but I'm not able to add the filter condition and get only the detail related to the master.
    Please help me!
    Thanks a lot in advance

    Hi pabivil,
    According to your description, my understanding is that you want to connect an InfoPath form web part to a list in SharePoint 2010.
    To achieve it, you can add a button then create a rule based on the button to send data to web part in the InfoPath form like the screenshot. After that, when you add the InfoPath form web part and the list in the same page,  the list can get the filter
    param from the InfoPath form.
    More information:
    http://office.microsoft.com/en-001/sharepoint-help/use-the-infopath-form-web-part-HA102770988.aspx
    http://sharepoint.stackexchange.com/questions/61118/infopath-form-web-part-connection-to-a-list-view-web-part
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for

  • 2:30 QuickTime Movie in Presentation

    Greetings, We are using Keynote 08 as an electronic kiosk. When we add the movie it will not play the entire 2:30 before transitioning to the next slide. Only see an option for :60...how do you instruct Keynote to play the entire 2:30 QuickTime movie

  • Do Auto-Updating Smart Playlists really work?

    I followed the old thread about auto-updating smart playlists not updating automatically on the iPod. Apparently the 2006-1-10 update fixes it, but some smart playlists still aren't updating for me. The simple rating-based playlists work (they update

  • How to avoid printing of void cheques

    Hi Friends, In the check printing program FBZ5,  whenever there are more than 25 line items, the first two cheques are getting cancelled and the third cheque is getting printed and thereby wasting the first two cheques. I would like to know, how to a

  • File to File - no mapping

    Hi,     I want to transfer files from one FTP location to another FTP location. No Mapping is involved, just file transfer. Please let me know the steps. Is Interface mapping & Message Interface is required ??  Is it possible to transfer without crea

  • How to upload chunks of Jpeg pictures in smartform using BDC.

    helo expert, Could you please tell me how can  i upload pictures in sap tables using bdc or something else. actually i would like to display pics as a field value dynamically in samrtforms while printing an invoice. IS there any facility to upload JP