Importing values in sapscript from outside driver program

Hi,
I have a requirement where I have to import some values exported in some user-exit inside my text-element within the form. The driver program for the script is standard prg so cannot chg that. Any help in this regard is highly appreciated

Hi,
    Try with calling a Subroutine in the sapscript.
Regards
Bala Krishna

Similar Messages

  • Passing Value from a Driver Program

    Hi,
    How can i send a specific field's value alone to the form from driver program ?
    we normally use write_form in Loop & end loop.
    if i wanna send a value from one flied alone wat shud i do??
    Pls help me...
    Thank You.

    Hi
    See the sample code for Subroutines and do accordingly
    How to call a subroutine form SAPscripts
    The Form :
    /:PERFORM CDE_CENT IN PROGRAM ZKRPMM_PERFORM_Z1MEDRUCK
    /:USING &EKKO-EBELN&
    /:CHANGING &CDECENT&
    /:ENDPERFORM
    The report :
    REPORT zkrpmm_perform_z1medruck .
    DATA : BEGIN OF it_input_table OCCURS 10.
    INCLUDE STRUCTURE itcsy.
    DATA : END OF it_input_table.
    déclaration de la table output_table contenant les
    variables exportées
    DATA : BEGIN OF it_output_table OCCURS 0.
    INCLUDE STRUCTURE itcsy.
    DATA : END OF it_output_table.
    DATA : w_ebeln LIKE ekko-ebeln,
    w_vbeln LIKE vbak-vbeln,
    w_zcdffa LIKE vbak-zcdffa.
    FORM CDE_CENT
    FORM cde_cent TABLES input output.
    it_input_table[] = input[].
    it_output_table[] = output[].
    READ TABLE it_input_table INDEX 1.
    MOVE it_input_table-value TO w_ebeln.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = w_ebeln
    IMPORTING
    output = w_ebeln.
    SELECT SINGLE zcdffa FROM ekko
    INTO w_zcdffa
    WHERE ebeln = w_ebeln.
    it_output_table-name = 'CDECENT'.
    MOVE w_zcdffa TO it_output_table-value.
    MODIFY it_output_table INDEX 1.
    output[] = it_output_table[].
    ENDFORM.
    REPORT ZMPO1 .
    form get_freight tables in_par structure itcsy out_par structure itcsy.
    tables: ekko,konv,t685t.
    data: begin of itab occurs 0,
             ebeln like ekko-ebeln,
             knumv like ekko-knumv,
           end of itab.
    data: begin of itab1 occurs 0,
             knumv like konv-knumv,
             kposn like konv-kposn,
             kschl like konv-kschl,
             kbetr like konv-kbetr,
             waers like konv-waers,
             kwert like konv-kwert,
           end of itab1.
    data: begin of iout occurs 0,
             kschl like konv-kschl,
             vtext like t685t-vtext,
             kbetr like konv-kbetr,
             kwert like konv-kwert,
           end of iout.
    data v_po like ekko-ebeln.
    read table in_par with key 'EKKO-EBELN'.
    if sy-subrc = 0.
       v_po = in_par-value.
       select
         ebeln
         knumv
      from ekko
      into table itab
      where ebeln = v_po.
      if sy-subrc = 0.
        loop at itab.
          select
            knumv
            kposn
            kschl
            kbetr
            waers
            kwert
          into table itab1
          from konv
          where knumv = itab-knumv and
                kappl = 'M'.
        endloop.
        loop at itab1.
          if itab1-kposn <> 0.
            select single * from t685t
                              where kschl = itab1-kschl
                                and kappl = 'M'
                                and spras = 'EN'.
            iout-vtext = t685t-vtext.
            iout-kschl = itab1-kschl.
            iout-kbetr = itab1-kbetr.
            iout-kwert = itab1-kwert.
            append iout.
            clear iout.
          endif.
        endloop.
        sort itab1 by kposn.
        loop at iout.
          sort iout by kschl.
          if ( iout-kschl eq 'GSDC' OR
               iout-kschl eq 'GSFR' OR
               iout-kschl eq 'GSIR' ).
            at end of kschl.
              read table iout index sy-tabix.
              sum.
             write:/ iout-kschl,iout-vtext,iout-kwert.
          out_par-name = 'A1'.
          out_par-value = iout-vtext.
          append out_par.
          out_par-name = 'A2'.
          out_par-value = iout-kwert.
          append out_par.
              endat.
            endif.
          endloop.
        endif.
      endif.
    endform.
    IN THE FORM I AM WRITING THIS CODE.
    /:DEFINE &A1& = ' '
    /:DEFINE &A2& = ' '
    /:PERFORM GET_FREIGHT IN PROGRAM ZMFORM_PO1
    /:USING &EKKO-EBELN&
    /:CHANGING &A1&
    /:CHANGING &A2&
    /:ENDPERFORM
    &A1&
    &A2&
    This Code is to be written in the PO form under ADDRESS window.
    /:DEFINE &A1& = ' '
    /:DEFINE &A2& = ' '
    /:DEFINE &A3& = ' '
    /:DEFINE &A4& = ' '
    /:DEFINE &A5& = ' '
    /:DEFINE &A6& = ' '
    /:PERFORM GET_VENDOR IN PROGRAM ZMFORM_PO
    /:USING &EKKO-EBELN&
    /:CHANGING &A1&
    /:CHANGING &A2&
    /:CHANGING &A3&
    /:CHANGING &A4&
    /:CHANGING &A5&
    /:CHANGING &A6&
    /:ENDPERFORM
    &A1&
    &A2&
    &A3&
    &A4&
    &A5&
    &A6&
    Reward points for useful Answers
    Regards
    Anji

  • Calling a Smartform from different driver programs

    Hi everyone,
    I have two driver programs and from both these programs i'm calling the same Smartform.
    I have a field in smartform. and i want it to be printed for one program but not printed when the
    smartform is called from the second program.
    Pls. can anyone help me out about how this can be achieved.
    Thanks in advance.
    Regards
    Tanu

    Create an import parameter (flag) in your smartform interface and when you call your smartform from one of these drivers pass assume 'X' value to this flag. And add a condition for the field you want to hide. like below. 
    if flag = 'X'
    show or don't show.
    endif.
    Edited by: Gungor Ozcelebi on Jul 3, 2009 5:08 PM

  • HELP! Import iPhoto 4 pics from external drive into iPhoto 5

    I had computer issues so cleared my hard drive which was with iPhoto 4
    Moved the entire iPhoto Library to my external.
    When they updated my software they used the 5 version.
    Now I am having issues getting iPhoto 5 to recognize my data.
    I have tried various way indicated... but each one presents with a different problem.
    * If I pull them directly from the External drive to the Photo finder window - then when I open iPhoto i get the spinning wheel for HOURS (quit after 12).
    * If I drag them directly to Iphoto (either the entire folder OR year by year)
    They do show up in iPhoto, however, in iPhoto ALL dates are the date I pulled the iPhoto Library onto my External drive. Also, when in iPhoto there are film roles, however, the events are mixed up.
    I have tried this about 10 times, all different ways, my latest is now it imports them in DUPLICATE (and I had deleted teh thumb files prior to import)
    My question:
    How do I pull my iPhoto 4 library into iPhoto 5 and KEEP proper fiilm roles to include 1) Correct pictures in each 2) correct dates and 3) preserve the role titles 4) not duplicated
    HELP!!!
    THANKS!

    Here are some instructions from Apple in iPhoto Help that explain how to switch from your normal iphoto library (on your internal drive) to your older iphoto library (on your external drive:
    "You can switch from the photo library you're currently working on to another one you've already created.
    1.Quit iPhoto.
    2.Rename your current iPhoto Library folder in the Finder or move it to a new location on your hard disk, and then open iPhoto.
    3. Tip: If you don't want to rename or move your current iPhoto Library folder, hold down the Option key while opening iPhoto.
    4. Click Find Library.
    5. Choose the library you want to display.
    6. Click Open.
    The library appears in the iPhoto viewing area."
    If you succeed in doing this, you can thus direct your iphoto 5 program to open the iphoto 4 library on your external. If this succeeds, iphoto 5 will automatically convert that library to iphoto 5. Then you can burn your external drive iphoto 5 library to CD or DVD using the "burn" function from within iphoto. It is best if you can fit everything on one CD or DVD, but if not, you can burn by album, or by roll, or even by date. Make sure you burn this disk (or these disks) from within iphoto 5. Then, following the above instructions again, revert back to your internal drive iphoto 5 library. Then, while iphoto is running, insert those CDs/DVDs you burned from within iphoto earlier and when you do, each will appear inside iphoto along with your other albums. Each CD or DVD, as you insert it, will look like another album. You can then import those into your existing internal drive library. Unless you hhave many thousands of photos, this should not take a long time.
    By the way, if ALL your photos are in that external drive iphoto library, you can first quit iphoto and then you can drag it over and replace your internal drive iPhoto Library with the external drive iPhoto Library. Then iPhoto 5 will convert the older library automatically when it starts up.
    Before doing any of these things, I suggest backing up all your photos to something safe as if there is some corruption in your original library, it could get mangled in a way that makes it unusable and then you'll need that backup.
    I have actually done what I have descriibed above. We have an older iMac G3 with iPhoto 4. We got my daughter a new iMac G5 which came with iPhoto 5. I copied over her iPhoto Library from the iMac G3 which had been running iPhoto 4, and when she started iPhoto 5 for the first time on the new iMac, it converted everything in the old iPhoto Library (created under iPhoto 4) to iPhoto 5.
    You would only need the CDs/DVDs if you have two libraries you want to merge, one being an iPhoto 4 Library, and the other being an iPhoto 5 Library.
    There is a guy named "Old Toad" who sometimes comments in this forum. He probably has a better way of doing this.

  • Credit and debit memo sapscript prog and driver program

    Hi all, i need debit and credit memo sap-script forms and their drivers???? please help
    thanks.

    Hello Amit,
    The form for debit/credit memo is: F140_DOCU_EXC_01
    Driver program is: RFKORD11..
    Thanks,
    Dishant

  • How to import photos into iphoto from backup drive to new computer

    2008 "Vintage"  iMac recently died. Data was saved on external hard drive. Purchased new iMac, OS 10.9.4, how to get old iphoto library from hard drive to new computer. Iphoto 9.5.1. Thanks

    Data was saved on external hard drive. Purchased new iMac, OS 10.9.4, how to get old iphoto library from hard drive to new computer.
    Teresa, in what way way the data saved to an external hard drive?  Do you have a copy of your iPhoto library on that drive? Or is it a clone of your old system drive ? A Time Machine backup?
    And which iPhoto version did you have on your old Mac?
    If your external drive holds a copy of your iPhoto library, you can simply connect this drive your new mac and drag the library over.  It will depend in the version of your old iPhoto, how you can open the the old library. If it is an iPhoto '09 or '11 library, you can aunch iPhoto with the options key held down and select the library as your new iPhoto library.  If the iPhoto version is older, you will have to ru the iPhoto Library Upgrader first.
    iPhoto '11: About the Library Upgrader

  • How can I get selection screen values from outside of program?

    Hi. all.
    Now. I'm developing moritoring systems and I have problems. for getting selection screen values in runtime. Is there any function, methods or structure to know this?
    I'd like to get selection screen values while several programs working in runtime and update these values to table to show current system's status and input values for users in real time.
    For example.
    Now. 3 PGMs are working on systems.
    each PGM is ZAAA01, ZAAA02, ZAAA03.
    and ZAAA01 needs input parameter P01, ZAAA02 needs input parameter P02, ZAAA03 needs input parameter P03.
    In this case, I have to know values of P01, P02 and P03.
    The mornitoring systems will show current working status of PGMs(ZAAA01~03)' and these PGMs' input values.
    As fas as I know, the structure 'SCREEN' can be used in each PGM for runtime. Is there any SAP system structure or something else for this purpose?
    I hope your hopeful repsponse.
    Thanks.

    Umm..I need to explain more about this.
    of course I know  SET, GET PARAMETERS.
    But I'd like to minimize coding for each PGM level.
    I have over hundreds PGMs and I have to develop the PGM(including tables and structures) that mornitor
    all of those PGMs on a report in real-time.
    This PGM is kind of  Process Manager.
    First I should know dialogue job PGM and background job that pass parameters using SAP(ABAP) Memory.
    And then I have to update those PGMs' input values via screens into tables in real-time.
    So, I couldn't use SET,GET PARAMETERS for this PGM.
    I want to know methods that can be used for getting information about runtime PGMs' selection screen field values in SAP systems wide.
    Please help me some one knows this.

  • RE-Importing into Lightroom 3 from external drive---simple?

    This is isn't as simple as it sounds.  My hard drive started to fail, but I replaced it with a new one (I still have access to all of the data on the old hard drive).  I used to use Photoshop Elements to organize my photos, but moved to LR2 several years ago. I upgraded to LR3 about a year ago, and it has been backed up regularly.  However,  I have not done a good job of organizing my photos.
    I am now learning that that LR does not actually keep the photos themselves in its database, but just a copy of the information about the photo (I know I should have known this before, but I didn't).  Whenever I imported a photo into LR3, I would not have it copy the photo, but actually import it.  The original file folder would be empty, so I erronesouly thought that LR3 was keeping a copy of not only the data, but the photo itself in the database.  I double back up my hard drive, so I thought it would be a piece of cake to import this back into LR3.  Maybe it is, but I sure can't find a simple way to do this.  This is what LR has to say about it:
    "Lightroom allows you to schedule regular catalog backups when you exit the software. Backups executed from Lightroom include only the catalog file. You must manually back up your edited photos, previews, sidecar files, slide shows, web galleries, and exported photos outside Lightroom"
    Being a ready, fire aim kind of guy, this is the first time I have read that.
    So I have installed LR3 on my new hard drive, but on my old hard drive I have LR3 folders, LR2 folders, and photo folders.  I have tons of tags I created in LR3, and want to preserve the tags, but I also want to make sure I import all of the old photos as well as the LR data correctly.  It appears that LR3 moved the photos into "My Pictures" which would be easy enough to bring over to my new hard drive, but I also want to import the LR3 data.  I'm also not sure if the LR2 data even matters any more since I have LR3, but I can't really tell from what I have read.
    Sorry for the long winded explanation, but I am trying to import the LR photos and data over from the old hard drive into the new hard drive in the most effective way possible without losing any information (like tags).  Do I just drag "My Pictures" from the old hard drive to the "My Pictures" in the new hard drive and then open the latest LR3 catalog from that location?  Something else?
    Sorry for the basic question, but I obviously had some major gaps in my LR3 abilities.
    Thanks for any help.

    Hal,
    Thanks very much for your help!  What I first did was just drag the entire contents of "My Pictures" from the old hard drive, over to "My Pictures" on my new system (thanks to a SATA to USB plug with power brick that I am able to use to pull everything off my old laptop hard drive).  However, that created two "My Pictures", with the old being a sub folder of the new. So I deleted everything, started over and imported all of the folders over individually.  I also brought over the LR catologs as you described.
    So I tried to open up the LR 3 Catalog, but it didn't have any data in it.  There was another LR3-2 catalog, so opened that and it seemed to be the one with the data.  Why there were two is a mystery to me, but within the Lightroom folder, there were other folders including LR2 catalogs and a bunch of temporary folders. 
    The question marks showed up on the folders as you described, but the top folder in the collection was simply the first folder of dozens of folders.  There was no "My Pictures" folder within the LR collection  (which I thought was odd).  There was also no "Locate Missing Folder" option when I right clicked on the folders (I have Windows 7 64 bit Professional if that makes any difference).  I saw the option of "synchronize folder" when I right clicked each folder. so I clicked that and it removed the question mark and seemed to work. 
    However, I'm not real sure of this entire setup. I have over 40 GB of photos, so it is hard to tell if the whole thing is put together correctly.  I tested out some photos and the tags seem to be there, but I am going to have get more comfortable with how LR3 creates and stores data.  I've started wading through the LR tutorials, but most of it I know about.  It is the storage, organization and especially, the backup and reimporting of photos and information that has me squirming.
    Thanks for the help!
    Randy

  • Importing Flip .avi clips from hard drive

    I got a Flip camcorder (standard def) for christmas last year and have copied all of its footage onto my Mac hard drive from an external PC hard drive. After having downloaded the proper DIVX software, I can play back the clips in Quicktime without a problem. In iMovie, however, I really can't figure out what's wrong. I just downloaded the latest update of MacOSX and the latest updates to iMovie.
    When I go into the import dialogue box, I can select (and preview-play) the .avi files I copied over, (set the import to copy instead of move), and the program goes through all the steps of importing the video, asks to generate thumbnails, the whole nine yards. Once it's done though, none of the clips show up in the event library. All the event library window says is "no matching video." The show function is set to "all clips." The only other thing I can see is in the left side of the events library, there's a hard disk icon with an exclamation point in a yellow inverted triangle labeled "imovie8.0.6" so something's not right...I just don't know what or how to fix it.

    Update: I just tried importing again, and the videos are not playing back properly in the import window, only the sound track plays whilst the video remains frozen on the first frame.

  • 11.1.3 crashes when importing an mp3 file from hard drive

    When I try to 'add file' from my hard drive to iTunes 11.1.3 the program crashes. The file is not added.  Until updating to 11.1.3  I could add one or more files with no problem. Windows 7.
    Is this a glitch in the update or specific to my machine and how could I tell?

    Hi Tawney Mazek!
    In order to troubleshoot this issue and find the cause of it, you may need to use the following article:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Importing photos into iPhoto from Hard Drive

    Mike just downloaded our back up onto our newish Mac after our Macbook bravely went to it's grave in coffee.    I'm now trying to import about 100 - 200G of photos into iPhoto from my hard drive.  I really do not want to spend the whole time selecting and dragging these pictures.  All that I read so far says that is the only way to get them off your hard drive.  Some one please rescue me and tell me there is another way!  Unfortunately I have already started a new photo album with pictures from my iPhone, so I can't just start a new album with these pics.  Thanks for any help I can get. ~Kari A.

    first off do not import an old library into iPhoto - it does not work
    If you have an old library you simply drag it to the new computer and launch iPhoto while depressing the option key to get the select library window and then select it - repeat to select a different library
    If you have just the photos (not =an iPhoto library) then simply drag the folder of photos to iPhoto
    LN

  • How can I import file of photos from external drive into photoshop elements 11 organizer?

    I just started with elements 11 after many years of El., 10. How can I import files from external disk to elements 11 organizer? My files were stored on the external drive.

    Hi,
    The Canon S100 wasn't supported until version 6.6 of camera raw and that isn't supported by pse 8.
    You options are to either upgrade to pse version 10 or use the DNG converter
    for windows http://www.adobe.com/support/downloads/detail.jsp?ftpID=5310
    or
    for mac http://www.adobe.com/support/downloads/detail.jsp?ftpID=5309
    Brian

  • Importing a layer mask from outside Elements 11

    I have some masks I created outside Elements 11 and also imported from the web.  I would like to use these masks to blend two or more layers in Elements 11.

    Here's another way in pse 11:
    1. Ctrl (Cmd) click on the layer mask to load the selection of the layer mask
    2. Make the layer active that you want to copy the layer mask to.
    3. Go to Select>Save Selection and choose layer mask from the dropdown menu.
    The above will make a new layer mask on the active layer using the selection you loaded from the layer mask.

  • Does iPhoto 09 allow you to find a photo from outside the program?

    I quit using iphoto with 08 since I can't access the photos from my Adobe applications. I'm using Bridge right now, but there are some features I prefer in iphoto. However, I use these photos in publications and have to export them to another place in order to use them. Has this changed in the 09 version? I'd like to know before I spend the money on the update....

    I quit using iphoto with 08 since I can't access the photos from my Adobe applications. I'm using Bridge right now, but there are some features I prefer in iphoto. However, I use these photos in publications and have to export them to another place in order to use them. Has this changed in the 09 version? I'd like to know before I spend the money on the update....
    Well since you always had full access to your photos it has not changed - it also has not changed that the iPhoto library is a UNIX style package and it has not changed that you need to access your photos correctly - Click here for a discussion on accessing your photo in iPhoto '08 and '09
    Exporting them is one way - but certainly not the only way
    LN

  • Purchase Order Driver Program Not loading SMARTFORM

    Hi,
    I have developed Z smartform by copying from standard form and tried to call from standard program only but here I am not able to call my Z smartform and I am able to call only Z SAPSCRIPT from this standard program.
    I have done all the necessary changes in NACE transaction but then also only when I keep the script name its working fine but when I replace this by smartform name the driver program is not calling smartform .!! why?
    Please do let me know why is it like this?
    Thanks
    Sudharshan

    Hi,
    PO driver program is written to support only SAPSCRIPT. So if you want to assign smartform in NACE, you should take a Zcopy of the driver program SAPFM06P with its include FM06PE02 as ZFM06PE02. And give the zprogram against the driver program field in NACE.
    Then you need to replace the entry_nue subroutine in ZFM06PE02 with the below code.
    form entry_neu using ent_retco ent_screen.
      data: l_druvo like t166k-druvo,
            l_nast  like nast,
            l_from_memory,
            l_doc   type meein_purchase_doc_print.
    * Data Declaration for PO smartform Modification
    DATA: fname TYPE rs38l_fnam,
            xkomk TYPE TABLE OF komk,
            gs_output TYPE ssfcompop,
            gs_dialog TYPE ssfctrlop.
      clear ent_retco.
      if nast-aende eq space.
        l_druvo = '1'.
      else.
        l_druvo = '2'.
      endif.
      call function 'ME_READ_PO_FOR_PRINTING'
           exporting
                ix_nast        = nast
                ix_screen      = ent_screen
           importing
                ex_retco       = ent_retco
                ex_nast        = l_nast
                doc            = l_doc
           changing
                cx_druvo       = l_druvo
                cx_from_memory = l_from_memory.
      check ent_retco eq 0.
       IF tnapr-sform NE ' '.
        CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
          EXPORTING
            formname           = tnapr-sform
          IMPORTING
            fm_name            = fname
          EXCEPTIONS
            no_form            = 1
            no_function_module = 2
            OTHERS             = 3.
        IF sy-subrc EQ 0.
            gs_dialog-no_dialog = 'X'.
            gs_dialog-preview = 'X'.
            gs_output-tddest = 'LP01'.
            gs_output-tdnoprev = ' '.
            gs_output-tdnoprint = ' '.
            gs_output-tdimmed = 'X'.
            gs_output-tdnewid = 'X'.
         CALL FUNCTION fname  " modify the interface as per your needs
            EXPORTING
              control_parameters = gs_dialog
              output_options     = gs_output
              user_settings      = ' '
              zxekko             = l_doc-xekko
              zxpekko            = l_doc-xpekko
            TABLES
              l_xekpo            = l_doc-xekpo
              l_xekpa            = l_doc-xekpa
              l_xpekpo           = l_doc-xpekpo
              l_xeket            = l_doc-xeket
              l_xtkomv           = l_doc-xtkomv
              l_xekkn            = l_doc-xekkn
              l_xekek            = l_doc-xekek
              l_xkomk            = xkomk
            EXCEPTIONS
              formatting_error   = 1
              internal_error     = 2
              send_error         = 3
              user_canceled      = 4
              OTHERS             = 5.
        ELSE.
          CALL FUNCTION 'ME_PRINT_PO'
            EXPORTING
              ix_nast        = l_nast
              ix_druvo       = l_druvo
              doc            = l_doc
              ix_screen      = ent_screen
              ix_from_memory = l_from_memory
              ix_toa_dara    = toa_dara
              ix_arc_params  = arc_params
              ix_fonam       = tnapr-fonam                      "HW 214570
            IMPORTING
              ex_retco       = ent_retco.
        ENDIF.
      ELSE.
        CALL FUNCTION 'ME_PRINT_PO'
          EXPORTING
            ix_nast        = l_nast
            ix_druvo       = l_druvo
            doc            = l_doc
            ix_screen      = ent_screen
            ix_from_memory = l_from_memory
            ix_toa_dara    = toa_dara
            ix_arc_params  = arc_params
            ix_fonam       = tnapr-fonam                        "HW 214570
          IMPORTING
            ex_retco       = ent_retco.
      ENDIF.
    endform.
    While calling the smartform modify the fm interface to your needs.
    This will solve your problem.
    Regards
    Karthik D

Maybe you are looking for

  • Fehler bei der Überprüfung auf Adobe-Originalsoftware

    "Das Produkt, das sie zu installieren versuchen, ist keine Adobe-Originalsoftware und scheint nicht lizensiert zu sein." Hallo Community, ich habe mir vor ein paar Tagen die Adobe CS6 Design & Web Premium Student and Teacher Edition gekauft und habe

  • Recording LPs on my Macbook

    (I was able to do this on my PC, but it was a royal pain in the butt to drag my turntable and receiver in the office, hook it up, and blah, blah, blah.) Is there a way to record my analog LPs to save into iTunes and thereby transfer them onto my iPod

  • Functional Specifications for LSMW required urgently

    Hi Friends, Can you please provide me with the functional specifications for lsmw. I need a template document which i should be able to use as Func Specs for different lsmw objects. Kindly forward the same to [email protected] Thanks & Regards, Vijay

  • How to set default variant for selection screen

    Hi, I want to make one variant as default for selection screen for one user. For eg., take COOIS. For the selection screen, i have 3 variants. But i want one variant to be default. Thsi is not for all users. Thsi is for particular user. I am not seei

  • Cannot click preferences in ichat

    I just got a new MacBook Pro. My ichat was working fine until I forgot my AOL password on another computer and had to reset it. Now, I tried to change the password in ichat, but it's not showing ANY accounts. I tried to go through Preferences, but it