Actualizar el perfil de cajero del casete para SET - MIA con tarjeta de compras (para Windows NT, Windows 2000, AIX y Solaris en Business Edition)

Para utilizar el perfil de cajero del casete para SET - Merchant Initiated Authorization con tarjeta de compras con una base de datos Oracle, haga lo siguiente:

  1. Cambie al directorio siguiente:
    unidad:\WebSphere\CommerceServer\instances\nombre_instancia\xml\payment\
    unidad:\Archivos de programa\WebSphere\CommerceServer\instances\nombre_instancia\xml\payment\
    /usr/WebSphere/CommerceServer/instances/nombre_instancia/xml/payment/
    /opt/WebSphere/CommerceServer/instances/nombre_instancia/xml/payment/ 
  2. Abra WC51_SET_MIA_PCard.profile en un editor de texto.
  3. Comente la sección SelectStatement añadiendo <!-- delante del código <SelectStatement inicial y --> después del código </SelectStatement> final. La primera sección debería quedar así:
    <!--
    <SelectStatement id="1" allowMultiples="true" >
    SELECT PARTNUMBER, SHORTDESCRIPTION, integer(QUANTITY) as INT_QUANTITY, RTRIM(QUANTITYMEASURE) as QTYMEASURE, integer(PRICE*{currency_factor}) as UNITCOST,
    integer( (TOTALPRODUCT+TAXAMOUNT+SHIPCHARGE+SHIPTAXAMOUNT+TOTALADJUSTMENT) * {currency_factor}) as TOTALCOST
    FROM orderitems, catentry, catentship, catentdesc
    WHERE orders_id = {orderId}
    AND orderitems.catentry_id = catentry.catentry_id
    AND orderitems.catentry_id = catentship.catentry_id
    AND orderitems.catentry_id = catentdesc.catentry_id
    AND catentdesc.language_id = {buyer_language_id}
    </SelectStatement>-->
  4. Active la segunda sección SelectStatement eliminando <!-- delante del código <SelectStatement inicial y --> después del código </SelectStatement> final. La segunda sección debería quedar así:
    <SelectStatement id="1" allowMultiples="true" >
    SELECT PARTNUMBER, SHORTDESCRIPTION, round(QUANTITY) as INT_QUANTITY, RTRIM(QUANTITYMEASURE) as QTYMEASURE, round(PRICE*{currency_factor}) as UNITCOST,
    round( (TOTALPRODUCT+TAXAMOUNT+SHIPCHARGE+SHIPTAXAMOUNT+TOTALADJUSTMENT) * {currency_factor}) as TOTALCOST
    FROM orderitems, catentry, catentship, catentdesc
    WHERE orders_id = {orderId}
    AND orderitems.catentry_id = catentry.catentry_id
    AND orderitems.catentry_id = catentship.catentry_id
    AND orderitems.catentry_id = catentdesc.catentry_id
    AND catentdesc.language_id = {buyer_language_id}
    </SelectStatement>
  5. Guarde el archivo y cierre el editor. El cajero utilizará automáticamente el perfil actualizado la siguiente vez que utilice el perfil.

Nota: No es necesario detener WebSphere Commerce Server para actualizar el perfil.

Conceptos relacionados (1.275 bytes)

Referencias relacionadas (1275 bytes)

Copyright de IBM