check if there is an outbound of a delivery (Post Good Issue)
I am using the user exit USEREXIT_SAVE_DOCUMENT_PREPARE to check some positions in a delivery for some specific criteria.
I just want to do this when an exit of the goods is booked (Post Good Issue). For this I am using the following condition in the user exit:
IF ( sy-tcode EQ 'VL01N' OR
sy-tcode EQ 'VL02N' ) AND
sy-ucomm EQ 'WABU_T'.
But now I am afraid that this is not enough for cases like:
- booking the exit directly from vl02n (without checking the positions)
- book the exit via "Edit --> Post Good Issue"
- editing the positions and book
Are there some further options which can be checked to make sure that there is a booking?
Take care and thanks a lot for your help.
Update:
I think I found the right words for my question:
How can I make completly sure that a post of goods was triggered in fact?
sap exit abap erp
add a comment |
I am using the user exit USEREXIT_SAVE_DOCUMENT_PREPARE to check some positions in a delivery for some specific criteria.
I just want to do this when an exit of the goods is booked (Post Good Issue). For this I am using the following condition in the user exit:
IF ( sy-tcode EQ 'VL01N' OR
sy-tcode EQ 'VL02N' ) AND
sy-ucomm EQ 'WABU_T'.
But now I am afraid that this is not enough for cases like:
- booking the exit directly from vl02n (without checking the positions)
- book the exit via "Edit --> Post Good Issue"
- editing the positions and book
Are there some further options which can be checked to make sure that there is a booking?
Take care and thanks a lot for your help.
Update:
I think I found the right words for my question:
How can I make completly sure that a post of goods was triggered in fact?
sap exit abap erp
add a comment |
I am using the user exit USEREXIT_SAVE_DOCUMENT_PREPARE to check some positions in a delivery for some specific criteria.
I just want to do this when an exit of the goods is booked (Post Good Issue). For this I am using the following condition in the user exit:
IF ( sy-tcode EQ 'VL01N' OR
sy-tcode EQ 'VL02N' ) AND
sy-ucomm EQ 'WABU_T'.
But now I am afraid that this is not enough for cases like:
- booking the exit directly from vl02n (without checking the positions)
- book the exit via "Edit --> Post Good Issue"
- editing the positions and book
Are there some further options which can be checked to make sure that there is a booking?
Take care and thanks a lot for your help.
Update:
I think I found the right words for my question:
How can I make completly sure that a post of goods was triggered in fact?
sap exit abap erp
I am using the user exit USEREXIT_SAVE_DOCUMENT_PREPARE to check some positions in a delivery for some specific criteria.
I just want to do this when an exit of the goods is booked (Post Good Issue). For this I am using the following condition in the user exit:
IF ( sy-tcode EQ 'VL01N' OR
sy-tcode EQ 'VL02N' ) AND
sy-ucomm EQ 'WABU_T'.
But now I am afraid that this is not enough for cases like:
- booking the exit directly from vl02n (without checking the positions)
- book the exit via "Edit --> Post Good Issue"
- editing the positions and book
Are there some further options which can be checked to make sure that there is a booking?
Take care and thanks a lot for your help.
Update:
I think I found the right words for my question:
How can I make completly sure that a post of goods was triggered in fact?
sap exit abap erp
sap exit abap erp
edited Nov 13 '18 at 15:04
Andi D.
asked Nov 13 '18 at 10:52
Andi D.Andi D.
85
85
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You have to check value in T180-TRTYP. If value is 'H' then it is create booking otherwise it is change booking.It is better to remove transaction code and sy-ucomm condition and condition for T180-TRTYP.
regards,
Umar Abdullah
Thank you very much for your fast answer. I am not note quite sure if this is the fitting hint for my problem, I am really new into abap so please excuse my further questioning... Do I understand correctly that TRTYP will give me information about the status of the document? But can I also recognize if the user started the action "Post Goods Issue"? Thanks a lot.
– Andi D.
Nov 13 '18 at 14:28
For post good issue, you can use exit USEREXIT_READ_DOCUMENT
– Umar Abdullah
Nov 14 '18 at 5:40
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53279406%2fcheck-if-there-is-an-outbound-of-a-delivery-post-good-issue%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You have to check value in T180-TRTYP. If value is 'H' then it is create booking otherwise it is change booking.It is better to remove transaction code and sy-ucomm condition and condition for T180-TRTYP.
regards,
Umar Abdullah
Thank you very much for your fast answer. I am not note quite sure if this is the fitting hint for my problem, I am really new into abap so please excuse my further questioning... Do I understand correctly that TRTYP will give me information about the status of the document? But can I also recognize if the user started the action "Post Goods Issue"? Thanks a lot.
– Andi D.
Nov 13 '18 at 14:28
For post good issue, you can use exit USEREXIT_READ_DOCUMENT
– Umar Abdullah
Nov 14 '18 at 5:40
add a comment |
You have to check value in T180-TRTYP. If value is 'H' then it is create booking otherwise it is change booking.It is better to remove transaction code and sy-ucomm condition and condition for T180-TRTYP.
regards,
Umar Abdullah
Thank you very much for your fast answer. I am not note quite sure if this is the fitting hint for my problem, I am really new into abap so please excuse my further questioning... Do I understand correctly that TRTYP will give me information about the status of the document? But can I also recognize if the user started the action "Post Goods Issue"? Thanks a lot.
– Andi D.
Nov 13 '18 at 14:28
For post good issue, you can use exit USEREXIT_READ_DOCUMENT
– Umar Abdullah
Nov 14 '18 at 5:40
add a comment |
You have to check value in T180-TRTYP. If value is 'H' then it is create booking otherwise it is change booking.It is better to remove transaction code and sy-ucomm condition and condition for T180-TRTYP.
regards,
Umar Abdullah
You have to check value in T180-TRTYP. If value is 'H' then it is create booking otherwise it is change booking.It is better to remove transaction code and sy-ucomm condition and condition for T180-TRTYP.
regards,
Umar Abdullah
answered Nov 13 '18 at 13:11
Umar AbdullahUmar Abdullah
883418
883418
Thank you very much for your fast answer. I am not note quite sure if this is the fitting hint for my problem, I am really new into abap so please excuse my further questioning... Do I understand correctly that TRTYP will give me information about the status of the document? But can I also recognize if the user started the action "Post Goods Issue"? Thanks a lot.
– Andi D.
Nov 13 '18 at 14:28
For post good issue, you can use exit USEREXIT_READ_DOCUMENT
– Umar Abdullah
Nov 14 '18 at 5:40
add a comment |
Thank you very much for your fast answer. I am not note quite sure if this is the fitting hint for my problem, I am really new into abap so please excuse my further questioning... Do I understand correctly that TRTYP will give me information about the status of the document? But can I also recognize if the user started the action "Post Goods Issue"? Thanks a lot.
– Andi D.
Nov 13 '18 at 14:28
For post good issue, you can use exit USEREXIT_READ_DOCUMENT
– Umar Abdullah
Nov 14 '18 at 5:40
Thank you very much for your fast answer. I am not note quite sure if this is the fitting hint for my problem, I am really new into abap so please excuse my further questioning... Do I understand correctly that TRTYP will give me information about the status of the document? But can I also recognize if the user started the action "Post Goods Issue"? Thanks a lot.
– Andi D.
Nov 13 '18 at 14:28
Thank you very much for your fast answer. I am not note quite sure if this is the fitting hint for my problem, I am really new into abap so please excuse my further questioning... Do I understand correctly that TRTYP will give me information about the status of the document? But can I also recognize if the user started the action "Post Goods Issue"? Thanks a lot.
– Andi D.
Nov 13 '18 at 14:28
For post good issue, you can use exit USEREXIT_READ_DOCUMENT
– Umar Abdullah
Nov 14 '18 at 5:40
For post good issue, you can use exit USEREXIT_READ_DOCUMENT
– Umar Abdullah
Nov 14 '18 at 5:40
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53279406%2fcheck-if-there-is-an-outbound-of-a-delivery-post-good-issue%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown