Freight Redetermined Pop UP needs to be restricted

HI,
Whenever we make any changes to Item details of an order relavant to freight there comes a pop up "Freight Redetermined". This popup comes for each and every material in which changes have been done. Suppose there are 20 line items and i have changed Incoterm for 10 line items than "Freight Redetermined" pop up comes 10 times, but i want that it should come only once for all this 10 line item changes.
Please advise how this can be achieved.
Thanks,

Hi,
If your requirement is to pop-up only once then you need to do mod. in FV45KFKD_VBKD_PRICING which is a standard program.
Thanks,
Krish.

Similar Messages

  • Adobe Flash player (I ran scan & got "You have version 9,0,45,0 installed") works on internet explorer emails, BUT it does not work using firefox keeps giving me a pop up need Flash 9 or higher.

    I have Adobe Flash player 9 or higher (I ran your scan-You have version 9,0,45,0 installed) and it always works with Internet Explorer emails BUT every time I click to open incoming email I get a pop up "need to install flash 9 or higher". What can I do? Can I get rid of it? It only happens in internet mail.
    Pat

    Visit [http://get.adobe.com/flashplayer/ this Adobe page] with both browsers to update your Flash version; Firefox uses a different install than IE, so having one doesn't mean you have the other.

  • Need help in restricting a result set from a UNION in MERGE

    Hello,
    Would really appreciate if anybody could help me out with the issue I am facing with the below statements (I am new to Oracle ):
    merge into table_name_1 p
    using
      select p_key, value_1, value_2
      from some_tables
      UNION
      select p_key, value_1, value_2
      from some_tables
      UNION
    )t
    on (p.p_key = t.p_key)
    when matched then
      update table_name_1 with value_1 and value_2
    when not matched then
      insert table_name_1 with p_key, value_1, value_2;
    Now, the union of all those selects gives me distinct values and it works most of the times but when I get values like below, the merge fails:
    p_key-----value_1-----value_2
    100-----25-----50
    100-----NULL-----50
    I browsed the net and understood the reason behind this: the result set becomes ambiguous and merge doesn't know which row to insert first and which one to update.
    Now, my requirement is: I could have any of the below scenario/result sets from the union and I need only 1 row per p_key -
    result_set_1
    p_key-----value_1-----value_2
    100-----25-----50 ***************need this row
    100-----NULL-----50
    100-----NULL-----NULL
    result_set_2
    p_key-----value_1-----value_2
    100-----25-----NULL ***************need this row
    100-----NULL-----NULL
    result_set_3
    p_key-----value_1-----value_2
    100-----25-----NULL ***************need this row (p_key = 100)
    100-----NULL-----NULL
    200-----NULL-----75 ***************need this row (p_key = 200)
    200-----NULL-----NULL
    300-----90-----95 ***************need this row (p_key = 300)
    So, I basically need a way to restrict the values that I will get from the UNION of all those selects to fit the requirement above, hope I was able to explain the issue I am facing.
    Any help would be greatly appreciated.
    Thanks,
    Dpunk

    In all cases the goal is to find an order by value that will make the row you want be first.
    The query I gave is calculating a priority for each row by adding up values showing whether each column is null or not null. The case statements check whether each column is null and need to be added up to give a total priority value.
    Value_1   Value_2   Priority
    Not Null  Not Null  2 + 1 = 3
    Not Null  Null      2 + 0 = 2
    Null      Not Null  0 + 1 = 1
    Null      Null      0 + 0 = 0
    The priority value ends up being a bitmap showing whether each value is null or not null. I think that reflects my mathematics background.
    Another way of getting the same result (suggested to me by your asking why it needs the "+") would be to use two CASE expressions as separate order by items:
    select p_key, value_1, value_2 from
    (select p_key, value_1, value_2, row_number() over
              (partition by p_key
               order by case when value_1 is null then 0 else 1 end DESC,
                        case when value_2 is null then 0 else 1 end DESC
              ) as rn
      from (your UNION query here)
    where rn = 1
    A third way is to use a more complex case statement:
    select p_key, value_1, value_2 from
    (select p_key, value_1, value_2, row_number() over
              (partition by p_key
               order by case when value_1 is NOT null and value_2 is NOT null then 1
                             when value_1 is NOT null and value_2 is     null then 2
                             when value_1 is     null and value_2 is NOT null then 3
                             when value_1 is     null and value_2 is     null then 4
                         end  ASC
              ) as rn
      from (your UNION query here)
    where rn = 1

  • Logon via pop up needs to be disabled

    Hi,
    We are using SRM 5.0 and EP 7.0 sp10, and we currently have the logon via pop pop up enabled on SRM, but we dont want it and want to turn it to the normal logon, so we can enable single sign on it, so please advice.
    All help is appreciated and rewarded.
    Thanks,
    Swetha

    Hi,
    If your requirement is to pop-up only once then you need to do mod. in FV45KFKD_VBKD_PRICING which is a standard program.
    Thanks,
    Krish.

  • Need help in restriction when Char is used as a variable and still need to

    hi masters,
          As far as i know we cant restrict on the char if it is used as a variable.. But here is the scenario..the version is 3.1C and i need to restrict based on the plant l and they need plant as a variable but still need to restrict by values (2456, 5060). so is there any operation that we can go ahead and restrict the char in the query using the same as a variable..As far as i know its not possible..but please help me if any one have other steps...thanks in advance

    Hi Neel,
             Well, here is the descr... I need to restrict on those two plants ( 2456, 5060) and i dont want to see the data of these two plants completely under 0Plant char. But there is a variable and according to the req the variable should be there and these 2 plants data shouldnt be displayed in the report.. and when i try to restrict and exclude the above two plants i am getting this below error...
    Variable '0S_PLANT' is complex('selection Option' and 'query' type). You can not use any other enties in this selection..
    So my req is there is a variable on 0plant and i need to restrict and exclude the values (2456,5060) and the data shouldnt be visible for these 2 plants.. i tried and i couldnt restrict as of the error when the variable is there...Can any one please help me out this...

  • My email went straight onto my iPad and not my outlook pop account,need emails on both

    All of my emails have been going onto my iPad today and not on my pc outlook pop account,how do I get those emails onto my outlook account?? I need a copy of my emails on both my iPad and pc

    Hey there palmierl,
    Welcome to Apple Support Communities.
    It sounds like there’s an issue sending and receiving emails from your Gmail account on your iPad. Take a look at the article linked below, the troubleshooting suggestions it provides will likely resolve the issue.
    Gmail account cannot get or send email in iOS - Apple Support
    Cheers,
    -Jason

  • HT201320 i get a pop up "this iphone is restricted from creating mail accounts" ??

    My new Iphone keeps popping up a message on my email "This Iphone is restricted from creating mail accounts" what canI do ?
    under setting is does not let me select the "add account" or "fetch new data".

    I had to completely disable all restrictions and then re-enable.  General>Allow Changes>Accounts>Don't Allow Changes created the issue.

  • POP UP needed for an ERROR while performing an action

    Hello Experts,
    I need your help in creating a pop up for an error that occurs while performing an action and the value for a certain field in an infotype is incorrect. Right now the error just gets displayed in the bottom of the screen. Immediate responses would be highly appreciated!

    check here http://scn.sap.com/community/erp/hcm/employee-self-service/blog/2013/12/02/how-to-show-pop-up-s-in-wda-hcmpf http://scn.sap.com/thread/3497688

  • Firefox wont start "XPCOM" message pops up, need my user and passwords!!??

    My window 7 wasn't starting up properly so I did a system restore and now firefox wont start a message pops up stating "XPCOM" and I googled it and everything is telling to reinstall Firefox. I don't wont to reinstall it just yet because I need my passwords and username back. I cant find a solution on the forums either, or if there is I haven't found it or I simply didn't understood the solution itself. Please get back to me asap
    thank you!

    This usually happens because of a failed Firefox update that left you with a mixture of old and updated files in the Firefox program folder.
    Do a clean reinstall and delete the Firefox program folder before (re)installing a fresh copy of the current Firefox release.
    *Download the full Firefox installer and save the file to the desktop<br>https://www.mozilla.org/en-US/firefox/all/
    If possible uninstall your current Firefox version to cleanup the Windows registry and settings in security software.
    *Do NOT remove "personal data" when you uninstall your current Firefox version, because this will remove all profile folders and you lose personal data like bookmarks and passwords including data in profiles created by other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other personal data are stored in the Firefox profile folder and won't be affected by an uninstall and (re)install, but make sure NOT to remove personal data when you uninstall Firefox as that will remove all Firefox profile folders and you lose your personal data.
    If you keep having problems then also create a new profile.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • I keep getting a Icloud pop that needs my password and it won't go away. How can I fix this?

    I keep getting the pop up message: "Photo Stream- Photos for the iCloud account .....cannot be accessed. Review your account information in System Preferences". It just keeps popping up over and over and over again and every time I try enter my password or try to reset my password it says it is incorrect. I've reset my password so many times now and it never takes. If I sign out of iCloud will any of my photos be deleted on my Macbook? When I try to sign out, it threatens me that it will delete any photos that have not been uploaded to the cloud. I think it has become self aware. Apple...is Skynet...anyway, what in the wide world of sports can I do to get this (!*$^# pop up to go away?!?!?! I'm starting to think my warm, happy family photos aren't worth this fiendish pop up.

    I have the same issue. My computer has also slowed down. I hope this isn't a malware. I haven't input my password into it, and dont know what I did to turn this on.
    Hope someone else can give some insight

  • Mail & SpamSieve - how to delete spam on server too (POP) - option needed

    I am using the newest Mail (2.0.7), Mac OS X (10.4.6) and SpamSieve (2.4.3).
    I access my mail through POP. SpamSieve moves junk mail to the Spam
    folder, from where I delete it (move to Trash, and empty trash (erase deleted messages in all accounts). Still I find my junk mails in my account on the mail server, eg when using mail through the web.
    Before, I used Eudora with SpamSieve, and it would delete the junk mail on the server too (actually immediately on detection).
    How do I accomplish that with Mail and SpamSieve?
    TIA
    Marc
    (PS I do want to keep the good mail on the server, at least for some time.)
    Barry Margolin in comp.sys.mac.system:
    I don't think there's a way to do this. Preferences->Accounts->Advanced
    has a menu with choices of when to remove messages from the server, but
    "When erased on client" is not one of the choices. The closest is "When
    moved from Inbox".
    Too bad "When erased on client" is not present - it should be (Apple, are you listening?)
    Marc
    12" PB G4/1.2GHz- Mac Book Pro - 12" iB G3/500 MHz - PowerMac G4/450 MHz   Mac OS X (10.4.6)  

    I don't know how SpamSieve works, but I'm pretty sure it has no bearing on this. The problem is that Mail doesn't have the option to remove mail from the server when it's deleted locally, and thus, there is no way to automatically remove only undesired mail from the server.
    The article you've quoted is correct. The closest you can get to what you (and others) want in Mail is to remove messages from the server when moved from Inbox, because that's the only option available in Mail to remove messages from server using a criterion other than the time they've been there. In my case, that's not an option, because I keep all mail organized in custom mailboxes, leaving in Inbox unread messages only.

  • IMAP vs Pop advice needed

    Hello everyone
    I am trying to get my head around IMAP and need some advice...
    I currently have five mailboxes from two providers all of which I administer via Apple Mail on my Macbook via pop3 / smtp.
    I recently bought an iPhone and need access to my mail via this on the go as well as my Macbook. It has been suggested that I use IMAP. Both providers have IMAP settings to administer my email. I understand that it's essentially server based mail so whichever device communicated with the IMAP server affects the email globally.
    I have a few questions...
    I have several thousand emails which I need to keep - these are currently stored on my Mac in the 'on my Mac' folders. I have around 60 folders for various requirements. I understand that if I use IMAP this can continue and I can drag the email from my inboxes to these storage folders as per usual. When I drag an email to storage in this way using IMAP - does it then disappear from the IMAP mail server so it will not be seen by any other computer collecting mail?
    Also I need most of my sent mail - I often have to search back for information etc... Currently these are stored in my sent mail folders in Mail. How would this work with IMAP - are the sent mail folders in Mail storage folders as per those 'on my Mac' or would they be sync'd with the sent mail folders on the IMAP servers?
    What would be the recommended way to set things up so I can carry on accessing / storing my email as I do currently - but with access / syncing ability using my iPhone?
    Thanks!

    Take a look here, these pages might answer your questions:
    http://en.wikipedia.org/wiki/IMAP#AdvantagesoverPOP3
    http://docs.info.apple.com/article.html?path=Mail/2.0/en/ml944.html
    http://docs.info.apple.com/article.html?path=Mail/2.0/en/ml943.html
    Do not delete your POP3 account on your local machine at this point of time. If you have set up this account to delete all mail on the server after fetching this would result in a loss of all your emails.
    Create local folders. Move all mails you still need to the local folders. When you are sure you have all important mails stored in local folders, delete the POP3 accounts on all devices. Set the account up as IMAP on all devices. Then create IMAP folders (if you need) and move all messages back from the local folders to the IMAP folders.

  • HT201304 I need unlock the restrictions and it is hard to unlock it

    I cannot go to put the App Store back because the  restriction is on lock which I can't not unlock the restrictions and it is difficult

    Forgotten RESTRICTIONS Passcode
    - Restore from a backup that was make before you added the Restrictions passcode. If you restore from a backup made with the Restrictions passcode the Restrictions passcode is also restored. Place the iOS device in Recovery Mode if necessary to allow the restore.
    - Restore to factory settings/new iPod. . Place the iOS device in Recovery Mode if necessary to allow the restore.   

  • Need help -To Restrict Huge temp file, which grows around 3 GB in OBIEE 11g

    Hi Team,
    I am working on OBIEE 11.1.1.5 version for a client specific BI application. we have an issue concerning massive space consumption in OBIEE 11g installed linux environment whenever trying to run some detail level drill down reports. While investigating, we found that whenever a user runs the drill down report a temp file named nQS_xxxx_x_xxxxxx.TMP is created and keep's growing in size under the below given folder structure,
    *<OBIEE_HOME>/instances/instance1/tmp/OracleBIPresentationServicesComponent/coreapplication_obips1/obis_temp/*
    The size of this temp file grows huge as much as around 3 GB and gets erased automatically when the drill down report output is displayed in UI. Hence when multiple users simultaneously try to access these sort of drill down reports the environment runs out of space.
    Regarding the drill down reports:
    * The drill down report has around 55 columns which is configured to display only 25 rows in the screen and allows the user to download the whole data as Excel output.
    * The complete rows being fetched in query ranges from 1000 to even above 100k rows. Based on the rows fetched, the temp file size keeps growing. ie., If the rows being fetched from the query is around 4000 a temp file of around 60 MB is created and gets erased when the report output is generated in screen (Similarly, for around 100k rows, the temp file size grows up to 3 GB before it gets deleted automatically).
    * The report output has only one table view along side Title & Filters view. (No Pivot table view, is being used to generate this report.)
    * The cache settings for BI Server & BI Presentation services cache are not configured or not enabled.
    My doubts or Questions:
    * Is there any way to control or configure this temp file generation in OBIEE 11g?
    * Why the growing temp file automatically gets deleted immediately after the report output generation in screen. Is there any default server specific settings governing this behaviour?
    * As per certain OBIEE article reference for OBIEE 10g, I learnt that for large pivot table based reports the temp file generation is quite normal because of huge in-memory calculations involved . However we have used only Table view in output but still creates huge temp files. Is this behaviour normal in OBIEE 11g. If not, Can any one Please suggest of any specific settings to be considered to avoid generating these huge files or atleast generate a compressed temp file.
    * Any other work around solution available for generating a report of this type without the generation of temp files in the environment?
    Any help/suggestions/pointers or document reference on this regard will be much appreciated. Please advice
    Thanks & Regards,
    Guhan
    Edited by: 814788 on 11-Aug-2011 13:02

    Hello Guhan,
    The temp files are used to prepare the final result set for OBI presentation server processing, so as long as long you dataset is big the tmp files will be also big and you can only avoid this by reducing your dataset by for example filtering your report.
    You can also control the size of your temp files by reducing the usage of the BI server.I mean by this if you are using any functions like for example sorting that can be handled by your database so just push to the DB.
    Once the report finished the BI server removes automatically the tmp files because it's not necessary anymore.you can see it as a file that is used for internal calculations once it's done the server gets rid of it.
    Hope this helps
    Adil

  • Whey I Plug in my ipod i tunes did not pop up need help please

    Please help

    If your iPod is under warranty (less than one-year old), yes, you can contact Apple tech support.  Or, if there is an Apple Store nearby, you can make a reservation at the Genius Bar (which is Apple tech support at Apple Stores).
    When you connect it, are there any other devices connected to other USB ports on the computer?  Is the iPod connected directly to the computer (not to a USB hub)?  You may want to try disconnecting everything, except for a standare mouse and keyboard (if used), and connect the iPod to a direct USB port on computer.
    Also, is this the first time you are connecting this iPod to this computer, or did this work before and now has stopped working?

Maybe you are looking for

  • HomeFusion 3 Days down and counting (My experience with HF)

    I live approx 5 miles outside of Columbia MO.  The VZ website show my address as qualifying for HF (not sure if I'm in extended though) so I order it in Oct 2012.  Installer came out and spent 4 hours running wire and looking for the strongest signal

  • ITunes update affecting keyboard?

    Asked this in the MacBook Air community but thought I'd try for answers here too.. Got a new MBA today, turned it on and updated everything (iTunes 11.2.2) only to discover that the play/pause and skip keys don't work, and all the other are fine. Spe

  • Why doesn't request desktop website work?

    I installed the Firefox beta on my Nexus 7. The Request Desktop site option is present, but not on a More option under settings, but rather at the root directory. I did check this box, but when I go to sites...cwtv.com and www.espn.go.com beihg examp

  • ORA-12154: TNS:could not resolve the connect identifier

    I am simply trying to move a site from a Windows 2003 32bit server to a Windows 2008 R2 64-bit. The database was on and is remaining on the 2008 server. Trying to run the new site results in: ORA-12154: TNS:could not resolve the connect identifier Th

  • Export Multi-artboard filename without prefix slash

    My mac OS version is OS X 10.10.2. Since i update the Illustrator from cc to cc2014, when i export multi-artboard images, the artboard image filename will be automatic added a slash mark in the first character position, like "/someprefix_artboardname