Posted: Tue Oct 30, 2007 6:31 pm Post subject: Управление показом полей в транзакциях FBxx
OB41 - Maintain Accounting Configuration : Posting Keys
OBC4 - Maintain Field Status Group. The group can be assigned to account.
Позволяют скрывать или добавлять поля в финансовых транзакциях в зависимости от Posting Key или Field Status Group, присвоенной счету.
Полезный совет от nicky555
Поле контировки может быть скрыто настройкой статусов полей - в этом случае его заполнение даст ошибку. Чтобы ее избежать, надо проверить при заполнении таблицы интерфейса FIPI, доступно ли поле для ввода. Сделать можно примерно так:
Code:
** считывание статусов полей
CALL FUNCTION 'FI_FIELD_SELECTION_DETERMINE'
EXPORTING
i_bschl = lf_bschl
i_bukrs = pa_bukrs
i_saknr = ipos-hkont
IMPORTING
e_faus1 = fieldauswahl_1
e_faus2 = fieldauswahl_2
EXCEPTIONS
OTHERS = 1.
IF sy-subrc <> 0.
CONTINUE. " ошибка считывания статусов полей
ENDIF.
** формирование таблицы полей блока контировки
PERFORM kontierungsblock_ermitteln(sapff001)
TABLES it_coblf
USING 'H'
fieldauswahl_1 fieldauswahl_2 space.
** проверка, что поле доступно к вводу в блоке контировки
LOOP AT ipst WHERE stype EQ 'P'
AND count EQ i
AND fnam CP 'COBL-*'.
SPLIT ipst-fnam AT '-' INTO dummy fieldname_cobl.
READ TABLE it_coblf WITH KEY fdnam = fieldname_cobl.
IF sy-subrc <> 0 OR it_coblf-input = '0'.
DELETE ipst.
ENDIF.
ENDLOOP.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You cannot download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.