ā2007 Dec 03 5:45 PM
Hi gurus,
I'm facing a problem, when using "POSTING_INTERFACE_CLEARING", populating the field DF05B-PSSKP (discount), does anyone knows using this funcion modulo how to populate this fields ?
Thx in advance ... Ricardo.
ā2007 Dec 03 10:40 PM
ā2007 Dec 03 10:40 PM
ā2007 Dec 04 10:56 AM
Satish,
Thx for the reply, but the problem I'm facing is filling the screen number 3100 on FB05 transaction, that I do not know how to fill it ... Can anyone help me out ?
Thx in advance.
ā2008 Jan 15 4:28 PM
Anyone can help me out? It's realy urgent ....
Best Regards, Ricardo Amorim.
ā2008 Feb 14 7:11 AM
Hello,
Were you able to solve your issue on the 3100 screen? Thanks a lot!
ā2008 Feb 14 9:45 AM
ā2008 May 08 8:30 AM
Hi all,
i'm trying to use the FM POSTING_INTERFACE_CLEARING. I need to fill the fields of the dynpro 0733.
Someone knows how to do it? (i'm filling the table ftclear, but it doesn't work)
Thanks in advance.
ā2008 May 08 1:48 PM
The only way i got to solve tihs problem was using a batch-input for the transaction.
ā2008 May 08 3:38 PM
I've solved it.
You must fill the table ftpost with the header data and all the documents to be cleared in the ftclear table. In this last table you must use the field 'selfd' to indicate from what field get the data.
There's an example:
Header data:
t_ftpost-count = 1. "NĀŗ de dynpro.
t_ftpost-stype = 'K'. "K = Cabecera.
t_ftpost-fnam = 'BKPF-BLDAT'.
t_ftpost-fval = fecha.
APPEND t_ftpost.
t_ftpost-fnam = 'BKPF-BUDAT'.
t_ftpost-fval = fecha.
APPEND t_ftpost.
.
.
.
Documents to be cleared:
loop...
CONCATENATE factura
ti_alv1-ejercicio
ti_alv1-posicion
INTO factura.
t_ftclear-agkoa = 'S'.
t_ftclear-xnops = 'X'.
t_ftclear-agbuk = ti_alv1_aux3-sociedad.
t_ftclear-agkon = aux_cuenta_pos.
t_ftclear-selvon = factura.
t_ftclear-selfd = 'BELNR'.
APPEND t_ftclear.
endloop.
CALL FUNCTION 'POSTING_INTERFACE_CLEARING'
EXPORTING
Proceso de compensación = Salida de pagos
i_auglv = 'AUSGZAHL'
i_tcode = 'FB05'
IMPORTING
e_msgid = i_msgid
e_msgno = i_msgno
e_msgty = i_msgty
e_msgv1 = i_msgv1
e_msgv2 = i_msgv2
e_msgv3 = i_msgv3
e_msgv4 = i_msgv4
e_subrc = i_subrc
TABLES
t_blntab = t_blntab
t_ftclear = t_ftclear
t_ftpost = t_ftpost
t_fttax = t_fttax.
I hope this could help you.
Don't forget regards points š
ā2010 Jun 30 6:44 AM
ā2015 Jan 06 7:59 AM
Dear Mr. David,
I'm facing this problem at this moment, By using 'POSTING_INTERFACE_CLEARING'
I want to clear FI Document with insert the line item,
in LT_ftPOST , i already input the lilne item in lt_ftpost but there is no respond.
Do you know how to fill line item, so i can clear the belnr that i've allready input in lt_ftclear.
I see the structure consist of bdc parameter.
Would you give me a clue.
Thanks in advanced.
Regards,
Abassimo.
ā2012 Jul 11 8:13 AM
Richardo,
This thread is very old. Still I am responding to this asking you a question.
I am facing same problem now . I am not able to populate field DF05B-PSSKT and DF05B-PSSKP fields with value using FM POSTING_INTERFACE_CLEARING. Does this FM works for this?
Could you please spare some time to reply to this . How did you solve this problem?