Display list items based on another list item

Hi All
            I want to display the list item based on another list item, but its not working.
This is my code:
/*WHEN-NEW-FORM-INSTANCE*/---Its working.
DECLARE
   rg_district   recordgroup;
   rg_name       VARCHAR2 (40) := 'district';
   vtemp         NUMBER;
BEGIN
   rg_district := FIND_GROUP (rg_name);
   IF ID_NULL (rg_district)
   THEN
      rg_district :=
         CREATE_GROUP_FROM_QUERY (rg_name,
                                  'select dist,dist from district_mas'
      vtemp := POPULATE_GROUP (rg_district);
      POPULATE_LIST ('BLOCK3.DISTRICT', rg_name);
   END IF;
   END;
*/WHEN-LIST-CHANGED*/---Not working. Cannot populate the list based on the List
   DECLARE
   rg_branch   recordgroup;
   rg_name1     VARCHAR2 (1000) := 'branch';
   vtemp       NUMBER;
BEGIN
   rg_branch := FIND_GROUP (rg_name1);
   IF NOT ID_NULL (rg_branch)
   THEN
      DELETE_GROUP (rg_name1);
      rg_branch :=
         CREATE_GROUP_FROM_QUERY
            ('rg_branch',
                'SELECT branch FROM dist_branch WHERE district IN (SELECT DIST FROM DISTRICT_MAS WHERE DISTRICT ='
             || :BLOCK3.DISTRICT
      vtemp := POPULATE_GROUP (rg_branch);
      POPULATE_LIST ('BLOCK3.BRANCH', rg_branch);
   END IF;
   END;
Table:
CREATE TABLE DISTRICT_MAS
  DIST  VARCHAR2(100 CHAR)
CREATE TABLE DIST_BRANCH
  DISTRICT  VARCHAR2(100 CHAR),
  BRANCH    VARCHAR2(100 CHAR)
Values:
insert into district_mas values('chennai');
insert into district_mas values('coimbatore');
insert into dist_branch values('chennai','chennai_north');
insert into dist_branch values('coimbatore','Podanur');
Regards
Shagar M

Hmm, not tested.
try this..
--*/WHEN-LIST-CHANGED*/
   DECLARE
   rg_branch       recordgroup;
   rg_name1     VARCHAR2 (1000) := 'branch';
   vtemp        NUMBER;
   QT            VARCHAR2(10) :='''';
BEGIN
   rg_branch := FIND_GROUP (rg_name1);
   IF NOT ID_NULL (rg_branch)
   THEN
      DELETE_GROUP (rg_name1);
      rg_branch :=
         CREATE_GROUP_FROM_QUERY
            ('rg_branch',
                'SELECT branch FROM dist_branch WHERE district IN (SELECT DIST FROM DISTRICT_MAS WHERE DISTRICT ='
             || QT||:BLOCK3.DISTRICT||QT||')'
      vtemp := POPULATE_GROUP (rg_branch);
      POPULATE_LIST ('BLOCK3.BRANCH', rg_branch);
   END IF;
END;
Hope this works..
Hamid

Similar Messages

  • Dynamically changing the list item based on another list item

    Hi all,
    I have two fields that are list items.
    First list item contain two list values: Regular and One-time
    In second list item if user select the Regular then below values should appear:
    Daily wages
    Activity Linked
    Fixed Contracts.
    Contract Staff
    Outsourced
    if user select the one-time then below values should appear:
    Projects
    Repairs & Maint.
    Please do the needful.

    First list item contain two list values: Regular and One-timeYou simply need to add a conditional check to the When-List-Changed (WLC) trigger to see which value was selected. Then, as Manu suggests, you will populate the Poplist based on the selected value.
    For an example of how to dynamically populate a Poplist item, take a look at: Forms: How to Dynamically Populate a Poplist.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Minimum date in calendar item based on another number item

    Hello,
    I have a calendar item that I use in a form. I have another item called effort_days(number) which is calculated using a dynamic action based on other item entries.
    How can I set a minimum pick date in my calendar item that should be sum between sysdate + effort_days?
    Thanks

    i'm not sure if you wanted the second colum's lov values to change per row as your users update the first column or if you simply want the second col's available values to be determined by the originally selected first column values in each row. the latter scenario can be handled easily enough in a manually created tabular form using a call to htmldb_item.select_list_from_query like so...
    select empno, htmldb_item.select_list_from_query(1,mgr,'select ename, empno from emp where empno !='||empno) mgr_select_list from emp
    ...and if you want your available second column values to change as your user updates values in the first column, you'd probably have to use javascript. anyhow, you're hopefully after my second setup. if you're new to manually created tabular forms, there's a great howto doc on them at...
    http://www.oracle.com/technology/products/database/htmldb/howtos/tabular_form.html
    ...hope this helps,
    raj

  • SP Designer Workflow: How to Get Full URL Path to List Item and inserted same list ITem URL in another list

    Hi,
    I have requirement in Sp Designer 2010,Get List item URL and insert in another list as one column value.When open another list and click on same item  column entry url will show the parent item information.
    Here i have create work flow and insert item URL in another list but cant find appropriate item url information.I can easily make  item url link through String builder in mail body with using current id and predefine link,but
    when try to insert the same type of item link in another list where i cant find string builder for create custom url link,only get valur of Path,URL,Absolute URL and Relative server URL,all these links or not provide me exact
    item link dispaly information.
    So I opened SharePoint Designer and start creating the workflow associated to the list.
    As there is some Field from source related to current item URL I start using it
    Encoded Absolute URL – this one should be the one to use
    Server Relative URL
    URL Path
    Unfortunately, none of these options were providing the correct link. Indeed, these options are providing an incorrect path:
    Encoded Absolute URL
    http://wfe1/Lists/bpf/1_.000
    Server Relative URL
    /Lists/bpf/1_.000
    URL Path
    /Lists/bpf/1_.000
    As you can see, the item URL is composed by an ID while it should be http://wfe1/Lists/bpf/dispform.aspx?id=1
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Share Point Application Developer,TCS

    Unfortunately, [%Current Item:URL%] doesn't seem to be available from a "Site Workflow" associated to a List.   I'm finding less advantages to doing a "Site Workflow" when I don't necessarily need to.  One problem is the workflow is initiating
    twice.   I'm thinking I should have just created the workflow as a a "List Workflow."  
    I am going to try "Association Columns" -- that may work.  Anyone have other suggestions?

  • Item based security on List

    Hi,
    I have a list with 3 columns
    Column Name| Column Type
    Employee | Person/Group
    First Name | Single Line Text
    Last Name | Single Line Text
    As the Employee column is of type "Person/Group", I want to apply item based security on this list. For example if Person A is logged in, he MUST NOT be able to update record of others, But yes, he should have rights to update his own Row (Item).
    Please let me know how can i achieve such item based security in list ?

    Hi,
    From your description, I know you want to restrict users to edit items when he is the owner of current item.
    You can try these codes below:
    using System;
    using System.ComponentModel;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.WebControls;
    namespace VisualWebPartProject1.VisualWebPart1
    [ToolboxItemAttribute(false)]
    public partial class VisualWebPart1 : WebPart
    // Uncomment the following SecurityPermission attribute only when doing Performance Profiling using
    // the Instrumentation method, and then remove the SecurityPermission attribute when the code is ready
    // for production. Because the SecurityPermission attribute bypasses the security check for callers of
    // your constructor, it's not recommended for production purposes.
    // [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Assert, UnmanagedCode = true)]
    public VisualWebPart1()
    protected override void OnInit(EventArgs e)
    base.OnInit(e);
    InitializeControl();
    protected void Page_Load(object sender, EventArgs e)
    SPSecurity.RunWithElevatedPrivileges(delegate()
    SPWeb currentWeb = SPContext.Current.Web;
    String currentUserName = currentWeb.CurrentUser.LoginName;
    SPSite site = new SPSite("http://sp/sites/sharepoint2013");
    SPWeb web = site.OpenWeb();
    SPList list = web.Lists["ListA"];
    web.AllowUnsafeUpdates = true;
    foreach (SPListItem item in list.Items)
    string username = GetUser(item, item.Fields["Employee"]).LoginName;
    //break from parent permissions
    item.BreakRoleInheritance(false);
    //delete any existing permissions in the
    //case that this is an update to an item
    SPRoleAssignmentCollection currentRoles = item.RoleAssignments;
    foreach (SPRoleAssignment role in currentRoles)
    role.RoleDefinitionBindings.RemoveAll();
    role.Update();
    if (username.Equals(currentUserName))
    //create"contributor" role
    SPRoleDefinition roleDef = web.RoleDefinitions.GetByType(SPRoleType.Contributor);
    SPRoleAssignment roleAssignment =
    new SPRoleAssignment(
    currentUserName,
    string.Empty,
    string.Empty,
    string.Empty);
    roleAssignment.RoleDefinitionBindings.Add(roleDef);
    //update list item with new assignment
    currentRoles.Add(roleAssignment);
    item.SystemUpdate();
    else
    //create"reader" role
    SPRoleDefinition roleDef = web.RoleDefinitions.GetByType(SPRoleType.Reader);
    SPRoleAssignment roleAssignment =
    new SPRoleAssignment(
    currentUserName,
    string.Empty,
    string.Empty,
    string.Empty);
    roleAssignment.RoleDefinitionBindings.Add(roleDef);
    //update list item with new assignment
    currentRoles.Add(roleAssignment);
    item.SystemUpdate();
    private SPUser GetUser(SPListItem item, SPField userField)
    string currentValue = item[userField.Title].ToString();
    SPFieldUser field = (SPFieldUser)userField;
    SPFieldUserValue fieldValue = (SPFieldUserValue)field.GetFieldValue(currentValue);
    return fieldValue.User;
    The screenshot below is my result:
    Vincent Han
    TechNet Community Support

  • Copy list column information to another list

    Hi Friends,
    I have ListA with columnA and ListB with columnB
    I would like to create a workflow that will copy columnA data to columnB of ListB. Please suggest how I can do it

    Hi,
    According to your post, my understanding is that you wanted to copy list column information to another list.
    You can use the out of the box actions to accomplish this with SharePoint.
    If you only want to copy column information to another list, you can use the “Update List Item” action. In the action, you can get the current item value and set the value to another list item.
    If you can to copy list item to another list, you can use the “Create List Item” action and select the other list.
    If you want to delete the current list item, you can use the “Delete Item” action.
    More information:
    Workflow actions quick reference (SharePoint 2013 Workflow platform)
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Passing Multiple Selected List Items to a "New Item" Form in Another List with Multiselect Lookup Field

    Hi!
    Version Info:  SharePoint 2013 Server Standard (*BTW...I do not have access to Visual Studio*)
    I have two lists, let's call them
    -Assets
    -Asset Checkouts
    "Assets" is the parent list, and "Asset Checkouts" has a lookup column (multiselect) which is tied to the serial # column in the "Assets" list.
    Basically, what I need to accomplish is this:  I would like to be able to select multiple list items in the "Assets" list, and create a new item in "Asset Checkouts", and pre-fill the multiselect lookup column in the NewItem form
    for "Asset Checkouts" with the values from the selected items in "Assets".
    Any ideas or suggestions on how to do this would be most appreciated!
    Thanks!

    Hi,     
    According your description, you might want to add new item in "Asset Checkouts" list when selecting items in "Assets" list.
    If so, we can achieve it with SharePoint Client Object Model.
    We can add a button in the "Assets" list form page, when selecting items, we can take down the values of columns of the selected items, then click this button which will create
    new item in "Asset Checkouts" list with the values needed.
    Here are some links will provide more information about how to achieve it:
    Use
    SP.ListOperation.Selection.getSelectedItems() Method to get the list items being selected
    http://msdn.microsoft.com/en-us/library/ff409526(v=office.14).aspx
    How to: Create, Update, and Delete List Items Using JavaScript
    http://msdn.microsoft.com/en-us/library/office/hh185011(v=office.14).aspx
    Add ListItem with Lookup Field using Client Object Model (ECMA)
    http://notuserfriendly.wordpress.com/2013/03/14/add-listitem-with-lookup-field-using-client-object-model-ecma/
    Or if you just want to refer to the other columns in "Assets" list when add new item in "Asset Checkouts" list, we can insert the "Assets" list web part into the NewForm page
    of the "Asset Checkouts" list, then when we add new item in the "Asset Checkouts" list, we will be able to look through the "Assets" list before we select values for the Lookup column.
    To add web part into the NewForm.aspx, we need to find the button "Default New Form" from ribbon under "List" tab, then we can add web part in the NewForm.aspx.
    In the ribbon, click the button “Default New Form”:
    Then we can add web part into NewForm.aspx:
    Best regards
    Patrick Liang
    TechNet Community Support

  • Need to add list items while clicking another list item.

    I want to know the steps to be followed to get the below functionality .
    EntityList EntityList
    dept
    emp
    all
    At run time when user clicks emp or emp ,dept,all these items should be to enitity list.
    Iam open any list other than LOV.
    Could you anyone help me how to work this functionality
    Thanks,

    Block Name:CONTROL
    List 1 List 2
    ENTITY_TYPE ENTITY_LIST
    Emp
    Dept
    All
    I have to add List1 item to List2 when user clciks on List1.
    In when-list-changed-trigger
    Declare
         v_list_id ITEM := find_item('CONTROL.ENTITY_LIST');
         v_list_value1 VARCHAR2(100);
    Begin
    Select :CONTROL.ENTITY_TYPE into v_list_value1 from dual;
    Add_List_Element('CONTROL.ENTITY_LIST',1,v_list_value1,v_list_value1);
    End ;
    Iam getting run time warning no list elemnets in entity_list .
    And the form is not showing any list elements in entity_list when i cick on list1.

  • Cannot float item next to another floated item...help needed...

    Hi everyone,
    I'm using DW CS4 and am somewhat in a snag. I am trying to line up an image, text and another image side by side.  I was successfully able to float the text to the right  of the image (by using float: left) and now I am trying to float another image left of the text.  However, when I attempt, the image does not move and the text expands out (I put the text in a DIV container and gave it a width of 800 px); my entire layout is 1280 pixexl.  So what I'm asking is, how can I float an item next to another item?  I've posted the code below.  All help is greatly appreciated.  Thank you!
    **I posted my entire CSS and highlighted the area I am having issues with.
    Website Dimensions:
    body {
              height: 1024px;
              width: 1280px;
              margin:0 auto;
              position:relative
    HTML:
      <!--Main Content Begin-->
      <div id="main_content">
      <!--Top Hat Photo Begin-->
      <div id="Top_Hat_Photo">
          <img src="Dee 201 Big Smile Fade Surgical.jpg" width="438" height="376" alt="Dee Lewis" /></div>
          <!--Top Hat Phote End-->
          <!--Quotes Begin-->
          <div id="Quotes">
          <h1> Main Content</h1>
          <p>&quot;From writer to filmmaker to actress and back again. DeAara Lewis comfortably wears the hats of three crafts.&quot;</p>
      <p> Pearl Washington </p>
        <p> Tri State Defender</p>
        <p> </p>
        </div>
        <!--Quotes End-->
        <!--TV Icon Begin-->
        <div id="TV_Icon">
      <img src="TPIMH TV.jpg" width="303" height="325" alt="The People Inside My Head Coming Soon!" /></div>
      <!--TV Icon End-->
    </div>
    <!--end "main content"-->
    CSS:
    #container #main_content {
    #container #Header #Dee_Title {
              padding-left: 50px;
              width: 600px;
              clear: both;
    #container #main_content #Top_Hat_Photo img {
              float: left;
    #container #main_content #Quotes {
              width: 800px;
              float: left;
    #footer {
              clear: both;
    #Header #Navigation_Menu ul {
              margin: 0px;
              padding: 0px;
              list-style:none;
    #Header #Navigation_Menu ul li {
              float: left;
              text-align: center;
    #Header #Navigation_Menu ul li a:link, #Header #Navigation_Menu ul li a:visited {
              padding:.2em .5em;
              display:block;
              font-family:Georgia, "Times New Roman", Times, serif;
              font-size:1em;
              font-weight:bold;
              color:#000;
              text-decoration:none;
              line-height:1.2em;
              margin-right:.5em
    #Header #Navigation_Menu ul li a:hover {
              color:#C90;
    #Header #Navigation_Menu ul li a.current, #Header #Navigation_Menu ul li a.current:hover, #Header #Navigation_Menu ul li a.current:active {
              color:#00F;
              cursor:default;

    Working with Floats & Margins:
    http://alt-web.com/DEMOS/3-CSS-boxes.shtml
    Captions with Floated Images
    http://alt-web.com/DEMOS/CSS2-Captions-on-floated-images.shtml
    Photo Layout
    http://alt-web.com/TEMPLATES/Dark-Grid-II.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Retrieve Title field values from multiple lists and add into another list

    Hi , Iam trying to retrieve Title field value from multiple lists. and add them into another list. using Javascript. Can any one help me in doing this. Below is the code.. function save() { clientContext = new SP.ClientContext.get_current(); oWebsite = clientContext.get_web(); oList = clientContext.get_web().get_lists().getByTitle('MainList'); clientContext.load(oList); clientContext.executeQueryAsync(OnSucceeded, onQueryFailed); } function GetListItemValue(listName, fieldName) { var list = oWebsite.get_lists().getByTitle(listName); var eventValue = document.getElementById(fieldName).value; eventValue = eventValue.replace(",", ""); var camlQuery = new SP.CamlQuery(); var filterdata = '<view><query><where><eq><fieldref name="Title/"><value type="Text">' + myreqValue.trim() + '</value></fieldref></eq></where></query></view>'; camlQuery.set_viewXml(filterdata); listItems = list.getItems(camlQuery); clientContext.load(list); clientContext.load(listItems, 'Include(Id)'); clientContext.executeQueryAsync(Succeeded,Failed); } function OnSucceeded() { itemCreateInfo = new SP.ListItemCreationInformation(); oListItem = oList.addItem(itemCreateInfo); oListItem.set_item('Title', 'My New Title'); var deptItemLookupField = new SP.FieldLookupValue(); //Problem in below line...I was unable to get ID var getId = GetListItemValue("Listname1", "txtboxname1"); alert("ID" + getId); if (getId != undefined) { deptItemLookupField.set_lookupId(getId); } var getId12 = GetListItemValue("Listname12", "txtboxname12"); alert("ID" + getId12); if (getId12 != undefined) { deptItemLookupField.set_lookupId(getId12); } oListItem.update(); clientContext.executeQueryAsync(itemadded, itemFailed); } function itemadded() { alert('Item added successfully'); } function itemFailed(sender, args) { alert('Item added itemFailed' + args.get_message() + '\n' + args.get_stackTrace()); }
    Raj

    Hi,
    For this requirement, you will need to retrieve all the lists objects you want firstly, then execute the requests one by one to get the value of the Title column using CAML or
    LINQ.
    How to: Retrieve Lists Using JavaScript
    http://msdn.microsoft.com/en-us/library/office/hh185009(v=office.14).aspx
    About
    retrieve list items:
    http://msdn.microsoft.com/en-us/library/office/hh185007(v=office.14).aspx
    You can use
    Promise in your script to make your requests sequentially:
    http://www.shillier.com/archive/2013/03/04/using-promises-with-the-javascript-client-object-model-in-sharepoint-2013.aspx
    http://www.learningsharepoint.com/2013/08/13/using-deferred-and-promise-to-handle-async-calls-in-sharepoint-client-object-model/
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to display value of an item based on another item

    Hi,
    In a page I've to display name for the corresponding id displayed in id item.Can I write a query based on id and display name as soon as I enter into that item.if so are there any properties I need to set ?I'm looking for just post_text_item functionality in forms?
    Thanks,
    Mahender

    Hi,
    I've created sample table with id,first_name and last_name to test:
    I've created AJAX script in application process area with name GET_NAME
    declare
    v_name varchar2(150);
    begin
    select first_name||'-'||last_name into v_name from names
    where id = :P53_id;
    htp.prn(v_name);
    exception when others then htp.prn('An error occurred retrieving name'||sqlerrm);
    end;
    CREATED JAVA SCRIPT IN html headers section of the page p53:
    <script type="text/javascript">
    function get_name(){
    var id = document.getElementById('P53_id').value;
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value, 'APPLICATION_PROCESS=GET_NAME’,0);
    get.add('P53_id',id);
    var gReturn = get.get();
    document.getElementById('P53_name').value = gReturn;
    </script>
    put the following in HTML Form Element Attributes of p53_id :
    onchange="get_name(this,'P53_id)"
    It's not working ?
    Can anyone help
    Thanks
    Edited by: user518071 on Aug 14, 2009 8:14 AM
    Edited by: user518071 on Aug 14, 2009 11:04 AM
    Edited by: user518071 on Aug 15, 2009 5:02 AM

  • Reflecting the items of second list box based on the chosen item of first list box

    Report Builder Version 6
    i would like to have let's say 2 list boxes in parameter form...say P_EMP AND P_DEPT as the sources...the P_DEPT is on top of P_EMP...SO when i choose a DEPT NO FROM P_DEPT ..THEN respective P_EMP will be displayed...how can i do ?
    i was told that so far in Report Builder is not able to achieve that..
    so i think of designing the parameter form by myself using PL/SQL. But now the problem is how to call the report builder procedure and vice versa ? how to pass parameter to and from report builder to my own-built parameter form using PL/SQL ?
    null

    Design a form wich must replace the parameter form of the report.
    The form can contain different fields for filtering data,fields for type of the report,orientation,destination,etc..
    After the user select the desired fields and press the execute report button you can call a report stored procedure and build a parameter list for calling RUN_PRODUCT.
    Hope this helps.
    null

  • Select MULTIPLE default values for a multiple selection list box based on another field in Infopath 2010

    Hello there - Before I explain my issue, I would like to point out that I have reviewed some other discussions on selecting default values for multiple selection listbox. But my issue is specific and different, and not answered by any of the discussions
    I visited.
    I have a multiple selection list box (say for example all countries in the world as values), and I would like to pre-select or setup multiple default values (say five countries) based on some criteria that I query from MS SQL database table.
    I know we can go to Data | Default Values option to setup one or many default values for multiple selection list box. When I enter the default values manually this works. I also right click the field under the Multiple-Selection List Box group, then select
    Add another Value Below and set the Default Value for this field to setup multiple default values.
    However, if I reference a field (either an infopath field or a field from SQL database) I am not able to setup multiple default values. Infopath automatically selects the last field I selected for all instances and in the end I am able to see only one
    default value selected instead of many. How to fix this problem? Why would infopath allow multiple default values when we enter it manually but not when we reference some fields?
    Please let me know if you need more info. Appreciate your help.
    Thanks!

    Hi redhotc,
    According to your description, my understanding is that you want to set multiple default values for a multiple checkbox list in InfoPath form.
    I did a test with SQL database table. I set three default values for the checkbox list by adding three values field under the group field(Data->Default values), each value field is for a default value. Then publish it to my SharePoint site, everything
    was fine.Please have a try as the below link:
    http://www.bizsupportonline.net/infopath2010/pre-select-items-multiple-selection-list-box-infopath-2010.htm
    Note: if you are using SQL databse table, you may need to enable ‘Allow cross-domain data access for user form templates that use connection settings in a data connection file’ in CA. More information, please refer to:
    http://answers.flyppdevportal.com/categories/sharepoint2010/sharepoint2010customization.aspx?ID=418b9423-a96c-4e5e-91f9-6a1b010ebb69
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to display chart region based on select list in html region ?

    Hi all,
    i'm using 4.0.1.00.03 apex version,in a page i have 2 regions one is html and another one is Chart region.in html region i have a select list and button.when user sign into my application select list have some values in that page,user select's a value and clicks on the button then chart will be displayed.my query is when user first sign into my application i want to dispaly chart region when only select list is selected and clicks on the button.can any one guide me on this.
    thnx in Adv.

    Hi yann,
    thnx for ur reply,
    i have done what u have written but i didn't meet my requirement..
    let me explain what i need exactly
    as of now my application is like this..
    i have a html region in that i have select list(P6_LIST) and go button
    and chart region.
    chart query is like this..
    SELECT your_value
    FROM your_table
    WHERE your_value = :P6_LIST
    AND ...
    how it is working??
    when user sign into my application, user can see html region with 'select list and go button' and chart region with 'no data '.
    when user select a value in select list and click on go button automatically chart region will be dispalyed with chart.
    what i wanted to change is..
    when user sign into my application, user can see html region with 'select list and go button' and no chart region
    when user select a value in select list and click on go button then only user can see chart region with chart.
    plz help me how to do it.. :)
    thnx in Adv.
    Edited by: moulani on Nov 4, 2011 12:05 PM

  • Separate tax line item based on material line item in MIRO

    Hi Guru,
    PO qty is 100 unit with RM1/each. Condition maintained as sales tax 10%. I did 2 GR separately (MIGO) for said PO with 10qty & 20 qty each.  That means sales tax total is (30qty x RM1 x 10% tax) = RM3.
    Now I wanted to do IV (MIRO). I noticed 3 line item altogether as show below;
    1. 10qty & RM10 (material)
    2. 20qty & RM20 (material)
    3. 30qty & RM3 (tax)
    All line item qty & amount are correct but then the tax line is accumulate altogether. User wanted this separate like how the 1st & 2nd line item is. The reason is the user only wanted to post 1st line item with tax that belongs to 1st line item this month & the 2nd line item may post next month. Please take note that according to our business process, user are NOT allowed to make any changes in qty or amount in MIRO.
    May I know how we can separate all condition type amount & qty based on GR qty so that user can select each pair accordingly & able to post it.
    Thanking in advance.
    rgds,
    nema

    Dear Experts,
    Can anyone assist me?
    rgds,
    nema

Maybe you are looking for

  • Can we edit the System Report queries to add some missing fields ?

    Hello, I'm using SAP Business One 2005 A and I was wondering if there was a way to edit the system report queries.  Sometime, I'm only missing calculated fields in the existing report.  Something as easy as the difference between 2 dates is not worki

  • PHP won't execute on Dream Weaver testing server

    I have successfully installed an Apache server and MySQL using Xampp.  Using Dream Weaver (CS5.5) I've created .php pages which (after setting up the site and testing server) successfully connect to a database.  However, php code on those pages won't

  • Deleting old templates in Bridge from OSX 10.7.3

    In my home folder, Library/Application Support/Adobe/XMP I don't have metadata templates, but a folder named Custom File Info Panels, which brings to 2 folders,  called 1.0 and 3.0. 1.0              > Adobe Stock Photos                      AMT      

  • Time Machine backup corrupted

    Just replaced the internal hard drive in my iMac because I thought it was failing. Reinstalled 10.6, restored the Time Machine backup for the four users on the computer, and the symptoms have returned - spinning wheel at the startup, sometimes not fi

  • How to convert or watch QTVR movies (panoramas) with Mavericks?

    I have followed the discussions how to watch incompatible videos since Mac OS 10.9 (Mavericks).... And I have learned that I have to convert my videos to new compressions formats like H.264, MPEG4 or similar. If I like that idea or not. But if a try