gorfc icon indicating copy to clipboard operation
gorfc copied to clipboard

Passing blank values in parameters of type "C"

Open rpuranda-tibco opened this issue 2 years ago • 0 comments

Want to pass a single character as space in input params. Something like this: c, _ := gorfc.ConnectionFromParams(abapSystem()) params := map[string]interface{}{ "CALL_RFC":" ", } r, e := c.Call("Z_ALLDATATYPE_CLIENT_TEST1", params) if e != nil { fmt.Println("Error is:", e) } Here after Call, no error is returned and exit status 0xc0000374. Can you suggest what could be the issue?

rpuranda-tibco avatar Apr 10 '23 09:04 rpuranda-tibco