Is it possible to allocate a SAS script or macro to a Toolbar button in Base SAS? ie can you 'dm' a macro or sas script?
submit SAS code or macro from Toolbar
1.2k Views Asked by Allan Bowe At
1
There are 1 best solutions below
Related Questions in TOOLBAR
- android appcompat v22 2 Global theme overrides toolbar theme for burger icon
- Toolbar will not collapse with Scrollview as child of CoordinatorLayout
- How to implement a Adobe Photoshop Elements like toolbox in QT
- SearchView like Google Play Video App
- How can I get rid of divider on android.support.v7.widget.Toolbar?
- Setting Up the Action Bar tutorial in Android Atudio
- How to create toolbar with left, center and right sections in javaFX?
- How to style Polymer's <core-scaffold> toolbar background in 0.5?
- Android Toolbar disappear during scrolling with Coordinatorlayout
- Android force ActionBar inside of Toolbar on Landscape
- Styling Toolbar with styles in theme.xml
- Create a done button for UIPickerView
- CollapsingToolbarLayout / Toolbar margin bug
- Instrumentation test with toolbar: java.lang.IllegalAccessError: Class ref in pre-verified class resolved to unexpected implementation
- How add a single menu item left to the toolbar in android?
Related Questions in SAS
- SAS ods html generates additional html code
- SAS- Defining Page Breaks inside Macro
- Creating an ID variable for duplicates in SAS
- Categorize one table based on contents of a column in another table
- Adding a single record in SAS?
- How to create SAS EG Flow programmatically?
- How to change the column headers of a sas dataset into an observation?
- Creating URL via JavaScript on image click
- How to Declare Global Array Variable in SAS?
- SAS proc sql - how to read in log of variable but retain the variable's label
- select maximum value of common column for multiple data set
- SAS Concatenate Multiple Variables to Create Data-Driven Macro Statements
- How do I stop SAS from adding an extra empty byte to every string variable when I use PROC EXPORT?
- SAS: Extract ID's separated by dashes from text string
- Conditionally skip transformations in SAS DIS
Related Questions in SAS-MACRO
- SAS- Defining Page Breaks inside Macro
- How to Declare Global Array Variable in SAS?
- SAS Macro to Combine Municipal Proc SQL Statements Based on Date Criteria
- Getting a WARNING: Truncated record. but not able to figure out the reason
- Changing Value of Macro Variable inside SAS macro
- What's wrong with these macro parameters?
- Checking the existence of a variable in SAS code
- SAS: getting the filesize of created DBF file
- Trying to create new dataset using macro sas
- How can I use different sets of date values depending on the date
- Getting ERROR :Unable to clear or re-assign the library DATA1 because it is still in use in SAS
- SAS differences in outcome between sql and proc means
- SAS %macro rerun_loop(arg) doesn't appear to be a function, but was running in SAS
- Writing vba code in sas
- how to record the moving direction is SAS?
Related Questions in DM
- Using Datamapper for Heroku without installing Postgres locally
- DM Everyone Command
- Python DM all command
- How to send a DM to new members of a discord server using a discord bot (python 3)
- DataMapper to migrate data from one table to another.
- kpartx: read error when removing mapping
- How to make welcome message for new members of the discord server on discord.js?
- How do you make a Discord bot respond to commands in DMs? (Python)
- Discord.py DM command (To send and recieve a dm)
- Twitter Direct Message showing app as sender
- Raise forbidden exception when trying to dm a banned user (Discord.py)
- Python - DM a User Discord Bot
- SAS Enterprise Miner - Unable to launch the application (on Mac)
- Send a dm in discord.py
- Why are the values of my form getting lost in php when sending them to an includes folder?
Related Questions in DISPLAY-MANAGER
- Ringtone for specific friend!!Phone restarts, Error: Could not get display information from display manager;android.os.DeadObjectException
- How to make SAS to open with maximized window?
- Android MediaRouter splitting audio and video routes to play video on external display via Presentation and audio via bluetooth
- SAS Display Manager: Viewtable commands
- How to send message from PAM to Display Manager SDDM?
- can't change sddm display manager theme
- LightDM Webkit2 images issue
- SDDM ignores custom configuration (/etc/sddm.conf)
- display list management in actionscript 3 applications
- Where to begin debugging GTK anomaly?
- How to pop up a GTK window/widget on top of a full screen application of a different process in Linux?
- LightDM add Window Manager (Openbox)
- SAS Command Line shortcut
- raspberry pi3 can not launch application on primary HDMI Display, can launch on remote using ssh -x
- Presentation class in Jelly Bean Plus is not intercepting onTouchEvent
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Certainly. Here is one way:
To have the button submit a compiled macro, type this in the command field (substituting your macro name of course):
%nameofmacro;run;
To have the button submit an external sas file, you would put something like this in the command field instead:
%include "C:\path-to-file\name-of-program.sas";run;
Put whatever you want in the help text and tip text fields