Single Item Use

Hi,
Can anyone explain me how can i use the same item no. for the t-shirt with different sizes. What is the best possible way for this.
Kind Regards
Shahid

There are two directions to go on this. 
1. Use a matrix Addon which is available for Business One (there are 2 or 3 which are available and certified)
2. Use the Batch Concept..Here when you receive a T-Shirt..you will enter the Batch number as the Size of the T-Shirt.
Example. If you are receiving 10 T Shirts of 4 sizes you will enter 4 Batches as follows
Batch No.....Quantity
M.................2
L..................3
XL................3
XXL..............2
This way you will be able to see how many in each size you have for this item.  If you want to also manage Color then it becomes more complex and I would certainly advise looking at an Addon
Suda

Similar Messages

  • Single item shipment using multiple trucks

    Hi Friends,
    I have a typical requirement where my client want to ship one of their product ( A Huge item, which they dismantle it for shipment) using multiple trucks. How we can handle this situation using SAP LES module? They can hire multiple trucks to ship this item by road to the destination using multiple service providers. So the service cost also need to be settled for all these service providers.  Will SAP allow to split a single item through multiple shipments? I really appreciate a solution for this.
    Thanks

    There are a couple of recommended methods for using more than one iPod on a single computer. Method one is to have individual Mac or Windows user accounts which by definition would give you completely separate libraries. Each account has it's own iTunes folder, Library and iTunes Music folder and you load it with CDs etc just as you did with your original one. Each iPod can be set to update however the owner chooses, sync all, manual or sync specific playlists.
    Method two is to set your preferences so that either one or all iPods get updated with only certain playlists within one library. Have a look at this article and see what you think and go for whichever you feel suits your needs best: How To Use Multiple iPods with One Computer
    Another option when using a single library is to set the iPods to manual update: Managing content manually on iPod
    Choosing the update option "automatically update selected playlists only" (called Sync Music - Selected playlists in iTunes 7) allows you to create a playlist specifically for each iPod and drag the tracks you want into it. If you tire of the list and want to change it, you just add or remove the songs you don't want. The ones you take out out remain in the library to be used by the other iPods. Make your playlist a Smart playlist and limit the size to just below the advertised capacity of your iPod ( for example, around 3700MB for a 4GB or 1800MB for a 2GB Mini or Nano). You can read more about playlists at these links:
    iTunes: Creating playlists of your favorite songs
    How to create a Smart Playlist with iTunes

  • Create Multiple tasks for Single Item in List using state machine workflow in sharepoint

    Hi,
    I want to create multiple create tasks for Single Item in List based on Assigned to column using state machine Workflow through visual studio
    Here Assigned to column allows multiple users. so i have to create task for every user based on column .
    I'm trying for this but i didn't got any solution
    Please provide solution for this.

    Hi,
    According to your post, my understanding is that you wanted to allow multiple users to approve.
    There are some articles about creating parallel tasks in state machine workflow, you can have a look at them.
    http://www.codeproject.com/Articles/477849/Create-Parallel-Task-in-State-Machine-Workflow-in
    http://msdn.microsoft.com/en-us/library/office/hh128697(v=office.14).aspx
    http://social.technet.microsoft.com/Forums/office/en-US/b16ee858-4360-479a-a686-4ee35b7be9db/sharepoint-2010-workflow-creating-multiple-tasks?forum=sharepointdevelopmentprevious
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Why remove the single most used item, the addons bar?

    Why does their v29 change log says "added options", when the only thing most of us see are removed options, including the single most used section: the addon bar? I do not want to install an addon to see the addon bar that has been present since pre-Firefox Mozilla days. So why remove the single most used item? Did the previous pro-life CEO like it too much and the new management cannot have that?? Seems like Firefox is going backwards, not forwards.

    With 20 years in tech support and working on thousands of user end computers, the number 1 area used by people both in offices and in their personal computers was the add on bar. Considering the sheer number of addons that make use of it (just a preliminary dig through the addons earlier today), I would say in excess of 75% of legitimate addons make use of it. By removing it, it essentially nullifies hundreds of thousands of man hours put into programming all those addons.
    Why require an addon just to be able to make use of other addons? Sounds like a VERY flawed study to me, or there was no study and it's just Mozilla big wigs deciding to change what they want, spitting in the face of the open source/common community licensing.

  • How can I scan multiple items using my HP photosmart 2610 and them be able to be in one attachment​?

    I have an HP photosmart 2610 4 in1. How can I scan multiple items and put them in the same attachment using e-mail? Using my laptop.

    Hi @needyrhelp,
    Welcome to the HP Forums!
    I see that you are wondering how to scan multiple items using your HP photosmart 2610 and for them to be able to be in one attachment in your e-mail. I am happy to look into this for you!
    Please see the how to scan guide for the Operating System you are using. Here is the list of how to scan guides, Scan. Select your Operating System from the list, then select How to scan with HP software, then How to scan a multi-page original text document into a single file. You will need to scan each page one at a time, and add it to the same document. The how to scan guide will show you how. After done scanning to the file, then see the link for How to attach a scan to an email.
    If you do not know the Operating System you are using, please visit this website. Whatsmyos.
    Hope this information is helpful, and thank you for posting!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Querying Exchange 2013 Mail server for email items using c# and Exchange Web Services

    I am trying to upgrade an existing application that reads Exchange 2003 using WebDAV. The mail server is to be upgraded to Exchange 2013, so I am checking how I can use EWS.
    I have a problem in that although I know the inbox has unread items with attachments, the query I am running against the
    FindItems object is returning empty (results.totalCount=0)
    Here is my code snippet:
    private static void GetAttachments(ExchangeService service)
    // Return a single item.
    ItemView view = new ItemView(100);
    ServicePointManager.ServerCertificateValidationCallback = CertificateValidationCallBack;
    ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);// .Exchange2007_SP1);
    service.UseDefaultCredentials = true;
    service.AutodiscoverUrl("[email protected]", RedirectionUrlValidationCallback);
    ItemView view = new ItemView(1);
    string querystring = "HasAttachments:true Subject:'ATTACHMENT TEST' Kind:email";
    // Find the first email message in the Inbox that has attachments.
    // This results in a FindItem operation call to EWS.
    FindItemsResults<Item> results = service.FindItems(WellKnownFolderName.Inbox, querystring, view);
    //FindItemsResults<Item> results = service.FindItems(WellKnownFolderName.Inbox, new ItemView(50));
    if (results.TotalCount > 0)
    // looping through all the emails
    for (Int16 iDx = 0; iDx < results.TotalCount-1; iDx++)
    EmailMessage email = results.Items[iDx] as EmailMessage;
    if (email.IsRead == false) {
    // Request all the attachments on the email message. This results in a GetItem operation call to EWS.
    email.Load(new PropertySet(EmailMessageSchema.Attachments));
    foreach (Attachment attachment in email.Attachments)
    if (attachment is FileAttachment)
    FileAttachment fileAttachment = attachment as FileAttachment;
    What I am supposed to be doing is reading all the unread emails in the target inbox (only one Exchange server) and taking the attachments on disk so I can then add them as attachments as new cases on SalesForce.
    Where am I going wrong?
    Also, this line:
    ItemView view = new ItemView(100);
    was:
    ItemView view = new ItemView(1);
    Surely that will only look for one email item, right?

    thanks, do you know why I would be getting an error message like 'The specified object was not found in the store'
    here is my code:
    ServicePointManager.ServerCertificateValidationCallback = CertificateValidationCallBack;
    ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);// .Exchange2007_SP1);
    service.Url = new Uri("https://sgexc.bocuk.local/EWS/Exchange.asmx");
    //creates an object that will represent the desired mailbox
    Mailbox mb = new Mailbox(@"[email protected]");
    //creates a folder object that will point to inbox folder
    FolderId fid = new FolderId(WellKnownFolderName.Inbox, mb);
    //this will bind the mailbox you're looking for using your service instance
    Folder inbox = Folder.Bind(service, fid);
    FindItemsResults<Item> findResults = service.FindItems(new FolderId(WellKnownFolderName.Inbox, new Mailbox("[email protected]")),new ItemView(10));
    it's happening on this line:
    Folder inbox = Folder.Bind(service, fid);
    and if I try to use AutoDiscoverURL then I just see my own inbox.

  • Deleting a single item from the trash.

    Hello
    Is there a way to delete a single item from the trash, while leaving all other items in the trash?

    I don't believe so and I'm not sure why you would want to.
    Items should not be placed in the Trash unless you intend to delete the items. The Trash is not designed for and should not be used as a temporary storage location.

  • Display of  icons in the items of dropdownListBox for a single item

    Dear BSP Gurus,
    Do you know if it is possible to display icons in the items of dropdownListBox for every single item?
    To assign and display icon to buttons I do:
        lv_image->id = 'UserSelectionCancel2'.
        lv_image->src = '/sap/public/bc/icons/s_B_OKYE.gif'.
        lv_image->tooltip = ''.
        clear lv_image_string.
        lv_image_string = lv_image->IF_BSP_BEE~RENDER_TO_STRING( page_context ).
                  %>
                  <xhtmlb:toolbarButton id      = "<%= ywfx1_b_bcontinueWF %>"
                                        design  = "STANDARD"
                                        text    = "<%= lv_image_string %> <%= otr(YWF11/ContWF) %>"
    But I could not managed to do it for the " <htmlb:dropdownListBox ...".
    We have application developed in ABAP WebDynpro and there it is possible, so I want to do exactly the same with BSP.
    Any idea?
    Thanks in advance,
    Valentin

    Hallo Alexandre,
    But what if I use table for defining the items?
    Like:
    htmlb:dropdownListBox id  = "DropDownCommands"
                      table             = "<%= application->mt_commands %>"
                      nameOfKeyColumn   = "VAL_COMMAND".."
    Where "application->mt_commands" is table of strings?
    Would it be some how possible?
    Regards,
    Valentin

  • I can't clear single item in Location Bar History

    I can't clear single item in Location Bar History. I use Firefox 3.6.13 on Mac 10.6.5.
    I do select the item in location bar, press Shift and delete keys, but it delete the item only temporary...
    My Firefox Privacy pref indicate:
    - Use custom settings for history
    - Suggest History when using location bar

    Entries in the location bar drop down list with a yellow (blue on Mac) star at the right end are bookmarks.<br />
    You can remove such a bookmarked item that shows in the list if you open that url in a tab and click the yellow star in the location bar.<br />
    This will open the Edit This Bookmark dialog and you can click the Remove button to remove the bookmark.<br />
    This can also be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • How can I add the logo image for a single item in an RSS feed?

    Hello,
    I am an administrator of iTunes U at the University of Minnesota.
    Before transitioning new public site, we are trying to figure out how to put a logo image into RSS feeds.
    We use our server to makes xml codes to create RSS feeds for podcasts.
    We successfully put a logo image for a collection in a RSS feed, but putting a logo image for a single item did not work.
    Below is the part of the xml code for the logo image for a single item, which is created by our server. I deleted other parts of xml code for your convenience.
    <item>
    <title>Plagiarism</title>
    <itunes:image href="http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimmin g-contast.jpg" />
    <enclosure url="http://mediamill.cla.umn.edu/mediamill/download.php.mp3?file=87504.mp3" length="8544508" type="audio/x-mp3" />
    <guid>http://mediamill.cla.umn.edu/mediamill/download.php.mp3?file=87504.mp3</guid>
    <image></image>
    </item>
    We tried both <itunes:image href="http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimmin g-contast.jpg" /> or <image>http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimming-conta st.jpg</image>.
    Both did not work.
    Can anyone help?
    Thank you for your help in advance!!
    Seogjoo

    Haven't created too many podcasts, but in this one
    http://itunes.apple.com/us/podcast/connecticut-college-sculpture/id372414245
    or
    itpc://video.conncoll.edu/d/sculptures/index.xml
    before we included the audio files, we added the images in iTunes.
    Select the file, then go to File>Get Info, here you can add metadata, and in Artwork add an image.
    Then upload this file to your server. Works for audio files anyways.
    You don't see the image in the web podcast, but you do in iTunes after you download each item, in "Show item artwork" in lower left. Click on the image and it zooms out.

  • Enable single item recovery with two retention settings at the database level.

    Hello All,
    We have an Exchange 2010 SP3 RU4 environment and planning on moving from third party archives solution to Native Exchange archives for cost reduction purposes, upgrading to Exchange 2013 to benefit from added in place features is not within scope at
    this stage.
    We are looking at implementing the following steps and want to know if it will work:
    1-Create archive DB(s) as per our usage and growth projections
    2-Enable archives for all our users and migrate current archive content to it.
    3-Create Retention Tag/Policy to move all records from live to archive "Age limit for retention" 90 days (no retention tags on the policy)
    4-Enable Single Item recovery for all of our users (script the same to run twice daily to enable SIR for newly created accounts)
    5-Set the "Keep Deleted Items" on the Live DB(s) to 90 days and the Archive DB(s) to 7 Years
    6-We are NOT using Legal Hold or plan to use it except on per as need basis
    Are we accomplishing the following:
    1-Items are automatically archived after 90 days
    2-Items archived now have a 7year retention based on the "keep deleted items" set for the archive DB(s)
    3-Items copied back to the live mailbox by a user will be returned to the archive database the next time the folder assistant runs against this user account (based on load or if run manually)
    4-Hard deleted items by a user is recoverable as long as the email record is within the retention period set at the database where it resides.
    5-Hard deleted items are recoverable using MFCMapi or by a restore.
    6-Items are permanently purged on the archive DB(s) after 7 years.
    Any input, ideas, recommendations, clarifications would be greatly valued and appreciated.  
    Ash

    Thanks CodexCZ,
    So, SIR will "kind of" do the same as the retention tag except I can use different durations based on the limits on each DB? am I correct?
    thanks again.
    Ash

  • Edit single item in Recurrence event through CSOM/javascript + SPService Library

    Hi,
      I've a requirement that I've custom action ribbon button. In a calendar list, there is a Person/Group field named "Attendees". I want to add current user to this field when the user click the ribbon button. I've implemented but the problem
    is I cant update the single item of recurrence event. Becuase recurrent event ID are different and not able to get the item. Using the below link, I got all the recurrence items, but i want to update the field of specific single item in recurrence item.
    https://www.nothingbutsharepoint.com/sites/eusp/Pages/Use-SPServices-to-Get-Recurring-Events-as-Distinct-Items.aspx
    Is it possible to edit the single item of recurrence event. If yes, please let me know. And one more, I don't want to implement this approach with workflow. Other than workflow, I want to implement this functionality. Please suggest. 
    Balaji -Please click mark as answer if my reply solves your problem.

    Hi  ,
    According to your description, my understanding is that you want to edit the single item of recurrence event using javascript.
    For your issue, you can refer to the steps as below:
    1. Create a list ribbon.
    2.When ribbon is clicked, get the selected event.
    3.If  the selected event is recurrence event, go to 4.If not, go to 6.
    4.If the selected event is modified recurrence event, update its "Attendees" column. If not, go to 5.
    5.Create a new event,set its MasterSeriesItemID to the ID of the selected recurrence event,set EventType to 3, set   its UID to the
    UID  of the selected recurrence event, set its  fRecurrence to 1, set RecurrenceID to the EventDate of the selected recurrence event and so on.
    6.Update its "Attendees" column.
    Reference:
    http://blogs.technet.com/b/sharepointdevelopersupport/archive/2013/03/25/how-to-programmatically-delete-a-single-instance-of-a-recurring-event-in-a-sharepoint-calendar.aspx
    http://social.technet.microsoft.com/Forums/office/en-US/f3b2ed46-d748-4aed-8b1c-765306ef3be0/how-update-fields-on-recursive-calendar-items?forum=sharepointdevelopmentlegacy
    http://stackoverflow.com/questions/2811756/update-item-has-recurrence-in-sharepoint
    http://aspnetguru.wordpress.com/2007/06/01/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format/
    http://sharepointtechie.blogspot.com/2010/08/deleting-individual-events-from.html
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • WC27 - Single Item, Single Level(?)

    Hello,
    I would just like to ask if there is a way in transaction WC27 (for MRP Batch Run) to only run Single Item, Single Level Materials during processing?
    I ask because I have a requirement (in addition to filtering material codes) to only run single item, single level entries for WC27 similar to MD03 but the customer wants the batch run feature.
    Hope to hear from you soon.
    Regards

    Hi,
          As it is correctly answered by the gurus above that it's difficult/not possible to run Batch structured MRP for only run Single Item, Single Level plannings..
    Hoiwever it can be mapped with the help of ABAPer to ask him/her to do some coding for standard report RMMRP000 .this is a standard ABAP report available within your SAP system (depending on your version and release level).  there is also some   standard documentation available for this report and a few details of other objects it interacts with such as tables, function modules, includes etc. If you would like to see the full code listing simply enter the object name( RMMRP000 ) into the relevant SAP transaction such as SE38 or SE80
    Within the comments section below there is also an opportunity for anyone to be able add useful hints and information specific to this SAP object. This means that you and other users will be able to find these details quickly by simply searching on the object name.
    Hope it could work for you.
    All the best!
    Regards
    Chandra

  • Automatic Single Item multi-level planning on sales order creation

    Hi all,
    I am using strategy 50 and want planning for single item to be carried out at the time of sales order creation to avoid MRP run everytime sales order is created..In order to achieve it i checked Automatic Planning Indicator in "OVZG" for the requirement class "045" which is requirement class for sales order of strategy 50. But still unable to achieve the desired result..
    Please guide me through.
    best regards,
    shah

    HI shah,
    in sales order go to Procurement tab there u will get the requirement type. system will determine requirement class based upon following criteria
    1) by strategy group in material master
    2) if strategy group not there then MRP group
    3) if mrp group not there then material type
    4) by this also not able to fine the requirement type then special rule is used with the help of item category and mrp type
    5) if this also fails then it will go with item category only
    6) this also fails then it will give any requirement type
    hope this is clear
    regards
    ramakant

  • Enabling Single Item Recovery per databse

    Hello,
    I am trying to find a command that will set "Single Item Recovery" to be true for all mailboxes in a database. I know how to set it for a single mailbox but I can't seem to find the correct syntax to make it work for each mailbox in a particuliar database.
    This is what I have come up with so far but it tries to set it on all mailboxes in all databases:
    [PS] C:\Get-Mailbox | Where{$_.Database -eq servername\databasename} | Set-Mailbox -SingleItemRecoveryEnabled $true
    Also, is there a way to set it as the default for all new mailboxes created in a database?
    TIA.
    Mark

    Addition to what Jonas said :)
    For a scheduled script you can use the same command as you already did: Get-Mailbox -Server
    servername| Set-Mailbox -SingleItemRecoveryEnabled $true. If you run that command once every night you would have to wait no more then one day before the new users have the correct settings.
    And if you want to make it a bit more complex you can add a where function and the command will only configure the mailboxes that has been created in the last 24h: Get-Mailbox -Server
    servername | Where { $_.WhenCreated -gt (get-date).adddays(-1) } | Set-Mailbox -SingleItemRecoveryEnabled $true
    Martin Sundström | Microsoft Certified Trainer | MCITP: Enterprise Messaging Administrator 2007/2010 |
    http://msundis.wordpress.com

