Need to restrict KFF values on Charge Account Screen in Oracle Apps 11i

Hi,
I have a requirement to restrict KFF values based on certain criteria in the charge account screen in Oracle Apps 11i..
Could you pls advise on how this can be achieved.
Thanks,
Shashank
Edited by: Shashank Senan on May 23, 2012 2:53 PM

Can you please mark my answers correct......if they were helpful to you.....
That would be so nice of you....:-)
and regarding your next requirement, You should create a new table which will contain Date, Worker Number and any other details that you want.
In the form, for every date for which you want to enter the data, you will select the max(date) before the current date and maximum worker number for that selected date and then from that number you can select next 15/20 workers or whatever your number is.
e.g. for the first time if you want to enter data for 01-jul-2010 and you have work for 15 workers, you will select max(date) where date<01-jul-2010, but you will not find any bcoz this is your first entry. So wat you will do is will start popupating your grid from number 1-15.
Next day you will select max(date) where date<02-jul-2010, you will find 01-jul-2010. Then you will select max(number) for 01-jul-2010, you will find 15. So populate your grid from number 16-30 (whatever your number is). and so on.
Hope it helps you...
Please mark my answer Helpful or correct and Please create a new thread for new question
Thanks
Nishu

Similar Messages

  • Adding a  value to an LOV in an Oracle apps form

    Hi Guys
    Im new to forms and customizations in apps as im sure will be apparent with the questions i have :-)I have a requirement to add a value to an LOV on a field in an oracle apps form.
    My question is
    1: How do i get the lov query?
    2: How do i edit an existing query.
    3: How can i solve this problem.
    Thanks

    Since you are working with the E-Business Suite, most likely the LOV is based on a Value Set. I strongly recommend you confer with a coworker for guidance on how to investigate an Oracle EBS Form. Value Sets are defined within the EBS setup screens and you have to be assigned to a responsibility that will allow you to modify and create Value Sets. I also strongly recommend you visit the Oracle Applications Documentation web site and review the Oracle Applications Developer's Guide and Oracle Applications User Interface Standards for Forms-Based Products for your particular version of the EBS.
    Also, the General EBS Discussion is the more appropriate forum to post this type of question.
    Hope this helps.
    Craig...

  • Need to restrict 1 value in standard F4 Help for vbrk-fkart

    Hi Friends,
                   The requirement is that in the selection screen ,when we are pressing F4 for the field billing type , one value should not appear i.e. if 24 billing types are coming then we want only 23 billing type. The billing type that we donu2019t want is ZFBL ( Which isclient business specific and we donu2019t require now ). Is there any way to handle in any event before displaying the values other than deleting the value from the master table.
    SELECT-OPTIONS:
        so_fkart FOR vbrk-fkart no intervals OBLIGATORY.
         Your help is highly appreiciated.
    With Regards,
    Ajit Prasad.

    Hi Bro,
         copy the data into an internal table .. delete the required entry and pass it to the F4 help Function module (F4IF_INT_TABLE_VALUE_REQUEST) under the event AT SELECTION-SCREEN ON VALUE-REQUEST FOR so_fkart-low..
    cheers,
    jacks.

  • SQL Query to get Account Balance in Oracle Apps

    Hi All,
    I have to use GL Account as a parameter in one of my concurrent programs but before that i need to ensure that the account parameter has no money in it.
    If anyone can help me with a SQL query to find the same, it would be a great help.
    Regards,
    Shruti

    Hi;
    Please follow Subject: Troubleshooting various Issues in Translation of Oracle General Ledger Doc ID: 296379.1 and also etrm site(etrm.oracle.com) for find out more details.
    Regards
    Helios

  • How to determine value of PO account assignment item

    G'Day,
    Simple question: I'm after a cost breakdown of a PO at account assignment level. For this I need to determine the value of an account assignment item in a consistent manner. e.g. if a PO item has an account assignment split across multiple cost centers then I need the value against each cost center. Very straightforward in theory, however in practice the value field in EKKN is not always filled. Some account assignment categories use percentages, others use quantities and others use values or combinations thereof.
    I can code this quite easily, but the examples I've seen for different account assignment categories are a bit too random for my liking. I don't know if I will catch every option so I would prefer some SAP function module or something similar, which I have thus far been unable to find. Does anyone have a method using standard SAP?
    Input appreciated,
    Mike

    Dear Mike,
    Try report ME2K with Cost center using *, account assignment K, plant and posting date restrictions.
    This report will give you the purchasing document - cost center wise quantity distribution details (irrespective of either Quantity or Percentage distribution in Purchase order).
    Only part missing is - in this report you will get ordered price / per unit and cost center wise allotted quantity, the value (Price per unig X cost center wise allotted qty) you didnt get. This can get if the data transferred to excel.
    I hope this will help the requirement.
    Regards,
    Syed Hussain.

  • How to restrict the values in seach helps

    Dear All,
                   I am new to the BSP concept.I have a requirement
    where in the BSP i need to restrict the values of the search help.i.e. 2 values are coming in the help i need to display only 1 value.
    can anybody please explain how to do it.
    Cheers,
    Deepthee Kasal
    Edited by: Craig Cmehil on Sep 2, 2008 8:21 AM

    Hi,
    I assume that you read values for the search help with function 'F4IF_FIELD_VALUE_REQUEST' and in a later step you display values with <htmlb:tableview>. If that is true and the function is delivering too many records as you mention, you could then restrict the output table of values like this:
    TABLES mara.
    DATA: mytable TYPE TABLE OF ddshretval WITH HEADER LINE.
    DATA l_repid TYPE syrepid.
    PARAMETERS p_mtart LIKE mara-mtart.
    AT SELECTION-SCREEN ON VALUE-REQUEST
    FOR p_mtart.
    l_repid = sy-repid.
    CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
    tabname = 'MARA'
    fieldname = 'MTART'
    dynpprog = l_repid
    callback_program = l_repid
    callback_form = 'F4CALLBACK'
    TABLES
    return_tab = mytable
    EXCEPTIONS
    field_not_found = 1
    no_help_for_field = 2
    inconsistent_help = 3
    no_values_found = 4
    OTHERS = 5.
    START-OF-SELECTION.
    blah, blah, blah
    * Form F4_form
    * Exclude all material types that start with F & H
    FORM f4callback
    TABLES record_tab STRUCTURE seahlpres
    CHANGING shlp TYPE shlp_descr
    callcontrol LIKE ddshf4ctrl.
    DATA: aux_struc TYPE ddshselopt.
    MOVE: 'H_T134' to aux_struc-shlpname,
    'MTART' TO aux_struc-shlpfield,
    'E' TO aux_struc-sign,
    'CP' TO aux_struc-option,
    'F*' TO aux_struc-low.
    append aux_struc to SHLP-SELOPT.
    MOVE: 'H_T134' to aux_struc-shlpname,
    'MTART' TO aux_struc-shlpfield,
    'E' TO aux_struc-sign,
    'CP' TO aux_struc-option,
    'H*' TO aux_struc-low.
    append aux_struc to SHLP-SELOPT.
    ENDFORM. "F4_form
    Mark points if helpful

  • How can i post a value to an account and intercompany account

    Hi All
    i need to post a value to an account and inter company account in my script logic.
    For Ex:
    captures values:
    profitcentre     interco     account     amount
    12345             defualt      502400     2000
    now i need to post the same amount (2000) to an intercompany profitcentre to balance.
    when i run my logic it should look like this
    Interco    account   amount
    I_12345   502400   -2000
    how can i do the above things.
    thanks

    Hi Satish,
    You can use the *REC statement to post the amount. For example,
    *WHEN PROFITCENTRE
    *IS 12345
       *REC(FACTOR = -1, INTERCO = I_12345)
    *ENDWHEN
    The above code is static and will work only when the profitcentre is 12345.
    You must be having some relation between profitcentre and interco. Leverage on that.
    1. First fetch all the profitcentres.
    2. Fetch the interco based on above profitcentres.
    3. Run the above code for each of the profit centres with the help of a FOR loop.
    Hope this helps.

  • Restrict variable values in the pop-up selection screen

    Hi,
    I have a variable based on a caracteristic that has 0COMP_CODE as attribute in a Web Report (BW 3.1B).
    This variable has to be accessible so that users can select a value.
    I need to restrict the values that users can see on the selection screen according to their 0COMP_CODE value, even in the pop-up.
    I have tryed authorization variable and user exit, but none worked.
    The best I could do was a "several single values" variable that was preselected with the caracteristics of their 0COMP_CODE, but it didn't worked in the pop-up.
    Does anybody knows how to handle this?

    As far as I could find out, it should be made through customer exit.
    The point is : I have to use a customer exit variable that has been check as "ready for input".
    I can't find a way to restrict the values displayed in the variable selection screen (in the help pop-up window for this variable).
    The exit can pre-fill the selection fields with values, but whenever the user opens the window, he sees all the values.
    I have tryed all the values for I_STEP (0,1,2 and 3) but none did it.
    Does anybody knows how to limit those values?

  • Restrict the values on variables screen

    I've a variable on report screen which I want to restrict the values getting from master data. Variable is a authorization variable type. So I can't set default values. I need to restrict the values for example "00D*".
    At result user should see the master data list values which starts with "00D".
    Cheers,
    Yigit

    SELECT_OPTIONS_RESTRICT is not intended for this, only to restrect the kind of sign and options which are allowed in the select-options, you can restrict to single values, range or disable exclusion, this kind of restriction.
    For your requirement, you have to restrict the dropdown values using FM VRM_SET_VALUES. (use the search tools in [forums|http://forums.sdn.sap.com/search.jspa?objID=c42&q=VRM_SET_VALUES] and [wiki|http://wiki.sdn.sap.com/wiki/dosearchsite.action?searchQuery.queryString=VRM_SET_VALUES&searchQuery.spaceKey=conf_global])
    Regards,
    Raymond

  • Need Query for Item Relationship of Oracle Apps

    Hello Team,
    I need the Query to select the Item Relationship.
    In Oracle Apps we have different tyes of Structure
    ItemA -> ItemB
    ItemB -> ItemC
    ItemC -> ItemD
    ItemG -> ItemH
    ItemK -> ItemL
    ItemW -> ItemQ
    and this also is possible (meand many to one relationship)
    ItemA -> ItemB
    ItemB -> ItemC
    ItemC -> ItemD
    ItemT -> ItemD
    and in the Select Query i want the below result
    ItemA -> ItemB 1
    ItemB -> ItemC 2
    ItemC -> ItemD 3
    ItemG -> ItemH 1
    ItemK -> ItemL 2
    ItemW -> ItemQ 1
    and this also is possible (means many to one relationship)
    ItemA -> ItemB 1
    ItemB -> ItemC 2
    ItemC -> ItemD 3
    ItemT -> ItemD 1
    means i want the Hierarchy number also
    Please help me to in order to get the relationship by sql query.
    Kind Regards,

    thanks for the quick response and i would love to spend time perusing the forum for this question but i didn't have time today.  i'll do that now though.
    what i'm mostly interested in is a chronological view (lastUpdateDate) of the change to pricing for an item in the system.  there is a lot of activity in our system around price changes for promotions and i want to keep track of when it's changed in the source system and pair that with our other downstream systems.
    i'm assuming we can add this functionality through a udf some way or maybe sp_TransNotification proc?

  • Archived Invoices (on separate DB) need to be accessed via Oracle Apps

    Hi there,
    Our organization is currently on Apps 11.5.10.2 and have acquired a new company which has been moved onto Oracle. However this new company has lots of old invoices that we do not wish to migrate to Oracle as we wish to keep the Apps database lean and fast and this data is used very rarely.
    Our plan is to move this data into a separate DB/ Warehouse and build a custom application (using Oracle Forms and Reports) to query the data and print reports.
    However, we need to add some sort of link / menu item within Oracle Apps to call this new application when the user wishes to query this archived data.
    Is this possible? If so, how can this be achieved? How do we create the link from Apps to another database?
    Any help will be much appreciated?
    TIA.
    Ashika.

    Duplicate post.
    Archived Invoices to be accessed via Oracle Apps
    Re: Archived Invoices to be accessed via Oracle Apps

  • Need Ora Apps 11i Manufacturing Funtional Training Institute at Mumbai

    Hello guys,
    I would like to shift my platform to Oracle App 11i Manufacturing functional, but I can't find any Institute which trains on it in mumbai, can anyone guide me for locating an training Institute in mumbai and If I can practice it at my PC, then wht is the configuration needed for the system to suppport the apps.
    thnx
    dilip

    I also need the same. Have you located any such Institute in Mumbai. please let me know.

  • URGENT: Need Applcore for OAF Jdeveloper - Oracle Apps 11.5.10 and R12

    Hi
    Please tell from where can I download the complete Jdeveloper Studio for Oracle Apps 11.5.10 and R12 which has Applcore.
    We need this Oracle JDeveloper for Oracle Apps 11i and R12 development.
    I downloaded Oracle Developer Suite10g (9.0.4.0.0) from :
    http://www.oracle.com/technology/software/products/ids/htdocs/904winsoft.html
    and
    Oracle Developer Suite 10g (10.1.2.0.2) from
    http://www.oracle.com/technology/software/products/ids/htdocs/101202winsoft.html
    but neither of them is having Applcore for 11i and R12
    Thanks
    Rahul
    Edited by: RahulD on Dec 2, 2008 2:53 PM

    RahulD,
    What you want is the OAF download (Oracle Application Framework). The only place to get this is on metalink; you will search based upon the specific version of apps that you have to find the appropriate "patch" to download.
    John

  • Need help for switching to Oracle Apps

    Hi All,
    I am a System Analyst working in Singapore for the last 6 yrs.Currently for the last 3+ years i am in the project implementation & support team for ERP Team.We are using JD Edwards.Currently i have the role of Functional Consultant.
    I want to shift to Oracle Apps (11i).The reason being there is not much scope in JD Edwards.Intially i was working in Developer 2000 as a Forms/Reports Developer.
    I couple of questions to ask :
    1) Do i need to go though a Oracle Apps Training as i already have experience in Jd Edwards ??
    2) Can somebody recommend some good Training institutes in Singapore with Placement Assistance ??
    3) Do anybody knows any company in Singapore who can give training in Oracle Apps and take in professionals who want to make a switch but have experience in another ERP package ??
    Thanks
    Regards

    Hi,
    As you said you were initially working on Developer2000 so it would be lot easier since there would enough background on PL/SQL,forms and reports.Best thing for you I would recomend is pick 2 or 3 modules of your area in JD Edwards like Financials(General Ledger,Recievables,Purchasing,Payables,Fixed Assests...) or HRMS Suite(HRMS,Payroll,Advanced Benefits) which I believe the core business logic for any ERP would be the same. So pick your strong modules in JD Edwards and go through the Oracle Apps Doc. which is available online.In the documentation you will find Application Developer Guide which will be helpful if you are looking to be an Technical Person or you can go through the Module wise documentation if interested in Functional position. Either case better to have overall idea about interested module I mean how the logic and setup will be.
    Initially it will be rough however if you don't give up Apps is lot easier.
    Regards
    Uday Ravipati

  • Need to populate PO Charge Account in PO Distributions Form

    Hi
    I am converting legacy PO's into Oracle 11.5.10.
    I need to populate PO Charge Account in PO Distributions Form in Purchase Order for every shipment which is on legacy PO line, which column in PO_DISTRIBUTIONS_INTERFACE table should be populated.
    I could see 6 Segments setup (company,cost center,account,product,initiative,future) in Oracle from the distribution form.
    I am assuming that i need to populate below columns in PO_DISTRIBUTIONS_INTERFACE table.
    CHARGE_ACCOUNT_SEGMENT1
    CHARGE_ACCOUNT_SEGMENT2
    CHARGE_ACCOUNT_SEGMENT3
    CHARGE_ACCOUNT_SEGMENT4
    CHARGE_ACCOUNT_SEGMENT5
    CHARGE_ACCOUNT_SEGMENT6
    Could you let me know if i am right or wrong.
    thanks.

    Well, you can directly populate the charge_account_id in po_distributions_interface if you know the ccid from gl_code_combinations. In our system, I see that they get charge_account_id from mtl_parameters. It depends how you are receiving these segments and want to default them.
    Even if you use different segment values instead of charge_account_id, the interface may generate new combination. You may have to check the documentation.

Maybe you are looking for