BookmarkSubscribeRSS Feed
shasank
Quartz | Level 8

Hi SAS Community, 

 

I am new to Medidata Rave and SAS integration to download data and need some assistance. I am currently using the SAS on Demand to initiate a request and and connecting to ftp server using the filename ftp to download the extract the data. I was trying to use the Biostat/ODM adapter to find a way to connect to the Rave table for smaller requests and have them run directly instead of having a SAS on demand request. 

I have researched and was unable to find a way to implement the "Get" functions to get the data. I am currently using SAS 9.4 and the data is stored on an instance. I understand that I can use proc http to connect to the data server and so far I am unable to find a documentation/code that can guide me through the steps and factors to consider. 

 

Can anyone familiar with the problem help out ??  Below is an example of code I am using below with "my-organization" replaced with working name.  

 

filename resp 'O:\test.csv';

proc http 
   method="GET" 
   url="GET https://my-organisation.mdsol.com/RaveWebServices/studies/Mediflex(Prod)/datasets/raw/DEMOG.csv" 
   out=resp;
run;

 

9 REPLIES 9
ballardw
Super User

What does the log show when you run your code attempts?

 

Copy the text from the log with the code and any messages, notes, warnings or errors. On the forum, open a text box using the </> icon that appears above the main message window and paste the text.

 

The text box helps maintain formatting of some of the diagnostics that SAS provides. The main message windows will reformat text, sometimes making it very hard to decipher such diagnostics.

Quentin
Super User

Just a thought.... did you ask Medidata about this?   

 

I haven't used it, but in a prior clinical trial job when I was leaving they were just starting a move to Medidata.  And it seemed like Medidata was the '1000 pound gorilla' in electronic data capture for clinical trials.  Since SAS is still (I think) the '1000 pound gorilla' for analyzing clinical trial data, I would think Medidata would have a vested interest in making it easy for data managers / biostatisticians to pull data into SAS.

 

In this fact sheet, they talk about an "ODM adapter" for accessing data.  https://www.medidata.com/wp-content/uploads/2019/05/Customer-Facing-Fact-Sheet-Rave-EDC-May-19-1.pdf

 

But again, I have no direct experience, other than having seen a few demos.

 

 

BASUG is hosting free webinars Next up: Mark Keintz presenting History Carried Forward, Future Carried Back: Mixing Time Series of Differing Frequencies on May 8. Register now at the Boston Area SAS Users Group event page: https://www.basug.org/events.
shasank
Quartz | Level 8
Thank you for your reply. I did try and contact them. They just send me some link that have instruction on using the GET request to access the data and had nothing else. So, thought if anyone in the community worked on this and can help me on how to use an ODM adapter with the get requests.
shasank
Quartz | Level 8
ERROR: The URI is missing the port value after the ':' port separator.
ERROR: URL is malformed.
NOTE: PROCEDURE HTTP used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds

NOTE: The SAS System stopped processing this step because of errors.

Here is the log after this code is run. 

Tom
Super User Tom
Super User

'GET https...' does not look like the beginning of a valid URL.  Remove the 'GET ' from the url value.

shasank
Quartz | Level 8
ERROR: Host name resolution failed
NOTE: PROCEDURE HTTP used (Total process time):
      real time           1.26 seconds
      cpu time            0.04 seconds

NOTE: The SAS System stopped processing this step because of errors.

Thank you for your feedback. I have this log error after removing the GET.

Tom
Super User Tom
Super User

Does that URL work from your PC?

Does it work from the machine where SAS is running?  Is that machine even connected to the outside world?

shasank
Quartz | Level 8
I am unsure on how to use the get request using the machine I am running. The computer has a windows OS running on it with a VPN and an active internet connection. Will try to find resources on how to use the "GET" request from google and test it out. Thanks.
MarkRoosen
Fluorite | Level 6

Hi, 

  I use a 2 step approach:

  first read your study metadata where you can find all the forms that are defined in your study build

  based on above list you can download each form data no matter what exact study you are using (it is metadata driven, so with a few parameters you can use this for multiple studies)

 

if you are using this in LSAF you most likely need to add a proxy and request to SAS professional services (jira ticket) to open that specific port in their network so that LSAF can connect to Medidata RWS (webservices)

 

example for metadata::

https://url.mdsol.com/RaveWebServices/datasets/Clinicalviewmetadata.csv?projectname=studyID
 replace URL with your medidata URL and studyID with the study you need

 

form data extraction=
proc http proxyhost="webproxy.vsp.sas.com" proxyport=3128

        out=clindata
        url="https://URL.mdsol.com/RaveWebServices/datasets/V_studyID_FormID.csv?environmentName=prod"

        headerin=httphead
       headerout=httpret

       method="get"

       ct="text/plain;charset=UTF-8";
run;

 

I use Medidata mAuth for authentication, so that's the reason I need the http input header

output header I use to scan for return message (OK, nok,...)

 

 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 9 replies
  • 6020 views
  • 0 likes
  • 5 in conversation