Saber API *A 或 *IM 命令等价物

Sabre API *A OR *IM command equivalent

DELTA 航空公司未创建 PNR,需要帮助

我在 PassengerDetailsRQ 上收到此警告

已收到直接连接消息 - 输入 *A 或 *IM

所有定价提取正常,航段状态为 HK 但未生成 PNR((

你能告诉我什么是 Sabre API 相当于 *A 或 *IM 命令以及如何解决这个问题。

假设您正在使用 XML 服务,您可以尝试 运行 SabreCommandLLSRQ 负责 运行ning 命令。确切的命令指令放在 <HostCommand> 节点中。以下 IM 命令的示例(header 部分因冗长而为空)

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <!-- Header content -->
  </soap:Header>
  <soap:Body>
    <SabreCommandLLSRQ xmlns="http://webservices.sabre.com/sabreXML/2003/07" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" TimeStamp="2014-03-04T14:00:00" Version="1.8.1">
      <Request Output="SCREEN" CDATA="true">
        <HostCommand>IM</HostCommand>
      </Request>
    </SabreCommandLLSRQ>
  </soap:Body>
</soap:Envelope>

如前所述,您可以使用错误消息中指定的 SabreCommandLLSRQ 到 运行 确切的主机命令,但 *A 的等效 Web 服务命令将是 TravelItineraryReadRQ 和 FULL 主题区(且未指定 UniqueID)。

再次检索 PNR 后,您只需再次 EndTransactionLLSRQ。