About note 340238 and field LIKP-FOLAR

We are trying to implement note 340238. It says there: „If the outbound delivery has a subsequent delivery type LIKP-FOLAR…”.
We do understand everything else said in the note, about the Workflow, but all outbound deliveries in our system have no value in the field LIKP-FOLAR, and this includes both replenishment and sales outbound deliveries. I suppose it is the type of inbound delivery that should be created for outbound delivery type, but I cannot find a place in Customizing to set it. Could you please, give us some
information about how to control LIKP-FOLAR field in our outbound deliveries. I can try to give it a value using BADI "LE_SHP_DELIVERY_PROC", but it doesn't say anything about the user-exit in the note, so I guess there is a Customizing solution to this.
Thank you in advance.
Best regards,
Jasna Vračar
SAP Consultant

As mentioned in note 340238, if you want to create inbound delivery via
work flow, you have to fill likp-folar. To fill likp-folar, you have to
define subsequent movement (customizing in T156n).
See the coding below:
Main Program     SAPMM07M
Source code of   MM07MFS0_SD_FOLGEBEWEGUNGSART_
               l_xmseg_folgebewegung LIKE mseg.
        SELECT SINGLE * FROM t156n
                        WHERE fcode = 'SU'
                          AND bwart = xmseg-bwart.
         IF sy-subrc IS INITIAL.
           l_xlk03-fobwa = t156n-bwart_next.
         ELSE.
           CLEAR l_xlk03-fobwa.
         ENDIF.
Here, if subsequent movement is defined in T156n, XKOMDLGN-FOBWA will be
filled. Only if XKOMDLGN-FOBWA is set and is different from the
movement type(BWART) , system will fill LIKP-FOLAR.
Regards,
Harry Wu
Edited by: Harry Wu on Sep 8, 2010 6:35 AM
Edited by: Harry Wu on Sep 8, 2010 6:35 AM

