World Nomad Games 2026: Analyzing Kyrgyz Media Coverage with Python

Imagen
World Nomad Games 2026: Analyzing Kyrgyz Media Coverage with Python What did Kyrgyz media talk about during the World Nomad Games 2026 ? In this project, we used Python, Pandas and BeautifulSoup to analyze news coverage published by Kabar , the Kyrgyz national news agency. The goal was to understand how the Games were covered from a Kyrgyz media perspective. Instead of looking only at individual articles, we transformed the news headlines into data and created visualizations to answer three questions: When did Kabar publish the most World Nomad Games stories? Which countries were mentioned most often? What type of topics dominated the coverage? Data Source The analysis is based on 51 Kabar news headlines published between August 31 and September 6, 2026 . Kabar provides an RSS feed, which can be accessed programmatically with Python. However, the current RSS feed mainly contains recent stories. To reconstruct the World Nomad Games coverage for the event dates, ...

馃憠 Oracle API Tutorial: Actualizar Descriptive Flexfields (DFF) con Postman paso a paso

C贸mo Actualizar un Descriptive Flexfield (DFF) en Oracle usando Postman y SOAP Web Services

Si necesitas actualizar un campo de un Descriptive Flexfield (DFF) en Oracle, puedes hacerlo f谩cilmente utilizando Postman junto con SOAP Web Services.

En esta gu铆a paso a paso aprender谩s c贸mo actualizar el valor de un DFF a nivel factura de Accounts Receivable (AR) o Cuentas por Cobrar consumiendo un API de Oracle.

Este tipo de integraci贸n es muy utilizada en proyectos empresariales donde se requiere automatizar procesos financieros sin intervenci贸n manual.

¿Qu茅 es un Descriptive Flexfield (DFF) en Oracle?

Los Descriptive Flexfields permiten extender la funcionalidad est谩ndar de Oracle agregando campos personalizados sin modificar la estructura base del sistema.

Son ampliamente utilizados para almacenar informaci贸n adicional en facturas, clientes, proveedores y m煤ltiples m贸dulos financieros.

C贸mo encontrar un API de Oracle

Primero debemos ir a la documentaci贸n oficial de Oracle:

https://docs.oracle.com/en/cloud/saas/sales/oesws/Sample-Payloads-for-CustomerAccount-Webservice-Requests-Landingpage.html

Desde esa pantalla identificaremos la URL del servicio:

Service WSDL URL: https://servername/fscmService/ErpObjectDFFUpdateService?WSDL

Configurar la petici贸n en Postman

Ahora entraremos a Postman para construir nuestro request SOAP.

Gu铆a para ejecutar el API desde Postman

Selecciona el m茅todo POST y utiliza la URL del servicio reemplazando servername por tu servidor:

https://servername/crmService/fscmService/ErpObjectDFFUpdateService

Despu茅s agrega tus credenciales en la secci贸n Authorization y en Body selecciona raw → XML.

XML para actualizar un DFF en Oracle

Utiliza el siguiente XML como base para ejecutar la actualizaci贸n:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
 xmlns:typ="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/types/"
 xmlns:erp="http://xmlns.oracle.com/apps/financials/commonModules/shared/model/erpIntegrationService/">
   <soapenv:Header/>
   <soapenv:Body>
      <typ:updateDffEntityDetails>
         <typ:operationMode>SINGLE</typ:operationMode>
         <typ:object>
            <erp:EntityName>Receivables Invoice</erp:EntityName>
            <erp:ContextValue>Contexto</erp:ContextValue>
            <erp:UserKeyA>{{TransactionNumber}}</erp:UserKeyA>
            <erp:UserKeyB>#NULL</erp:UserKeyB>
            <erp:UserKeyC>#NULL</erp:UserKeyC>
            <erp:UserKeyD>{{TransactionID}}</erp:UserKeyD>
            <erp:UserKeyE>#NULL</erp:UserKeyE>
            <erp:DFFAttributes>{"ATTRIBUTE1":"valor","ATTRIBUTE2":"valor2"}</erp:DFFAttributes>
         </typ:object>
      </typ:updateDffEntityDetails>
   </soapenv:Body>
</soapenv:Envelope>

Valores que debes modificar

  • Contexto: valor del contexto donde est谩 el DFF.
  • TransactionNumber: n煤mero de factura o transacci贸n.
  • TransactionID: identificador interno de Oracle.
  • ATTRIBUTE1 / ATTRIBUTE2: campos que deseas actualizar.

Query para obtener los IDs

select
   rca.CUSTOMER_TRX_ID,
   rca.TRX_NUMBER
from RA_CUSTOMER_TRX_ALL rca;

Conclusi贸n

Actualizar un DFF en Oracle mediante APIs permite automatizar procesos financieros, reducir errores manuales y mejorar la integraci贸n entre sistemas empresariales.

Si trabajas con Oracle Cloud o implementaciones ERP, dominar este tipo de integraciones puede ahorrarte muchas horas de operaci贸n.

Comentarios

馃殌 Mantener este blog funcionando requiere tiempo y caf茅. ¡Puedes contribuir con uno aqu铆!

Entradas m谩s populares de este blog

Gu铆a Pr谩ctica: Ejemplo Completo de ASPX para Desarrolladores Web

馃憠 C贸mo obtener el tipo de cambio en Excel con API de Banxico (paso a paso)

Macro en Word para automatizar documentos: genera diplomas en segundos (con c贸digo VBA)