Efficient way to use TAB item

Most ofter, we are using TAB item cat for our order, one so map to one po, it is the simplest scenario, but sometime, we have inventory, we would like to use the in ventory first, then issue po to purchase item. I should said, I want to item check the available first, then the remain item will issue PO for purchase. Thanks!

Hello Friend,
In that case assign a approval process and workflow to your order types.So when ever an order is saved it will be locked for further activities and unless and until it is released manually by the concerned officer then only it will trigger the future actions. Through workflow the person responsible will get the notification for approval.

Similar Messages

  • Most efficient way to use thumbnails of multiple sizes

    When a user submits an image on my website, the upload script
    currently creates thumbnails in three different sizes (120px, 90px,
    and 20px). Different thumbnail sizes are used in different areas of
    the site.
    Is there a more storage-efficient way to display high-quality
    thumbnails in different sizes, without requiring a separate
    thumbnail file for each size used?
    I cannot rely on browsers to resize images as the quality is
    often very undesirable.

    AngryCloud wrote:
    > I may not have been clear in my last post...
    >
    > When an image is viewed normally on a page, it is saved
    to the client's
    > computer so that it will load instantly the next time
    the image is called for.
    >
    > I do not want visitors to have to wait for the same
    images they have already
    > seen to re-download and resample. A file of each
    resampled image should be
    > saved to the client's computer to avoid this.
    >
    >
    Is it possible to save resampled images on a page to the
    client's
    > computer?
    It sounds like your page needs to check whether the cached
    version
    exists before creating the a new image, otherwise its always
    going to
    create a new version of the image and send it to the
    browser... but I
    don't know how this is possible.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • What is the most efficient way to use Remove Grain from After Effects on large Premiere Pro project?

    I've tried to use Dynamic Linking both ways but it doesn't the effects don't appear no matter how dramatic I make them. Why couldn't there just be Remove Grain in Premiere Pro so I wouldn't have to go through the headache of figuring this out. I've tried importing the Premiere Pro project into After effects where everything comes up and, since there's so many files, it doesn't seam feasibly or convenient at all. Trying Dynamic Link vice versa didn't lend results either. What can I do??? Projects range from about a half hour to an hour and a half. Thank you.

    The situations are well lit; it might be lack of knowledge on the camera settings itself.
    Sort that and your workflow issue dissapears instantly.
    There's nothing more efficient?
    Yep...read above... but ...any Plugin. eg Neat Video... will take long processing time.
    Fixing grain..actually "noise"...is always an image  degrading process as well.  It blurs!

  • Most efficient way to add maintain items dynamically

    Hi everyone,
    I am going to build a website that delivers news and events
    of a particular sport. I understand that I need to use RSS to
    deliver news content but I was wondering about the other part of
    what I want to do. I have come across sites that will have for
    example, all upcoming basketball games for a specfic region. The
    user can either search according to region or browse through,
    sometimes very comprehensive, up to date listings. In my uneducated
    mind, the only way I know how to build such an event listing is to
    manually scour the web and enter each event into a database, then
    of course use ColdFusion to "expire" the events when they have
    passed. Or I could let the web community build the events
    themselves, by allowing them to propose an event, then I as
    administrator would validate and allow it to post. The problem is,
    when building a new site, I would like it to be comprehensive from
    the beginning. Is there any more dynamica way to do what I just
    described in CF? Or any other way?
    thank you,
    SR

    Take a look at the current websites that offer information
    about the sporting events you are interested in. Do any of them
    offer RSS feeds? If so, you can roll your own RSS aggregator to
    pull the information down from them to use in your application.
    Keep in mind:
    In some cases, someone had to compile this data from a number
    of different souces, which may mean the websites may have
    restrictions on how the data in their feeds can be used.
    If you are dealing with just one sport at just one level
    (collegiate, NBA, etc) you can go directly to the site of the
    overseeing body of the sport to see if you can obtain the data you
    want in electronic format.

  • Most efficient way to use streams & buffers ?

    Hya,
    I'm kinda new to Java & Network programming.
    I am trying to send a file over a network and store it at one end, However I am not sure how to use buffering to make both the data transfer over the connection and the write to storage efficient ?
    The code below is what I am using:
    InputStream inputStream = jxtaSocket.getInputStream();
    BufferedInputStream bufferedInputStream;
    bufferedInputStream = new BufferedInputStream( inputStream );
    File recievedFile = new File(searchResponse.getSharedFile().getFileName() );
    FileOutputStream fileOutputStream;
    fileOutputStream = new FileOutputStream(recievedFile, false);
    BufferedOutputStream bufferedOutputStream;
    bufferedOutputStream = new BufferedOutputStream( fileOutputStream );
    // bytes read from buffer in each go
    int bytes = 0;
    while( (bytes=bufferedInputStream.read()) != -1 )
    bufferedOutputStream.write( bytes );
    bytesCopied += bytes;
    bufferedInputStream.close();
    bufferedOutputStream.close();
    jxtaSocket.close();
    The type of file to be recieved is not known in advance, so would this code work regardless of the type of data that I recieve or should I use a byte[] array ?
    thanks in advance

    I'd use a byte[] instead of reading individual bytes. Haven't timed it, though, so it's more of a gut feeling.
    You could time it with a large file and educate all of us! Just stick a couple of System.currentTimeMillis() calls in there and print the difference. Do a couple of transfers before the actual measurement run, to give the JIT compiler time to compile everything.
    You'll probably need a file in the megabyte size range to have any measurable difference. And at least 100 Mbps networking; even your cell phone can swallow a 10 Mbps data stream without breaking a sweat, regardless of the reading method used.
        byte buf[] = new byte[8192];
        while (true) {
            int count = in.read(buf);
            if (count == 0)
                break;
            out.write(buf, 0, count);
        }The buffer size is a bit of a trade-off: a bigger buffer is marginally more expensive to create, while a smaller buffer has the cost of doing more read() and write() calls. As a guess, I'd say it is probably difficult to see any measurable difference between 1k...16k buffers. With "manual buffering" like that, the usefulness of BufferedXxxStream is likely to be nil, even negative.

  • Most efficiant way of using iPhoto with lightroom

    I am new to mac having moved from pc. I really like the interface and publish features of iphoto. I'm quite a serious photography so I want to use lightroom for the more professional features but continue with iPhoto for the family to browse my personal and better work through the simpler iphoto interface.
    2 questions really. I want lightroom to access all my photos so will I be importing photos to folders in pictures like I used to do with pc rather than importing them through iPhoto because of the package file.
    And what is the best way of putting better work into iPhoto without duplicating a lot of files.
    Hope you can help

    This post by Terence Devlin will give you some info:
    http://discussions.apple.com/message.jspa?messageID=7764845#7764845
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • What is the most efficient way to use my 2006ish iMac as a second screen for my MacBook pro?

    Hello.
    My line of work really requires the use of two screens, and I have a macbook pro from 2010 and a white iMac from 2006, I believe. My editing software lives on my laptop, so I'd like to use my iMac as the second display. I can't seem to find any male mini dvi to male mini displayport cables online, so I have a feeling they don't exist. Should I just get a mini dvi (male) to dvi (female) for the iMac and a (male) dvi to (male) mini displayport for the laptop? Is this going to cause latency if I'm running videos? Help please!

    Your iMac (from 2006) does not support Target Display Mode, that functionality only became available in Late 2009 with MiniDisplay Port. Even if you were to find a male-to-male cable the iMac isn't going to accept the video from the MacBook Pro in a method you're hoping to achieve (extended desktop mode). I've use ScreenRecycler and the lag is barely noticeable, I think even calling it "lag" is overkill.
    If you need a second monitor for work that is apparently an important accessory, why are they not supplying with a second monitor? Even if you were to find a valid connection solution, it's response time would still be slower than a direct link from the MacBook Pro.

  • What's the way to use the tab button while writing...

    can u tell me?
    whts the way to use tab button while writting in quick office.
    Moderator's Note: Post was moved and changed the title into a subject-related title. This is to keep the forum organized and let other forum users easily see and respond to this post.
    Solved!
    Go to Solution.

    Hi, minhaz784221. To clarify, are you looking for the tab button function on your phone's keyboard to use in the Quickoffice app? If yes, you'll need to press the space bar multiple times to create an indent on your paragraphs. If this does not resolve your inquiry, feel free to add more details in your reply. Keep us posted.

  • Purchase Order creation for TAB item

    Hi,
    I used TAB item in the Sales Order. Then I created Purchase Order(ME21n) using that Purchase req number. Then I went to ME23 and did goods receipt from the menu and clicked the item OK. Saved.
    Now when I tried to do delivery for the Order, its saying the stock is not there.
    I see the PO in the Doc Flow.
    Please help. Let me know the steps to create PO and delivery for this TAB item.
    Will reward point for a good reply
    thanks

    yes I did.
    I used the confirmed schedule line as the delivery date in VL01n
    It is saying ZERO stock is available
    I can see my stock with type E for this Order in MB51
    Not sure why it is not allowing me to created delivery.
    Is it some storage location problem or sth? This is in testing Environment. I guess Production is working but I compared Material Master Data and POs from Productioni to testing.
    I don't see  anything different.
    need help
    thanks

  • Possible to have spry Tabbed Items vertical rather than horizontal?

    Hi,
    I'm basically trying to set up a website that uses spry tabbed instead of links because I would like to have a continuous, rolling flash image browser running in a separate div. Links would obviously refresh the plug-in, and it's not what I'd like.
    I did something similar before using spry, and had it navigated on the top, but for this design I'd like to have the links going down vertically, with content to the right of them.
    Is this possible using tabbed items?
    Also, is it wise that I use spry and a flash/shockwave plug-in, as this is a business website and would need to be opened at all computers?
    Cheers in advance!
    Ivan Reshetilov
    http://www.ivanreshetilov.co.uk

    http://labs.adobe.com/technologies/spry/samples/tabbedpanels/tabbed_panel_sample.htm
    Also yes you can use Spry together with Flash. If it gives issues. Set the flash's wmode to transparent

  • Continuing from using a canvas in tab item

    I asked about inserting a canvas into a tab item and ws given an answer which helped sort the problem , howvere i have hit another problem , the code is
    using System.Windows.Media.Imaging;
    using System.Windows.Navigation;
    using System.Windows.Shapes;
    namespace WPFDynamicTab
        /// <summary>
        /// Interaction logic for MainWindow.xaml
        /// </summary>
        public partial class MainWindow : Window
            private List<TabItem> _tabItems;
            private TabItem _tabAdd;
            private Canvas canvas1;
            public MainWindow()
               try
                    InitializeComponent();
                    // initialize tabItem array
                    _tabItems = new List<TabItem>();
                    // add a tabItem with + in header
                    _tabAdd = new TabItem();
                     canvas1= new Canvas();
                    _tabAdd.Header = "+";
                    _tabAdd.MouseLeftButtonUp += _tabAdd_MouseLeftButtonUp;
                    _tabItems.Add(_tabAdd);
                    this.AddTabItem();   // add first tab
                    // bind tab control
                    tabDynamic.DataContext = _tabItems;
                    tabDynamic.SelectedIndex = 0;
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            private TabItem AddTabItem()
                int count = _tabItems.Count;
                // create new tab item
                TabItem tab = new TabItem();
                tab.Header = string.Format("Tab {0}", count);
                tab.Name = string.Format("tab{0}", count);
                tab.HeaderTemplate = tabDynamic.FindResource("TabHeader") as DataTemplate;
                // add controls to tab item, this case I added just a canvas
                Canvas canvas = new Canvas();
                canvas.Name = "canvas";
                Canvas canvas1 = new Canvas();
                canvas1.Name = "canvas1";
                // defining the background color of "canvas"
                switch (count)
                    case 0:
                        canvas.Background = Brushes.Green;
                        break;
                    case 1:
                        canvas.Background = Brushes.Red;
                        break;
                    case 2:
                        canvas.Background = Brushes.Blue;
                        break;
                    case 3:
                        canvas.Background = Brushes.Yellow;
                        break;
                    case 4:
                        canvas.Background = Brushes.Brown;
                        break;
                    case 5:
                        canvas.Background = Brushes.Orange;
                        break;
                    case 6:
                        canvas.Background = Brushes.Olive;
                        break;
                    default:
                        break;
                // Canvas_Paint defines the background color of  "canvas1"
    // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
            //    tab.Content = canvas;     // ORIGINAL (commented out) to populate tab.Content with canvas
                Canvas_Paint();
                tab.Content = canvas1;      //  NEW to populate tab.Content with canvas
    // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
                // insert tab item right before the last (+) tab item
                _tabItems.Insert(count - 1, tab);
                return tab;
            private void _tabAdd_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
                TabItem newTab = this.AddTabItem();
                // clear tab control binding
                tabDynamic.DataContext = null;
                // bind tab control
                tabDynamic.DataContext = _tabItems;
                tabDynamic.SelectedItem = newTab;
            private void Canvas_Paint()
                int count = _tabItems.Count;
                switch (count)
                    case 0:
                        canvas1.Background = Brushes.Green;
                        break;
                    case 1:
                        canvas1.Background = Brushes.Red;
                        break;
                    case 2:
                        canvas1.Background = Brushes.Blue;
                        break;
                    case 3:
                        canvas1.Background = Brushes.Yellow;
                        break;
                    case 4:
                        canvas1.Background = Brushes.Brown;
                        break;
                    case 5:
                        canvas1.Background = Brushes.Orange;
                        break;
                    case 6:
                        canvas1.Background = Brushes.Olive;
                        break;
                    default:
                        break;
            private void tabDynamic_SelectionChanged(object sender, SelectionChangedEventArgs e)
    and the xml is
    <Window x:Class="WPFDynamicTab.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            Title="Dynamic Tab" Height="300" Width="527" WindowStartupLocation="CenterScreen">
        <Grid>
            <TabControl Name="tabDynamic" ItemsSource="{Binding}" SelectionChanged="tabDynamic_SelectionChanged">
                <TabControl.Resources>
                    <DataTemplate x:Key="TabHeader" DataType="TabItem">
                        <DockPanel>
                            <TextBlock Text="{Binding RelativeSource={RelativeSource AncestorType=TabItem }, Path=Header}" />
                        </DockPanel>
                    </DataTemplate>
                </TabControl.Resources>
            </TabControl>
        </Grid>
    </Window>
    The problem is when i use the Canvas "canvas" with the canvas pouplated within the method  all is ok  , however using "canvas1" where canvas1 is populated in Canvas_Paint 
    "canvas1" has null entries. How can I set the background colour in the tab using Canvas_Paint. Can the canvs be put in the XML? I hve simplified the problem from a much more complicated one in order to highlight the problem
    steve

    >>I asked about inserting a canvas into a tab item and ws given an answer which helped sort the problem , howvere i have hit another problem , the code is
    Please close your previous threads by marking helpful posts as answer before starting a new one. And please only ask one question per thread.
    >>How can I set the background colour in the tab using Canvas_Paint?
    You never set the Background of the canvas1 that you create in the AddTabItem() and use as the Content of the TabItem. Just remove this line from this method:
    Canvas canvas1 = new Canvas();
    ...and you will see the background:
    private TabItem AddTabItem()
    int count = _tabItems.Count;
    // create new tab item
    TabItem tab = new TabItem();
    tab.Header = string.Format("Tab {0}", count);
    tab.Name = string.Format("tab{0}", count);
    tab.HeaderTemplate = tabDynamic.FindResource("TabHeader") as DataTemplate;
    // add controls to tab item, this case I added just a canvas
    Canvas canvas = new Canvas();
    canvas.Name = "canvas";
    canvas1.Name = "canvas1";
    // defining the background color of "canvas"
    switch (count)
    case 0:
    canvas.Background = Brushes.Green;
    break;
    case 1:
    canvas.Background = Brushes.Red;
    break;
    case 2:
    canvas.Background = Brushes.Blue;
    break;
    case 3:
    canvas.Background = Brushes.Yellow;
    break;
    case 4:
    canvas.Background = Brushes.Brown;
    break;
    case 5:
    canvas.Background = Brushes.Orange;
    break;
    case 6:
    canvas.Background = Brushes.Olive;
    break;
    default:
    break;
    // Canvas_Paint defines the background color of "canvas1"
    // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    //tab.Content = canvas; // ORIGINAL (commented out) to populate tab.Content with canvas
    Canvas_Paint();
    tab.Content = canvas1; // NEW to populate tab.Content with canvas
    // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    // insert tab item right before the last (+) tab item
    _tabItems.Insert(count - 1, tab);
    return tab;
    Another approach bay be to pass the Canvas element to the painted to the Canvas_Paint() method by reference instead of using a class-level field:
    Canvas_Paint(ref canvas1);
    tab.Content = canvas1;
    private void Canvas_Paint(ref Canvas canvas1)
    int count = _tabItems.Count;
    switch (count)
    case 0:
    canvas1.Background = Brushes.Green;
    break;
    case 1:
    canvas1.Background = Brushes.Red;
    break;
    case 2:
    canvas1.Background = Brushes.Blue;
    break;
    case 3:
    canvas1.Background = Brushes.Yellow;
    break;
    case 4:
    canvas1.Background = Brushes.Brown;
    break;
    case 5:
    canvas1.Background = Brushes.Orange;
    break;
    case 6:
    canvas1.Background = Brushes.Olive;
    break;
    default:
    break;
    Please remember to close your threads by marking helpful posts as answer and please start a new thread if you have a new question.

  • Is there a way to hibernate tab groups so that they do not use RAM memory?

    Is there a way to hibernate tab groups so that they do not use RAM memory? I have a lot of tabs open and have organized them into tabgroups but my computer still uses a lot of the RAM on mozilla. Can I hibernate some of the tabgroups in any way?

    There was a bug filed in 2010, but it seems like it's halted.
    *https://bugzilla.mozilla.org/show_bug.cgi?id=591775 <sub>Please don't comment on bug reports. See [https://bugzilla.mozilla.org/page.cgi?id=etiquette.html Bugzilla etiquette]
    I found an extension that might do this, but it's incompatible for me (Nightly in Linux)
    *https://addons.mozilla.org/en-US/firefox/addon/bartab/

  • Using Tab Pages & Web Template Web Items

    Hi Experts,
    i want to build a report with a tabs
    i have created a WAD report with a tab page web item
    in the tab page i have inserted three web template web items
    and in each web item i have entered a diffrent technical name of a WAD report (3 reports)
    but when i run the report i get in all three tab pages
    the data of the first report (like it uses DP_1 of the first one)
    i have tried to change in the reports the name of the data providers
    to DP_7 or whatever and it is not working still.
    any one know how to display three WAD reports in a tab page web item?
    Thanks and BR,
    Or.

    Hi
    for  one clair example you can install the 0Analyzer web template - the standard sap web template that use TABs with different reports inside
    hope it helps
    Edited by: Andrea Previati on Sep 28, 2011 5:53 PM

  • What is the most efficient way to convert a static site to a responsive site using Dreamweaver?

    I need to convert an old site made in Dreamweaver to be responsive to any monitor size. What is the most efficient way to do this?

    Depending on what you have to work with and how it was coded, it might be doable and then again not.  Suffice it to say, there are no magic buttons that will do this for you. Also consider that mobile & tablet users interact differently with their web devices. So your navigation & forms must be finger friendly.  Also images & content must make mobile users happy without killing their dataplans.  There's a lot of planning that goes into making a good Responsive Web site.
    Nancy O.

  • STO from unrestricted to E stock from TAB item in Sales Order?

    Hi all,
    We have the situation where we are shipping stock intra-company via the STO Process. The requirements are being driven of a TAB item on the Sales Order, and the purchase req is being generated automatically, and being converted to STO > Delivery > Shipped then received at requesting plant.
    If we leave the Dependent Requirements Indicator on MRP4 in Material Master to blank the stock is shipped from the shipping plant as Sales Order stock and received into the requesting plant as Sales Order stock. If we change the Dependent Requirements Indicator on MRP4 in material Master to '2' then it trys to ship the stock as unrestricted, and the theory is that is should be received as Sales Order stock.
    Shipping as Unrestricted and receiving as Sales Order stock is exactly the scenario we are trying to achieve. 
    We initially ran into an issue with error message M7146. OSS Note 305582 describes this situation, and says we need to change the consumption posting on Account Assignment Catgegory M to be 'E - Accounting via Sales Order'.
    So we changed this, and now when we try and create the Sales Order we get an error message kd051 Maintain a Settlement Profile. We are told by our Finance people that we cannot use the Sales Order as a cost collector as it impacts the PA reporting, so I am wondering if anyone has any suggestions as to how we can resolve this issue.
    Many Thanks.

    Dear all,
    can u update me with the depot to depot process   ( like  there some  20 qty in 1300 depot   i wanted to transfer the  20 qty to 1200 depot)
    what is the process should be followed   
    i am still  not getting the right way  
    please guide me    my process i am following is  :
    supplying plant
    Create a STO PO from receiving plant  T-code ME21n
    Create delivery with ref to STO PO   T-code VL10b
    Post goods issue     T-code VL02n
    Create Depot Excise invoice with  Reference to delivery document T-code J1IJ
    Create pro-forma invoice   T-code VF01
    Receving plant
    Goods receipt   (With out excise capture selection)  T-code MIGO
    Capture excise invoice at depot  (Enter challan qty and Excise baseAmount)  T-code J1IG
    Please guide me on this as it is critical

Maybe you are looking for