Similar Messages

  • Documentation about Screen, Menu and Field Exits

    Hi all!!
    I need some documentation about Screen, Menu and Field Exits.
    I´m very interested specially on steps by steps.
    My mail is [email protected]
    Helpful posts will be rewarded.
    Thanks in advance and regards,
    Manuel.

    <b>Types of Exits </b>
    There are several different types of user exits. Each of these exits acts as hooks where you can attach or "hang" your own add-ons.
    <b>Menu Exits</b>
    Menu exits add items to the pulldown menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications.
    SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with "+" (a plus sign). You specify the menu item’s text when activating the item in an add-on project.
    <b>Screen Exits</b>
    Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen’s flow logic.
    <b>Function Module Exits </b>
    Function module exits add functions to R/3 applications. Function module exits play a role in both menu and screen exits. 
    When you add a new menu item to a standard pull down menu, you use a function module exit to define the actions that should take place once your menu is activated. 
    Function module exits also control the data flow between standard programs and screen exit fields. SAP application developers create function module exits by writing calls to customer functions into the source code of standard R/3 programs. 
    These calls have the following syntax: 
    CALL CUSTOMER-FUNCTION ‘001’.
    Field Exits
    Field exits allow you to create your own programming logic for any data element in the Dictionary. You can use this logic to carry out checks, conversions, or business-related processing for any screen field.  Example: The data element BBBNR identifies a company’s international location number. You might want to set up your R/3 System so that all international location numbers are larger than 100. 
    The field exit concept lets you create a special function module that contains this logic. 
    You assign the special function module to the data element BBBNR. You then assign the module to any programs and screens in which users can add new international location numbers. When you activate your field exit, the system automatically triggers your special routine whenever a user enters a company location number. 
    In 4.6c, you can use "RSMODPRF" program to create field exits.
    An example of a user exits :-
    MODULE user_exit_0001 INPUT 
        CASE okcode.
            WHEN 'BACK OR EXIT'.
                CASE sy-dynnr.
                        WHEN '100'.
                             SET SCREEN 0.
                             LEAVE SCREEN.
                        WHEN '200'.
    **** Note that you can write any code that satisfy your needs.                                                     ****
    **** But in this case, this was wrote as a sample code for reference sake.                                    ****
    **** And you can test it.                                                                                ****
                             SET SCREEN 100.
                             LEAVE SCREEN.
                 ENDCASE.
          ENDCASE.
    reward  points if it is usefull..
    Girish

  • Sub Contracting PO- Table and Fields for Materials sent

    Dear Friends,
    I am preparing a functional spec for the sub contracting PO.
    Can you pls provide information about the tables and fields from where the data about the materials to be sent to subcontractor are picked?
    Its picking from the structure MDPM. But pls throw some light on the same how the data is picked and printed in PO from certain tables.
    Thanks in advance
    Shashidhar

    Dear Shash,
    Here some details of table infirmation not only your related feild available in all feilds
    http://www.erpgenie.com/sap/abap/tables_fi.htm
    Hope this helps you
    Prem.

  • Tables and fields

    I want to know about sd tables and fields relevance.why should tables be linked with each other.
    I understand that data which we enter is stored in tables and by linking fields from one table to another table, where a field is common.
    so can someone give a example showing how to use this information ,not in theory, but practically ?
    Please no 'help sap' links,but just a practical example showing why knowing different tables and field knowledge is useful.
    my email is = [email protected]

    Hi Mehboob
    Say you want to find out all the condition types of a particular document.
    Document details are available in VBAK
    Item level details of documents are seen in VBAP
    Condition types are seen in KONV
    The common fields are VBAK-KNUMV = KONV-KNUMV
    VBAP-POSNR = KONV-KPOSN
    Now if you want to findout all the condition types relevant for a particular line item
    1. Find out the VBAK-KNUMV and VBAK-POSNR for that line item
    2. Go to KONV
    3. Give KONV-KNUMV the value of  VBAK-KNUMV
        and KONV-KPOSN as the value of VBAP-POSNR
    Now execute
    You will get all condition types which are applicable for the line item in that document.
    Now if you want to find like this for 100 documents, you can write a report using these tables and fields.
    Hoep this clears ur doubt.
    Reward if this helps.

  • FM to change field LIKP-FAKSK

    Hi Experts,
    I am searching for a function module or BAPI to change the field LIKP-FAKSK in delivery. I already tested BAPI_OUTB_DELIVERY_CHANGE, BAPI_OUTB_DELIVERY_CONFIRM_DEC etc. but they do not contain the field LIKP-FAKSK.
    Any ideas which FM I can use for this?
    Regards
    Henryk

    Hi,
          check this bapi 'BAPI_CUSTOMERQUOTATION_CHANGE' in that
        check the strucure BAPISDH1.
        some of the structures where i found the field FAKSK  check the structures it may be useful
        BAPIDLVHDR
        BAPILEDLHEAD
        BAPIORDERS
        BAPISDH1
        BAPISDHD
        BAPISDHD1
        BAPISDHEAD
        BAPISDHEAD1
        BAPISDORDERSBOS
    Thanks & Regards,
    Sateesh.

  • WorkFlow Issues: Appending (not replace) Attendee Field in Calendar List and Email Variables (including .ICS file link)

    Kind of new to attempting any custom development in SharePoint.  Working with 2013 and have the 2013 Workflow Farm setup/working.  I am trying to have a calendar that users can register to appointments via custom list.  I
    have the list that pulls the title into its  own "Event" field as a lookup.  Also have a workflow on the calendar that adds the current user as an attendee and made that field "not required".  I'm trying to accomplish this:
    1) Have the Custom List update the Calendar list attendee field with the username. Currently it wipes out what is there and replaces with the "Created By" name. Tried to set a variable that would put the current attendees in a string
    and just add the current user, then use that variable to update the attendee field.  No luck.  Ultimately if I can understand this enough and get fancy enough, I'd setup a workflow  that can have someone delete their own registration item in
    the custom list and remove only their own name from Attendees...
    2)  Have a workflow kick off an email that sends the registrant the calendar details. Have tried to pipe in variables to get the ICS file (some variation of this )
     If I put the List ID in brackets I get an error about having that and variables in the same code for an email workflow.  In any event I can't really get the email workflow to give any kind of nice piped in values the best looked like this and had
    the wrong date: You registered for  {"results":[{"Id":22,"Value":"Test Event 8"}]} on 1/1/0001 12:00:00 AM

    Hi Jason,
    seems your requirement a bit complex, we forum team may have limited resource regarding this issue.
    you may consider to use infopath for example from this 3rd party article:
    http://www.bizsupportonline.net/infopath2007/programmatically-add-item-sharepoint-calendar-infopath.htm
    or for general example:
    http://office.microsoft.com/en-001/infopath-help/customize-a-sharepoint-list-form-HA101821257.aspx
    the article is to add an item to your calendar list, so then you may need to do wipe or other procedures, by infopath you may add the data as
    you need.
    if should infopath feature may not be possible to use in your environment, i may need to suggest you to open an advisory case to us, by contacting our representative,
    https://support.microsoft.com/
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Oracle can not support upto 32 characters table name and field name ?

    hi
    oracle up limitation ?
    create table aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(a char);
    Error
    ORA-00972:identifier too long
    or
    create table a (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa char);
    Error
    ORA-00972:identifier too long
    Oracle can not support upto 32 characters table name and field name ?
    It is true?
    null

    Hello All
    It's been a year after those posts about the limit of identifiers in Oracle Database. Does anybody know what can be done to get rid of that primitive limit? We are developing using Application Servers, Java, generated Code and a very nice object model, in which we can't just use abreviations because of early database age memory shortcomings.
    We are currently using 8i in a very large organization. Is there any chance this version can be configured to allow larger identifiers? Is upgrading to 9i going to solve this problem? Is Oracle Databases really doomed forever because of a 20-year-ago limitation?
    Please, I do like Oracle Databases. I don't want to be flooded with quick answers like "just use 32 character identifiers". I would like to hear a serious solution. Is anybody there still locked in the 8.3 filename paradigm of MS/PC-DOS? Does anybody has to fit an entire Enterprise System in segmented 640Kb of memory? Does anybody has to use monochrome character mode interfaces? Of course not those in the mainstream.
    I also know that other hadrware and software products have lots os limitations. Take Windows 2000. Its command line has a limit of 255 characters! You can't have more than 4GB of memory in a PC! However, one can't expect one mistake to justify others.
    I wish I were very wrong in this respect, and all it should be necessary is to turn on some kind of configuration parameter in 8i to allow us to develop high quality code.
    Thanks for your attention.
    Please, feel free to contact me if you have a solution.
    [email protected]

  • HT3702 I contacted a vendor about an app and they have not returned my email. I want to cancel the purchase.  What should I do?

    contacted a vendor about an app and they have not returned my email. I want to cancel the purchase.  What should I do?

    You probably cannot get a refund, since the terms of sale for the iTunes Store state that all sales are final. You can contact the iTunes Store, explain the reason for your request, and ask, though:
    http://www.apple.com/support/itunes/contact.html
    It's possible they'll make an exception for you, particularly if the app is defective in some way. If you just don't like or no longer need the app, a refund is unlikely.
    Good luck.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • TS2834 I've been using the mail app that came with my Mac for over a year. Out of the blue, it will not open and keeps saying "Mail cannot open because of a problem" and something about not being compatible ??? Help! I miss my mail

    I've been using the mail app that came with my Mac for over a year. Out of the blue, it will not open and keeps giving me an error like "Mail cannot open because of an error and something about it not being compatible. Please help! I miss my mail

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • I have tried downloading about 10 times: every time I fail. When I try to open the the sitre - all I get is the ASK page and not Firefox and therefore cannot cd

    Over the past 8 months I have had problems!
    First a cannot send anything via Thunderbird so erased it because no-one solved the problem for me
    I keep re-downloading Firefox and today again for the tenth time! The trouble is I do NOT get the Firefox start search page but a thing called ASK and it is of no value to me when I want to follow your instructions for Firefox!!!!!what on earth is going on?
    I have Windows 2003 32-bit -I think this is what it says!-because it is easy ti use and I am satisfied with it! Is this relevant?
    So help please because I heard your system is the best.
    thank you
    Dr Harold Fenton

    If there is a problem with the about:home Home page then try to reset the search engine used on the about:home page.
    Reset the browser.startup.homepage_override.mstone pref via the right-click context menu to the default on the about:config page and close and restart Firefox to restore the about:home page to its default.
    * Open the <b>about:config</b> page via the location bar
    * Type in the Filter bar: mstone
    * Right-click the browser.startup.homepage_override.mstone line and select: Reset
    * Close and restart Firefox
    *http://kb.mozillazine.org/about:config

  • My Aperture 2.1 has gone into a continual thumbnail mode.  I left the computer, a MacBook Pro, run all night, about 12 hours and it is still making thumbnails.  I tried reloading Aperture 2.1, but that did not change anything.  I have also turned the syst

    My Aperture 2.1 has gone into a continual thumbnail mode.  I left the computer, a MacBook Pro, run all night, about 12 hours and it is still making thumbnails.  I tried reloading Aperture 2.1, but that did not change anything.  I have also turned the system off, for a period of time, and then turning it back on, when I click on Aperture, it comes up and locks in the thumbnail mode.  I can view my stored pictures, even modify them, but it still says thumbnails.
       I got in this mode by trying to import "one jpeg photo", from a scanned slide using a Nikon Scan4 IS5000ED scanner.  I had saved the scan to my  desktop before I tried to import it.
    Please Help, Maurice A Bird at  [email protected]
    Thanks

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • I have an ipod touch it is either a second or third edition and i have just had to restore it to factory setting as it was not working and now the wifi on the device is no longer working. Is there anything i can do about this?

    i have an ipod touch it is either a second or third edition and i have just had to restore it to factory setting as it was not working and now the wifi on the device is no longer working. Is there anything i can do about this?

    Is it this:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    One user reported that placing the iPod in the freezer fixed the problem. A trick that works frequently with iPhones:
    Settings > AirPlane Mode ON, Do Not Disturb ON
    Power down and wait 5-10 minutes
    Power up
    Settings > AirPlane Mode OFF, Do Not Disturb OFF
    If not successful, an appointment at the Genius Bar of an Apple store is usually in order.
    Apple Retail Store - Genius Bar
    Otherwise:
    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Recently, iTunes upgraded.  My 7th generation iPod is now not recognized and I cannot sync.  The troubleshooting talks  about being visible in Windows (iPod is invisible)  No other options and nothing about windows 8

    Recently, iTunes upgraded.  My 7th generation iPod is now not recognized and I cannot sync.  The troubleshooting talks  about being visible in Windows (iPod is invisible)  No other options and nothing about windows 8

    I have had similar issues with mine, happens mainly if I transfer songs and then decide to disconnect my iPod to listen to them with my IEMs (I use Interenet Explorer in my case and it is not neccessarely up when this happens, so I seriously doubt it is an issue conencted to the web browser). I have no patience for this so my trick is I try to eject it from iTunes, if that does not work, then I bring Windows explorer up, right mouse click on the iPod mounted drive and select Eject. It gives me the same warning but there is a third button selection called Continue. When I choose that it just disconnets the drive anyway and the iPod is finally disconnected. It seems to work each and every time I do it so this solution is fine for me. Would be intersting to see what the real root cause of this is because I started getting this problem with the newer iTunes 11.

  • Hey! I have had an Ipod touch for about 7 years and it has always worked but i connected it to my laptop and it is detected on windows but it is not being detected on Itunes. Ive tried everything and need help!

    Hey! I have had an Ipod touch for about 7 years and it has always worked! but for some reason i plugged it into my laptop and my computer is recognizing that it is plugged in but my itunes isnt what do I do?

    See
    iOS: Device not recognized in iTunes for Windows
    - I would start with
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or              
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    However, after your remove the Apple software components also remove the iCloud Control Panel via Windows Programs and Features app in the Window Control Panel. Then reinstall all the Apple software components
    - Then do the other actions of:
    iOS: Device not recognized in iTunes for Windows
    paying special attention to item #5
    - New cable and different USB port
    - Run this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Also see:
    iPod not recognised by windows iTunes
    Troubleshooting issues with iTunes for Windows updates
    - Try on another computer to help determine if computer or iPod problem

  • TS3988 I am not able to open the settings icon from my old iPAD. When I try to select the settings icon it looks like it's about to launch and open however; it will not stay open. I am trying to transfer all my data from my old iPAD to my new 4th gen iPAD

    I am not able to open the settings icon from my old iPAD. When I try to select the settings icon it looks like it's about to launch and open however; it will not stay open. I am trying to transfer all my data from my old iPAD to my new 4th gen iPAD.

    Try a soft reset - press the home and power bottons and keep them pressed until the Apple logo comes on.  Then see if you can access Settings.

