BBPSC04_ Disable auto conf and auto inv from SC check status

Hello,
I would like to disable the auto confirmation and auto inv buttons from the shopping cart check status only and the user should be able to do confirmation from Confirm goods/services.
kindly suggest how can we acheive this?
Thanks & Regards,
James

Hi
you can try ith BADI
BBP_SCREENVARIANT ( BUS2121) .
You can replace screen variant bbp_search_sc with your user defined screen variant YBBP_SEARCH_SC in the method of get_screenvariant_search.
Hope that you got it.
regards
Muthu

Similar Messages

  • Disable Conf and Create inv from SC status

    Hello Friends,
    when we go to the check status of the shopping cart, then under Action on the item level,  I need to disable the option of Creating Confirmations and create invoice functionality which is available in standard.
    Is there any possibility of doing it? Please advice.
    we are currently on SRM 5.0 SP11.
    Thanks & Regards,
    Kumar

    you should be able to achieve this via role authorisations.
    In PFCG change the standard or custom role you are using for employees
    eg.SAP_BBP_STAL_EMPLOYEE
    go to roles tab
    select single role SAP_EC_BBP_EMPLOYEE
    go to tab authorisations
    go to change
    go to BBP component
    change
    confirmations in EBP &
    Process invoices
    only allow display authority
    BR
    Dinesh

  • How can I continuously auto-save and auto-name the JPEG files with a controlled time interval

    Hi,
    I am newly involved in some Labview projects that out of my knowledge. I am trying to save multiple JPEG images from a live imaging task to a folder in the computer hard disk every certain minutes. I'd like to name these files with the date and time (eg. Img_06012011_1635. jpg).Then, after hours long image capturing, I can have all the image files in a neat order.
    My goal is to have the jpg files auto saved and auto-named with the data and time at that moment. I also need to control this waiting time between each savings.
    Could you please show me some hints about this? See the vi attached, I know I need to do something on the "write path" part on the up right corner. Thanks!
    Solved!
    Go to Solution.
    Attachments:
    capture.vi ‏28 KB

    Thanks, Steve. When I built up a path with the date and time info and send them to the WriteJPEG File.vi like you mentioned, it stopped saving any files into the folder. Do you think this is the problem from my while loop?Could you show me if there is any other secret functions that restrains the file saving?
    I am planning to save the image files every 30 secs,for example, and then I can have a bunch of jpg files with their unique names after hours long image acquisition.
    I appreciate you kindly help!
    Attachments:
    capture(updated).vi ‏29 KB

  • Would a 347 MB file be slow? Auto save and auto type turn off?

    I am doing an art inventory and add jpegs of the art. I don't resize them they range from 750k to 3MB. I guess if it is slowing the program down i should? It currently is 267 rows by about 18 columns.
    Thanks in advance.
    Oh can I turn off auto save and auto type? That may help. How do I do that?

    Done.
    Enter Scrip Editor
    paste the posted script
    File > Save > as Script  on the Desktop
    Move the script to the folder :
    Macintosh HD:Library:Scripts:Folder Action Scripts:
    CAUTION, you will be asked to enter your pasword.
    Create a folder to do the job. I named mine Normalized. I created mine on the Desktop where it's easy to reach.
    Go to :
    Macintosh HD:Library:Scripts:Folder Actions:
    Double click the alias :  Configure Folder Actions
    Below the left column, click
    navigate to select your new folder
    Below the right column, click
    select the script image - normalize400.scpt
    After that, drag and drop a picture file onto your folder.
    The original will be move in the folder Originals (isn’t it original ?)
    and a reduced copy  400 x height will be stored in the folder Normalized images.
    And now, here is the script :
    --{code}
    Image - Normalize
    This Folder Action handler is triggered whenever items are added to the attached folder.
    The script rotates the image counter-clockwise (left).
    Copyright © 2002–2007 Apple Inc.
    You may incorporate this Apple sample code into your program(s) without
    restriction.  This Apple sample code has been provided "AS IS" and the
    responsibility for its operation is yours.  You are not permitted to
    redistribute this Apple sample code as "Apple sample code" after having
    made changes.  If you're going to redistribute the code, we require
    that you make it clear that the code was descended from Apple sample
    code, but that you've made changes.
    modified by Yvan KOENIG (VALLAURIS, France)
    2011/12/08
    This version normalize pictures so that
    (1) the greater dimension become the width one (rotate left if needed)
    (2) this greater dimension is ruled by the property maxWidth defined below.
    property maxWidth : 400
    -- set it to fit your needs
    property done_foldername : "Normalized Images"
    property originals_foldername : "Original Images"
    property newimage_extension : "jpg"
    -- the list of file types which will be processed
    -- eg: {"PICT", "JPEG", "TIFF", "GIFf"}
    property type_list : {"TIFF", "GIFf", "PNGf", "PICT", "JPEG"}
    -- since file types are optional in Mac OS X,
    -- check the name extension if there is no file type
    -- NOTE: do not use periods (.) with the items in the name extensions list
    -- eg: {"txt", "text", "jpg", "jpeg"}, NOT: {".txt", ".text", ".jpg", ".jpeg"}
    property extension_list : {"tif", "tiff", "gif", "png", "pict", "pct", "jpeg", "jpg"}
    on adding folder items to this_folder after receiving these_items
              tell application "Finder"
                        if not (exists folder done_foldername of this_folder) then
      make new folder at this_folder with properties {name:done_foldername}
                        end if
                        set the results_folder to (folder done_foldername of this_folder) as alias
                        if not (exists folder originals_foldername of this_folder) then
      make new folder at this_folder with properties {name:originals_foldername}
                                  set current view of container window of this_folder to list view
                        end if
                        set the originals_folder to folder originals_foldername of this_folder
              end tell
              try
                        repeat with i from 1 to number of items in these_items
                                  set this_item to item i of these_items
                                  set the item_info to the info for this_item
                                  if (alias of the item_info is false and the file type of the item_info is in the type_list) or (the name extension of the item_info is in the extension_list) then
                                            tell application "Finder"
      --set name of this_item to "YK#" & (text -4 thru -1 of ("0000" & i))
                                                      my resolve_conflicts(this_item, originals_folder, "")
                                                      set the new_name to my resolve_conflicts(this_item, results_folder, newimage_extension)
                                                      set the source_file to (move this_item to the originals_folder with replacing) as alias
                                            end tell
      process_item(source_file, new_name, results_folder)
                                  end if
                        end repeat
              on error error_message number error_number
                        if the error_number is not -128 then
                                  tell application "Finder"
      activate
      display dialog error_message buttons {"Cancel"} default button 1 giving up after 120
                                  end tell
                        end if
              end try
    end adding folder items to
    on resolve_conflicts(this_item, target_folder, new_extension)
              tell application "Finder"
                        set the file_name to the name of this_item
                        set file_extension to the name extension of this_item
                        if the file_extension is "" then
                                  set the trimmed_name to the file_name
                        else
                                  set the trimmed_name to text 1 thru -((length of file_extension) + 2) of the file_name
                        end if
                        if the new_extension is "" then
                                  set target_name to file_name
                                  set target_extension to file_extension
                        else
                                  set target_extension to new_extension
                                  set target_name to (the trimmed_name & "." & target_extension) as string
                        end if
                        if (exists document file target_name of target_folder) then
                                  set the name_increment to 1
                                  repeat
                                            set the new_name to (the trimmed_name & "." & (name_increment as string) & "." & target_extension) as string
                                            if not (exists document file new_name of the target_folder) then
      -- rename to conflicting file
                                                      set the name of document file target_name of the target_folder to the new_name
                                                      exit repeat
                                            else
                                                      set the name_increment to the name_increment + 1
                                            end if
                                  end repeat
                        end if
              end tell
              return the target_name
    end resolve_conflicts
    -- this sub-routine processes files
    on process_item(source_file, new_name, results_folder)
      -- NOTE that the variable this_item is a file reference in alias format
      -- FILE PROCESSING STATEMENTS GOES HERE
              try
      -- the target path is the destination folder and the new file name
                        set the target_path to ((results_folder as string) & new_name) as string
                        with timeout of 900 seconds
                                  tell application "Image Events"
      launch -- always use with Folder Actions
                                            set this_image to open file (source_file as string)
                                            set {oldW, oldH} to dimensions of this_image
                                            if oldH > oldW then
                                                      set {oldW, oldH} to {oldH, oldW}
      rotate this_image to angle 270.0
                                            end if
                                            set |échelle| to maxWidth / oldW
                                            if |échelle| < 1 then scale this_image by factor |échelle|
      save this_image as JPEG in file target_path with icon
      close this_image
                                  end tell
                        end timeout
              on error error_message
                        tell application "Finder"
      activate
      display dialog error_message buttons {"Cancel"} default button 1 giving up after 120
                        end tell
              end try
    end process_item
    --{code}
    Yvan KOENIG (VALLAURIS, France)  jeudi 8 décembre 2011 21:25:33
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Auto keyframe and auto transition not working

    auto keyframe and auto transition not working and I have a creative cloud, in addition the auto keyframe works in the getting startel lessons....

    In order to use these you need to have the autokey frame and transition selected
    OFF   ON
    and have the first key checked then move the playhead to the new position and it should add the transition.
    Did you try this and it is not working?.

  • After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recorded files.

    After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recorded files.

    Try using one of these video players. VLC usually works with most files.
    Video Player - Divx
    Video Player – Flip4Mac
    Video Player - VLC

  • After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recordings

    After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recorded files.

    HI,
    In Message Menu > Preference > Accounts you should at least have the iMessage Account (Which is Enabled) and th Bonjour one that most likely is not.
    After that if you had iChat type AIM valid Screen Names or Jabber IDs in an earlier OS then the System Preferences > Mail, Contacts and Calendars should list them and have them set to be used with Messages.
    There is a vague chance that you have not set these up yet (you can do it in Messages or Mail, Contacts and Calendars)
    Once you have a t least one other "Account" other than th iMessage one in Messages then the Buddy List option will appear next to CMD and 1 in the Window menu list.
    NEXT
    If you go to the General Section of the Messages Preferences you can unlink several Buddy lists if you have them (By default they are shown as one gathered Buddy list)
    I Have several Accounts logged in (AIM valid and Jabber ones)
    Uploaded with Skitch!
    And I separate them in to individual lists which then gives me this in the Window Menu
    Uploaded with Skitch!
    8:06 PM      Thursday; August 2, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • My iPhone 4 is going auto off and auto on. Could you please help on this please

    my iPhone 4 is going auto off and auto on. Could you please help on this please

    iOS 8.1.3 is the latest version. There's nothing to download.

  • Difference Between Auto Lockbox and Auto Receipts......

    Hello All,
    Please expain me, What is the Difference Between Auto Lockbox and Auto Receipts?
    Regards,
    Muthu

    We would appreciate if you can add apps version ? and module name before posting in forum.
    Please check below links for you queries:
    Auto lockbox
    http://docs.oracle.com/cd/A60725_05/html/comnls/us/ar/lokbox.htm
    automatic receipts
    http://docs.oracle.com/cd/A60725_05/html/comnls/us/ar/autorc04.htm
    thanks

  • Please let auto-input and auto-login easier like IE

    Please let auto-input and auto-login easier like IE
    Yours and plug in are too hard to use
    You should let this function mount in advance like IE does

    Hello.
    If you want to know about the auto complete feature of Firefox, see this:
    https://support.mozilla.com/en-US/kb/Form+autocomplete
    If you need additional features, I'll be happy to point you to the right extension, or at least suggest you something.
    What problem do you have exactly with plugins?

  • "Auto stop" and "Auto Run" function exist?

    "Auto stop" and "Auto Run" function exist?

    many thanks...
    full of ????
    cracking this project issue...
    Attachments:
    AMK_solar monitoring system.vi ‏1451 KB
    datalogger.vi ‏26 KB
    Start.vi ‏22 KB

  • Auto Exposure and Auto Levels

    I have yet to figure out if it is possible to apply both auto exposure and levels to multiple images, and I do not mean lifting and stamping the same settings. If not this is #1 on my wish list.

    I initially thought this was a glaring omission from the beginning. However, these auto functions have such unpredictable effects on images that they really do need individual application and review anyway. Not being able to batch apply them just enforces good practice going image by image so that one doesn't wind up with a bunch of badly adjusted images. Adjusting similar images with lift and stamp is more prudent though deserving of individual review as well.

  • Auto-Save and Auto-Recovery

    I hope the is a differnence between auto-save (as listed in you document properties) and Auto-Recovery (as set in Prefs). I would like some "protection" but I don't want flash saving over my file unless I tell it to save. I got burn last night while "experimenting" and and did a "revert" only to find that flash had saved over my file, what a pain.  I went to find the "recovery" file only to not find one anywhere. My search on the net are conflicted with wheather or not these 2 features are the same. In my case both items where checked and both set to 10min (the default). soooo....
    Please tell me that Auto-Recovery is different, is that it doesn't save over my file, ie it keeps a real back-up someplace, AND where i can find this "recovery" file. ?
    This feature seems strange, why not do a std auto back-up to a user selected number of versions in a user selected location ?
    Thanks
    Joel

    Thanks. After poking around for a while I kinda figured this out. I was just glad to find out I could get some kind of "back-up" function from Auto Recovery, because "Auto Save" is a nightmare. I can't understand where anyone would want to use this feature at all. Anything that saves over what your working on before your ask for the file to be saved is looking for trouble. I found it out the hard way. I had "auto Save" on and after messing around trying a few different things, none of which worked or I liked, I thought I would simply close and re-open the original file only to find "auto save" had saved over my original file. I can't see any place where this feature would be anything but a pitb. If they want a auto save feature it should be saving versions of the original (up to a user specified number of instances) in the seperate folder. Never under any curcumstances should the original file be saved over unless the users presses SAVE. Auto recovery would be more useful if it didn't erase everytime you restarted the app. Flash needs to look at the back-up and versioning systems that AE and PPro use.
    It's one of those things that bother you about the whole "suite" concept. Adobe owns all these apps and while some of them do play well together to an extent, for the most part it is still a collection of indiviuals. While there have been some changes to get the "look" of the apps to be close, the actual functioning of the UI in the differnt apps isn't where it needs to be. There needs to be a Suite "czar" that makes all the apps do std UI things the same using the same keys etc. for example AE, PPro, Flash, Photoshop, fireworks, all use different keys to zoom in/out or of your image/stage/comp/viewer/monitor window ie main workspace or to enable the mouse "wheel" for zooming.  PPro still refuses to use the spacebar to toggle the hand tool like every other "suite app". anyway. a std system for back-up and versioning is need across the suite.
    thanks
    Joel

  • HT4111 Does anyone know how I can restore spell correct, auto correct and auto cap which was lost when I paired my Apple Bluetooth keyboard with my iPAD3?

    Lost AUTO CORRECT, AUTO CAP and SPELLING CHECK after connecting my Apple Bluetooth keyboard to my iPAD3, updated to iOS 6.1.3, didn't I?. The lost features are in the on  position in settings, aren't they? Anybody out there with a remedy?

    Read this ASC discussion that I found by using Google. I don't know if you have seen and if you haven't, it's worth a look.
    https://discussions.apple.com/thread/4683321?start=0&tstart=0

  • ThinkPad W520: Parts Wrongly Listed in and/or Missing from Lenovo Order Status Page

    I ordered a configured ThinkPad W520 off Lenovo.com for USD1500 yesterday.  Later when I went back to check my order status, to my surprise some parts were either shown up incorrectly or simply missing.
    For example my ThinkPad W520 includes (but not limited to) these parts:
    Parts missing from Lenovo Order Status page:
    UltraNav with TrackPoint & touchpad
    Express Card Slot & 4 in 1 Card Reader
    Question: Where are they? Why missing?
    Parts shown incorrectly on Lenovo Order Status page:
    I've ordered: 15.6" FHD (1920 x 1080) LED Backlit Anti-Glare Display, Mobile Broadband Ready
    Lenovo Order Status page shows: SBB 15.6FHD (1900 X 1080) LED
    Question: Why 1900 instead of 1920? What gives?
    To be on the safe, I tried hard to match each of the parts consisting my ThinkPad W520. So far the above are my concerns. I know many of you are long-time Lenovo patrons. I'd appreciate your patience look through the below complete lists and advise if Lenovo indeed have received my order correctly.
    Thank you very much!
    [B][U]The ThinkPad W520 I've order: [/U][/B]
    Part Number: 4270CTO
    ThinkPad W520 - 1 Yr Depot Topseller Warranty
    Processor: Intel Core i7-2720QM Processor (2.20GHz, 6MB L3)
    Operating system: ThinkPad PC DOS License
    Operating system language: PC DOS 2000 License
    Display type: 15.6" FHD ([B][COLOR="SeaGreen"]1920 x 1080[/COLOR][/B]) LED Backlit Anti-Glare Display, Mobile Broadband Ready
    System graphics: NVIDIA Quadro 2000M Graphics with 2GB DDR3 Memory
    Total memory: 4 GB DDR3 - 1333MHz (1 DIMM)
    Keyboard: Keyboard US English
    Pointing device: [B][COLOR="SeaGreen"]UltraNav with TrackPoint & touchpad[/COLOR][/B]
    Camera: 720p Camera
    Storage subsystem: Internal RAID - Not Enabled
    Hard drive: 320 GB Hard Disk Drive, 7200rpm
    Optical device: DVD Recordable
    System expansion slots: [B][COLOR="SeaGreen"]Express Card Slot & 4 in 1 Card Reader[/COLOR][/B]
    Battery: 9 cell Li-Ion Battery - 55++
    Power cord: Country Pack North America with Line cord & 170W AC adapter
    Bluetooth: Bluetooth 3.0
    Integrated WiFi wireless LAN adapters: Intel Centrino Ultimate-N 6300 (3x3 AGN)
    Integrated mobile broadband: Integrated Mobile Broadband - Upgradable
    Language pack: Language Pack US English
    [B][U]ThinkPad W520 shown under Lenovo Order Status:[/U][/B]
    4270CT       CONFIGURED SYSTEM
    0A68541       SBB ICI7-2720QM                        
    27R1799       VBB PC DOS LICENSE                        
    39T7676       SBB DOS 2000 FLYER - NO                        
    0A68535       SBB 15.6FHD ([B][COLOR="Red"]1900 X 1080[/COLOR][/B]) LED                        
    0A68894       SBB NVQ2000M GR                        
    45M4572       VBB 4GBPC3-10600DDR3 1333SODMM                        
    45M4839       SBB KEYBOARDUS ENGLISH                        
    0A68527       VBB NO FINGERPRINT READER                        
    0A68558       SBB 720P HD CAM INT MICR                        
    0A69620       SBB I RAID-NOT EN                        
    0A68552       SBB 320GB HDD7200RPM                        
    0A71939       SBB DVDRECORDABLE                        
    0A68529       VBB ECS+4IN1CR                        
    45M4816       SBB 9CELLLI-ION BATTERY                        
    0A68904       SBB CPNAMLC+ 170W AC AD                        
    0A68261       SBB BLUETOOTH 3.0                        
    45M4804       SBB IN.CENT.ULTIMATE-N 6300                        
    44C7950       SBB INT WRLSSWDAREANTWRK UPGR                        
    0A68564       SBB LANG PCK US E

    you are right, this is very silly! ")
    W520 4270CTO i7-2820QM Quadro2000M 1920x1080 Display 16GB RAM 2x240GB Intel 510 SSDs (RAID 0) - BIOS 1.42 - PCMark7:4,568
    Samsung Series 9 15-inch NP900X4C-A03US - PCMark7: 4674

Maybe you are looking for

  • Windows 8 Recovery USB causes UEFI error: "Grub error: Can't find gpt 7" [FIXED]

    Hello everyone, Here is my situation.  I had a dual boot setup on my toshiba S855D (Win 8/Ubuntu 12.10).  After a few months my win 8 install was giving me strange errors.  I decided to do a full reinstall using the recovery USB I made. (I had reinst

  • How to reinstall OS X? Disk Utility error. HELP!

    My iMac failed start up normally so I have to enter the recovery mode (by holding the option key or command+R). After researching online, I found my mac might have been corrupted. So I tried to use the first aid option in disk utility to verify and r

  • SR1 Trial version - Runtime error in Webdypro application

    Hello Experts, I have installed SR1 Netweaver trial version on my Laptop. It's running on xp professional. I get following error when I run a webdynpro application. I found a thread with similar error but I am not sure what I need to put in my host f

  • Set Form To Query Mode When Particular Window Activated

    I have a form with multiple windows. I have one window that when activated I want the form to be in query mode. This window functions as a more user-friendly search method. So when the user enters the window it will be in query mode, they will be abl

  • Problem updating software

    Is there a problem with the I tunes store at the moment. I'm trying to update to 4.3.4 on my phone to stop a large app download but it can't connect through my I tunes? Can you stop a download part way through without the update?