cancel
Showing results for 
Search instead for 
Did you mean: 

Can't get Source System to come up for BBPGETVD

Former Member
0 Kudos

Hi Guys,

i can't get the source syst. visible in tx: bbpgetvd.

i have maintained the ERP system in table BBP_BACKEND_DEST with the following:

client: 010

log_sys: FD0CLNT903

dest: FDoCLNT903

sys_type: ERP_2.0

rfc_poss: X

fi_validation: 2

also table RFCDES has the entry for the RFC destination of the ERP system.

Any ideas where did I missed something?

10x in advance!

Catalin

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

make sure that you have maintained the SPRO setting for "definition of Back-End systems in SAP-SRM" inside the node SRM SERVER->technical basic settings->define system landscape

here, logsys, description, rfc name, description, sys type, flag for rfc, SDL name etc etc

the search help used in bbpgetvd is BBP_BACKEND_DESTINATION_F4 and FM BBP_F4IF_SHLP_EXIT_BACKEND_DES.

and the code used to pick the fields is below

SELECT A~DEST A~LOG_SYS B~LOG_DESCRIPTION A~SYS_TYPE
         INTO TABLE LT_SYSTEMS
         FROM BBP_BACKEND_DEST AS A INNER JOIN BBP_BACKEND_TEXT AS B
              ON B~LOG_SYS = A~LOG_SYS
              INNER JOIN RFCDES AS C
                    ON C~RFCDEST = A~DEST
         WHERE A~SYS_TYPE IN LR_SYSTEM_TYPE
         AND   A~RFC_POSS = 'X'
         AND   B~SPRAS    = SY-LANGU
         AND   C~RFCTYPE  = LC_RFCTYPE_R3.

so what you can check in you system are:

1. system type of you ECC is kept as a R3*** or ERP****

2. RFC_POSS thats nothing but the flag(checkbox) in the config table for RFC

hope this will solve your problem

yes, prior to that you need to make sure that the logical systems and RFCs are configured properly or not..

Former Member
0 Kudos

I once had this same issue. The reason was that the RFC connection to the backend system was lacking a name in the customizing table of the system landscape. This caused an ABAP SELECT statement in the search help to fail.

Former Member
0 Kudos

Hi Catalin,

Have you maintained Log system and RFC connection under SALE and SM59 respectively? Assigned logical system to client?

Regards,

Nikhil

Former Member
0 Kudos

Hi Nikhil,

yes, I've maintained the logical system and RFC connection and also the log system is assigned to the client.

Best regards,

Catalin

Former Member
0 Kudos

Hi,

Is the Rfc possible field checked or unchecked?

Regards,

Nikhil

Former Member
0 Kudos

yes, it is checked.