Different Setting exist for availability control.

Hi,
I am getting error while giving supplement budget to Internal Order.
Kindly provide me the solution.
Regards,
Nilesh Surve.

Hi,
   What's the exact error message along with long text ?
regards
Waman

Similar Messages

  • No Part I exists for availing credit in excise invoice Message no. 4F112

    Hi All,
    I am getting an error "No Part I exists for availing credit in excise invoice Message no. 4F112" when I am trying to post J1IEX.
    I tried to update the part I through "J1I5 (Classification ROP)" and error is List contains no data.
    I tried to capture the material document in J1IEX and system gives me error "The material document has already been referred for a different Exc. Inv."
    Table J_1IPART1 entries are available for the same and I am getting the internal no in MIGO excise tab.
    Following prerequisites are maintained,
    J1ID details for material (Raw Material), Vendor and Plant are maintained.
    Movement type 101 is active for RG, 23A and 23C.
    A/C detrmination for transation type GRPO is maintained.
    Thanks a lot in advance

    Pls check SAP note 1522742 & 1521903
    Regards,
    Vipin

  • How to create two different implementation class for a Control

    Hi,
    I am a newbie to beehieve. I want to know that is it possible to create two different 'Impl' classes for a Control. If yes then how do we instantiate them ? How can we chain them (something like calling one 'Impl' from the other one? Thanks in Advance!!!
    Regards,
    Abhishek

    You are sure you are in the right forum?
    This is the JDeveloper and ADF forum...
    Timo

  • No part 1 exists for availing credit in excise invoice -----------_J1IEX

    Dear Guru's,
    I have done GR with 101 mvmt type in MB01( creating PO in bk ground), it has posted & stock has been updated as well.
    When i am capturing the excise in J1IEX, part 1 & part 2 entries were not updating.
    But i got the below message after saving.
    Excise Invoice -
    has been successfully captured.
    When i am trying to post the same doc in J1IEX, at that time below error is coming
    No part 1 exists for availing credit in excise invoice -
    Pls help me out to solve the problem.
    Regds,
    Channa

    Hi Channa,
    How you resolve this issue please let me know i am facing same issue from 2 day .
    While capturing the excise in J1IEX I am getting the msg as Excise Invoice 0010000125/ 2011 ( 18 ) has been captured. But Part1 & Part2 entries were nt happening, its showing N.A.If i checked in part1 table there is intry found but if i checked in J1I7 there is one intry found .If i displayed above document in J1IEX there is no posting date ,there is blank field.
    Please let me know why its happening.
    Can u tell me what might be the problem ?
    Regards,
    Virendra Maurya
    Moderator message: Please do not hijack other peoples threads for asking own questions. Open your own thread, give a good subject and  good information and hope that you get an answer
    Edited by: Jürgen L. on Dec 27, 2011 5:55 PM

  • How to set value for Dropdown control using Querystring filter wepart

    Hi,
    I have a dropdown in my customized list form and need to set the value for the dropdown control using query string filter web part.
    I am able to set value for textbox control using Query String Filer web part.
    But, since the dropdown values are not populated on form load, the value is not set for dropdown control.
    How to load the values in dropdown control on form load and set a value using Query String filter webpart?
    Thanks,
    dhijit

    Hi,
    According to your post, my understanding is that you want to filter choice field using Query String Filter web part.
    To filter using query string filter web part, we can set the default value for the choice field in the query string filter web part panel as below, then connect to the list.
    Now it would be filter by the value you have set.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • ADF Faces: How do I set values for input controls in an af:table

    Use case: user enters master/detail information into an input form using an af:table for the desired number of detail rows.
    I have an ADF Faces input form with master level input controls, and an af:table (bound to a backing bean CoreTable) for the detail data set.
    The input controls are value bound to updateable view objects built from entity objects, with the appropriate view links providing master/detail iterators.
    Once the user has entered the master keys (via inputTexts, and selectOneChoices), I create a row in the detail VO, thus creating a visible blank row in the af:table.
    The user then completes the key for the detail row (in the af:table) by selecting a value in a selectOneChoice (in a af:column) with autoSubmit on and a valueChangeListener that sets the VO row attribute with the new value.
    The user then continues to enter into the remaining inputTexts and selectOneChoices in the af:columns until all values have been entered.
    I do not have autoSubmit on for any input controls in the af:columns other than the key, for performance improvement.
    The user can then use a command button (which has an action method) to create another row in the af:table.
    But, (in the action method) I need to set the values for the 1st detail VO row attributes, from the input controls, before creating another row.
    The input controls are bound to backing bean CoreInputText and CoreSelectOneChoice objects, and they have not set their values at this point, even though I have partialSubmit on for the "New Row" command button.
    I do not value bind the input controls in the af:columns to the backing bean objects, because we need to display data for all rows entered into the af:table.
    Any advice on the best way to perform this operation would be very appreciated!!!!

    Thanks for the reply Steve!!
    Yes, I followed the techniques in Screencast#7, and it works great in my edit page.
    But I am having problems with my input form.
    I actually have master/detail/detail relationship for which I am creating an input form.
    I created the input form as a copy of the edit form, and am making revisions as necessary.
    I created new view objects for the input form (from my three entity objects), which have the "Tuning" set to retrieve "No Rows (i.e. used only for inserting new rows)"
    I added an invokeAction that binds the "CreateInsert" action on the master iterator, so when the page is first displayed, the master level controls are available for data entry (as in 13.6.2 in the Developers Guide): but the first level detail controls are not rendered, and the af:table (for the second level detail) is rendered but with no rows.
    Once the user enters key values for the master (a three part key), I manually create a first level detail row by executing the "CreateInsert" action binding for the first level detail iterator.
    Continuing on, the user then enters a key value for the first level detail I manually create a second level detail row using it's "CreateInsert" action binding.
    Now the user has a form with all master and first level detail controls completed and one empty row in the af:table for it's first entry.
    The key column in the af:table has autoSubmit on, and an value change listener. That listener uses it's getNewValue() to set the key value ("locationCode" in this case) using
    setLocationCode from the ViewRowImpl. Here is that value change listener:
    public void locationChanged(ValueChangeEvent event) {
    if (null != event.getNewValue()) {
    LocObsCreateViewRowImpl locCreateRow = (LocObsCreateViewRowImpl)appMod.findViewObject("LocObsCreateView").getCurrentRow();
    if (null == locCreateRow.getLocationCode()) {
    locCreateRow.setLocationCode(event.getNewValue().toString());
    Now comes my problem: once they have entered the values in the remaining columns, they can use a command button to create another row in the 2nd detail iterator, thus creating another visible empty row in the af:table. But the values from the first row (other than the key column) are not assigned to the row in the collection and I can't figure out how to set values in the collection's row.
    I imagine I'm missing something using bindings and the Request Processing Lifecycle, and after reading this I can see how much manual work is going on.
    The users have specified the need to have all information available on one page, so I've designed it so they can insert and iterate through the first level detail collection.
    They have also asked to not use the mouse; they are looking for a "heads-down-data-entry" system.
    Again, I really appreciate any advice you could give.
    Jeffrey

  • Different fiscal variant for same controlling area

    Hi,
    as my client requirement is having 3 company codes two having same fiscal year variant another having different fiscal year for legal requirement operating under same same county.
    i have maintain all the setting for the 3 company codes but .
    but when i enter to maintain controlling area  OKKP.
    system is throwing following error.
    Differing fiscal year variants: V3 - ZP
    Message no. KT297
    Diagnosis
    Fiscal year variant V3, controlling area SQRE, does not agree with fiscal year variant ZP, company code 3000.
    The following entries must agree:
    u2022     Same number of posting periods (the number of special periods may vary)
    u2022     Same period limits
    Procedure
    Ensure that the fiscal year variants of the controlling area and the assigned company codes agree. If necessary, maintain the fiscal year variants.
    Please suggest me how to proceed further in this case.
    thanks
    kareem

    Hi Kareem
    What you are doing is not correct
    All comp codes under the Contrr Area must have same FYV and same Ch of accounts
    1. Go to IMG and assign same FYV to the 3rd comp code
    2. Go to IMG > FI (New) > Global Settings > Ledgers > Define and Activate Non-Leading Ledgers
    Here,  activate parallel ledger for this 3rd comp code and assign the other FYV in the parallel ledger
    Also maintain the Doc No ranges for parallel ledger because your FYV will be different between Main and Parallel ledger
    br, Ajay M

  • Change mailform for Availability Control e-mail in Project Systems

    Hi Experts,
    We have set up availability control and maintained all the necessary tables in order to activate this.
    We are also auto forwarding this emails to outlook using SO36.
    Presently , mail content is as follows :
    Controlling posting 100007807
    The assigned funds are 807.22 INR less than budget in document item
    001 WBS element GSC-15-006-1-1-1-1 .
    I want to change content of this mail.
    how can i do this ?
    Thanks

    Hi
    How you are sending message from SAP to outlook, using autoforward option?
    If yes then remove the autoforward option from SBWP t.code. Once you receive the message from SAP system (Budget exceeded), copy the message and create the new message and send to the required user.
    Thanks
    S.murali

  • Set default for all controls

    How do I set a default for all controls?
    For example, I want the label to always appear on the left.  Instead of setting the control attribute for each LED separately, I'd rather set a default to be applied to all LEDs.
    I'd prefer to do this programmatically.
    Thanks!!!

    Hi,
    one possibility is to use the function call SetAttributeForCtrls from the programmer's toolbox library.
    Another, to generate the controls programmatically - if you are using your own functions to do so you can define the default as to your liking.
    Wolfgang

  • Can I have 2 completely different set ups for FF (different users--one visually impaired)

    I have been using FF for several years and really like the way I can enlarge the text and size of the fonts on the toolbars, among other things. My wife, however, has very limited vision, and has been using IE and she cannot do any of that and she has been having other IE problems as well. I just installed Chrome to check it out, and there does not seem to be a way to do any of that either (too bad Chrome). There are 'high contrast' themes, but they do not do enough, or are the wrong colors, or cause lots of problems with some pages. Is there a way I can use 2 completely separate versions of FF, with different tool bars, screen fonts, colors for the toolbars, sizes of the fonts, a way to have 2 completely separate bookmark and preference lists, etc.? As the computer is shared, we would need to be able to toggle between users and the set-ups. The ability to configure FF the way you want is really so far ahead of the other browsers.

    You can create another Firefox profile folder for your wife if you both use the same Windows account.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *https://developer.mozilla.org/Mozilla/Multiple_Firefox_Profiles
    See also:
    *http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    *http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    *http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    You can add -no-remote to the command line to open another Firefox instance with its own profile and run multiple Firefox instances simultaneously.
    *http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile
    Note that you can't open external links (i.e. click a link to open the default browser) in a Firefox instance that is started with the -no-remote command line switch.
    You can look at this extension to adjust the font size for the user interface.
    *Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/
    You can use the NoSquint extension to set font size (text/page zoom) and text color on web pages.
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • Set icon for toggle control of JTree node.

    hi.
    Just a question.
    I am looking towards setting the icons of the JTree by this i mean the icon that you click on
    to open say a node .
    I know you can set the icons of the nodes by setIcon inside your TreeCellRenderer but i doubt that
    that will set the icon that is to the left ot your label.
    Has anyone gone down this path recently.
    The class BasicTreeUI has a method
    called paintExpandControl( Graphics g,
    Rectangle clipBounds,
    . Insets insets,
    Rectangle bounds,
    TreePath path,
    int row,boolean isExpanded,
    boolean hasBeenExpanded,
    boolean isLeaf)
    Hopefull this is a method that can paint the toggle node so has anyone subclassed BasicTreeUI and done something like this recently.
    Any advise on the topic is really appreciated.
    Thank you.

    Yes, they are icons and they are called "handles". The easiest way to change then is to use UIManager.
    If you haven't done so before, look through the hash table UIManager.getLookAndFeelDefaults().
    import java.awt.*;
    import java.net.*;
    import javax.swing.*;
    public class TreeIcons {
         public static void main(String[] args) throws MalformedURLException {
              String prefix = "http://forum.java.sun.com/images/";
              UIManager.put("Tree.openIcon", new ImageIcon(new URL(prefix + "dont_save.gif")));
              UIManager.put("Tree.closedIcon", new ImageIcon(new URL(prefix + "save.gif")));
              UIManager.put("Tree.leafIcon", new ImageIcon(new URL(prefix + "forum_new.gif")));
              UIManager.put("Tree.expandedIcon", new ImageIcon(new URL(prefix + "email_faded.gif")));
              UIManager.put("Tree.collapsedIcon", new ImageIcon(new URL(prefix + "email.gif")));
              JFrame f = new JFrame("TreeIcons");
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              f.getContentPane().add(new JTree());
              f.setSize(new Dimension(300,400));
              f.setLocationRelativeTo(null);
              f.setVisible(true);
    }

  • Set initial value for numerical control

    Hello LV users,
    I have a VI that is used to initialize some experimental equiptment. It passes on a cluster of ten or so numerical control DBL integers as parameters. Everytime I open the programe the values are reset back to zero and I have to enter the values back in. Is there any way to set default values for  the controls so I do not have to change them everytime I open the program.
    Thanks 
    Solved!
    Go to Solution.

    Wowden,
    If you want to set default values for multiple numeric control's in your cluster in one go, 
    -Type in the desired default values
    - Right click on your cluster, browse to 'data operations'
    - Choose 'Make current values default. 
     Similarly, if you need to set defaults for  multiple clusters or multiple controls on your front panel,
    - Choose 'Edit' in the menu 
    - Choose "make current values default' (This sets defaults for all controls/constants etc. in one go)
    RaVI

  • Project Availability Control

    Hi,
    I would like to confirm if availability control / check happens only at actual posting level or also during commitments and other trigger points?  Please also advise where to set the proj availability control for different trigger points.
    Vivian

    SAP as provided different business transaction groups to control budget at different levels (PR,PO, FI Postings etc).
    Please refer Note :628978
    Glimpse of the note:
    Business transactions are assigned to a business transaction group in the availability control. You can define tolerance limits for each budget profile for the availability control actions in the various business transaction groups. It is not clear which business transactions belong to the individual business transaction groups of the active availability control.
    Business transaction group 00 (Purchase requisition)
    Business transaction group 01 (Purchase order)
    Business transaction group 03 (Goods movement)
    Business transaction group 04 (Financial accounting document)
    etc.
    Venkat

  • Availability control not activated - Real Internal Orders

    Hi Experts,
    I have created one order type with Object class overhead, budget profile 0000001. Defined  Tolerance Limits for Availability Control.   And I have created one order and maintained budget. If postings are exceeding the budget, system is simply saving it not giving any alerts.  I have done KO30, system showing the message "Availability control not activated in any further objects".  Where I  am missing the configurations?
    Regards,
    Rajeswari

    Hi,
    Check whether the commitment management has been activated.
    Check in transaction OKKP for Order management & commitment mangement active in controlling area level.Check the company code assignment also in controlling area.
    Then check the activation of the Activate Open-Item Management in Order Types in Tcode KOAO.
    whether commitment mangement tick is active against the order type.
    Activate the availability control as automatic orelse activate when you assign budget in KO22 transaction.
    Check both the setting.In some case it may not work in DEV server if you active later,Transport request to QAS & check it will work.
    Regards,
    Raj

  • Availability Control @ Material Requisition and Goods Issue

    HI,
    We have a business requirement , Availability Check at
    1. Material Requisition
    2. Goods Issue
    Can Some one suggest config Path or user exit / BADI etc to achieve the same.
    Note : we are using Former Budgeting and update profile 101
    Regards,
    Klreddy
    Moderator: Please, follow standard procedure for AVC setting and search SDN before posting

    Thanks Alex,
    Shall we know the settings for  availability Control @ Goods Issue .
    Regards,
    klreddy

Maybe you are looking for

  • USB Hub does not work

    I recently purchased this USB hub. http://www.jascoproducts.com/products/pc/viewPrd.asp?idproduct=8&idcategory=13 My laptop cooler is able to be power through the USB hub. However, my mouse, keyboard, and external harddrives are not working. For inst

  • HT201363 Question

    I have a problem with the storage capacity Reason?

  • Is there a filter for "missing photos"?

    Can you search for missing photos from within a folder? I know there's the command that says "find all missing photos" but that delivers results for the entire catalog. I'd like to see the missing photos from just one folder and wonder if that's poss

  • Closed captioning---ugh!!

    How can I get the closed captioning off my movies I downloaded to my Ipod?

  • Cisco Router AP 1242 AG, iPod iPhone Re-login questions

    Hi, We used Cisco AP1242 AG as our wireless routers. Our co-workers want to use their iPod and iPhone in the office. They have to re-login everytime they turn off their iPod or iPhone. I believe that is because AP 1242 does not broadcasting its SSID,