Maybe you are looking for

  • Digitizing Pre-Logged Clips: Drop Frame/Non-Drop Frame Discrepency

    I have about 100hrs of DV NTSC footage that has been logged and now I need to capture it. Everything seemed good to go: • I ctrl+click the clip intended to capture • Select 'batch capture' (it initializes) • Settings are (apple setting) DV NTSC 48kHz

  • Lumia 520 - Videos shared via Bluetooth

    I want to know how to search videos or anything else in NOKIA LUMIA 520 ? Video was sent by Bluetooth. Moderator's note: We have provided a subject-related title to help other forum users easily view and respond to this post.

  • How can I stop my site from appearing at the left in the tablet and phone layouts?

    At the moment my site works on desktop browsers but appears pinched to the left on phones and tablets. www.lrproductions.biz I have checked for any miscellaneous text boxes, and I also removed the scrolling fx to try and fix the the bug. Nothing seem

  • Displaying unicode chars in title of jdialog

    hello, I am developing application that has several dialogs. For each of these dialogs, I would like to display unicode characters in the title. Can some one please help me out and direct me on what I should to do make this work? All other controls o

  • Exadata Upgrade Tasks

    Dear All, This is to share with you that we have Exadata X-2 Quarter Rack for our Data Warehouse environment. We are upgrading Exadata, means adding one high capacity expansion rack to get more storage capacity. I know most of the tasks will be done