David Pulido Pinilla
Aug 24, 2015 at 04:03 PM
doubt with the symbol ">" in the field REGUH-EMPFG
394 Views
Follow
RSS Feed
Hi master, i have a doubt with the field REGUH-EMPFG, can you please help me to understang why the information in this field is with some symbols?
as you can see in the image, the values in the field REGUH-EMPFG have the symbols ">" and some values finish with "z"
I need to use the information of this field, but i don't know what is the reason of this symbols.
Thanks
Attachments
EMPFG.JPG (66.9 kB)
Add a Comment
Alert moderator
Assigned Tags
ABAP Development
Similar Questions
problem in ALV grid display- problem while using the control break staements
Former MemberNov 23, 2019
performance issue in query on reguh
Former MemberNov 22, 2019
1 Answer
Votes
Newest
Oldest
Vote up2Vote down
Former Member
Sep 12, 2016 at 01:09 PM
You can find the logic in function FI_REF_PARTNER_FILL.
IF im_empfg(1) NE '>'.ex_gpa1r = im_empfg. "CPD-Verschlüsselung
ex_gpa1t = '14'. "des Gechäftspartners
ELSEIF im_empfg+11(2) EQ '>F'.
ex_gpa1r = im_empfg+1(10). "Filiale
ex_gpa1t = '13'.
ELSE.
ex_gpa1r = im_empfg+1(10). "Abweichender Zahlungsempfänger
ex_gpa1t = ex_gpa2t. "im Stamm oder im Beleg (>Z)
ENDIF.If value doesn't start with >, it's a CPD partner.
If value ends with >F, it's a branch office.
Otherwise it's a alternative payee, which is maintained in vendor/customer master data or directly in FI document.
Add a Comment
Alert moderator
Share