...
More than one Remark is included within the same Instruction ListKey.
Note: Regardless of which product has been requested in the AirShoppingRQ.
...
OrderCreateRQ | OrderViewRS |
---|
In the AirShoppingRQ, only the Humanitarian product is requested, and in the OrderCreateRQ we find that the first Instruction does not show the expected Humanitarian additional information. It will, then, be ignored and only the first one of the two Instructions left are is valid. Code Block |
---|
| <InstructionsList>
<Instruction ListKey="Instruction_1">
<FreeFormTextInstruction>
<Remark>SEMN/.NAVIERA-BLUE./AR</Remark>
</FreeFormTextInstruction>
</Instruction>
<Instruction ListKey="Instruction_2">
<FreeFormTextInstruction>
<Remark>HUMN/NACIÓN UNI(DA).</Remark>
</FreeFormTextInstruction>
</Instruction>
<Instruction ListKey="Instruction_3">
<FreeFormTextInstruction>
<Remark>HUMN/PRIMERA NACIÓN.</Remark>
</FreeFormTextInstruction>
</Instruction>
</InstructionsList> |
| Humanitarian warning message example: Code Block |
---|
| <Warnings>
<Warning ShortText="SSE_ORM_HU_0002" Code="486">Only the first Humanitarian information included.</Warning>
<Warning ShortText="SSE_ORM_HU_0001" Code="486">Humanitarian information ignored as invalid.</Warning>
</Warnings> |
Same example, but with Marine requested in the AirShoppingRQ: Code Block |
---|
| <Warnings>
<Warning ShortText="SSE_ORM_MA_0001" Code="486">Marine information ignored as invalid.</Warning>
<Warning ShortText="SSE_ORM_MA_0002" Code="486">Only the first Marine information included.</Warning>
</Warnings> |
|
...
OrderCreateRQ | OrderViewRS |
---|
In both cases, the product requested in the AirShoppingRQ does not match the information later included in the OrderCreate InstructionsList: Humanitarian product is requested in the AirShoppingRQ: Code Block |
---|
| <InstructionsList>
<Instruction ListKey="Instruction_1">
<FreeFormTextInstruction>
<Remark>text1</Remark>
</FreeFormTextInstruction>
</Instruction>
</InstructionsList> |
Marine product is requested in the AirShoppingRQ: Code Block |
---|
| <InstructionsList>
<Instruction ListKey="Instruction_1">
<FreeFormTextInstruction>
<Remark>text2</Remark>
</FreeFormTextInstruction>
</Instruction>
</InstructionsList> |
| Humanitarian warning message returned: Code Block |
---|
| <Warnings>
<Warning ShortText="SSE_ORM_HU_0001" Code="486">Humanitarian information ignored as invalid.</Warning>
</Warnings> |
Marine warning message returned: Code Block |
---|
| <Warnings>
<Warning ShortText="SSE_ORM_MA_0001" Code="486">Marine information ignored as invalid.</Warning>
</Warnings> |
|
Examples of messages with complete flows can be downloaded from here.
Scenario 4 - Non-permitted characters in Comapany name
To learn more about which charecters are currently allowed, please visit our Humanitarian and Marine Products page.
OrderCreateRQ | OrderViewRS |
---|
The company name included in the OrderCreateRQ contains one ore more characters that, as of today, are not allowed. In the example “@” “_” “ = “ will return an error message. Code Block |
---|
| <InstructionsList>
<Instruction ListKey="Instruction_1">
<FreeFormTextInstruction>
<Remark>SEMN/Comp@ny_name=/Pais</Remark>
</FreeFormTextInstruction>
</Instruction>
</InstructionsList> |
| Error message returned: Code Block |
---|
| <Errors>
<Error ShortText="SSE_ORM_9044" Code="486">PNR Error: Invalid PNR</Error>
</Errors> |
|
For further information about all kind of error messages, please go to the following link:
Error Codes
...