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
hello guys:
I am getting fields with type of []bytes when the actual data type in ABAP in RAW byte, and using string() function could not make it a readable format. sometime it become "garbled". And the most funny thing is that when I expecting two returns should be different, but the return bytes is exactly the same.
putting my code as below. I am trying to decode the tasktype. Thanks in advance in case you have any ideas.
========================================
package main
hello guys:
I am getting fields with type of []bytes when the actual data type in ABAP in RAW byte, and using string() function could not make it a readable format. sometime it become "garbled". And the most funny thing is that when I expecting two returns should be different, but the return bytes is exactly the same.
putting my code as below. I am trying to decode the tasktype. Thanks in advance in case you have any ideas.
========================================
package main
import (
"fmt"
"time"
"encoding/base64"
"github.com/sap/gorfc/gorfc"
)
func abapSystem() gorfc.ConnectionParameter {
return gorfc.ConnectionParameter{
Client: "000",
User: "ddic",
Passwd: "",
Lang: "EN",
Ashost: "",
}
func main() {
c, err := gorfc.ConnectionFromParams(abapSystem())
}
The text was updated successfully, but these errors were encountered: