Add a hashtable to another hashtable

Function HDD_Information($Output)
$Server = $Output.Server
$Output1 = @{};
$HDDInfor = gwmi win32_diskdrive -ComputerName $Server -EA stop
Foreach ($HDD in $HDDInfor)
$Output."Size" = $HDD.Size
$Output."Model" = $HDD.Model
$Output1.Add($Output)
return $Output1
I am trying to add a hashtable to another hastable, but i get an error  :- 
Cannot find an overload for "Add" and the argument count: "1"
+                 $Output1.Add <<<< ($Output)
    + CategoryInfo          : NotSpecified: (:) [], MethodException
    + FullyQualifiedErrorId : MethodCountCouldNotFindBest
First Hashtable = $Output 
The $Output variable contains the follwing values
@{Model=VMware Virtual disk SCSI Disk Device; Size=12231242555}
@{Model=VMware Virtual disk SCSI Disk Device; Size=84853845435546}
Second Hashtable = $Output1
So When the function returns 2 values, the script enters only one value in the csv file.. I want to save both the values in a hashtable and enter into the csv. Have got the csv part all figured out, just
having problem adding both the return values in CSV.
Any help is appreciated!

I hear you. my code is wrong..
Now since all of my servers have 2 physical disks...
gwmi win32_diskdrive -ComputerName $Server -EA stop
|select Size, Model
This command returns 2 values .. one value for physical
0 and another value for physical 1..my code is designed to work with only 1 value.
How do i make it work for 2 values and feed it into
CSV.
gwmi win32_diskdrive -ComputerName $Server |select Size,
Model | Export-Csv myfile.csv -NoType
¯\_(ツ)_/¯

