Value item catg

Hi,
In material related value contract I have created assortment module no,then I will use documet type WK1 then which type of Itm catagory & which type of Item catagory group I have to use & what r the assignment setting required for that please give me the solution.
Thanks,
Liku.

Dear Liku,
I hope you have read Forum rules before posting a new Thread.
You have already created a new Thread for this query some time back & two people have replied to that. But you chose to close that thread & create this new Thread posting same query...
I agree that the solution given by us could not be the one you wanted, but given you had just explained the issue in one line, what else can you get?
You were suppose to post your further queries in that same Thread & continue it further until you get a satisfactory answer. That would have been a great learning for all of us...
Please take the note of this in future before creating new Threads...
Thanks,
Jignesh Mehta

Similar Messages

  • Display Display value in Red Color in Pop Up List of value Item

    Dear All,
    i have created an Pop up List of Value item.I need to display Display value in Red Color in Pop Up List of value Item.
    What should i pass in HTML Form Element Attributes .I have try using
    style="font-color:red";That code.
    How can i display Display Value in Red Color.
    Thanks

    Is this what you are looking for?
    http://apex.oracle.com/pls/apex/f?p=42778:12
    If so..
    * Go to Shared Components -> Templates -> Select Type as "Popup List of Values"
    * Edit Popup LOV template
    * See the class name being used for div under Result Set section. In My case, its t1PopupBody
    * Under Page Attributes -> Page HTML Head section append following CSS
    <style>.t1PopupBody a{color:red;}</style>* Apply Changes
    If its not working, then inspect the pop-up lov with firebug and update CSS definition accordingly.
    Regards,
    Hari

  • Passing DB values to the textbox based on Select Value item

    Hi,
    I am very much new to the Oracle APEX. In my project, I have a requirement wherein I have to pass the different values to the corresponding textboxes on a different page based on the value I select from the "Select Value" item.
    I have tried using calling On-Demand Processes, but couldn't get the desired result.
    Please suggest!

    Hi 796444 ,
    Welcome to the forum. It will be good if you familiarize yourself with the forum ettiquittes. Also, when posting always state the following:
    a. Apex version
    b. DB version
    c. Web server ; EPG, apexlistener, etc
    d. Provide adequate details for others to understand your problem / what you are trying to achieve.
    e. Any code snippets you post should be enclosed in a pair of tags
    If your current problem is that the you are *calling* Page 2 from Page 1, and while doing so you want the value of P1_ITEM1 to be passed and set in p2_ITEM1 then
    a. Edit the branch
    b. In Action in Set these items write P2_ITEM1
    c. In With these values write &P1_ITEM1. (do not miss the dot at the end)
    It looks good if you use a better handle than 796444 :-)
    Regards,                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Is it possible to add value item and non stock item in one billing?

    Is it possible to add value item and non stock item in one billing?

    Hi,
    Yes,it is possible .Take example of service scenario,where material used in servicing and service charges(labour) can be billed in single invoice.
    Billing document type,Customer and other header data should be same.
    Reward points if useful
    Regards,
    Amrish Purohit

  • Need help with the session state value items.

    I need help with the session state value items.
    Trigger is created (on After delete, insert action) on table A.
    When insert in table B at least one row, then trigger update value to 'Y'
    in table A.
    When delete all rows from a table B,, then trigger update value to 'N'
    in table A.
    In detail report changes are visible, but the trigger replacement value is not set in session value.
    How can I implement this?

    You'll have to create a process which runs after your database update process that does a query and loads the result into your page item.
    For example
    SELECT YN_COLUMN
    FROM My_TABLE
    INTO My_Page_Item
    WHERE Key_value = My_Page_Item_Holding_Key_ValueThe DML process will only return key values after updating, such as an ID primary key updated by a sequence in a trigger.
    If the value is showing in a report, make sure the report refreshes on reload of the page.
    Edited by: Bob37 on Dec 6, 2011 10:36 AM

  • Acct Assg Catg Q and Item Catg D Combination

    HI
    Here the requirement is Acct Assg Catg Q and Item Catg D Combination required. But system is allowing the same.
    Whr are the setting to make this?
    Note : We hv 11 PO doc types and 5 PR doc types.
    Combination item category D/account assignment category Q not defined
    Message no. ME066
    Procedure
    Item category D and account assignment category Q may not be entered for the same item.
    The permissible combinations of item categories and account assignment categories are determined in Customizing (Purchasing).)))))))))))))))))
    Vijay

    Hi Vijay,
    I tried to send my contact details to you but it appeared it could not be sent successfully.  Anyhow, my contact address is ha dot tran at woodside dot com dot au
    Cheers,
    HT
    P.S.  I was surprised that we can't add our address in this forum.

  • Display More then one column in to POP LIST OF VALUE Item

    Dear All,
    i want to display More then one column in to POP LIST OF VALUE Item like POINTNO,CITY_NAME,REGION_NAME,POSTEL_CODE .
    How can i display these 5 Column in to POP UP LIST OF VALUE Item.
    Thanks
    Vedant

    Hi,
    Here is my example how to get the address data from address book:
    on page, where is the IR report with many columns (as a popup page) there is a Column Link of URL type - you can choose any colulmn .
    In the URL address type: javascript:passBack('#ID#', '#NAME#', '#SURENAME#', '#COMPANY#', '#STREET#', '#CITY#', '#POSTAL_CODE#', '#STATE#' );self.close();
    self.close function close the popup after fetch.
    It will call a passBack function declared in page header.
    Example:
    <script language = "JavaScript">
    function passBack(v_addr_id, v_name, v_suren, v_comp, v_street, v_city, v_postal_code, v_state) {
    opener.document.getElementById('P2_ADDRESS_ID').value = v_addr_id;
    opener.document.getElementById('P2_ADR_NAME').value = v_name;
    opener.document.getElementById('P2_ADR_SURENAME').value = v_suren;
    opener.document.getElementById('P2_ADR_COMPANY').value = v_comp;
    opener.document.getElementById('P2_ADR_STREET').value = v_street;
    opener.document.getElementById('P2_ADR_CITY').value = v_city;
    opener.document.getElementById('P2_ADR_POSTAL_CODE').value = v_postal_code;
    opener.document.getElementById('P2_ADR_STATE').value = v_state;
    </script>
    If you want set only one value, just make a similar function with only one parameter.
    I hope it will help to you
    J

  • Non value item

    Iam doing sales for  non value  item.when iam creating sales order   system  hitting error  no accounting data maintained for the meterial.
    Is it necessary to maintain in material master accounting data for non value items.
    Is it possible to procure non value items from the vendor and send the goods forigen customers.
    any one give me solution.

    Dear mahi
    As per standard, if a same material is inwarded and also outwarded, the material code should be different.
    So first even if you inward the material with non valuate, you should create another material code with either material type as Halb or Fert.  Then only, the respective inventory / sales will be transferred to FI.  Moreover, for non valuated items, system will not consider the inventory and without considering this, how will you make a delivery.  Also you would be aware, for non valuated items, 601 movement will not take place.
    thanks
    G. Lakshmipathi

  • Diff bwn Value item and Std item

    Hi friends,
    Can any body tell me, what is the difference between the value item and the standard item. where do we find the difference, and which senario we use the value item. i have seen the item type as value item in service item category. but want to know the difference.

    Below is one of the difference
    For any item category if you have set the item
    type to 'A', which is a value item such an item is confirmed status 'C' with the first reference of delivery or billing.
    If you set theitem type to ' ' (standard item) as it would be for TAN. Then the delivery status in the order will be updated as partially delivered, if you change the quantity in the delivery.
    Ramesh

  • Diff between Gen Item Catg Group & Item Cat group In MM01

    HI Gurus,
    What is the difference between Gen Item Catg Group & Item Cat group In MM01?
    Cheers,
    Chitty

    Hi
    There are several posts on same issue you can find out in sdn threads
    Item Category determines the processing of any Item/material that we enter in a sales order and in this way it also effects the procesing of any sales doc in which it is used.
    Item Category Group is one of the component which along with the Sales Doc Type, The Item Usage and Higher Level Item Category decide about the Item Category in a sales doc.
    for example we can ERLA as item cat group and carry out the header level pricing or we can LUMF and do the item level pricing in case of a Sales BOM.
    General item category group talks about further classification of a material. Like NLAG- non stock material can be used to identify bom header items, service items.
    Item category group and general item category group difference
    Re: difference between general item category group /item category group

  • Value Items and Text Items

    Hi Team ,
    Can someone frm the team give me an idea of these Value Items and Text Item usage .
    Also the relavence of the Item Category Field which is "Checked " in case of Value Items and Text Items.
    Thanks .
    Regards,
    Suman

    Hi Suman,
    the text items are relevant for delivery but not relevant for pricing.
    The value items are relevant for delivery as well as pricing.
    Regds,
    Rupali

  • Value cont item catg

    Hi,
    In material related value contract if I will use documet type WK1 then  which type of Itm catagory & which type of Item catagory group I have to use & what r the assignment setting required for that please give me the solution.
    Thanks,
    Liku.

    Dear Friend,
    For Document Type WK1:
    item Category Group: VCIT
    Item Category: WKN
    Maintain necessary assignments in IMG - Sales and Distribution - Sales - Sales Documents - Sales Document Item - Assign Item Categories.
    Sales Doc.-Item Cat Gr.-Usage--
    Default Item Cat:
    WK1--VCTR--
    WKN
    WK1--VCIT--
    WKN
    Hope this helps.. .
    Thanks,
    Jignesh Mehta

  • CAPTURE RUNTIME REGION VALUE ITEM DELIVERY ADDRESS TAB IN PO

    Hi Friends,
    I am working on P.O enhancement which updating a custom field in custom tab in P.O item as below.
    if docuement type 'ZY' ,, account assignment category 'A' or 'K' material group '35' and delivery address REGION 'CA'.
    then update the flag as P,, same value will store in EKPO also.
    the issue is i am not able capture the run time value of REGION,, i dont want go to using adrnr in ADRC table..
    very importantly user may change the delivery address region, so how can i capture,, please help me.
    i dont see any any User exit is not holding the region value

    Hi,
    we have another option to get the delivery address details.
    1) use the above procedure to get the delivery address details
    2) If there is no address number in EKPO table, just they are showing the address of the plant. That is they are displaying the address data from T001W for the given plant.
    may be it will work.
    Thanks,
    Rajinikanth G

  • PO,MIGO zero value item, not picking in MIRO

    HI All,
    In my Vendor Return Po one line item(Sample good) is created with Zero value.
    GR and the entry is zero value. There is no issue at all.
    But upon MIRO, it is automatically not seen in the line item
    Can any one tell is it standard....or we cab bring the zero value line item in MIRO also.

    Why are you mixing return and free item ?
    Return is used to return material from your godown to vendor..
    Free item is used to purchase material from vendor for free of cost...
    If you maintain the free indicator in PO, then you are saying to system, that you purchase the item for free of cost..
    You can see the Invoice Tab - Invoice Receipt option get unticked when you tick the free item in PO line item..
    It will never appear in MIRO...

  • Item(select list) with LOV and Report with link = changed value item

    Hello,
    On one page I have:
    - Item 'P_name' (select list) with LOV to select name of a person;
    - Items 'factory' and Report 'factory'(standard created with 'Form with Report' on the same page).
    Situation:
    All works fine. I selected first a LOV Item 'P_name' (say 'Jane'). But....
    Only when I select a record (to change the values) from the report 'factory' then LOV Item 'P_name' become empty. Report used a link to the same page to fill the report items 'factory' and make also the LOV item empty.
    Question:
    I have made a process that write the name 'Jane' to table.
    I see two possibilities:
    - LOV Item value => fill the LOV item with 'Jane' from the table before region. Is this possible?
    - Report => What is the buttonname of reportlink? I can use this name in the processes.
    Thanks Walter!

    1) what i meant was for you to test this ridiculously huge LOV outside of htmldb, but it occurred to me last night that you could, in fact, be hitting a limit of ours. after some poking around, i have confirmed that. select list items in htmldb are currently limited to 10,000 rows. this was initially done for performance reasons, but they're now opening up the restriction. if you really need to work with that many rows where the user is allowed to pick from a set of values, consider using a popup item type instead. it'd help your app performance as well (in my test cases, it stank to have to wait for my 10k select list rows to come down to my browser).
    2) sorry to not have been more clear about this, but when you set your item's "Source Type" back to "Database Column", you'd have to specify that column in the "Source or value expression" field. also, you can't put a sql query into that "Post Calculation Computation" field. as i said before, "you can take a look at the attribute-level help for that field to see implementation examples."
    3) stick with "Always..." for now if you're using our auto-dml process(es)
    regards,
    raj

Maybe you are looking for