cancel
Showing results for 
Search instead for 
Did you mean: 

Sales Order - Payment Card 'Limit To' flag, where is the value stored?

Former Member
0 Kudos

Hi,

For our Sales Orders, we can define several credit cards in the payment card tab.

For each card but the current, we can define a maximum amount. For these, the 'limit to' flag field is checked.

I am a dev working on a process, where we need to check and obtain the card with the 'limit to' flag field not checked.

How can I obtain this data?

I've looked into table FPLTC, but it doesn't include the 'limit to' flag data for the SD order cards. F1 on the field in VA01/02/03 points only to a structure.

Thanks in advance!

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

have a look at LV60FFCC. I think rv60f-ccbeg is field dynamically when a max value is set.

----


FORM CC_UNBEG_0200 .

IF NOT fpltc-ccins IS INITIAL.

IF flg_xfplt = con_anlegen AND NOT fplt-fakwr IS INITIAL.

  • Bei Wert-Eingabe wird die Karte auf 'begrenzt' gesetzt.

rv60f-ccbeg = charx.

ENDIF.

IF rv60f-ccbeg EQ space.

MOVE xfplt-fpltr TO fpla-fpltu.

ELSEIF xfplt-fpltr EQ fpla-fpltu.

CLEAR fpla-fpltu.

ENDIF.

ENDIF.

IF FPLTC-CCWAE IS INITIAL AND NOT RV60F-WAERS IS INITIAL.

FPLTC-CCWAE = RV60F-WAERS.

ENDIF.

ENDFORM.

I think you need to check if fpla-fpltu is space or not for your purpose. rv60f-ccbeg will not help you as it is filled dynamically.

Good Luck.