AppleScript for QuickTime: How to select microphone?

(I'm new to AppleScript.)
Using AppleScript, I want to change the selected microphone from "Built-in Microphone: Internal microphone" to another input I have called "Soundflower (2ch)".
I looked at QuickTime in the AppleScript dictionary, but all I could find was "audio recording device", and I have no idea what to do with that.
Help? / Write it for me please? =D

The only normal user (non-admin type) who can mark an answer as helpful or correct is the user who started the discussion.

Similar Messages

  • Applescript for QuickTime help needed.

    I have some mkv files that I would like to re-encapsulate as mov files.
    Through the GUI I would normally open the mkv in quicktime, then Save or Save As with self-contained option selected, and just hit enter. This would save the re-encapsulate the movie with no re-encoding to the same directory with the same filename, but now with the .mov extension. This works with no issues.
    Now, I want to be able to automate this process, but the only thing I can't figure out is how to tell the movie to *save self contained* with the *+same name in the same directory+*.
    Thanks in advance for any help you can offer!

    I don't know what the rest of your script is, but the following snippet will save the front document - no error checking (such as existing files or loaded state of the document) is done:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #DAFFB6;
    overflow: auto;"
    title="this text can be pasted into the AppleScript Editor">
    tell application "QuickTime Player 7" to tell document 1
    set thePath to it's path & ".mov" -- just add a new extension to the existing file path
    save self contained it in thePath
    -- close
    end tell
    </pre>

  • Applescript for quicktime player 7 in 10.6

    I've been using an applescript that can take a bunch of movie clips and merge them into a single file. (see script below) now with 10.6 and quicktime x. this script no longer works. Can anyone help me to get quicktime player 7 to launch and start doing it's trick. any help most appreciated.
    on open these_items
              tell application "Finder" to set sorted_items ¬
                        to sort these_items by name
              repeat with i from 1 to the count of sorted_items
                        set this_item to (item i of sorted_items)
                        tell application "QuickTime Player 7"
                                  if i is equal to 1 then
      make new document
                                  end if
      open this_item
                                  tell document 1
      rewind
      select all
                                            copy
      select none
                                  end tell
      close document 1 saving no
                                  tell document 1
                                            add
      select none
                                  end tell
                        end tell
              end repeat
    end open

    The scripts below work for me, using Mac OS 10.4.11 and QuickTime Pro v. 7.6.4.
    Note that my version of AppleScript (v. 2.1.1) doesn't recognize application QuickTime Player 7. Hence, application "QuickTime Player" was used throughout. Your needs may vary; if you can or must use the "7" by all means do so.
    The first is based on the script Craig Williams posted in this thread: http://macscripter.net/viewtopic.php?id=31674 (in post #6). I modified the script a bit so that a new file is created on the front end, and the merged file gets written to it once the script finishes:
    set file_name to text returned of (display dialog "A new merged QuickTime file will be created on the desktop. Please choose a name:" default answer "Enter Name")
    tell application "Finder"
      try
      set make_file to make new file at (path to desktop folder as string) with properties {name:file_name & ".mov"}
      set new_file to make_file as alias
      on error
                        display dialog "A file with the name " & "“" & file_name & "”" & " already exists on the desktop. Please try again." buttons {"OK"} default button 1 cancel button 1 with icon stop
      end try
    end tell
    set theCount to 1
    set theFolder to choose folder with prompt "Choose the folder with QuickTime files you want to join together."
    tell application "Finder"
      set theFiles to every file of folder theFolder
      set totalFiles to (count the theFiles)
      repeat with i from 1 to totalFiles --to 1 by -1
      set thisfile to item i of theFiles as alias
                        --QT Pro
      my mergeFilesUsingQT(thisfile, theCount, totalFiles)
      set theCount to theCount + 1
      end repeat
    end tell
    delay 1
    tell application "QuickTime Player"
      tell document 1
      rewind
                        delay 0.5
      save as self contained in new_file
      close
      end tell
    end tell
    on mergeFilesUsingQT(thisfile, theCount, totalFiles)
              tell application "QuickTime Player"
      activate
                        --the first file only gets copied
                        if theCount = 1 then
      open thisfile
                                  delay 0.5
      tell document 1
      select all
                                            copy
      end tell
      close document 1 saving no
      else
                                  --these files get the previous file added to it and
                                  --then it is copied to be added to the next file
      open thisfile
                                  delay 1
      tell document 1
      set x to get duration
      set current time to x
      paste
      select all
                                            copy
      end tell
      end if
      end tell
    end mergeFilesUsingQT
    My own version, below, creates a new file and then opens a temporary QuickTime document to which each file is copied in turn. Once copying is complete, the temporary file is written to the file that was created at the beginning of the script:
    set file_name to text returned of (display dialog "A new merged QuickTime file will be created on the desktop. Please choose a name:" default answer "Enter Name")
    tell application "Finder"
      try
      set make_file to make new file at (path to desktop folder as string) with properties {name:file_name & ".mov"}
      set new_file to make_file as alias
      on error
                        display dialog "A file with the name " & "“" & file_name & "”" & " already exists on the desktop. Please try again." buttons {"OK"} default button 1 cancel button 1 with icon stop
      end try
    end tell
    tell application "QuickTime Player"
      set temp_doc to make new document
    end tell
    set fol to choose folder with prompt "Choose the folder containing QuickTime files to be merged:"
    tell application "Finder"
      set the_files to every file of folder fol
      repeat with i from 1 to count of the_files
      set a_file to item i of the_files
      my merge_files(a_file, temp_doc)
      end repeat
    end tell
    delay 1
    tell application "QuickTime Player"
      tell document 1
      select none
      save as self contained in new_file
      close
      end tell
    end tell
    on merge_files(a_file, temp_doc)
              tell application "QuickTime Player"
      activate
      make new document
      open a_file
      delay 1
      tell document 1
      set t to get duration
      set current time to t
      select all
      copy
      close
      end tell
      activate document temp_doc
      delay 1
      tell document 1
      paste
      end tell
      end tell
    end merge_files
    Hope this helps. Good luck.

  • AppleScript for QuickTime export of frames

    I would like to get an AppleScript to --
    1) Take a folder full of QT movies (slideshows), and for each movie create a new folder with the name of the orig movie (e.g. "nelson.mov" --> "nelson" foldername), and for each movie --
    2) export a series of frames from each 30 - 200 second QuickTime narrated slideshow movie (typically 4-8 frames per movie), with each frame saved with name nnnnnn.jpg, where "nnnnn" is the TIME for that frame in the movie, into the folder for that movie
    3) export the audio track as a .aif audio file into the folder for that movie
    Although I have done some AppleScripting, the above is Way Beyond my expertise...
    Can anyone help me ?
    Thanks

    You don't ask for much, do your Donald?
    http://www.apple.com/applescript/quicktime/
    Most of these AppleScripts still work with QT 7 and Tiger. Some are "broken" but fixable.
    You may also want to look toward Automator (part of Tiger) that can help you write (no real writing) Workflows and Contextual menu apps that you can invoke with a few mouse clicks.

  • Do not have a plugin for quicktime on my firefox add-ons manager how do I get one

    can not get quicktime video to play. check add-on manager plugins and do not have a plug in for quicktime. how can I get quicktime videos to play

    see : [https://support.mozilla.org/en-US/kb/Using%20the%20QuickTime%20plugin%20with%20Firefox#w_installing-or-updating-quicktime Installing or updating QuickTime]
    if you like read all the : [https://support.mozilla.org/en-US/kb/Using%20the%20QuickTime%20plugin%20with%20Firefox Using the QuickTime plugin with Firefox]
    see also for info : [https://support.mozilla.org/en-US/kb/use-plugins-play-audio-video-games?redirectlocale=en-US&redirectslug=Using+plugins+with+Firefox Use plugins to play audio, video, games and more]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • How to select left or right channel while playing video in QuickTime X?

    I have recorded a TV movie with EyeTV and exported it to Apple TV format (M4v). In Germany often stereo movies have original soundtrack on right channel (e.g. English) and German soundtrack on left channel. With QuickTime 7 it was no problem to select the channels for playback. But with QuickTime X I cannot find this possibility anymore. Does anyone know how to select one of the stereo channels for playback? You can imagine that wihil playing German and English simultanously you cannot understand a word at all.

    Thanks, but I actually do not want to remove a channel permanently, because I sometimes want to listen to the original English version and sometimes to the German version. But as it seems QuickTime X does not have the simple playback option to select a special channel, is this right? This is sad as I really like the features and the look of QuickTime X. It is not very comfortable to switch between two players just for the need of a channel selection. I hope that Apple will give us some more basic playback comfort in a version to come.

  • How do i find the registration for quicktime pro ?

    how do i find the registration for quicktime pro ?

    It should be under the Quicktime Player 7 menu, right under 'preferences'.

  • How to select range for dater in BAPI_DOCUMENT_GETLIST2

    Hi All
    I have following problem with this FM BAPI_DOCUMENT_GETLIST2. I was looking a lot on different forums but I cannot find answer which corresponds to my problem.
    I have in DMS saved files for our customer and Iu2019m using object linking as
    Objlinkselection-DOKOB  =  KNA1
    Objlinkselection- OBJKY   = KUNNR.
    It works well, but it takes all doc from beginning.  Iu2019d like to make selection that final table documentdata is in range of defined range date with values 20111201 to 20111231
    Now I have to select all documents for this customer and after that I have to make loop to get correct files. And it takes a huge time and in a few years it will collaps
    LOOP AT LT_DOCUMENTDATA INTO <FS> WHERE CREATEDATE IN  rn_DATE.
    ENDLOOP.
    Any hint how to make this faster? 
    Just to avoid any misunderstandings, I'm not asking on loop speed but how to select by FM less rows based on create date.
    Thank a lot fo any hint
    Petr

    Hello Deepak,
    Thanks a lot for your answer. I have read this thread already, but it is not realy what I need. But anyway in the night I have found solution.
    I will go through table DRAW where I will get just DOCNUMS for current date range.
    Than I will select correct rows from table DRAD for selected KUNNR.
    Final set od DOCNUMS I will use as selection criteria for BAPI.
    It should help, now I go to try it.
    Thansk anyway
    Petr

  • How to select the printer and select the ICC profile for printing with VBScript?

    I try to automate my printing procedure in photoshop. The problem is that I don't know how to select the printer and select the icc profile for printing with vbscript like I manually do in the print-menu in photoshop?
    Anyone has done this before?
    Thanx!
    jus

    Client/Server version:
    - D2KWUTIL.PLL library provides a 'Select Printer' dialog box to be used in Forms: WIN_API_DIALOG.SELECT_PRINTER
    http://guenter-huerkamp.dyndns.org/oracle-doc/docs/html/d2kwutil.html
    I suggest you to create a form to invoke the report, allowing user to select the printer and then pass it as parameter DESNAME

  • How to select XML value for a namespace when multiple namespaces

    Hi,
    I'm a beginner with this, but I'm doing well with your help from this forum in a recent post selecting out all the detail from my xml
    out into my oracle relational tables. Stumped, though, on how to select a value for xml tag value referenced by a defined namespace.
    Version, XML, what I want to select, and attempted sql is below. Thanks in advance!
    select * from V$VERSION
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE 11.2.0.2.0 Production
    TNS for Solaris: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    drop table TRANSCRIPT;
    create table TRANSCRIPT (
    CONTENT xmltype
    <?xml version="1.0" encoding="UTF-8"?>
    <arb:AcademicRecordBatch xmlns:arb="urn:org:pesc:message:AcademicRecordBatch:v1.0.0">
      <hst:HighSchoolTranscript xmlns:hst="urn:org:pesc:message:HighSchoolTranscript:v1.0.0" xmlns:ct="http://ct.transcriptcenter.com">
       <TransmissionData>
          <DocumentID>2013-01-02T09:06:15|D123456789</DocumentID>
       </TransmissionData>
       <Student>
                <Person>
                    <Name>
                        <FirstName>John</FirstName>
                        <LastName>Doe</LastName>                   
                    </Name>
                </Person>
                <AcademicRecord> 
                    <AcademicSession>
                        <Course>
                            <CourseTitle>KEYBOARD 101</CourseTitle>
                            <UserDefinedExtensions>
                              <ct:TranscriptExtensions>
                                 <NCESCode>01001E010456</NCESCode>
                                 <CourseRigor>1</CourseRigor>
                              </ct:TranscriptExtensions>
                          </UserDefinedExtensions>
                        </Course>
                        <Course>
                            <CourseTitle>SCIENCE 101</CourseTitle>
                            <UserDefinedExtensions>
                              <ct:TranscriptExtensions>
                                 <NCESCode>01001E010457</NCESCode>
                                 <CourseRigor>2</CourseRigor>
                              </ct:TranscriptExtensions>
                          </UserDefinedExtensions>                       
                        </Course>
                    </AcademicSession>
                    <AcademicSession>
                        <Course>
                            <CourseTitle>MATH 201</CourseTitle>
                            <UserDefinedExtensions>
                              <ct:TranscriptExtensions>
                                 <NCESCode>01001E010458</NCESCode>
                                 <CourseRigor>2</CourseRigor>
                              </ct:TranscriptExtensions>
                          </UserDefinedExtensions>                                 
                        </Course>
                    </AcademicSession>
             </AcademicRecord>
       </Student>
      </hst:HighSchoolTranscript>
    </arb:AcademicRecordBatch>I want to be able to select the NESCODE associated to each coursetitle (01001E010456, 01001E010457, 01001E010458), with NESCode defined by namespace, but getting out NULL.
    DOCUMENTID     LASTNAME     COURSETITLE     NCESCODE
    2013-01-02T09:06:15|D123456789     Doe     KEYBOARD 101     
    2013-01-02T09:06:15|D123456789     Doe     SCIENCE 101     
    2013-01-02T09:06:15|D123456789     Doe     MATH 201     
    My SQL is below. You'll see where I commented out a couple failed alternatives too. Thanks again in advance for any guidance.
       select x0.DocumentID
             ,x1.LastName
             , x3.CourseTitle
             ,x3.NCESCode
      from TRANSCRIPT t
         , xmltable(                                                                                   
             xmlnamespaces(
               'urn:org:pesc:message:AcademicRecordBatch:v1.0.0' as "ns0"
             , 'urn:org:pesc:message:HighSchoolTranscript:v1.0.0' as "ns1"
            --, 'http://ct.transcriptcenter.com'                               as "ns1b" 
          , '/ns0:AcademicRecordBatch/ns1:HighSchoolTranscript' 
            passing t.content
            columns DocumentID       varchar2(40) path 'TransmissionData/DocumentID'
                       , Student xmltype      path 'Student'     
          ) x0
       , xmltable(
            '/Student'
            passing x0.Student
            columns LastName varchar2(20) path 'Person/Name/LastName'                       
                        ,AcademicRecord   xmltype      path 'AcademicRecord' 
          ) x1          
       , xmltable(
            '/AcademicRecord/AcademicSession' 
            passing x1.AcademicRecord
            columns GradeLevel varchar2(20) path 'StudentLevel/StudentLevelCode'
                  , Courses      xmltype      path 'Course'
          ) x2
              , xmltable(
              xmlnamespaces('http://ct.transcriptcenter.com'  as "ns2b")
              , '/Course'
            passing x2.Courses
            columns CourseTitle varchar2(40) path 'CourseTitle'
                         ,NCESCode  varchar2(20) path 'UserDefinedExtensions/ns2b:ct/NCESCode'
                         --,NCESCode  varchar2(20) path 'UserDefinedExtensions/ns2b:ct/TranscriptExtensions/NCESCode'                     
          ) x3
               

    <<I'm assuming there is more to your XML than you showed, since
    StudentLevel/StudentLevelCode
    is not in the XML, but is in your query. >>
    Yes, to simplify, I left out some of the additional XML data, which is typically present, sorry for any confusion. I should have removed those references to that data in my example which was failing to retrieve the NCESCode data which was denoted by that namespace.
    Thank you very much! Your correction worked. I was not understanding until your correction how to properly reference in the XPATH for that namespace value. I'm a newbie at this, and this is my second post. But I've been able to populate quite a few relational tables and that was the first of several namespace tags I will have to deal with next, and with that help, I should be good with that syntax now.
    Thanks again for your help on this.

  • How to select full book in ibooks for speak select ?

    How to select full book to read in ibooks for speak select

    http://royalwise.com/rw/ibooks-as-audiobooks/
    Read up on VoiceOver BEFORE you turn this on:
    http://support.apple.com/kb/ht3598

  • How do I enter my new registration number for Quicktime Pro?

    How do I enter my new registration number for quicktime pro?

    Open QuickTime Player 7 and then the Edit menu /  Preferences / Register

  • How to select service provider for software update

    When i try to update of my nokia3110c mobile within it by using 'software update' option from phone menu, it shows 'select service provider'. Please tell me how to select this service provider.
    Thank you.

    Hi veesh,
    Thanks for your post and welcome to the Nokia forum.
    Did you try to update your phone via Nokia suite? 
    Let us know how you get on and feel free to post any other questions you may have.
    Regards,
    Pfrancoise
    If this post has helped you to solve this issue, please press the "accept as solution" icon. Kudos would always be appreciated.

  • How does select stmt with for all entries uses Indexes

    Hello all,
    I goes through a number of documents but still confused how does select for all entries uses indexes if fields are not in sequences. i got pretty much the same results if i take like two cases on Hr tables HRP1000 and HRP1001(with for all entries based upon hrp1000). Here is the sequence of index fields on hrp1001 (MANDT, OTYPE, OBJID, PLVAR, RSIGN, RELAT, ISTAT, PRIOX, BEGDA, ENDDA, VARYF, SEQNR). in second case objid field is in sequence as in defined Index but i dont see significant increase in field even though the number of records are around 30000. My question is does it make a differrence to use field sequence (same as in table indexes) in comparison to redundant field sequence (not same as defined in table indexes), secondly how we can ge tto know if table index is used in Select for entries query i tried Explain in ST05 but its not clear if it uses any index at all in hrp1001 read.
    here is the sample code i use to get test results.
    test case 1
    REPORT  zdemo_perf_select.
    DATA: it_hrp1000 TYPE STANDARD TABLE OF hrp1000 WITH HEADER LINE.
    DATA: it_hrp1001 TYPE STANDARD TABLE OF hrp1001 WITH HEADER LINE.
    DATA: it_hrp1007 TYPE STANDARD TABLE OF hrp1007 WITH HEADER LINE.
    DATA: it_pa0000 TYPE STANDARD TABLE OF pa0000 WITH HEADER LINE.
    DATA: it_pa0001 TYPE STANDARD TABLE OF pa0001 WITH HEADER LINE.
    DATA: it_pa0002 TYPE STANDARD TABLE OF pa0002 WITH HEADER LINE.
    DATA: it_pa0105_10 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: it_pa0105_20 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: t1 TYPE timestampl,
          t2 TYPE timestampl,
          t3 TYPE timestampl 
    SELECT * FROM hrp1000 CLIENT SPECIFIED  INTO TABLE it_hrp1000 bypassing buffer
                WHERE mandt EQ sy-mandt AND
                      plvar EQ '01' AND
                      otype EQ 'S'AND
                      istat EQ '1' AND
                      begda <= sy-datum AND
                      endda >= sy-datum AND
                      langu EQ 'EN'.
    GET TIME STAMP FIELD t1.
    SELECT * FROM hrp1001 CLIENT SPECIFIED INTO TABLE it_hrp1001 bypassing buffer
                FOR ALL ENTRIES IN it_hrp1000
                 WHERE mandt EQ sy-mandt AND
                        otype EQ 'S' AND
    *                    objid EQ it_hrp1000-objid and
                        plvar EQ '01' AND
                        rsign EQ 'B' AND
                        relat EQ '007' AND
                        istat EQ '1' AND
                        begda LT sy-datum AND
                        endda GT sy-datum and
                        sclas EQ 'C' and
                        objid EQ it_hrp1000-objid.
    *                    %_hints mssqlnt 'INDEX(HRP1001~0)'.
    *delete it_hrp1001 where sclas ne 'C'.
    GET TIME STAMP FIELD t2.
    t3 = t1 - t2.
    WRITE: 'Time taken - ', t3.
    test case 2
    REPORT  zdemo_perf_select.
    DATA: it_hrp1000 TYPE STANDARD TABLE OF hrp1000 WITH HEADER LINE.
    DATA: it_hrp1001 TYPE STANDARD TABLE OF hrp1001 WITH HEADER LINE.
    DATA: it_hrp1007 TYPE STANDARD TABLE OF hrp1007 WITH HEADER LINE.
    DATA: it_pa0000 TYPE STANDARD TABLE OF pa0000 WITH HEADER LINE.
    DATA: it_pa0001 TYPE STANDARD TABLE OF pa0001 WITH HEADER LINE.
    DATA: it_pa0002 TYPE STANDARD TABLE OF pa0002 WITH HEADER LINE.
    DATA: it_pa0105_10 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: it_pa0105_20 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: t1 TYPE timestampl,
          t2 TYPE timestampl,
          t3 TYPE timestampl 
    SELECT * FROM hrp1000 CLIENT SPECIFIED  INTO TABLE it_hrp1000 bypassing buffer
                WHERE mandt EQ sy-mandt AND
                      plvar EQ '01' AND
                      otype EQ 'S'AND
                      istat EQ '1' AND
                      begda <= sy-datum AND
                      endda >= sy-datum AND
                      langu EQ 'EN'.
    GET TIME STAMP FIELD t1.
    SELECT * FROM hrp1001 CLIENT SPECIFIED INTO TABLE it_hrp1001 bypassing buffer
                FOR ALL ENTRIES IN it_hrp1000
                 WHERE mandt EQ sy-mandt AND
                        otype EQ 'S' AND
                        objid EQ it_hrp1000-objid and
                        plvar EQ '01' AND
                        rsign EQ 'B' AND
                        relat EQ '007' AND
                        istat EQ '1' AND
                        begda LT sy-datum AND
                        endda GT sy-datum and
                        sclas EQ 'C'." and
    *                    objid EQ it_hrp1000-objid.
    *                    %_hints mssqlnt 'INDEX(HRP1001~0)'.
    *delete it_hrp1001 where sclas ne 'C'.
    GET TIME STAMP FIELD t2.
    t3 = t1 - t2.
    WRITE: 'Time taken - ', t3.

    Mani wrote:
    Thank you for your answer, its very helpful but i am still nor sure how does parameter rsdb/max_blocking_factor affect records size.
    Hi,
    The blocking affects the size of the statement and the memory structures for returning the result.
    So if your itab has 500 rows and your blocking is 5, the very same statement will be executed 100 times.
    Nothing good or bad about this so far.
    Assume, your average result for an inlist 5 statement is 25 records with an average size of 109 bytes.
    You average result size will be 2725 byte plus overhead which will nearly perfectly fit into two 1500 byte ethernet frames.
    Nothing to do in this case.
    Assume your average result for an inlist 5 statement is 7 records with an average size of 67 bytes.
    You average result size will be ~ 470 byte plus overhead which will only fill 1/3 of a 1500 byte ethernet frame.
    In this case, setting the blocking to 12 ... 15 will give you 66% network transfer performance gain,
    and reduces the number of calls to the DB by 50%, giving additional benefit.
    Now this is an extreme example. The longer the average row length is, the lower will be the average loss in the network.
    You have the same effects in memory structures, but on that layer you are fighting single micro seconds instead of
    hundreds of these, so in real life it is rarely measurable.
    Depending on table-statistics, oracle might decide for short inlists to use a concatanation instead of an inlist.
    This is supposed to be more costy, but I never had a case where I could proove a big difference.
    Values from 5 to 15 for blocking seem to be ok for me. If you have special statements in customer coding,
    it #might# be benefitial to do the mentioned calculations and do some network tracing to see if you can squeeze your
    network efficiency by tuning the blocking.
    If you have jumbo frames enabled, it might be worth to be analyzed as well.
    If you are only on a DB-CI system that is loopback connected to the DB, I doubt there might be a big outcome.
    Hope this helps
    Volker

  • How to create tcode for modulepool program with selection screen?

    hi,
       How to create tcode for modulepool program with selection screen?
    thanks,
    sagar

    Hi,
    We need to goto SE80.
    In our program we right click on object name and goto create
    -> transaction. Enter the module pool program and screen number and save and activate.
    Or by SE93 also we can create a transaction code for our program.
    Hope ths helps.
    plz reward if useful.
    thanks,
    dhanashri..
    Edited by: Dhanashri Pawar on Jul 22, 2008 8:29 AM

Maybe you are looking for

  • How to configure rz20 and dswp in solution manager ?

    Hi all, I have configured the ccms agent and ccms ping in the satellite system and all the connectivity with solution manager. but then i haven' got the idea how to configure the template in the RZ20 and DSWP ? Please advise on document / blog etc re

  • How do I change the info on the log in screen?

    I got a new Macbook Pro at a new company I am now working for.  I migrated my profile over from my previous computer, which is great.  However, my log-in screen still has the information from my old computer.  Is there anyway to change that? 

  • Colors don't match between PS and AI (CS 3)

    CMYK images are displaying differently for me between PS and AI. In PS when they look "good" (and print similarly on my profiled Epson), in AI they look more contrasty and saturated, with a little color shift in the greens (towards blue). My monitor

  • Crystal Reports Publication fails when using dynamic recipients

    Hi experts, We are facing a problem related with the BOE 3.1 Dynamic recipients Publication. We have created a Publication with just one Crystal Report based on a MDX Query.  We send the report in PDF format to email destinations Dynamic recipients a

  • How can I publish sites separately ?

    I have 3 different sites stored on IWeb and only one of them is ready for publishing. Can someone tell me how I can do to differenciate publishings... Can I open a new session of IWeb, (that is without my saved sites) without having to erase the "old