In selection screen i want all  the item no related to s.o. no.

Hi,
   i want to display all d possible entries in the second selection fields i.e. posnr related to given sales order no...means in selection screen i hav 2 parameter...sales order no and line item no.
i want all the possible no of entries for line item no (POSNR) values to b displayed when m giving the sales order no...(VBELN)...
i want the answer urgently.
regards....
Amayika

Hi,
    Can u be more specific.
Do u want the line items to be copied when a particular sales order is selected from F4 ? If it is so then in FM F4IF_INT_TABLE_VALUE_REQUEST  we can get the values of the other fields related to the selected field and then use FM DYNP_VALUES_UPDATE.
or Do u want to display only those line items that exists for the sales order entered then first of all u have to capture the value of the sales order entered, for this there is a FM DYNP_VALUES_READ. Now u can get the line items related to this from VBAP table.
Regards,
Shafi

Similar Messages

  • How do I Select all the items in a document based on SpotColor?

    I'm trying to select every object with the color "CutContour"
    So far I've been trying:
    myDoc.selection = myDoc.spots.getByName("CutContour"); 
    I guess this obviouslly wouldn't work though because myDoc.selection is looking for an array of objects.
    However, I can't figure out how to loop through all the objects in the document and check to see if they contain the SpotColor.
    Any help would be incredibly appreciated!
    EDIT:
    I want to use the Select > Same > Stroke Color , but I heard that using that in Javascript isn't available unless you have CS6 (which I currently don't). Is it true that accessing menu items through scripting is a feature in CS6?

    Thanks for clearing some of that up for me!
    I only need to select path items, and I see that if I do something along the lines of:
    var objects = myDoc.pageItems;
    I can get an array of all the items in my document. However, I'm trying to figure out where to go from here, but the process seems overly complex. I want to loop through objects and see if they are pathitems, and then check to see if they have the color I'm looking for, but I can't find the strokeColor property in the Javascript reference. Also, what about compoundPathItems (closed paths)? If I check for PathItems, will I also get CompoundPathItems?
    EDIT:
    This is what I have so far, however, it is not working correctly /:
    var myColor = myDoc.spots.getByName("CutContour");var arrObj = [];for (var i = 0; i <objects.length; i++) {  if (objects[i].typename == "PathItem" && objects[i].fillColor == myColor) {    arrObj.push(objects[i]);    objects[i].move(layer_Cut, ElementPlacement.PLACEATBEGINNING);  }}
    See, the whole goal is to move all objects with the color "CutContour" to

  • I have a new macbook and i want to make it my new home for my iphone, as well as transfer all the items on the iphone. i already removed and deauthorized everything from my old computer.

    I have a new macbook and i want to make it my new home for my iphone, as well as transfer all the items on the iphone. i already removed and deauthorized everything from my old computer.

    1) authorize iTunes on the new machine for your iTunes store account(s)
    2) connect your device and right-click or control-click it in the iTunes Source list, then choose transfer purchases from the shortcut menu that appears.
    3) sync the device
    iTunes will wipe the iPhone but, since you transferred your purchases in the previous step, your content will be in your library and you can re-populate the iPhone with it.
    above covers your iTunes purchases. for everything else, check out this post by Zevoneer.
    also, there are PhoneView and iRip.

  • Question I have a dilemma . I added a lot of songs in my iTunes now when I synced my ipod this message appear "Elma's ipod cannot be synced because there is not enough free space to hold all the items in the iTunes library (additiona

    I addesd a lot of songs in my itunes, now when I synced my ipod this message appear "elma's ipod cannot be synced because there is not enough free space to hold all the items in the itunes library (additional 382m is required). Then I uncheck a lot of song and synced my ipod again same message appeared. Do I need to buy a new ipod with more memories? Somebody told me to check apply after I unchecked some of the songs but I cannot find the word APPLY. please help I'm not a very technical person.

    The Sync button becomes the Apply button, if you change the iPod's settings in iTunes.  If you are only unchecking songs in the iTunes music library, you click on the Sync button.
    When you select the iPod in iTunes, you see the iPod's Summary screen on the main part of the iTunes window.  There is a checkbox there for Sync only checked songs.  Did you check that checkbox?  If you want iTunes to ignore the songs you unchecked when syncing your iPod, that setting needs to be enabled.  If you change that setting, you'll see the the Sync botton has changed to Apply.  Click Apply.
    That method of unchecking songs works, but it may become annoying over time, as you need to uncheck more and more songs.  If you want advice on some other more convenient ways to make it work, you can post back.

  • Query For Finding Yearly Opening and Closing Balance for All the Items

    Hi Experts,
    I am working on Query Based Report for finding the Yearly Opening and Closing Stock for all the Items
    i will give yearwise selection and I want opening and closing stock in between that years
    Warm Regards,
    Sandip Kokate
    Edited by: Sandipk on May 20, 2011 1:58 PM

    Hi,
    Declare @SDate DateTime
    Declare @EDate DateTime
    Declare @Whse nvarchar(10)
    Set @SDate= (SELECT min(F_RefDate)  FROM  OFPR T1 where  T1.[Name] ='[1%]' )
    Set @EDate= (SELECT max(T_RefDate)  FROM  OFPR T1 where  T1.[Name] ='[%1]' )
    Set @Whse=(Select Max(s2.Warehouse) from OINM S2 Where S2.Warehouse = '[%2]')
    BEGIN
    Select @Whse as 'Warehouse', a.Itemcode, max(a.Dscription) as ItemName,
    sum(a.OpeningBalance) as OpeningBalance, sum(a.INq) as 'IN', sum(a.OUT) as OUT,
    ((sum(a.OpeningBalance) + sum(a.INq)) - Sum(a.OUT)) as Closing ,
    (Select i.InvntryUom from OITM i where i.ItemCode=a.Itemcode) as UOM
    from( Select N1.Warehouse, N1.Itemcode, N1.Dscription, (sum(N1.inqty)-sum(n1.outqty))
    as OpeningBalance, 0 as INq, 0 as OUT From dbo.OINM N1
    Where N1.DocDate < @SDate and N1.Warehouse = @Whse Group By N1.Warehouse,N1.ItemCode,
    N1.Dscription Union All select N1.Warehouse, N1.Itemcode, N1.Dscription, 0 as OpeningBalance,
    sum(N1.inqty) , 0 as OUT From dbo.OINM N1 Where N1.DocDate >= @SDate and N1.DocDate <= @EDate
    and N1.Inqty >0 and N1.Warehouse = @Whse Group By N1.Warehouse,N1.ItemCode,N1.Dscription
    Union All select N1.Warehouse, N1.Itemcode, N1.Dscription, 0 as OpeningBalance, 0 , sum(N1.outqty) as OUT
    From dbo.OINM N1 Where N1.DocDate >= @SDate and N1.DocDate <=@EDate and N1.OutQty > 0
    and N1.Warehouse = @Whse Group By N1.Warehouse,N1.ItemCode,N1.Dscription) a, dbo.OITM I1
    where a.ItemCode=I1.ItemCode
    Group By a.Itemcode Having sum(a.OpeningBalance) + sum(a.INq) + sum(a.OUT) > 0 Order By a.Itemcode
    END
    I hope this will work for you.
    In above query you can also user OFPR.Code, OFPR, Category OFPR.Indicator instead of OFPR.Name.
    Regards
    Vaibhav Anharwadkar
    Edited by: Vaibhav Ancharwadkar on May 24, 2011 9:23 AM

  • HT4927 Are there ways to only upload certain photos from my iphoto backup? It is really big and I don't want all the photos on my new computer.

    Are there ways to only upload certain photos from my iphoto backup? It is really big and I don't want all the photos on my new computer.

    There is a way to find and recover individual photos from a Time Machine backup. 
    1 - dowload and launch  Find Any File.
    2 - select the Time Machine hard drive in FAF's Find Items menu.
    3 - enter the full file name of the photo you want to recover into FAF and use the Find button.
    NOTE: it will take a while for FAF to retrieve and display the results of the search due to the nature of how TM makes its backups. 30 seconds or so is normal.
    4 - select the file in the Masters folder and use the Space bar to verify it's the one you want with Quickview.
    5 - drag the file from the FAF window to your Desktop.
    6 - repeat for each photo you need to restore.
    OT

  • Why does my ipod no longer play all the items in a playlist?

    Why does my ipod no longer play all the items in a playlist?  I have to go to each item individually to select it as it no longer goes from one item to the next.

    what kind of connection do you have? do you use the ipod 30 pin cable that connects directly to the head unit? it so, maybe you could get help on the alpine site, or a similar site?it could just be a bad connection. you may just have to go oldschool and use rca cables and plug those in...

  • In Oracle Forms, to run all the When-Validate-Item of all the items at once

    In Oracle Forms, is there any built-in / procedure / function which is used to run all the When-Validate-Item triggers of all the Items at once ?
    I will put it in detail :
    When a form is run and while entering the data..
    when we enter some data and try to move out of that item then the When-Validate-Item trigger of that item is fired and the code in that trigger is executed..
    Similarly there may be many items and many When-Validate-Item triggers correspondigly in a form..
    My requirement is to run all the When-Validate-Item triggers of a form at once when we click a button which is created for that purpose only..
    So is there any built-in / procedure / function (to run all the When-Validate-Item triggers of all the items), which can be called in the When-Button-Pressed trigger of that particular button..
    If any one having any solution/suggestion, please let me know..
    Thanks..
    Edited by: user2938447 on Nov 8, 2010 9:03 PM
    Edited by: user2938447 on Nov 8, 2010 9:12 PM
    Edited by: user2938447 on Nov 8, 2010 10:19 PM

    Hi Sandy,
    Thanks for your suggestion..
    The validations should be done at Item level (When-Validate-Item as usually) and seperately again when a button is pressed.
    So to put all the code in another block-level When-Validate-Item trigger or in any When-Button-Pressed trigger will be duplication of the code.
    Actually I have around 30 Fmbs to be modified and each Fmb is having around 20 Items and almost all Items are having When-Validate-Item trigger.
    So,I wanted to know whether there is any Built-in / Procedure in Oracle Forms which runs all the When-Validate-Item triggers once it is called.
    Thanks..

  • How to use csv file to populate all the items in a form

    Our environment - Forms 6i/IAS 9i on Solaris/8.1.6 database on
    Solaris.
    In the web form I want the user to type in the name of an
    existing csv file(which contains 1 record). Then press a button
    and all the items on the form should be populated with the data
    in the csv file.
    One method is load the data in the csv file into the database
    using sqlloader and then execute a query to populate the form.
    Is there another way - instead of loading the file in the databas
    e? Thanks

    Hi Afroz,
    To be more specific, if the csv file doesn't has header, please refer to this script to add header:
    $csv = Import-Csv d:\haha.csv -Header "UserA","UserXYZ","EmailA"
    Then you can loop this csv file to run the "add-mailboxpermission" cmdlet, I recommend you can test this script before running against production environment, please also note I haven't tested this script:
    $csv = Import-Csv d:\users.csv -Header "UserA","UserXYZ","EmailA"
    foreach($each in $csv){
    write-host "assign fullaccess permission of user $($each.UserXYZ) on mailbox $($each.EmailA)"
    get-mailbox -identity $each.EmailA | add-mailboxpermission -user $each.UserXYZ -accessrights 'fullaccess'
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Is it possible to have 2 mail programmes on my macbook pro? one for business related emails and one personal. I dont want all the emails in one mail programme!

    Is it possible to have 2 mail programmes on my macbook pro? one for business related emails and one personal. I dont want all the emails in one mail programme. At the moment i have 2 personal email address being sent to my mail but because of receiving huge numbers of work emails it would be good to keep them seperate, what is the best way of doing this?

    if i use the one mail programme can it separate the incoming mail from the different email accounts into 2 folders without me having to do it manually?
    Yes, you can.  Nearly all email software can do this.  It involves creating two folders and a Rule for each folder.
    Maybe call one folder Personal Mail, the other Work Mail (Apple Mail calls folders Mailboxes).  One Rule would route all mail from your personal email account into the Personal Mail folder; the other Rule would route all mail from your work email account into the Work Mail folder.  It's actually easy to do, all you have to do is click a few things and the rule is set up.  Once the Rule is written you can also apply it to existing messages already downloaded to your Mac.
    In Apple Mail, Rules are under Preferences > Rules.  Follow the prompts to create a rule like this:
    If = Any
    Account = my Personal account (select the name of your personal email account)
    Perform the following actions: Move Message to Mailbox = my Personal Mail (select the name of your Personal Mail folder (aka mailbox))
    This rule says,  "take any message that comes in from my Personal Account and move it to my Personal Mail mailbox (folder)"
    Create a similar rule for your Work email.

  • I want all the numbers to be bold in AdvancedDataGrid

    I use inline item renders for a data grid for a couple of
    columns in an AdvancedDataGrid. Theses style the numbers in the
    cells red if the number is negative
    However at the last row I have a row which has the total of
    the above rows and where I want all the numbers to be bold. How do
    I implement this?

    "nikos101" <[email protected]> wrote in
    message
    news:gkfv4c$29m$[email protected]..
    > thanks Amy again,
    >
    > In my style function: the colour changes but the
    fontWeight does not.Any
    > ideas
    > what causes this?
    >
    > public function myStyleFunc(data:Object,
    > col:AdvancedDataGridColumn):Object
    > {
    > if (data["month"] == 'Total')
    > return {fontWeight:'bold',color:0x0000ff};
    >
    >
    > return null;
    > }
    >
    It looks like it should work. Are you using a custom renderer
    that might be
    interfering somehow? Or could it be a button, that's already
    bold.

  • If i have one iPad and I want all the apps that are there how do I copy that so i can have them on another iPad the same way as i have them on the first iPad?

    if i have one iPad and I want all the apps that are there how do I copy that so i can have them on another iPad the same way as i have them on the first iPad?

    If you want both iPad to be identical .....
    Without connecting your iPad to your laptop, start iTunes. Go to iTunes>Preferences>Devices. Check the box next to "Prevent your iPod etc. from automatically syncing." Click OK.
    Now connect your iPad to your Mac and start iTunes.
    When iTunes starts, right click on your iPad under Devices in the left column. Select Transfer purchases.
    After it finishes transferring all your apps to the Mac, right click on your iPad and select Backup your iPad.
    Sync the iPad and eject it when it is complete.
    Quit iTunes
    Connect the second iPad.
    Launch iTunes
    Right click on the iPad name on the left side and select - Restore from Backup
    Select the backup of the first iPad and let it restore from that backup.
    When it finishes restoring - sync with iTunes to transfer all of the apps and any other content that you want onto that iPad
    Eject the iPad when you are done.
    Check the second iPad and if all of the content did not sync as you wanted - or you want to remove some of the content - connect it again and then choose the content that you want - uncheck what you do not want - and click on Apply in the lower right corner of iTunes.

  • Retrive all the items under one folder

    Hi,
    I am new to ContentArea API's in 9ias.
    I am looking for Sepecific API's to retrive all the Items
    under one folder.
    thanks
    sha

    I'd love to know that API also. I have resorted to accessing the tables containing that information.
    wwv_corners contains an entry for each folder. wwv_things contains an entry for each folder item. You can join the two tables as
    wwv_corners.id = wwv_things.cornerid
    You could do something like:
    select folders.name, items.id
    from portal30.wwv_corners folders
    ,portal30.wwv_things items
    where folders.id = items.cornerid
    and folders.id = 99999;
    (where 99999 is the folder id.)
    Mike Kleiman

  • The Ipad cannot be synced because there is not enough free space to hold all the items in the ITunes library (6.55G required, 6.98G available)

    The message is The Ipad cannot be synced because there is not enough free space to hold all the items in the ITunes library (6.55G required, 6.98G available). which doesn't make sense as there is enough room according to the message

    How much space is your Other using? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
     Cheers, Tom

  • Applying subclass info to all the items

    Hi,
    We created a object class called "colors_and_font". (this object class changes the color and font of the items)
    We want to apply this object class to all the items (about 300 of them) in a single form.
    When I choose multiple items, and try to change the subclass on the property palate, it says 'Cannot edit this property for multiple objects".
    It is going to be a pain to do this to over 300 items.
    Is there any other way to apply the object class to the items?
    Thanks
    Munish

    I'm sorry, but i don't have any forms 6i-installation and its a long time since i last user it. So i don't know if its possible or not.
    There is one way to make it faster than using the property-palette. You can make an object in your object-library as "Smartclass". Then you can apply the object-class using the right mouse in the layout editor and simply apply that smartclass frm the context menu.

Maybe you are looking for