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
{{ message }}
This repository was archived by the owner on May 28, 2026. It is now read-only.
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?
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?