Maybe you are looking for

  • Error while sending mails from SAP

    Hello Experts, I am facing the below problem: If an error occurs during the processing of a Z SAP transaction, an email needs to be sent to the user who is executing the transaction. So, in this case the sender and receiver is the same user. But the

  • P2 Transfer Idles on select clips - P2 transfer issues in 5.1.4

    Hi this is my first HD/p2 project. I'm having an issue where some clips are idling out when i try to tranfer them to .movs. What's weird to me is that the first day of the shoot, all P2 transfers to .movs went fine. then on the second day for some re

  • Diff Between Internal Table with Occurs 0 & Field Groups

    Hi, Is there really any difference between just using an internal table with an OCCURS 0 statement-- which would write the entire table to paging space-- and using field-groups? How is Field-Groups is more effective than Internal tables with occurs 0

  • SBO2007A can no longer change the Price after Discount on marketing docs

    In SBO2005A (subjecting to Document Settings), you could change the Price after Discount.  Thisis no longer available in SBO2007A (unless you upgrade from SBO2005A with the appropiate settings. I have not found a customer who thinks this is good idea

  • Maximum audio tracks possible?

    Hi all Sorry this may have been answered somewhere before recently but couldn't find an entry in the discussion database. Has anyone ANY idea how high we can fly with numbers of audio tracks on 8 core 3 gig with 10 gig of ram? (my spec below) I expec