cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SAP Marketing Cloud message payload

pieter_rijlaarsdam1
Participant
0 Likes
897

Hi guys,

Can anybody point me to where I can review the incoming data payload from C4C in SAP Marketing Cloud?

The Import Monitor shows me only part of the message.

The Message Dashboard tells me the 'Record type is hidden' for each field I want to review.

View Entire Topic
pieter_rijlaarsdam1
Participant

Thanks Joyca.

I currently have my coding like this:

DATA lv_marketing_area TYPE if_cuan_bupa_map_types=>ty_ic_marketing_area.


data: lv_string type string.
lv_string = bp_general_data-namcountry.


cl_ble_trace_writer=>write_info_message( lv_string ).


case bp_general_data-namcountry.
when 'DE'.
    lv_marketing_area = '0001'.
when others.
    lv_marketing_area = '0002'.
endcase.
APPEND lv_marketing_area TO ic_marketing_areas.

For some reason though, it always ends up with '0002', even if I send a German record.

I am now trying to get the value of namcountry in the trace (as you can see), but am not being successful. I have tried tracing with all available users, but no luck so far. I am afraid the integration between the businesspartner and the marketing contact is being done by a different (not tracable) user?

Any ideas?

Thanks,

Pieter