cancel
Showing results for 
Search instead for 
Did you mean: 

Where is BBP_DOCUMENT_TAB filled?

laurent_touillaud
Contributor
0 Kudos

Hi,

We are running on EBP4.0

I want to know where this table BBP_DOCUMENT_TAB is filled when entering invoices. (BBPIV03)

In development environment we have nothing created in this tab whereas in Quality it is filled.

Even with traces this tab is not visible.

I want to influence the entries created in order to let the program clean_reqreq_up avoid taking these entries.

Thanks,

Laurent.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

The logic is in the FM B40B_IV_CREATE .


*     write link table
      CALL FUNCTION 'BBP_UPDATE_LINK'
        EXPORTING
          doc_type  = 'IV'
          object_id = i_pd_iv_header-object_id
        TABLES
          imlink    = imlink
        EXCEPTIONS
          error     = 1
          OTHERS    = 2.
      IF sy-subrc <> 0.
        MESSAGE a017(bbp_im).
*       System Error during update of IDOC link table
      ENDIF.

Regards,

Kathirvel

Edited by: Kathirvel Balakrishnan on Feb 22, 2008 2:20 PM

laurent_touillaud
Contributor
0 Kudos

Hi,

Are you sure?

I looked in table bbp_function_map with object BUS2205

BUS2205 CreateFromData NON_SAP_2 NOR3_IV_CREATE

BUS2205 CreateFromData R/3_3.1H B40B_IV_CREATE

my system is defined as NON_SAP_2 so he should take NOR3_IV_CREATE but adding infinite loop in this function doesn't stop the program from running.

Regards,

Laurent.

laurent_touillaud
Contributor
0 Kudos

Problem resolved by transporting function to quality system. The dev system somehow doesn't try to transfer the invoice to the backend and therefore didn't stop at infinite loop.

Does someone know where this config is?

Regards,

Laurent.

Answers (0)