Similar Messages

  • I went to add my iPod to another computer and when I did it re-bought all of my music and I would like to know how to get my money back for it?

    I went to add my iPod to another computer and when I did it re-bought all of my music and I would like to know how to get my money back for it?
    anyonr know how I can get my money back????????

    Go to Settings>General>Reset>Erase all content and setting. Then re-setup the iPod with your account/media. To redownload iTunes purchases see:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • How to add an image over another using af:image

    How to add an image over another using af:image
    Thanks,
    Veera

    i have a image which is black strip. i have added that to af:image
    <af:image source="image1" id="image" />
    on the black strip, i need to add company logo.
    how to achieve it.
    Thanks,
    Veera.

  • How to add a Image on Another Image in Photoshop?

    Hi
    I am totally New to Photoshop I want to add Some Image on Another Image.How to do this?
    I am using Photoshop first time...
    Thanks

    I suggest to watch online tutorial videos. Check Adobe TV for a first start.
    About your question: Open both images in PS, then switch to the one you want to add, press Ctrl+A (selects everything), press Ctrl+C (copy everything in the layer), assuming your image only has one layer, then this is OK. Then switch to the other image and press Ctrl+V to paste. PS will create a new layer and paste the image 1:1.
    Alternatively, open only the target image and place the other image per drag 'n drop in the target image, which will let PS make it a smart object (not 1:1, but can be resized).
    Then do whatever you want with the layer of the added image.

  • Add shared calendar to another users account using powershell

    Hi,
    I am trying to add a calendar to another using account using powershell as it will be easier to make a script than logging in to each user and adding the calendar. Has anyone done this before or know how to do it.
    Thanks

    Are you asking about Outlook or about Exchange?
    In Exchange you can likely do this via EWS.
    Here is how to do this in Access but has to be done under user account:\
    http://www.outlookcode.com/threads.aspx?forumid=2&messageid=27088
    Under EWS it is similar but can be done by impersonation.
    ¯\_(ツ)_/¯

  • How do I designate a number in one table and add them up in another.

    Can someone please help me do this. I dont even know what to call it. Conditional categorization?
    I have a table with costs, and another table to separate them into categtroies as shown:
    I want to be able to enter a category in the green column, and have those nunmber appear and total up in the COST TOTALS in the second table.
    What formula do I put in the COST TOTALS cells?

    Tracy,
    Name the table on the left "Data" and the table on the right "Summary".
    In the table table summary add a header row and a footer row.  In my example the header is row 1 and the footer is row 13:
    For the table on the right (title "Summary") make the header row contain the titles as show.  Also enter the categories as show.  in column A of the footer enter the text "Total"
    B2=SUMIF(Data::A, A2,Data::B)
    this is shorthand for select cell B2 and type (or copy and paste from here) the formula:
    =SUMIF(Data::A, A2,Data::B)
    now select B2,  and fill down by hovering the cirsor over the bottom edge and drag the yellow circle down as needed.
    In the footer row (in this example B13) enter the formula:
    B13=SUM(B)
    Please let us know if you have other questions

  • 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:

  • How to add a link to another page

    Hello,
    I am new to Adobe Designer 7.0, I'm liking it so far, I had a question though, I was wondering how I could make a link from one page to another. For instance, I want to have a table of contents and I want the user to be able to click on the word whatever that may be and for it to go to the page which they chose.
    I appreciate your responses!!
    Mac Mendez

    Mac, the best way to do this is use a Button and change it to look like a hyperlink (color, etc.). Add a setFocus JavaScript on the Click event to a field on the page you want it to go to; e.g.,
    xfa.host.setFocus("Page3.TextField1");
    If there is not a field on the page, make a hidden field for it to jump to.

  • Add a hyperlink to another document? CS4

    Hi,
    How would one add a hyperlink to a document that refers to another document?
    The basic is:
    myDoc.hyperlinks.add(myHyperlinkTextSource, myHyperlinkTextDestination);
    How do I get "myHyperlinkTextDestination" if it exists in another, unopened InDesign document?
    I suppose I could open the document, get the Hyperlink destination, and then close it again, but in the UI this is not necessary (you simply browse to the required file and can then choose from a list of hyperlink destinations in that file). So how is this scripted?
    Thanks,
    Ariel

    Next, I tried this:
    I opened the document and got it's HyperlinkTextDestination.
    Then I used it when adding the hyperlink to the main document:
    app.activeDocument.hyperlinks.add(mySource, myDestination) //myDestination is a hyperlink destination in another document.
    And I get the following error message:
    Cannot set this property to an object in another document.
    So I'm clearly on a wild goose chase here.
    But obviously this is possible since it is doable in the UI.
    Any and all help appreciated!
    Ariel

  • How to add one item when another item get added into the iProcurement Cart

    Hi,
    Please help me to do the following customization in iProcurement Cart:
    Requirement-1:
    1. Login to iProcurement and add one Item ITEM1 to Cart.
    2. Make another Item ITEM2 mandatory or get added automatically when Item ITEM1 gets added into the iProcurement Cart
    OR
    Requirement-2:
    1. Login to iProcurement and add one Item ITEM1 to Cart.
    2. Go to Cart and click Checkout.
    3. While checking out Item ITEM1, we need some validation to make another Item ITEM2 mandatory or get added automatically with Item ITEM1.
    Thanks in Advance,
    SB

    Hi tiff512:
    The way is:
    SAP NetWeaver > General Settings > Check Units of Measurement.
    The help documentation says the following in relation to the creation of new units of measure:
    "If required, define new units of measurement according to the international system of units (SI) with the menu function Unit of meaurement -> Create.
    Here you have to make make specifications for:
    Display (including a descriptive Units of measurement text)
    Conversion (not applicable to units of measurement without dimensions)
    Data exchange (EDI) (optional)
    Application parameters"
    I hope it is helpful to you.
    Regards,
    David

  • How can i add a hashmap to another hashmap without lossing the second one?

    hi all
    can anyone show me how to add a hashmap object to another hashmap object without lossing anything that was in the second one. thanks

    hi all
    can anyone show me how to add a hashmap object to
    another hashmap object without lossing anything that
    was in the second one. thanksDo you want to add the hashmap itself to the hashmap? If so:firstMap.put("someKey", secondMap); should do it. But I suspect you want to add all key/value pairs from the second map to the first, in which case the "putAll" method is what you're looking for. Note that the putAll method will replace the values in the first map with any values with the same key that are in the second map.
    Good Luck
    Lee

  • Add a .mov to another .mov

    Helo all,
    I want to add a .mov file to another .mov file.
    Like the first one(.mov) is the last frame in the second
    .mov file.i tried Merge.java in java.sun.com.But,its
    displaying as 2 different files.i need to add one to another.
    Thanx for any help in advance,
    thirupathi

    You can insert pages.

  • Add sub partition on another column in oracle

    I have a table which has two partitions (by range): first_half and second_half based on a column "INSERT_DAY".
    I need to add subpartitions "SUCCESS" and "NONSUCCESS" based on the values of another column "STATUS" (subpartition by list) i.e. I need to transform my range partition to composite (range-list) partition.
    I do not wish to drop existing tables or partitions. What is the ALTER query for this?
    PS: The database is Oracle 9i

    Ok, my bad. The project is about charging GPRS customers for data usage.
    Here is the real DDL:
    CREATE TABLE CDR_EVENT_RCD_FILE_MOB_AGG
       (    "MOBILE_NO" VARCHAR2(16 BYTE),
        "DATA_VOLUME" NUMBER(*,0),
        "CHARGE" NUMBER(*,0),
        "RECORD_COUNT" NUMBER(*,0),
        "COUNTER" NUMBER(*,0) DEFAULT 0,
        "INSERT_DAY" NUMBER(*,0),
        "MAX_FILE_SEQ_NO" NUMBER(*,0),
        "MIN_FILE_SEQ_NO" NUMBER(*,0),
        "REQUEST_ID" VARCHAR2(21 BYTE),
        "TRANSACTION_ID" VARCHAR2(21 BYTE),
        "RESPONSE_TIME" TIMESTAMP (6),
        "RETURN_CODE" CHAR(2 BYTE),
        "FAILURE_REASON" VARCHAR2(1024 BYTE),
        "CHARGED_AMOUNT" NUMBER(*,2)
      PARTITION BY RANGE ("INSERT_DAY")
    (PARTITION "FIRST_HALF"  VALUES LESS THAN (16)  ,
    PARTITION "SECOND_HALF"  VALUES LESS THAN (MAXVALUE) ) ;
      CREATE INDEX "CDRDEVTBS"."MAX_FILE_SEQ_NO_INDEX" ON "CDRDEVTBS"."CDR_EVENT_RCD_FILE_MOB_AGG" ("MAX_FILE_SEQ_NO") ;
      CREATE INDEX "CDRDEVTBS"."MOBILE_NO_INDEX" ON "CDRDEVTBS"."CDR_EVENT_RCD_FILE_MOB_AGG" ("MOBILE_NO") ;
    As you can see, it is partitioned by range on "Insert_day".
    The requirement is to delete all the records having counter=3 (which means successful charging) for the records which are older than 15 days.
    So I thought, why not create sub partitions with counter so that final DDL would be something like the following. I would then avoid writing a DELETE query, which would take a lot of time to execute.
    CREATE TABLE CDR_EVENT_RCD_FILE_MOB_AGG (
        insert_day INT,
        counter INT,
    --other columns
    PARTITION BY RANGE (insert_day)
    SUBPARTITION BY LIST(counter)
    SUBPARTITION TEMPLATE
        SUBPARTITION SUCCESS VALUES(3),
        SUBPARTITION NONSUCCESS VALUES(DEFAULT)
        PARTITION first_half VALUES LESS THAN (16),
        PARTITION second_half VALUES LESS THAN (maxvalue)
    So that I could execute queries:
    alter table CDR_EVENT_RCD_FILE_MOB_AGG  truncate subpartition first_half_success; --execute on last day of every month
    alter table CDR_EVENT_RCD_FILE_MOB_AGG  truncate subpartition second_half_success; -- execute on 16th day of every month
    to remove unnecessary records.
    I would like to create subpartitions without dropping the existing table.

  • Add a panel on another panel

    I am working on a program and need to put one panel into another panel . I have been successful at adding the panel
    however when i do this i cannot set the size of the 2nd panel. The first panel on the frame is just fine
    i have tried adding the panel to the first panels constructor this works the panel shows up but i am unable
    to set the size of the panel which is the problem.
    I tried calling this.setSize in the second panels constructor to solve this problem no luck there
    i have also tried adding the 2nd panel to the frame but this produces the same problem as stated above
    im really stumped any help woul be appreciated
    here is some code i have
    This is the frames class with the first panel added
    public ICUFrame () {
            super("ICU");
            canvas= new ICUPanel();
            add(canvas, BorderLayout.CENTER);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setSize(1000,1000);
            setVisible(true);
        } this is the panel on the frame
    only the constructor is required here as the rest is just code for drawing etc...
    public class ICUPanel extends JPanel {
        DiaDisplay d ;
        SysDisplay s;
        public ICUPanel(){
            super();
            setBackground(Color.BLACK);
            ICUMonitoring monitor = new ICUMonitoring();
            Thread rep = new Thread(new Repainter());
            d = new DiaDisplay(220,20,40,200);
            s = new SysDisplay(420,220,40,200);
            rep.start();
        }// end of constructor
    }this is the 2nd panel i am trying to add to the 1st panel
    public class ECGPanel extends JPanel {
        ecgDisplay e;
         public ECGPanel(){
         super();
         setBackground(Color.white);
         e = new ecgDisplay();
        }// end of constructor
    }

    xiaolixx wrote:
    I am working on a program and need to put one panel into another panel . I have been successful at adding the panel
    however when i do this i cannot set the size of the 2nd panel. The first panel on the frame is just fine
    i have tried.. What happened to your shift key? Please apply it once at the start of every sentence, rather than those rare occasions you 'feel like it'. Adding an upper case letter to each sentence makes it easier for people to quickly scan the text, looking for ways to help. You would not want to make it harder for someone to help, would you?
    ..adding the panel to the first panels constructor this works the panel shows up but i am unable
    to set the size of the panel which is the problem.
    I tried calling this.setSize in the second panels constructor to solve this problem no luck there
    i have also tried adding the 2nd panel to the frame but this produces the same problem as stated above
    im really stumped any help woul be appreciated
    here is some code i haveAlso known as 'uncompilable code snippets'. For better help sooner, post an SSCCE . But first, go through the tutorial to which Darryl linked.

  • Add navigation call to another report BETWEEN existing calls in Answers

    Hi,
    Would anyone know how to add a navigation call to another report BETWEEN existing
    navigation calls ? At the moment I can only add them to the END of all the other navigation
    calls.
    Many thanks,
    - Jenny

    You can write all that data out to text file yes. The problem is that writing out to files is done using the Doc Template step and the template has to be of a known configuration. So you could write one line of data or XML out to a file and then the next call would have to be a file with a different name. That is fine if you have a parser application somewhere picking up each file as it comes out.
    If you are looking for a batch job over night thing, then I would suggest a custom historical report run on the Schedule that outputs to a data or csv type file.
    Other than that, there is not much you can do without getting into crazy custom Java in the code.

Maybe you are looking for