Levels and button transparency

Hello
My first post and I've only been using Flash 8 for a short
while so here comes the dumb questions.
I have a swf file and a button on a page that opens another
swf file in a new layer. I have found though that the buttons from
the level below can still be used even though you can not see them.
Is there a way to turn those buttons off while I have the higher
level swf playing? It's too easy for the user to accidently press a
button that I do not intend them to have accesable at that point.
Thanks

Thanks guys.
I think that's going to be too hard for me at the moment. I
found out I could easily just open the new swf in layer 0- then
create close button which loads the old one back into layer 0. This
does the job- thanks. I have other questions that will go in aother
threads.
Cheers

Similar Messages

  • ID 5.5 Interact. PDF, cannot remove white background for Multi-States and buttons.

    Hi
    I am working on an Interactive PDF Portfolio document. The problem I have is with Multi-State object feature with several buttons going to states that need to be exported as a SWF and imported back into InDesign 5.5. See, the background of my entire doc. is GREY, but when I import the SWF (as directed in Lynda.com videos correctly) and export the entire doc as Interactive PDF and view it in Adobe Acrobat Pro (version 10.1.1) is when all the trouble starts.
    When I try to get rid of the WHITE background around the Multi-State objects and the buttons for them (using Select Object Tool and then control+click on it to change the Properties to Transparent Background Appearance) it does not change, even when I go forward and backward to the page.
    Does the option of removing white background and making it transparent work only for Animation, but not Multi-State feature with buttons?
    Can anyone suggest any other tecnique to create a nice slide show that works in Interactive PDF in ID CS5.5? Please..
    Sincerely,
    in need of help,
    Eve

    I have 8 Multi-State objects in one stack on the left and the 8 buttons for each state in the stack on the right. The background of my document is dark grey. There is space inbetween Multi-State objects and the buttons that show the grey background. But after exporting as SWF the Multi-States together with the buttons and placing the SWF back in the PDF file, the space inbetween Multi-States and buttons that is supposed to show the grey background appears white. The problem is that I cannot even change this white background to transparent in Acrobat Pro, as well. I used to do that to animations and it worked, but not in this case.

  • Deletion of  the Purchase order at the item level and header level

    Hi Gurus,
    We are using SRM 7.0 system.
    In standard SRM 7.0, the PO can be deleted at header level and at line item level. I need to know the differnce between these deletions. I found that if the PO is deleted at the line item level the  deletion indicator (DEL_IND) field in BBP_PDIGP table is 'X'.
    But i could not find any clue to find the PO which is deleted at the header level. I need to code this logic in a report .
    Kindly provide your valuable inputs.
    Thanks,
    RK

    There are two ways:
    1. From the Header by clicking the DELETE button. And this is only possible when the PO is not yet output to Vendor.
    2. The second way is to delete all the items in the PO. This is possible any time irrespective of the output sent to the vendor. But provided if there are no follow-on documents for this.
    Some times we could see the Deletion icon active in Header  , it is because there is change version existing.
    When a PO is created and ordered, this is the first version of the PO. And this PO is sent to the backend and output is sent to
    the vendor.
    Now when you make a change and hold it, SRM creates the 2ndversion of this PO. Then when you delete this PO, SRM marks this 2nd
    version of PO to closed. Also you receive the pop-op confirmation that PO was deleted at this point. However, this PO deletion is never sent to the backend and output is not sent to the vendor since this PO has never been ordered. This version is the Change Version. This is shown after the PO number field if you pay attention on the screen.
    When you search for the PO, it will show you the ordered PO (No change version shown after the PO number). The system does not show you the deleted version which is version 2. That is why you see status is 'ordered'.

  • Adjust position and size of textField and button...

    Dear All,
    I have the following sample program which has a few textFields and a button, but the positions are not good. How do I make the textField to be at the right of label and not at the bottom of the label ? Also how to adjust the length of textField and button ? The following form design looks ugly. Please advise.
    import javax.swing.*; //This is the final package name.
    //import com.sun.java.swing.*; //Used by JDK 1.2 Beta 4 and all
    //Swing releases before Swing 1.1 Beta 3.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.text.*;
    import javax.swing.JTable;
    import javax.swing.JScrollPane;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    public class SwingApplication extends JFrame {
    private static String labelPrefix = "Number of button clicks: ";
    private int numClicks = 0;
    String textFieldStringVEHNO = "Vehicle No";
    String textFieldStringDATEOFLOSS = "Date of Loss";
    String textFieldStringIMAGETYPE = "Image Type";
    String textFieldStringIMAGEDESC = "Image Description";
    String textFieldStringCLAIMTYPE = "Claim Type";
    String textFieldStringSCANDATE = "Scan Date";
    String textFieldStringUSERID = "User ID";
    String ImageID;
    public Component createComponents() {
    //Create text field for vehicle no.
    final JTextField textFieldVEHNO = new JTextField(5);
    textFieldVEHNO.setActionCommand(textFieldStringVEHNO);
    //Create text field for date of loss.
    final JTextField textFieldDATEOFLOSS = new JTextField(10);
    textFieldDATEOFLOSS.setActionCommand(textFieldStringDATEOFLOSS);
    //Create text field for image type.
    final JTextField textFieldIMAGETYPE = new JTextField(10);
    textFieldIMAGETYPE.setActionCommand(textFieldStringIMAGETYPE);
    //Create text field for image description.
    final JTextField textFieldIMAGEDESC = new JTextField(10);
    textFieldIMAGEDESC.setActionCommand(textFieldStringIMAGEDESC);
    //Create text field for claim type.
    final JTextField textFieldCLAIMTYPE = new JTextField(10);
    textFieldCLAIMTYPE.setActionCommand(textFieldStringCLAIMTYPE);
    //Create text field for scan date.
    final JTextField textFieldSCANDATE = new JTextField(10);
    textFieldSCANDATE.setActionCommand(textFieldStringSCANDATE);
    //Create text field for user id.
    final JTextField textFieldUSERID = new JTextField(10);
    textFieldUSERID.setActionCommand(textFieldStringUSERID);
    //Create some labels for vehicle no.
    JLabel textFieldLabelVEHNO = new JLabel(textFieldStringVEHNO + ": ");
    textFieldLabelVEHNO.setLabelFor(textFieldVEHNO);
    //Create some labels for date of loss.
    JLabel textFieldLabelDATEOFLOSS = new JLabel(textFieldStringDATEOFLOSS + ": ");
    textFieldLabelDATEOFLOSS.setLabelFor(textFieldDATEOFLOSS);
    //Create some labels for image type.
    JLabel textFieldLabelIMAGETYPE = new JLabel(textFieldStringIMAGETYPE + ": ");
    textFieldLabelIMAGETYPE.setLabelFor(textFieldIMAGETYPE);
    //Create some labels for image description.
    JLabel textFieldLabelIMAGEDESC = new JLabel(textFieldStringIMAGEDESC + ": ");
    textFieldLabelIMAGEDESC.setLabelFor(textFieldIMAGEDESC);
    //Create some labels for claim type.
    JLabel textFieldLabelCLAIMTYPE = new JLabel(textFieldStringCLAIMTYPE + ": ");
    textFieldLabelCLAIMTYPE.setLabelFor(textFieldCLAIMTYPE);
    //Create some labels for scan date.
    JLabel textFieldLabelSCANDATE = new JLabel(textFieldStringSCANDATE + ": ");
    textFieldLabelSCANDATE.setLabelFor(textFieldSCANDATE);
    //Create some labels for user id.
    JLabel textFieldLabelUSERID = new JLabel(textFieldStringUSERID + ": ");
    textFieldLabelUSERID.setLabelFor(textFieldUSERID);
    Object[][] data = {
    {"Mary", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Chasing toddlers", new Integer(2), new Boolean(false)},
    {"Mark", "Andrews",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Angela", "Lih",
    "Teaching high school", new Integer(4), new Boolean(false)}
    String[] columnNames = {"First Name",
    "Last Name",
    "Sport",
    "# of Years",
    "Vegetarian"};
    final JTable table = new JTable(data, columnNames);
    table.setPreferredScrollableViewportSize(new Dimension(500, 70));
    //Create the scroll pane and add the table to it.
    JScrollPane scrollPane = new JScrollPane(table);
    //Add the scroll pane to this window.
    getContentPane().add(scrollPane, BorderLayout.CENTER);
    final JLabel label = new JLabel(labelPrefix + "0 ");
    JButton buttonOK = new JButton("OK");
    buttonOK.setMnemonic(KeyEvent.VK_I);
    buttonOK.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
              try {
    numClicks++;
              ImageID = textFieldVEHNO.getText() + textFieldDATEOFLOSS.getText() + textFieldIMAGETYPE.getText();
    label.setText(labelPrefix + ImageID);
              ScanSaveMultipage doScan = new ScanSaveMultipage();
              doScan.start(ImageID);
         catch (Exception ev)
    label.setLabelFor(buttonOK);
    * An easy way to put space between a top-level container
    * and its contents is to put the contents in a JPanel
    * that has an "empty" border.
    JPanel pane = new JPanel();
    pane.setBorder(BorderFactory.createEmptyBorder(
    20, //top
    30, //left
    30, //bottom
    20) //right
    pane.setLayout(new GridLayout(0, 1));
         pane.add(textFieldLabelVEHNO);
         pane.add(textFieldVEHNO);
         pane.add(textFieldLabelDATEOFLOSS);
         pane.add(textFieldDATEOFLOSS);
         pane.add(textFieldLabelIMAGETYPE);
         pane.add(textFieldIMAGETYPE);
         pane.add(textFieldLabelIMAGEDESC);
         pane.add(textFieldIMAGEDESC);
         pane.add(textFieldLabelCLAIMTYPE);
         pane.add(textFieldCLAIMTYPE);
         pane.add(textFieldLabelDATEOFLOSS);
         pane.add(textFieldDATEOFLOSS);
         pane.add(textFieldLabelUSERID);
         pane.add(textFieldUSERID);
    pane.add(buttonOK);
         pane.add(table);
    //pane.add(label);
    return pane;
    public static void main(String[] args) {
    try {
    UIManager.setLookAndFeel(
    UIManager.getCrossPlatformLookAndFeelClassName());
    } catch (Exception e) { }
    //Create the top-level container and add contents to it.
    JFrame frame = new JFrame("SwingApplication");
    SwingApplication app = new SwingApplication();
    Component contents = app.createComponents();
    frame.getContentPane().add(contents, BorderLayout.CENTER);
    //Finish setting up the frame, and show it.
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.pack();
    frame.setVisible(true);

    Post Author: Ranjit
    CA Forum: Crystal Reports
    Sorry but, i've never seen formula editor for altering position and size. If you know one please navigate me.
    I guess you have updated formula editor beside "Lock size and position" - if yes its not right. There is only one editor beside 4 items and editor is actually for Suppress.
    Anyways, A trick to change size a position is:
    Create 4-5 copies (as many as you expect positions) of the text object. place each at different positions,  right click, Format, Suppress and in formula editor for suppress write the formula: If your condition is true, Suppress=false, else true.
    Position will not change but user will feel; for different conditions -position is changed
    Hope this helps.
    Ranjit

  • What would the CODE be, in Flash, for making buttons transparent on MOUSEOVER?

    I am building my site in Flash, and I have these thumbnails, that when moused over, a larger version pops up.
    Problem is, they are being obscured by the other thumbs. See for yourself:
    http://www.andreadams.com/Andre_Adams_products_games.htm
    (also attaching a jpeg example of what I'm talkin about)
    I tried to make the buttons transparent, put them on different layers, all this stuff, nothing worked. I figured there must be some code to make it work, like, "on mouseover, make buttons A, B, C transparent." Something like that, just have no idea how to write it.
    If someone could help me out it would be much appreciated! I will reward you with a copy of my Cartoon Express CD collection--500 vector images. No joke!
    cheers, Andre

    The more correct way to deal with this is to manage the depths of the movieclips/buttons so that whichever is currently being rolled over is brought to the top of the pecking order.  It may require a little bit of redesign, but not necessarily.  How you go about mamanging the depths depends on what version of actionscript you're using.  In AS2 you want to look into the swapDepths() method, and in AS3 you want to look into the setChildIndex() method.
    To answer the title question, to make something transparent, like a button or a movieclip, you set the alpha/_alpha (AS3/AS2) property to 0. But in doing that you will probably be creating a problem because transparent objects can still interact with a mouse.  Your better bet is to set the visible/_visible property to false... invisible objects won't interact with mice.

  • Help with Quiz pages and buttons (please)

    We use Captivate 6 with a subscription. I have put together a couple of modules with question pools, and some with just a few questions pages inserted. The last time I created a new captivate project, I put inserted quiz pages and the buttons were different then they had been before. The first few times they were grey, now they are green and a bit smaller. Looking at the proporties for each page and button, I cannot see anything that is different othe than one is a text button and the other is a transparent button. Both buttons are marked as default quiz button style. I don't use any themes. To make this short, I would like to know if there is a way to make the buttons the same every time I add a page, or a pool? I am not yet up to designing my own buttons, but probably will here shortly. Right now I need to get some training modules completed as quickly as possible so I don't have the time to reinvent the wheel (so to speak). The only other thing that I noticed was different in the projects was that in the skin editor one uses one called [default](modifired) and the other one uses one that I created. HOWEVER, I have another one that uses my custome skin and the buttons are grey on that one which is the same as the default one. I don't think the skin has anything to do with the button look. Correct me gently if I am wrong on this.
    Thanks for the help.

    Just one remark: in CP6 you always use a theme. And quiz slides have their own master slides, that will always be used. The buttons take on the style you see on those master slides, and this style can also be found in the object style manager. Skin and object styles are part of the theme. Probably you have overridden some of the styles defined?
    Lilybiri

  • ComboBox and button symbol interaction

    (Sorry-- I had this posted in ActionScript as well -- not
    really an AS issue...)
    I thought it would be easier for folks if they didn't have to
    create this from scratch:
    Here is the
    Sample
    SWF
    and the
    Souce
    FLA
    Greetings --
    I traced back a bug that I was having to its most basic level
    and was surprised that it happens with only a ComboBox component
    and a button symbol... I traced it back so far that it got rid of
    all of my ActionScript and was left with only these two interface
    elements:
    Set-up: Create a new Flash document, ActionScript 2 / Flash
    8. Drag in a combobox component and add a label. Create a new
    button symbol and define up, over, down and hit states and drag
    this in as well...
    When you try test this movie, you get strange behavior...
    Give the button a few clicks to see that it is working properly.
    Then, click on the combobox to open it and then go back to the
    button. The button will work the first time tried, but will not
    work properly with subsequent attempts. It seems that the states of
    the button are getting confused after the combobox is used?
    (help!?)
    Could there be a work-around to this? Thank you in advance
    for you assistance with this issue...!

    I have Flash Player 9 (9,0,115,0) on my Mac, and am getting
    the same behavior on Windows XP...
    Perhaps try not moving the mouse between subsequent clicks
    will make it more apparent... I select something from the combobox.
    Then, the first click on the button works properly... but when you
    release the button (and don't move the mouse) it returns to the "up
    state" (not "over state"). Additional clicks don't respond with a
    "down state"... it just flashes the "over state" momentarily.
    It's causing me troubles because my interface asks users to
    first select from a combobox to navigate and then they can click to
    subsequent items with a button: next, next, next... to page through
    the selection. But this strange interaction is hanging up the next
    button on the second click (it never gets the down state).
    Thanks for checking it out... I sure would appreciate any
    thoughts on the matter...

  • Record level save button

    Hello everyone.
    I'm using jDev 11.1.2.1.0
    I have a table in which I have to add another one column at the end with one button.
    So, If there are 15 records shown, there will be 15 buttons at the end of each record.
    Button's functionality should be to save only the changes that correspond to the button's record. A record level save button.
    How is this possible to be achieved? Do you have any advice?
    Thanks a lot
    ~apostolos

    apostolosk wrote:
    Hello everyone.
    I'm using jDev 11.1.2.1.0
    I have a table in which I have to add another one column at the end with one button.
    So, If there are 15 records shown, there will be 15 buttons at the end of each record.
    Button's functionality should be to save only the changes that correspond to the button's record. A record level save button.
    How is this possible to be achieved? Do you have any advice?
    Thanks a lot
    ~apostolosI would say instead of allowing editing in table give a button called EDIT which takes you to bounded task flow with Single record in a FORM and give Commit button there which will take back to table view of records.
    providing SAVE button with every record will be confusing to users as they could forgot to click Save button with every record result lost transaction.
    Zeeshan

  • Thinkpad t23 series lights and button symbols diagram.

    thinkpad t23 series lights and button symbols diagram.
    I would like to get a diagram that lists the lights and the Thinkpad button along with its symbols. Like an arrow pointing to a light and telling me the X is functioning or not, along with the rest of speaker? symbols. Fn combos and their definitions would be good too.
    I do not have the owner/user manual for the T23 2647TU but I imagine it would be printed in some form there?
    Could anyone help me with this by directing to a web site or screen shot to the users manual that shows this information? I would appreciate it.
    Thank You,
    Bob
    Solved!
    Go to Solution.

    Hi Bob,
    so here are some screen shots for you and others who may read in the future. This is a nice discovery for me also. Very useful, complete User's Guide for T23, XP version, which  I actually installed on my W500 running Windows 7 Pro 64-bit. The possibilities are endless, not just for T23, but for other older models which possibly have a User's Manual archived online. It means I could simply cut and paste so many steps of information which for myself are so obvious and elementary,  but will be invaluable to one of my young students learning basic computing skills. And the fact the User's Guide runs on my W500 means only the student needs to have a T23 (or whatever other machine in their hands), I don't need to have another T23 set up to access the manual. 
    Here are a few step-by-step guidelines which may can help you and others reading in the future. Don't mind me putting so many details. As a teacher I like to explain things in such a way that even if one my 3rd grade students were to read this post they could follow the steps. Some people have never really used a laptop at all before and will be glad for simple, detailed steps: 
    How to install T23 Access User's Guide on a Windows 7 machine (should be nearly identical procedure for XP or Vista):
    (1) As mentioned before just go to the Drivers and software - ThinkPad T23 download page:  http://support.lenovo.com/en_US/research/hints-or-tips/detail.page?&DocID=HT072383. There, under the "Software and utility" category you will find: Access online User's Guide for Windows - ThinkPad T23: http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS001263. Download the file and transfer it to your T23 using a USB flash drive.  (In my case I downloaded it directly onto my W500)
    (2) Double-click to run the downloaded file. It will extract setup files to C:\DRIVERS\ATP_PKG by default.
    (3) Click the START button ---> Computer----> Drivers ---> and double click to open the "ATP_PKG" folder. Double-click to run the "SETUP" application file.
    (4) After installation, you can navigate to Start Menu ---> All programs ----> Thinkpad ---> Thinkpad information, and RIGHT-CLICK "Access Thinkpad". You can then  choose to "Pin to taskbar" and/or "Send to desktop (create shortcut)" which will create an ACCESS THINKPAD logo right on your desktop with the cool old IBM logo which you can see in one of the pictures.
    I have included a few snapshots showing my W500 with T23 User's Guide installed: Main welcome screen with cute T23 animation (hence the  blur);  Main menu- notice even a link to reach IBM for warranty information (if anyone still has a warranty on their T23, joking of course); And "everyday use" menu which includes status light indicators and FN-key assignments you asked about. So you see how useful these old "User manuals" can be, because if anyone comes on the Forum we can just cut and paste information from the User's Manual. Some people (especially young people ) need that level of clarity and simplicity. And it's just a small file, 21.8 MB downloaded onto my W500.
    Below I <CUT> and <PASTED> a section from the User's Guide. Here are the Function keys you asked about (the pictures which didn't come out in cutting and pasting got replaced below by " "  and are just little asterisk symbols and a small diagram showing where FN key and Home/End keys are). Of course this can be remedied by taking screen shots instead:
     Function keys
    The Fn key function enables you to change operational features instantly. To use this function, press and hold the Fn key (1); then press a function key (2)--F1 to F12, PgUp, Home, or End.
    The following shows the functions of the Fn key with other keys:
    Power conservation or battery power
    Fn + F3: Turn off the computer display, leaving the screen blank. To turn the computer display on again, press any key or press the TrackPoint(R) pointer. Also the computer display is turned on if the ac adapter is attached to or detached from the computer.
    Fn + F4: Put your computer in standby mode. To return to normal operation, press the Fn key independently, without pressing a function key.
    Notes:
    This mode is called suspend mode in Windows(R) 95 and Windows NT(R).
    In Windows 2000 and Windows XP, this combination of buttons functions as a sleep button. You can change the settings so that pressing it puts the computer into hibernation mode or even shut the computer down.
    Fn + F12: Put your computer into hibernation mode. To return to normal operation, press the power button for less than four seconds.
    Note: To use Fn+F12 for hibernation in Windows 2000 and Windows XP, you must have IBM PM device driver installed on your computer.
    For information on the power management function, refer to Extending battery life.
    Other functions
    Fn + F7: Display output on the computer display, an attached external monitor, or both. Pressing this combination causes the display to go from the computer display to the external monitor, then to both together, and then to the computer display again:
    External monitor (CRT display)
    Computer display and external monitor (LCD + CRT display)
    Computer display (LCD)
    Note: This function is not supported when different desktop images are displayed on the computer display and the external monitor, or in certain cases in which the same desktop images are displayed on both screens, but the refresh rates of the screens are controlled separately by the system.
    Fn + F8: Switch the computer screen size between expanded and normal mode if your computer display image is smaller than the physical display.
    Note: This function is not supported in Windows 2000 and Windows XP.
    Fn + PgUp: Turn the ThinkLight on or off.
    Note: The status of the ThinkLight, on or off, is shown on the screen for a few seconds when you press Fn + PgUp.
    Fn + Home: The computer display becomes brighter.
    Fn + End: The computer display becomes less bright.
    Note for the Fn key lock function
    The following setup gives you the same effect as when you press and hold the Fn key and then press a function key.
    Start the ThinkPad(R) Configuration Program. Click the Accessibility button, and click Enable for Fn key lock. You can also set up by typing PS2 FNS E at the command prompt.
    When the Fn key is not enabled, you need to hold it down while pressing a function key. When it is enabled, you can use the function keys more easily:
    Press the Fn key once. The next time you press it, you can release it and then press a function key, to get the same effect as if you had held the Fn key down while pressing the function key.
    Press the Fn key twice. Then, for the rest of your session, you can press any function key without pressing the Fn key again.
    Have a great day. (I do not work for Lenovo)

  • Gray out item level conditions button in T-code VA02.

    Hi Gurus,
    Here i have one requirement , i want to gray out one button je in Item level Condition button is there in VA02.
    If any one no how to gray out button than please tell me.
    Thanks,
    Namdev.

    NO, not 'update' button its 'Condition' button. and plz tell how to do that?
    Thanks,
    Namdev

  • HT5012 I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

    I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • Can you save your own theme and button set up so I can use the same format

    Can you save your own theme and button set up, so I can use this same format for similar content. I want to keep the button content and the theme the same without having to create it everytime? I am trying to streamline the process for multiple dvd's with the same menu and buttons but different content. Does that make sense?

    I am only new to this caper too, but I am pretty sure you can save a theme as a favourite by pressing the "save theme as favourite" button under file. If you have edited an existing theme but don't want to lose it, make sure you untick the replace existing button.

  • MCHB,MARD - Stock available at plant level and storage location level

    Hi ,
    How to determine how much stock available at Storage location level and Plant level. (Lot is not maintained).
    In MCHB-Stock at lot level is shown.
    In MARD-Stock at Storage Location level is shown lncluding
    the stock maintaned at the lot level.
    If i want to know the stock which is not maintained in Lot, i.e, Stocks directly maintained at Storage location / Plant.
    Do I need to subtract the MCHB Value from MARD Value ?
    Is there any other way available to find the stocks which is not maintained at lot level.
    Regards
    Prasath

    Hi prashant,
    What do u mean by stock maintained at SL level without batch level.  Do u mean that some materials are subjected to batch management and some or not?
    If that is the case, for all batch managed materials, u can see the stock at batch level and also same is summed up at SL level.  But still what ever u are getting from MARD table isstock at SL level only.
    If u have activated batch management for any material, it will always be shown at lot level also.
    hope this clarfifies query
    award points if found useful

  • How to improve the query performance in to report level and designer level

    How to improve the query performance in to report level and designer level......?
    Plz let me know the detail view......

    first its all based on the design of the database, universe and the report.
    at the universe Level, you have to check your Contexts very well to get the optimal performance of the universe and also your joins, keep your joins with key fields, will give you the best performance.
    at the report level, try to make the reports dynamic as much as you can, (Parameters) and so on.
    and when you create a paremeter try to get it match with the key fields in the database.
    good luck
    Amr

  • Dunning Old dinning level and dunning level

    Hi experts,
    I have one issue in dunning. the issue is where the dunning history for particular customer shows as old dunning level as 3 and dunning level as 2.
    i have checked  the customer master there is change in the dunning procdure. But the document and master data shows the correct dunning level with the new procdure.
    so i didnt understand what is the OLD dunning level and dunning level  for the same cusomer. the issue is only with one customer.
    I have also checked with old procdure with same customer in table MHNK. there are some notices done. but how come the current invoice shows the old dunning level for the same invoice.
    can any once explain me how to proceed.
    Regards
    Ashok

    Hi
    Thnks for the reply so we need to apply this note for making the old dunning level and dunning level makes equal after you run the program.
    Also one more doubt, since i have observed that the dunning after the parameters entered. looks like this
    Parameters were maintained
    Dunning selection executed, job deleted
    Dunning notice printed, job deleted.
    the above doesnt means that they will update the old dunning level right.
    Regards
    Ashok

Maybe you are looking for

  • Flash CS5 Pro/Flash Builder 4 Workflow

    I'm new to using Flash Builder as an AS3 editor for Flash Pro projects.  I've followed multiple tutorials on the workflow between the two but keep hitting a snag. For example: If I create a new FLA file, edit the document class and select Flash Build

  • How to do extraction in fi module?

    how to do extraction in fi module?

  • YOU TUBE APP is gone...

    Hi, after updating on 5.1 the YOU TUBE APP (that was originally installed on the iphone4) is gone. And I can´t find it anymore... I know, that sounds really stupid, but it´s gone. And i´ts not in the APP Store. Can anybody help? Thanks a lot. Jotem7

  • Huh?:  "Error processing extended attributes"

    I just tried upgrading to the new versions of Quicktime and iTunes through "Software Update," and at the end of each one I got the following error messages: "NSURLErrorDomain -1005" (this was the message in the "Software Update" window) and "imac cp:

  • Web Service authentification

    Hi, 'm newby in IP Phone and i want to have a link on my web pages on each phone numbers that make a call on the Ip Phone. I try the saop makecall but it need a user and a password. How can i do to don't ask to the user his login and password. I have