# 关于使用内部表的时候的一些注意事项

去重的时候一定不要搞错了

```
 SORT LT_FM_ZSV430_EBELP BY EBELN EBELP.
    DELETE ADJACENT DUPLICATES FROM LT_FM_ZSV430_EBELP COMPARING EBELN EBELP.
```

如果有一个Loop后要跟一个append，同时这个Loop要执行多次，那记得要清空内部表。

```
 LOOP AT LT_FM_ZSV430_EBELN INTO LS_FM_ZSV430_EBELN.
        CLEAR LS_T_ZSV430_EBELN.
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dingyj.gitbook.io/blog/sap/abap/guan-yu-shi-yong-nei-bu-biao-de-shi-hou-de-yi-xie-zhu-yi-shi-xiang.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
