☑ This topic is solved.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 07-13-2023 07:06 AM
(1964 views)
Hi Team,
I tried to perform simple data step in SAS, Read data from SAP and write into SAS. Kindly refer below code,
Data WORK.SAMPLE_WRITE;
set SAP.READ_DATA;
run;
While run above code we get below error.
ERROR: DIALOG ROW LIMIT EXCEEDED Number:000
Kindly suggest solution for this, thanks in advance
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Issue was resolved after removing some character columns.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
You should probably show how you connect to SAP.
replace sensitive strings like passwords, if used, with XXXX or similar but the entire code of the connection is needed. Best is to include the code from the LOG along with all the messages that are generated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I suggest you open a Tech Support track for this error. I searched SAS Support but was unable to find anything relevant.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Issue was resolved after removing some character columns.