Help tiling bitmaps for printing screen

Hi. I have successfully created an AIR app in Flash CS3 that
captures bitmapdata and and saves the image to the desktop as a
png. Now I am trying to get a larger output size by tiling bitmaps
but am getting very confused. I would appreciate any help on how to
do this. Thanks.

To print an image on the screen: command-shift-3 will select the entire screen to a .png file on your desktop. Command-shift-4 will give you a marque to select a section of your screen to a .png file.

Similar Messages

  • HT201181 hi, in apple MacBook Air 11.6" what is the shortcut key for print screen

    hi, in apple MacBook Air 11.6" what is the shortcut key for print screen

    To capture the entire screen to an image, use the key combination ⌘ shift 3.
    To capture a selection rectangle, ⌘ shift 4.
    To capture the frontmost window, ⌘ shift 4 and then press the space bar.
    The screen grab will appear on your Desktop. Open it in Preview or your favourite image editing software, and print in the usual manner.

  • Help! 'Package for Print' Script

    Hi all,
    I have a specific 'Package For Print' script, that needs a small modification, and and I was hoping someone could help me.
    Essentially, I need to OMIT 'Include PDF' option when packaging, since this makes things a bit wonky on my script (see below).
    Let me know if you need to see the script, and I'll post it.
    Thank you.

    Here you go, and thank you. I know notes are also included in it. Sorry about this.
    //Package the active document and setup the dockets folder structure.
    //The active document shouldn't have been saved (has no name), so provide a name
    //taken from the first and only link.  After creating the dockets folder structure,
    //close and delete the original file and open the file in the docket's originals
    //folder.
    #target InDesign
    //Constants
    const PROOF_PREFIX = 'Proof_';
    const OUTPUT_SUFFIX = ' Folder';
    const ORIGINALS_FOLDER = 'Originals';
    const PRINT_FOLDER = 'Print';
    const DIGITAL_PROOF_FOLDER = 'Digital Proof';
    const CLIENT_FOLDER = 'Client Provided Files';
    const DEFAULT_MAC_DOCKETS = '/Users/parham/Desktop';
    const PDF_PROFILE = 'Linx_Proof'
    function Err() {}
    //Use a more user-friendly version than throwing an error.
    Err.FatalError = function (msg) {
      alert(msg, 'Fatal Error', true);
      exit();
    function makeShowUI(runtime) {
      var doc = runtime.doc;
      var window = (function () {
      var windowDef = "Window {\
      type: 'dialog', \
      properties: { \
      resizeable: false, \
      closeButton: true, \
      maximizeButton: false, \
      minimizeButton: false \
      text: 'Dockets Package', \
      orientation: 'column', \
      var w = new Window(windowDef);
      //Folder name
      w.add("StaticText { text:'New Folder Name', alignment: 'left' }");
      var defaultName = doc.name;
      if (defaultName.slice(-5) == '.indd') {
      var origlength = defaultName.length;
      defaultName = defaultName.substr(0, origlength - 5);
      w.folderText = w.add("EditText { alignment: 'left', characters: 30, justify: 'left', " +
      "text:'" + defaultName + OUTPUT_SUFFIX + "'}");
      //Destination dir
      w.add("StaticText { text:'Save To', alignment: 'left' }");
      var dirGroup = w.add("Group { orientation: 'row', alignment: 'fill' }");
      w.dirText = dirGroup.add("EditText { characters: 30, justify: 'left', " +
      "text:'" + DEFAULT_MAC_DOCKETS + "'}");
      w.dirBrowseBtn = dirGroup.add("Button { text: 'Browse...' }");
      w.dirBrowseBtn.textBox = w.dirText;
      //Package Options
      w.options = w.add("Panel { orientation: 'column', alignment: 'fill', \
      text: 'Package Options', alignChildren: 'left'}");
      w.options.fonts = w.options.add("Checkbox { text: 'Copy Fonts' }");
      w.options.links = w.options.add("Checkbox { text: 'Copy Linked Graphics' }");
      w.options.profiles = w.options.add("Checkbox { text: 'Copy Color Profiles' }");
      w.options.update = w.options.add("Checkbox { text: 'Update Graphic Links In Package' }");
      w.options.hiddenContent = w.options.add("Checkbox { text: 'Include Fonts and Links From Hidden and Non-Printing Content' }");
      w.options.ignore = w.options.add("Checkbox { text: 'Ignore Preflight Errors' }");
      w.options.report = w.options.add("Checkbox { text: 'Create Report' }");
      w.options.fonts.value = true;
      w.options.links.value = true;
      w.options.profiles.value = true;
      w.options.update.value = true;
      w.options.hiddenContent.value = true;
      w.options.ignore.value = true; //Parham's request for true
      w.options.report.value = false; //Saeed's request for false (no instructions)
      //Digital Proof
      w.proof = w.add("Panel { orientation: 'column', alignment: 'fill', \
      text: 'Digital Proof', alignChildren: 'left'}");
      w.proof.make = w.proof.add("Checkbox { text: 'Make PDF Proof' }");
      w.proof.viewAfter = w.proof.add("Checkbox { text: 'View PDF' }");
      w.proof.make.value = false;
      w.proof.viewAfter.value = false;
      //OK / Cancel
      var buttonDef = "Group { orientation: 'row', alignment: 'right', alignChildren: 'right' }";
      w.bg = w.add(buttonDef);
      var okDef = "Button { text: 'OK', alignment: 'right' }";
      var cancelDef = "Button { text: 'Cancel', alignment: ['right', 'center'] }";
      w.okBtn = w.bg.add(okDef);
      w.cancelBtn = w.bg.add(cancelDef);
      return w;
      runtime.window = window;
      window.dirBrowseBtn.onClick = (function () {
      var result = Folder.selectDialog('Choose destination directory');
      if (null !== result) {
      //Replace string with selected path
      this.textBox.text = result.fullName;
      return window.show();
    function deleteFolder(folder) {
      if (!folder.exists) {
      return;
      var children = folder.getFiles();
      for (var i = 0, im = children.length; i < im; i++) {
      if (children[i] instanceof Folder) {
      deleteFolder(children[i]);
      } else {
      children[i].remove();
      folder.remove();
    //Main path
    try {
      var a = app.activeDocument;
    } catch (e) {
      Err.FatalError("No document open");
    var runtime = {};
    var doc = app.activeDocument;
    runtime.doc = doc;
    if (doc.saved) {
      //Document has already been saved (already has a name), so stop.
      Err.FatalError("Document has already been saved");
    //Ensure at least one link, since multipaged PDFs end up as more than 1 link.
    if (doc.links.length < 1) {
      Err.FatalError("Document has " + doc.links.length + " links.");
    //Save the existing file in a temporary place, same dir as first link.
    //Take the name from the first link
    var link = doc.links.firstItem();
    var defaultName = link.name;
    if (defaultName.slice(-4) == '.pdf') {
      var origlength = defaultName.length;
      defaultName = defaultName.substr(0, origlength - 4);
    } else {
      //Placed item is not a pdf, as per Parham's request, don't warn about it.
      //Just take the filename best guess and go with it.
    // if (confirm('Linked item is not a PDF.  Package anyways?',
    // true, 'Package non-PDF')) {
      //break on the last '.'
      var lastIndex = defaultName.lastIndexOf('.');
      if (lastIndex > -1) {
      defaultName = defaultName.substr(0, lastIndex);
      } else {
      defaultName = defaultName;
    // } else {
    // alert('Did not package.');
    // exit();
    //filePath should be a File, but is actually a string, so make a file.
    var linkFile = new File(link.filePath);
    var origFile = new File(linkFile.path + '/' + defaultName + '.indd');
    if (origFile.exists) {
      //Folder already exists, get user to confirm
      if (confirm("File " + defaultName + '.indd already exists.  Replace?',
      true, 'Replace File')) {
      //Erase the temp file
      origFile.remove();
      } else {
      alert('Did not overwrite existing files, did not package.');
      exit();
    doc.save(origFile);
    if (2 == makeShowUI(runtime)) {
      //User pressed cancel
      exit();
    //Main code, do the packaging and make the directories.
    //But first check for existing folder.
    var folderName = runtime.window.folderText.text;
    var destinationPath = runtime.window.dirText.text;
    if (destinationPath.slice(-1) == '/') {
      var newFolderPath = destinationPath + folderName;
    } else {
      var newFolderPath = destinationPath + '/' + folderName;
    var outputRoot = new Folder(newFolderPath);
    if (outputRoot instanceof Folder && outputRoot.exists) {
      //Folder already exists, get user to confirm
      if (confirm('Dockets folder ' + folderName + ' already exists.  Replace?',
      true, 'Replace Folder')) {
      //Erase the destination directory
      //Get all contained files + folders, then delete them.
      deleteFolder(outputRoot);
      } else {
      alert('Did not overwrite existing files.');
      exit();
    } else if (outputRoot instanceof File) {
      //Destination folder exists as a file, fail.
      Err.FatalError('File named ' + folderName + ' already exists, cannot make folder.');
    //Destination doesn't exist, create it.
    if (!outputRoot.create()) {
      Err.FatalError('Error creating folder ' + folderName);
    //We have an empty directory, now do the packaging and everything else.
    var printFolder = new Folder(newFolderPath);
    printFolder.changePath(PRINT_FOLDER);
    if (!printFolder.create()) {
      Err.FatalError('Error creating Print folder.');
    var digitalProofFolder = new Folder(newFolderPath);
    digitalProofFolder.changePath(DIGITAL_PROOF_FOLDER);
    if (!digitalProofFolder.create()) {
      Err.FatalError('Error creating Digital Proof folder.');
    var clientFolder = new Folder(newFolderPath);
    clientFolder.changePath(CLIENT_FOLDER);
    if (!clientFolder.create()) {
      Err.FatalError('Error creating Client folder.');
    var originalsFolder = new Folder(newFolderPath);
    originalsFolder.changePath(ORIGINALS_FOLDER);
    if (!originalsFolder.create()) {
      Err.FatalError('Error creating Originals folder.');
    //Do the package
    var f = runtime.window.options;
    if (doc.packageForPrint(originalsFolder, f.fonts.value, f.links.value, f.profiles.value, f.update.value, f.hiddenContent.value, f.ignore.value, f.report.value, false, true)) {
    } else {
      Err.FatalError('Failed to package.');
    //Do the PDF proof
    if (runtime.window.proof.make.value) {
      var proofname = PROOF_PREFIX + doc.name;
      if (proofname.slice(-5) == '.indd') {
      var origlength = proofname.length;
      proofname = proofname.substr(0, origlength - 5);
      proofname = proofname + '.pdf';
      var proofFile = new File(digitalProofFolder.fullName + '/' + proofname);
      if (proofFile.exists) {
      Err.FatalError('Digital proof already exists.');
      } else {
      var exportProfile = app.pdfExportPresets.itemByName(PDF_PROFILE);
      //We get an object even if the profile doesn't exist, have to check isValid
      if (!exportProfile.isValid) {
      Err.FatalError('PDF profile ' + PDF_PROFILE + " doesn't exist, digital proof not created.");
      //Explicitly set to export all pages.
      app.pdfExportPreferences.pageRange = PageRange.ALL_PAGES;
      //Set view preference
      app.pdfExportPreferences.viewPDF = runtime.window.proof.viewAfter.value;
      doc.exportFile(ExportFormat.PDF_TYPE, proofFile, false, exportProfile);
    //Open the Originals folder .indd, close the current file and delete it.
    var newFile = new File(originalsFolder.fullName + '/' + doc.name);
    if (!app.open(newFile)) {
      Err.FatalError("Failed to open packaged .indd");
    doc.close();
    origFile.remove();

  • Need help getting ready for print

    I am running Photoshop CS5 on a Mac 10.8.4.
    I have basic photoshop experience. 
    My designer has left me in the lurch at a daedline and I need to get some material to the printer ASAP.
    The design is finished.
    The printer wants all the text outlined and the images embedded then a "high quality PDF" submitted to print.
    Please can someone tell me how to outline text and imbed images. (I know how to savw to PDF).
    Any help would be greatly appreciated.
    Thanks.

    Select a Text Layer and invoke
    Type > Convert to Shape
    to make the text layer a layer with a vector mask.
    As for embedding images if you create the pdf in Photoshop I don’t see the relevance of the request.
    But the settings you choose for Compression and Output are relevant factors.
    Which Color Space does the printer request? (And please don’t say CMYK …)
    What is the Color Space and Color Mode of the file you work on?

  • Need help resizing pages for different screens

    Hey guys,
    Ok well I made this website that has a lot of pages now and
    the only problem is that I have a 21" widescreen monitor so
    everything I created has to be scrolled on a lot of smaller
    screens. I'm almost possitive that there is a way to tell the html
    to resize the website when different screen sizes are detected. Any
    help would be great. Thanks.
    Also if there is a way to do this, then would it be possible
    to change the settings sitewide without using templates?
    Jeremy

    > I'm almost possitive that there is a way
    > to tell the html to resize the website when different
    screen sizes are
    > detected. Any help would be great. Thanks.
    There is - it's called "design"! You have to build the page
    to be
    flexible - see this tutorial as an example of how to do it
    with tables:
    http://www.dwfaq.com/tutorials/Tables/flexible_tables.asp
    Once you have the page built, you cannot just drop in a magic
    pill and make
    it resize itself.
    And remember, screen size is not the real variable you need
    to worry about -
    it's browser viewport size. Even when you know my screen is
    1280x1024, you
    still do not know what my browser size is.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "dayencom" <[email protected]> wrote in
    message
    news:eiqmfu$33q$[email protected]..
    > Hey guys,
    >
    > Ok well I made this website that has a lot of pages now
    and the only
    > problem
    > is that I have a 21" widescreen monitor so everything I
    created has to be
    > scrolled on a lot of smaller screens. I'm almost
    possitive that there is a
    > way
    > to tell the html to resize the website when different
    screen sizes are
    > detected. Any help would be great. Thanks.
    >
    > Also if there is a way to do this, then would it be
    possible to change the
    > settings sitewide without using templates?
    >
    > Jeremy
    >

  • Help: Resizing images for Printing with CS3

    Hello All,
      Thus far, I've done most of my printing with my Epson 3800 on paper below 8.5 x 11 which was no problem.  Now I'd like to do some larger stuff like 13 x 19 and 17 x 25.  Image size is 3504 x 2336 psd. @ 360ppi. (workflow is RAW to Adobe RGB 16-bit 8.2MP)  I'd like to maintain the 360ppi resolution, but resize to say 12 x 18 or larger and then apply final sharpening. 
      My confusion is with the up-sizing steps themselves.  I've heard it's best to increase image x% over target image size via Bicubic(?) and then to reduce x% to target size using Bicubic sharpener(?) or something to that effect.  Can someone please walk me through the process so I can get the hang of it?  Thank you!
    Mike

    MJCarnegie wrote:I've heard it's best to increase image x% over target image size via Bicubic(?) and then to reduce x% to target size using Bicubic sharpener(?) or something to that effect.
    Sounds like one of those tales from an older technology.
    Just use the resampling method as recommended in the Image size dialog

  • Print Screen Function Doesn't Work

    I just purchased a new 15.4" Pavilion laptop (DV5-1235dx) and cannot get the Print Screen function to work.  I've tried everything.  One source tells me to hit ALT and PRTSC at the same time.  Another HP help suggestion says to hit the FN and PRTSC keys.  I get no copy/paste function whatsoever.  I also tried the shift key and PRTSC and it was no dice on that either.  On my laptop...the PRTSC and INSERT key share the same key. 
    A routine function like this should not be this difficult.
    Anybody out there got a suggestion or two about what to try. HP Support has been, frankly, awful.

    Below find two possible answers to your issue on Print Screen.  I hope one or both of these help.
    1. Print Screen
    2. Snip
    Print Screen:
    Which keys one uses to get a screen print does depend on the OS (eg. Vista or Windows 7) and the keyboard hardware.
    Example:  HDX 18T requires a simple keystroke (PrtScn)  for the Active Window and Alt - PrtScn for the Entire Window.
    In the Help file for same is noted the following.  See Below.
    It is somewhat rude that it's not the same for everyone - it is not unknown to be the case.
    Open your help files and look up "print screen" - ask if you need assistance to get to "Help".
    Below find a link to the manuals that I believe are for your laptop / Notebook.  Your answser may be there if you cannot find it on your system's own help files.
    http://h20000.www2.hp.com/bizsupport/TechSupport/D​ocumentIndex.jsp?contentType=SupportManual&lang=en​...
    Help file from an HDX 18T:
    Snip:
    Windows 7 has a "snip" command that one can use to grab any bit of the screen and make it into a .png file.  It's quick, easy, and fast.  Additionally, simple annotations can be added with a "pen" of different colors (circles, and such) to mark the picture as desired.  Brilliant!.  Vista may have this command as well.
    Print the .png file if you need it on paper, embed it in Word, email, whatever...
    Help file on Snip (shown as a "snip png file):
    Good Luck!
    Kind Regards,
    Dragon-Fur

  • How To Do Print Screen

    I would like to know if i have to take the print screen of the items of the docs, how to do that?
    Regards
    Vikram

    Command-Shift-3 saves a picture of the entire screen to your desktop.
    But if you go into the Mac Help file and search for "print screen" you will find an article "Shortcuts for taking pictures of the screen" that will have more shortcuts for putting the screen picture on the Clipboard and taking a picture of one window or a region. You can do it many ways.

  • Lenovo G580 print screen

    Hello,
    I have the Lenovo G580 running Windows 8 I need to take a screen grab on an app. How do I do this? I can't seem to use snipping tool whislt running the app. Where is the print screen key, that's if there is one? Or is there another way to do so?
    Thanks in advance
    Isaac

    Hi lindzee, You will find the print screen key just after the F keys, You will see this on the key (PrtSc) short for print screen.
    Catt

  • Print screen keyboard shortcut

    can anyone tell me the keyboard shortcut for print screen?
    thanks!

    Hello Earthworm Jim,
    Welcome to Apple Discussions!
    If you are wanting to actually print the window of app to printer, then command+P.
    If you are trying to get a screen shot, then here are a few hints.
    The result of the following will be a PNG on the desktop, unless you change the default locations and file type.
    1. To capture entire screen:
    CmdShift3
    2. To get a screen shot of just a selected area:
    *CmdShift4 then highlight wanted area with mouse*.
    3. To copy to the clipboard so you can paste into a document: (this is probably the one you are wanting)
    CtrlCommandShift-3(or4)
    Also you can use the GRAB app in Utilities, which will also capture the mouse pointer and save as TIFF.
    Message was edited by: iyacyas

  • Why is my page set up drop down different from your illustration in help for printing background

    ''duplicate - https://support.mozilla.com/en-US/questions/830795''
    The page set up drop down menu looks nothing like the illustration in help. It does not include a box to check for "print background. How do I print background

    first, does it sound like I set it up correctly from what I wrote?
    Yes, all sounds correct.
    Second, I heard that adding a b/g AX to the network will slow everything down to b/g speeds but I have also read that simply using B/G AX's to add speakers by joining the network will not slow down the N network....which is it?
    The b/g AX devices will not slow down the network unless they are actively streaming AirTunes. Even then, audio streaming does not require a great deal of bandwidth, so for the most part, the effect would be negligible. Don't worry about it.
    Is my network slowed down to b/g speeds because of my speaker set up or not?
    The speed on your network will depend on a number of factors..are you downloading something while copying something else? Are you simply browsing? How far is the computer from the closest wireless access point?
    You can check your current available bandwidth on your local network by doing the following:
    Hold down the option key on your Mac while you click on the fan shaped AirPort icon at the top of the screen. Look for the Transmit Rate number.
    "g" wireless = 54 Mbps
    What do you see?
    Oh, and by the way, I don't know if this matters, but while the time capsule serves as the main base station, it is in bridge mode because it is plugged into a 2wire gateway router.
    If the Time Capsule is in bridge mode, it cannot act as the main base station. If you want, you could think of it that way if you are using the wireless on the Time Capsule as your preferred network, but the Time Capsule is not the "main" router.
    Message was edited by: Bob Timmons

  • Officejet Pro 6830 all in one - screen stuck on "checking for printer updates"

    Windows 7 X64 install
    I ran through the entire installation process and while the printer will print and will scan - the printer is hung on the message "checking for printer updates" with a red x below that message.  I let it set all night and no change.  The printer is setup as a wired network connection and can be seen with any of the tools.  I have not errors on my system.  I have uninstalled the software and reinstalled twice without success.  I tried running a firmware update, but the firmware update states that I have the latest firmware rev.  I even unplugged the printer and plugged it directly into the wall - n o change.  Evertime I startup the printer screen, just hangs on that screen. 
    Please help.

    I have the exact same problem with my new HP Officejet Pro 6830 printer.  Please could you provide a solution else I guess it will have to go back to the shop as I only picked it up this afternoon.
    Setup went ok and it even managed to print a couple of pages.  But next time it started up (with wired ethernet connection) this problem occurred and happens every time ever since.  (It is possible to use the printer for printing and scanning via PC, but the whole time its display is showing the "checking for printer updates" message.)
    This even happens if the ethernet cable is not connected on startup (meaning the printer cannot be used as a standalone printer / copier either at the moment).
    If I press the red cross (which I guess cancels the update searching) then I get a blue screen saying "B871634E" for a second or so, afterwhich I get a black screen with the message "There is a problem with the printer. Turn the printer Off, then On." and cannot do anything else.  (The problem is the same after doing a printer off then on - even when following the "hard reset" procedure already mentioned.)
    On checking the firmware version via the PC utility (while the printer sits there "checking for printer updates"), the PC utility app reported that the firmware was the latest version.

  • When saving a document as a PDF for printing, I lose pages, clip art, and my orginal format. Help!

    I have created some forms for our congregation to fill in with answers on adobe forms central. When I go to turn it into a PDF for printing for a hard copy, (not all our members have internet) when i save it to a PDF, it doesn't save all the pages and formats it differently then show on the screen i programmed it onto. How do I fix this issue?

    Hi;
    In the "Feature Tutorials/Help" linked from the top of the main page of the Forums: Feature Tutorials / Help
    There is a Tutorial on "Creating and distributing fillable PDF Forms": Tutorial: Creating and distributing fillable PDF forms
    The main thing to look at is the "View" setting and for PDF set it to "Page View", the page breaks you define in Page View will be used in the PDF, there are also "implicit" page breaks added automatically based on the page size.
    For the issue with clip art see this FAQ: Image does not show up in PDF 
    Thanks,
    Josh

  • Saving Illustrator CS4 file to PDF for printing. NO FORUMS CAN HELP

    I have put threads on the PDF forum, they told me to put it on Illustrator forum and still know one has an answer, Tried to contact Adobe about this and just got a run around. Can anyone please help?
    My problem results from when I save my file from Adobe Illustrator to a PDF for printing. After saving from Illustrator to a PDF and proofing it on screen all my gradients and other elements are where I need them to be on the page. But when I upload them to my printing company template all the gradients and so on are not even close to be in the right spot. How can I solve this problem, Is there a new setting in CS4 I need to know? Because I never had this problem with Illustrator CS3.

    Hi Reggie,
    I'm far from an Illustrator expert, but let's see if we can gather som more information form you that might help me, or someone else, figure out what's going wrong. Can you post a screnn capture of the arwork in Illustrator so I can see what the gradients are and how they're positioned? Use the little camera Icon thing in the toolbar above the message editing space on the web page.
    Next, tell us about the printer's template. What application is it made in? What version?
    What version of Illustrator and what OS are you using to create your art?
    Is it only the gradients that are in the wrong place? Maybe a screen shot of that would help too.

  • F4 help for Standard Screen

    Hi folks,
              I have to keep F4 help for field 'Goods Receipt' in the stnadard TCode MIGO. Do we need to use any Exit or is there any other way to do so like configuration settings in SPRO...Pls suggest me how can i acheive that one..
                Thanks,
                Shyam.

    Hi Shyam,
    you have to do from the EXIT only
    Enhancement/ Business Add-in            Description
    Enhancement
    MB_CF001                                Customer Function Exit in the Case of Updating a Mat. Doc.
    MBCF0011                                Read from RESB and RKPF for print list in  MB26
    MBCF0010                                Customer exit: Create reservation BAPI_RESERVATION_CREATE1
    MBCF0009                                Filling the storage location field
    MBCF0007                                Customer function exit: Updating a reservation
    MBCF0006                                Customer function for WBS element
    MBCF0005                                Material document item for goods receipt/issue slip
    MBCF0002                                Customer function exit: Segment text in material doc. item
    Business Add-in
    MB_DOCUMENT_UPDATE                      BADI when updating material document: MSEG and MKPF
    MB_DOC_BADI_INTERNAL                    BAdIs During Creation of a Material Document (SAP Internal)
    MB_ME_CSGMT_BADI_SAP                    BAdI: Consignment Processing - Stock Transfer
    MB_MIGO_ITEM_BADI                       BAdI in MIGO for Changing Item Data
    MB_PHYSINV_INTERNAL                     Connection: Core Inventory and Retail AddOn
    MB_QUAN_CHECK_BADI                      BAdI: Item Data at Time of Quantity Check
    MB_RESERVATION_BADI                     MB21/MB22: Check and Complete Dialog Data
    MB_RESERVATION_SCR                      Screen BAdI for Retrofit DFPS
    MB_RESERVATION_UPCHD                    BAdI for Creation and Changing of Manual Reservations
    MB_RES_BAPI_CHANGE                      BAdI: Execution of Changes to Reservation Fields
    MB_RES_BAPI_CREATE1                     BAdI: Adoption of Customer's Own Fields as Reserv. Fields
    MB_RES_BAPI_DETAIL1                     BAdI: Display of Customer's Own Fields in Reservations
    MB_STOR_LOC_BADI_GTS                    BADI to Check and Change Storage Location (GTS Fct. Only)
    MB_MIGO_BADI                            BAdI in MIGO for External Detail Subscreens
    MB_DOCUMENT_BADI_SAP                    BADI for Creation and Changing of a Material Document
    ARC_MM_EBAN_CHECK                       BAdI: Enhancement of Archivability Check (MM_EBAN)
    ARC_MM_EBAN_PRECHECK                    BAdI: Enhancement of Archivability Check (MM_EBAN)
    ARC_MM_EBAN_WRITE                       BAdI: Enhancement of Scope of Archiving (MM_EBAN)
    ARC_MM_EINA_CHECK                       BAdI: Enhancement of Archivability Check (MM_EINA)
    ARC_MM_EINA_WRITE                       BAdI: Enhancement of Scope of Archiving (MM_EINA)
    ARC_MM_INVBEL_CHECK                     BAdI: Enhancement of Archivability Check (MM_INVBEL)
    ARC_MM_INVBEL_WRITE                     BAdI: Enhancement of Scope of Archiving (MM_INVBEL)
    ARC_MM_MATBEL_CHECK                     Prüfung ADD-ON-spezifischer Kriterien für MM_MATBEL
    ARC_MM_MATBEL_WRITE                     Check Add-On-Specific Data for MM_MATBEL
    MB_CHECK_LINE_BADI                      BAdI: Check Line Before Copying to the Blocking Tables
    MB_CIN_LMBMBU04                         posting of gr
    MB_CIN_MM07MFB7                         BAdI for India Version exit in include MM07MFB7
    MB_CIN_MM07MFB7_QTY                     Proposal of quantity from Excise invoice in GR
    MB_DOCUMENT_BADI                        BAdIs During Creation of a Material Document
    No.of Exits:          8
    No.of BADis:         29
    Hope these things use ful to you.
    Thanks!

Maybe you are looking for

  • Problem while exporting to PDF with japanese character in Crystal Report X1

    Hi, I am using Crystal report X1 with classic ASP on a Windows 2003 Enterprise Server, SP 2. In my application, I have to export the report into PDF, CSV, DOC formats. I am have Japanese strings in the report. While exporting to PDF, empty boxes has

  • OSX 10.5 and ATI X800 any issues?

    All, Wanted to check if anyone has updated their G5 with aftermarket video cards like the ATI X800, 9800 MAC/PC, etc. In the OSX 10.5 forum some users have mentioned that the are having some graphic glitches

  • Why can't I access my gmail from firefox?

    I see there are many folks having this same problem. Why??? I'm using windows 7. It's only the gmail that I can not access. I can access other google pages, just not gmail. Very frustrating!

  • What is easiest way to set up a remote network between countries online?

    What is easiest way to set up a remote network between countries online? My main Mac is in England, UK and I'm spending time in the USA with my Mac laptop for 3 months. I'm in the USA right now, but neighbour in the UK has keys to my apartment so he

  • My iPhone (3GS) decided to turn itself off and never came back on!!!

    I still didn't do the last update on it yet. I can't remember the last one. Anyway, I used a few of my apps this morning, was using the dictionary with my son ... I downloaded an app for cursive handwriting. We turned it on and checked it out. I gues