Skip to content

Commit c8221b4

Browse files
author
ecfan
committed
Fix links
1 parent f53b2da commit c8221b4

File tree

3 files changed

+11
-35
lines changed

3 files changed

+11
-35
lines changed

articles/logic-apps/monitor-track-b2b-transactions-standard.md

Lines changed: 6 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -134,31 +134,7 @@ For tracking to work correctly, make sure that all the following conditions are
134134

135135
:::image type="content" source="media/monitor-track-b2b-transactions/example-x12-message-details.png" alt-text="Screenshot shows Premium integration account with B2B tracking selected, and a table with details about collected X12 messages.":::
136136

137-
138-
139-
For more information about the JSON schema for these properties, see [Table schemas for tracking B2B transactions](tracking-table-schemas-standard.md).
140-
141-
### X12 message properties
142-
143-
| Column name | Expanded name |
144-
|-------------|---------------|
145-
| **AgreementName**| Agreement name |
146-
| **SenderParternerName** | Sender partner |
147-
| **ReceiverPartnerName** | Receiver partner |
148-
| **MessageStatus** | Message status |
149-
| **MessageDirection** | Message direction (**`send`** or **`receive`**) |
150-
| **MessageTime** | Message time |
151-
| **MessageClientTrackingId** | Message client tracking ID |
152-
| **InterchangeControlNumber** | Interchange control number |
153-
| **FunctionalGroupControlNumber** | Functional group control number |
154-
| **TransactionSetStatus** | Transaction set status |
155-
| **TransactionSetControlNumber** | Transaction set control number |
156-
| **IsFunctionalAckExpected** | Is a functional acknowledgment expected (**`true`** or **`false`**) |
157-
| **AckStatus** | Acknowledgment status |
158-
| **TransactionSetAckStatus** | Transaction set acknowledgment status |
159-
| **FunctionalAckStatus** | Functional acknowledgment status |
160-
161-
For more information about the JSON schema for these message properties, see [Table schemas for tracking B2B transactions](tracking-table-schemas-standard.md#).
137+
For more information about these table columns, see [Tracking schemas for B2B transactions - Standard workflows](tracking-schemas-standard.md).
162138

163139
## Database tables
164140

@@ -169,13 +145,11 @@ In your Azure Data Explorer cluster, the database stores transaction data in a t
169145

170146
> [!NOTE]
171147
>
172-
> If you want to [create a tracking store](#manage-with-rest-api) using the Azure Logic Apps REST API,
173-
> you must first manually create the two tables named **AS2TrackRecords** and **EdiTrackRecords** in your
174-
> Azure Data Explorer database using specific [B2B tracking table schemas](tracking-table-schemas-standard.md).
148+
> To [create a tracking store](#manage-with-rest-api) using the Azure Logic Apps REST API,
149+
> you must first manually create two tables named **AS2TrackRecords** and **EdiTrackRecords**
150+
> in your Azure Data Explorer database using specific [JSON schemas for tracking B2B transactions](tracking-schemas-standard.md).
175151
> Your database must also grant **Ingester** permissions to your integration account resource.
176152
177-
For more information, see [Table schemas for tracking B2B transactions - Standard workflows](tracking-table-schemas-standard.md).
178-
179153
<a name="manage-with-rest-api"></a>
180154

181155
## Manage tracking stores with the REST API
@@ -191,7 +165,7 @@ Create a tracking store or update an existing one.
191165
> In this release, your integration account currently supports only one tracking store.
192166
> Before you create a tracking store using the Azure Logic Apps REST API, you must first
193167
> manually create the two tables named **AS2TrackRecords** and **EdiTrackRecords** in your
194-
> Azure Data Explorer database using specific [table schemas for tracking B2B transactions](tracking-table-schemas-standard.md).
168+
> Azure Data Explorer database using specific [JSON schemas for tracking B2B transactions](tracking-schemas-standard.md).
195169
> Your database must also grant **Ingester** permissions to your integration account resource.
196170
197171
`PUT https://management.azure.com/subscriptions/{subscription-ID}/resourceGroups/{resource-group-name}/providers/Microsoft.Logic/integrationAccounts/{integration-account-name}/groups/default/trackingstores/{tracking-store-name}?api-version=2016-06-01`
@@ -278,4 +252,4 @@ Return a success response for a successfully deleted tracking store.
278252

279253
## Related content
280254

281-
- [Table schemas for tracking B2B transactions - Standard workflows](tracking-table-schemas-standard.md)
255+
- [Table schemas for tracking B2B transactions - Standard workflows](tracking-schemas-standard.md)

articles/logic-apps/tracking-schemas-consumption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ The following table describes the attributes in a tracking schema for an X12 tra
258258
| **`direction`** | Yes | Enum | Message flow direction, which is either **`send`** or **`receive`** |
259259
| **`functionalGroupControlNumber`** | No | String | Functional group control number for the functional acknowledgment. This value populates only for the sender when a functional acknowledgment is received for the messages sent to the partner. |
260260
| **`interchangeControlNumber`** | No | String | Interchange control number for the functional acknowledgment. This value populates only for the sender when a functional acknowledgment is received for the messages sent to the partner. |
261-
| **`isaSegment`** | No | String | The ISA segment for the X12 message. This value populates only for the sender when a functional acknowledgment is received for the messages sent to the partner. |
261+
| **`isaSegment`** | No | String | The Interchange Control Header (ISA) segment for the X12 message. This value populates only for the sender when a functional acknowledgment is received for the messages sent to the partner. |
262262
| **`gsSegment`** | No | String | GS segment in the X12 message. This value populates only for the sender when a functional acknowledgment is received for the messages sent to the partner. |
263263
| **`isMessageFailed`** | Yes | Boolean | Whether the X12 message failed |
264264
| **`processingStatus`** | Yes | Enum | Processing status for the acknowledgment with these permitted values: **`Received`**, **`Generated`**, and **`Sent`** |

articles/logic-apps/tracking-schemas-standard.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The **MessageProperties** table column has a **dynamic** type structure that use
9696
| **isMessageSigned** | Boolean | Whether the AS2 message was signed |
9797
| **isMessageEncrypted** | Boolean | Whether the AS2 message was encrypted |
9898
| **isMessageCompressed** | Boolean | Whether the AS2 message was compressed |
99-
| **correlationMessageId** | String | Message ID for correlatating AS2 messages with Message Disposition Notifications (MDNs) |
99+
| **correlationMessageId** | String | Message ID for correlating AS2 messages with Message Disposition Notifications (MDNs) |
100100
| **incomingHeaders** | JToken dictionary | Header details for the incoming AS2 message |
101101
| **outgoingHeaders** | JToken dictionary | Header details for the outgoing AS2 message |
102102
| **isNrrEnabled** | Boolean | Whether Non-Repudiation of Receipt (NRR) is enabled |
@@ -215,7 +215,7 @@ The **MessageProperties** table column has a **dynamic** type structure that use
215215
| **needAk2LoopForValidMessages** | Boolean | Whether the AK2 loop is required for a valid message |
216216
| **segmentsCount** | Integer | Number of segments in the X12 transaction set |
217217

218-
#### X12 transaction set acknowledgement - MessageProperties schema
218+
#### X12 transaction set acknowledgment - MessageProperties schema
219219

220220
```json
221221
{
@@ -369,6 +369,8 @@ The **MessageProperties** table column has a **dynamic** type structure that use
369369
| **ak903** | String | Number of received transaction sets |
370370
| **ak903** | String | Number of accepted transaction sets in the identified functional group |
371371

372+
<a name="workflow-run-operation-schema"></a>
373+
372374
## WorkflowRunOperationInfo schema
373375

374376
The **WorkflowRunOperationInfo** table column in the **AS2TrackRecords** table and **EdiTrackRecords** table captures information about the Standard logic app workflow run. This column has a **dynamic** type structure that uses the following JSON schema:

0 commit comments

Comments
 (0)