You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: