User Exit that will allow the SAP program to create DN, but not create IDO

Hi all,
The requirement is when we select 1 PO in VL10g transaction and click the u201CBackgroundu201D button, the user exit will allow the SAP program to create Delivery Number, but not create IDOC for the Delivery Number to send it to warehouse system.  Also the created Delivery Number must be in changeable mode in ECC system .I need to find any exit to make the DN table field LIKP-VLSTK not to be u201CBu201D (distributed).  The B will make DN not changeable in ECC system which is hard coded value in standard program. so the DN should be changeable.
Please suggest me the User Exit name which serves my purpose.
Thanks in advance
Latha.

Welcome to SCN!
Here is some code that will allow you to find exits and BADIS on your own:
[Code To Find BAdi|https://wiki.sdn.sap.com/wiki/display/ABAP/CodeToFind+BAdi]
Rob

Similar Messages

  • Hi All,i am currently working on a flex application that will allow the user to change the language

    Hi All,i am currently working on a flex application that will allow the user to change the language within the application from english to Japanese and vice versa. And everything works fine.
    I am using flex 4.5
    We allow the user to save records with english or japanese texts.
    problem
    When the user manually enters Japanese text and tries to save it the record defaults back to the default name (which is in english). But if you copy the entered text and paste it and then save it.It works fine.
    Any idea , why this is happening?
    Please let me know if the question is not clear.
    Looks like there was already a bug
    https://issues.apache.org/jira/browse/FLEX-28894?page=com.atlassian.jira.plugin.system.iss uetabpanels:all-tabpanel
    Not sure why does it say , Resolved .
    -KB
    Message was edited by: bKartik.b

    By Payal integration , you mean paypal button html ? or payment gateway setup etc ? If its a gateway configuration for your site domain then single page for all layout will work , but if you are using button code for all renditions then you would need to create separate pages for all.
    Thanks,
    Sanjit

  • User exit that runs at the start of VF01

    Hello ABAP gurus,
    Forgive me if this question seems stupid but I'm very new to user exits. In fact this is my first time handling one. I need to find the <b>user exit that runs at the start of VF01</b>. In that user exit I need to put some authorization checks and if they're not met the user won't be allowed to continue to run VF01 (VF01 must exit).
    <i>When user runs billing (transaction code VF01), I need to insert an authorization object V_LIKP_VST. If they have access to that plant (VSTEL), then they can proceed to run the transaction. If not, they should be rejected or forced to exit VF01. So the trick here is find that user exit that runs at the start of VF01.</i>
    Thanks.

    Hi Carl
      Please see if you can use BADI: <b>BAPI_SD_BILLING_ITEM</b>.
      Alternatively, you can try with Routine: <b>USEREXIT_FILL_VBRK_VBRP</b> in include: <b>RV60AFZC</b> to add the authorization check.
    Kind Regards
    Eswar
    Message was edited by: Eswar Rao  Boddeti

  • I was told of an application that will allow the use of a second screen to view my data and files, but I forgot its name. I'd like to make the connection because my LCD is broken.

    I was told of an application that will allow the use of a second screen to view my data and files, but I forgot its name. I'd like to make the connection because my LCD is broken.

    You don't need an application, just plug a compaitble monitor into the display port of your MacBook Pro, set the screen up in System Preferences>Displays

  • I have a "company provided Ipad" now using IOS 6.1.3.  the company Will allow me to upgrade to IOS 7 but not to IOS 8.  Is that possible?

    I have a "company provided Ipad" now using IOS 6.1.3.  the company Will allow me to upgrade to IOS 7 but not to IOS 8.  Is that possible?

    No, since the iPad 2 is iOS 8 compatible it can only be updated to iOS 8.  Apple does not support upgrading to interim iOS versions, and removes those files from the servers when a new version is released.  The only path for that iPad 2 is iOS 8.0.2.

  • How to create a form that will allow the applicant to upload their photo

    I have Adobe Acrobat 9 Pro Extended and I know how to create forms that require text input.
    How to create a form that will allow the applicant to upload their photo? I alo wish to know how to upload a photograph so that I can test the form I created.
    Thank you
    Adrian Watts

    test@ORA10G> with x as (
      2    select '234-1111' as customer, to_date('2-Jan-2008','dd-Mon-yyyy') as call_date, 'Order product' as reason from dual union all
      3    select '234-1132', to_date('3-Jan-2008','dd-Mon-yyyy'), 'Request info' from dual union all
      4    select '231-1154', to_date('4-Sep-2007','dd-Mon-yyyy'), 'Request info' from dual union all
      5    select '234-1111', to_date('2-Nov-2007','dd-Mon-yyyy'), 'Order product' from dual union all
      6    select '234-1132', to_date('9-Jan-2008','dd-Mon-yyyy'), 'Request info' from dual union all
      7    select '231-1154', to_date('9-Sep-2007','dd-Mon-yyyy'), 'Request info' from dual union all
      8    select '234-1111', to_date('5-Dec-2007','dd-Mon-yyyy'), 'Order product' from dual union all
      9    select '234-1131', to_date('7-Dec-2007','dd-Mon-yyyy'), 'Request info' from dual union all
    10    select '231-1154', to_date('1-Sep-2007','dd-Mon-yyyy'), 'Request info' from dual union all
    11    select '234-1111', to_date('8-Jan-2008','dd-Mon-yyyy'), 'Order product' from dual union all
    12    select '234-1131', to_date('3-Dec-2007','dd-Mon-yyyy'), 'Request info' from dual union all
    13    select '231-1154', to_date('4-Nov-2007','dd-Mon-yyyy'), 'Forward to Sales' from dual)
    14  --
    15  select customer,max(call_date), reason
    16  from x
    17  where reason = 'Request info'
    18  group by customer, reason;
    CUSTOMER MAX(CALL_ REASON
    231-1154 09-SEP-07 Request info
    234-1131 07-DEC-07 Request info
    234-1132 09-JAN-08 Request info
    test@ORA10G>
    test@ORA10G>pratz

  • How can I creat a control button that will allow the vi to run?

    Instead of pressing the run button, I want to creat my own run button that will allow my vi to run.
    Any idea?
    Thank you

    First you need to set the VI to Run When Opened (VI Properties>Execution). Then you create a front panel Boolean. On the diagram what you need to do is have some sort of idle state where nothing is done until the Boolean is pressed. It could be a separate while loop that doesn't exit until the Boolean is pressed, an Event Structure, or as part of a state machine. Look at the shippings examples Queued Message Handler, New Event Handler, Using Buttons for Options to name just a few.

  • Is there a video editing app for ipad that will allow the adjustment of the speed of a clip?

    I'm trying to speed up/slow down clips in a project on iPad, which, I have found, iMovie does not allow you to do. Is there another app that will allow me to do so?

    You can't do anything in the background of iOS. Apps are still one at a time (with a few exceptions like Music), and suspend when the app is closed. It's also against the App Store guidelines to sell apps that would allow such actions.
    Though, maybe you could get your Voice Memos saved to MP3's, which can play in the background of other apps.

  • TS1717 What do I have to do to keep the iTUNES program on my computer BUT NOT RUNNING on Start UP? It requires too much CPU usage on my old computer.

    What do I have to do to keep the iTUNES loaded as a program on my computer BUT NOT RUNNING on Start UP? Just opening when I want to use it.
    It requires too much CPU usage on my old computer.

    You can check you Adobe account online to see if the serial number is registered under your account.  If not then your only option will likely be to contact Adobe Support directly thru chat to see if they can provide you with a/the serial number. For them to do so will require you being able to prove ownership.
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • HT1203 1 computer w/ a guest account & my account.  Want to be able to allow the guest access to video/music but not to be able to change my library what is the best way to do this?

    I have a PC I use at my vacation house.  Need to know if there is a way to allow the guest account to have access to my iTunes library so that they can listen to music and/or watch movies either on the PC or streaming to my AppleTV.  I just don't want them to be able to delete or change what I have set up.  Is this doable? 

    I'm not 100% sure on how this works on a PC, but I would be surprised if it was different from OS X.
    There is a possibility in iTunes, by having two user sessions active :
    Login to one of the "regular accounts" (one that has full access to the iTunes library"). In iTunes, allow it to share all/some of its library.
    Now, keep iTunes running, and just login to the guest account. (=> the existing session is not closed !)
    In iTunes, you will find under shared music the iTunes (server) running on the other account, and it will stream whatever you have allowed to share from the account above.
    People using this guest account will have "read-only" access to whatever you wished to be shared, and cannot change any (meta)data.
    (only minus : need to keep one session running in the background)

  • How do I convert a document as a fillable pdf that will allow the end user to save?

    When I convert a Word document into a PDF fillable file, the end user cannot save their file. How to I make the file savable for the end user?

    Hi TinaEllis,
    Is your end user using Reader to fill out the PDF form? If so, the PDF needs to be Reader enabled. Please see Adobe Acrobat X Pro * Enable Reader users to save form data.
    Please let us know if you have additional questions.
    Best,
    Sara

  • Is there anything available that will allow the iPad to be read in direct sun?

    Not being able to view or read the iPad in direct sunlight is the only con.  Is apple working on a way to alleviate this problem?

    Hi, my company has created a new product that allows one to view and read the iPad in direct sunlight:
    Hoodi™ magnetic shades for the iPad® and iPad mini.
    Hoodi™ magnetic shades provide iPad privacy and overheating protection in direct sunlight too.
    Please check our product out at:
    http://www.hoodivision.com
    Thank you,
    Mike
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Is there a setting in Firefox's about:config page that will allow the Bookmarks Drop Down Button to show while the Menu Toolbar is visible?

    I understand that someone asked a very similar question in this post: https://support.mozilla.org/en-US/questions/977490?esab=a&as=aaq but I want to accomplish my goal without adding another addon or extension to my browser.

    Add code to the userChrome.css file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #bookmarks-menu-button,
    #bookmarks-menu-button-container { display:-moz-box !important; }</nowiki></pre>
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)

  • Is there a case for iPad that will allow the leather cover to stay on for uk

    I bought the iPad Retina display 16gb for a neighbour and added a leather cover  for it. I had already bought her husband an iPad in November and bought the Smart case polyurethane. I mistakenly thought the leather cover was just the same as a case, but of course it's only the front that is protected.
    Does anybody know of a good UK case/wallet type case that she can use with the cover attached, so that when's shes travellimng the whole unit is protected.
    It must of course be thick enough to accommodate the iPad and leather front cover.
    Can anyone help pleae?

    Help. Same issue.

  • How can I get my movie to play that I downloaded from my ipad to my pc? It will play the bonus features, scene selection etc but not the movie

    I bought some movies from iTunes to put on my ipad. I stored them in icloud and downloaded them to my pc. problem is that although the bonus features etc will play on the pc, the actual movie won't! What should I do??

    What happens when you try to play the actual film ? And have you tried deleting them and (assuming that they're still in the store) redownloading them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page - or going into Edit > Preferences and on the Store tab ticking the 'show iTunes in the Cloud purchases' tick box so that they show in the My Movies part of your library with a cloud icon against it for redownloading) ?
    (You can't store films in the cloud, whether they will show there for redownloading depends upon what country that you are in - and if you move countries or if the rights-holder removes them then you also won't be able to redownload them. Ideally you'd be taking a backup copy of all of your downloads, and not relying on being able to redownload them in the future.)

Maybe you are looking for