I used in my Service Interface a field with the definitial xsd:boolean. When I generate a proxy an ABAP datatype XSDBOOLEAN is used defining this field. When I put a value X (= true) in this field and send it to PI the field is populated in SXMB_MONI with "false". Does anybody...
DATA result_tab TYPE cl_abap_docu=>search_results. cl_abap_docu=>start( EXPORTING word = word no_dialog = boolc( sy-batch IS NOT INITIAL ) IMPORTING search_results = result_tab ). Variant 2 ... boolx( bool = log_exp bit = bit ) ... ...
SAP Managed Tags: ABAP Development Hullo, IIRC there is no such thing as a boolean in ABAP. However, you can solve this using an IF statement: DATA: bool(1) TYPE c. IF text1 IS INITIAL OR text2 IS INITIAL. bool = 'T' . ELSE. bool = 'F'. ENDIF. Where the values 'T' st...
When I try to consume this with ABAP editor I do not have a problem. Upon further investigation I see that within SAP we have the Data Domain for boolean as 'XSDBOOLEAN' with values "X-True and ' '-False". How do I resolve this with MS Visual Studio because we only have data ty...