cancel
Showing results for 
Search instead for 
Did you mean: 

BAPI_BUS2054_CREATE_MULTI customer fields

Former Member
0 Kudos

Hello, I'm having trouble using bapi  BAPI_BUS2054_CREATE_MULTI.

I added some customer fields in EXTENSIONIN but I keep getting the error messages CJ726 and CJ 727 for those fields, they are not availabke for input.

After debug I found that this error is generated in th FM CJCK_PRPS_FIELD_ATTR_INIT, where for the customer fields they have to start by Z, Y, USR. USE or '/'.

But this is not the clients case. Is there anyway to validate these fields?

I might add that in this SAP system, some of these customer fields are obligatory, (it's a Public Administration system, so it has an add-on for this).

Accepted Solutions (0)

Answers (1)

Answers (1)

varshal_kachole3
Active Contributor
0 Kudos

Hi,

Looking at the Code, it looks like you will need to modify the standard SAP code in the FM to accomodate the fieldnames as per the requirement.

        IF i_fieldname(3) = 'USR' OR
         i_fieldname
(3) = 'USE' OR
         i_fieldname
(1) = '/'   OR
         i_fieldname
(1) = 'Z'   OR
         i_fieldname
(1) = 'Y'.

Thanks and Regards,

Varshal Kachole