Create LOV with Header Items

Hi,
This might sound as a weird question, but is it possible to create an LOV in ADF with section headers? e.g. a select one choice of employees where the employees are separated into sections within the LOV based on their department. It's because we've got a requirement on our hands to this effect.
Regards,
Debojit

Hi,
Thanks for the quick reply. This helps us a lot. Just a query, for my personal information, would it be possible to acheive something similar if I were to use model-driven lists?
Regards,
Debojit

Similar Messages

  • Table or report for TLB Shipments with header & item details

    Hi,
       Anyone can tell whats the table to view TLB Shipments with header & item details OR any other reports available to view?
    regards
    Arasu

    Hi
    I think following information might be helpful to you.
    http://help.sap.com/saphelp_sm40/helpdata/en/42/cb4e7efb0a136ae10000000a1553f7/content.htm
    Amol

  • Create xml file with nested internla table or with header & item tables

    Hi I have a requirement like, I need to create an xml file for header and item details. For 1 header there may be multiple line items.
    I did search in forums some where I came to know that we can use XSL:IF to achieve this. but I could not able to do this.
    I tried with using nested internal tables also but now luck.
    can anybody please suggest how can we create xml for header and item detials.
    <xsl:transform version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:sap="http://www.sap.com/sapxsl"
      xmlns:asx="http://www.sap.com/abapxml"
      exclude-result-prefixes="asx"
    >
    <xsl:template match="/">
      <OrbisomRequest>
        <xsl:attribute name="Version">
          <xsl:value-of select="11.1"/>
        </xsl:attribute>
        <xsl:attribute name="IssuerID">
          <xsl:value-of select="1"/>
        </xsl:attribute>
        <xsl:for-each select="asx:abap[1]/asx:values[1]/T_FINAL[1]/*">
    <CreateApprovedPurchaseRequest
           RerquestID="{VBLNR}"
           CommonName="User1"
           Amount="{WRBTR}"
           Comment="TestComment"
           CurrencyCode="978"
           PurchaseType="All"
           SupplierName="All"
           VCardAlias="PurchaseCard"
           ValidFrom="1M"
           CurrencyType="B">
                    <CDFs>
                      <Invoice> <xsl:value-of select="BELNR"/> </Invoice>
                      <Amount> <xsl:value-of select="WRBTR"/> </Amount>
                    </CDFs>
          </CreateApprovedPurchaseRequest>
        </xsl:for-each>
      </OrbisomRequest>
    </xsl:template>
    </xsl:transform>
    here belnr and wrbtr will be my item details. for each payment document I can have multiple invoices. in CDF I need to display the invoices for that particular payment document.
    what conditions can I put there before CDFs to make the item internal table to loop based on header internal table.
    Regards,
    Ranganadh.

    Looks like you have already created the transformation "Z_ID"
    Take a look at the following thread, it answers many of the questions you have asked:
    [ABAP data to XML conv with UTF-8 encoding and custom namespace|Re: ABAP data to XML conv with UTF-8 encoding and custom namespace;
    Che

  • Create a new header+item after sync the item some informations are deleted

    Hi All,
    I have a DO with a backend adapter and 3 bapi wrapper (GetList, GetDetail, Create).
    When I create a new instance (header+item) on client side the data are correct in the database. After a sync the instance is also on the client and the Backend but he lost some informations in the item.
    For example i create e_top object (header) and t_vehicle object (item) the i added the item to the header an wirte it  in the database. In the datebase both tables for header and item are correct filled.
    Application Code:----
      public void SaveVehicle( java.lang.String Manufacturer, int Driver, java.lang.String Licence_Number, java.lang.String Type )  {
           VEHICLE_E_TOP e_top = model.createVEHICLE_E_TOP();
           e_top.setLICENCE_NUMBER(Licence_Number);
           wdContext.nodeVEHICLE_E_TOP().bind(Collections.singleton(e_top));
           wdContext.nodeVEHICLE_E_TOP().setLeadSelection(0);
           model.addToVEHICLE_E_TOPs(e_top);
           VEHICLE_T_VEHICLES t_vehicle = e_top.createNewT_VEHICLESs();
           t_vehicle.setDRIVER_ID(Driver);
           t_vehicle.setLICENCE_NUMBER(e_top.getLICENCE_NUMBER());
           t_vehicle.setMANUFACTURER(Manufacturer);
           t_vehicle.setTYPE(Type);
           wdContext.nodeVEHICLE_E_TOP().currentVEHICLE_E_TOPElement().model();
           e_top.addToT_VEHICLESs(t_vehicle);
           wdContext.nodeVEHICLE_T_VEHICLES().bind(Collections.singleton(t_vehicle));
           wdContext.nodeVEHICLE_T_VEHICLES().setLeadSelection(0);
           model.commit();
    Now when I snyc with the middleware the object is still on the client (1 row in the e_top table and 1 row in the item table) but in the row of the item table all data until the header key(Licence_Number) is deleted. In the Backend there is a new objekt with only the header imformations. 
    Best Regards,
    Dirk

    Hi,
    there was another post today n a similar issue. I still do not think it is a standard issue - so lets check first if your implementation is correct.
    You should have a look on the CREATE BADI in the backend and on the mapping in the DOE. I expect the CREATE handler does not get all informations form the client, cause you missed to do the propper mapping in the DOE on the middleware. Check this first. If you see the data on the client, the client side should be fine. Check the DOE and its mapping and the BADI implementation on the backend.
    Hope it helps!
    Regards,
    Oliver

  • LOV with display Items

    Hello,
    i am very much New to Forms 6i
    Please tell me that, can we attach a LOV with a 'Display Item' ..??

    1) Create a display item named DISPLAY_EMPID and set the data type according to EMPLOYEE_ID.
    2) Create LOV using LOV wizard and include any columns you want to see in the list. You may use query like below.
      SELECT employee_id, name FROM YourTable3) In LOV wizard, click the "Lookup Return Item" button and select :YourBlock.DISPLAY_EMPID and FINISH.
    4) Create a button just beside the text item.
    5) Write below code behind the WHEN-BUTTON-PRESSED trigger.
    DECLARE
      vtemp BOOLEAN;
    BEGIN
      vtemp := SHOW_LOV('NAME_OF_YOUR_LOV');
    END;It should return the selected value from LOV to the DISPLAY_EMPID.

  • Creating LOV with Where clause

    I'm trying to create a list of values from a select statementsomething like this
    select customer_name, customer_number from customer
    where Region = 'WEST';
    I'm able to create a list of values of all the customers and numbers, but I could not
    create a lov for a specific subset of that data, such as in the where clause.
    Is it possible to create a LOV with a where clause?

    Use bind variables to accept the region parameter. Also, it is good practice to accept a null parameter value. If your parameter is null, display the entire list of values. Your query would look something like this:
    select customer_name, customer_number from customer
    where Region = :region_name or
    :region_name is null;
    Regards,
    Jay Mason

  • Create File with header

    Hi all,
    We have requirement to send data to FTP server,
    am able to send data to FTP server, but the problem is am not able to send file with Header,
    Eg:
    oreder numer    netvalue   discount   Grossamount
    90000909          2323.34    343.33      4545.000
    90000909          2323.34    343.33      4545.000
    90000909          2323.34    343.33      4545.000
    i have to send the file in the above format.
    plz guide me hoe to create file with above format?
    REgards,
    DS kumar

    Hi,
    Use the following code to create header.
        DEFINE add_field_header.
          clear &1.
          &1-field = &2.
          append &1.
        END-OF-DEFINITION.
        add_field_header heading 'oreder numer'.
        add_field_header heading 'netvalue'.
        add_field_header heading 'discount'.
        add_field_header heading 'Grossamount'.
    In GUI_DOWNLOAD pass heading to Fieldnames parameter.
    Regards,
    Ni3

  • Billing output with Header & Item data fields

    Hello Friends,
    I liked to create new access for Billing output with Sales Orgn/Bill to party(Billing Header data) & Material number (Item data).
    I tried but system not recognizing the field Material number from billing item level.
    Please guide me how to add Material number for item level with other fields form Header for creating new Output access.
    kindly do the needful.
    regards,
    Nitin M.Pawar

    Dear Nithin,
    In the output determination for billing documents, click on maintain condition tables,
    select 'Field catalog: Messages for billing documents'
    new entries and enter MATNR.
    However after this you will have to get the help of ABAP i suppose (for making this new field accessible for creating condition table).
    Thanks & Regards,
    Hegal K Charles

  • Creating LOVs with "Desktop Integration Manager" in EBS 12.1.x

    After some struggling getting the "Desktop Integration Manager" to work (due to some obscure hard-coded security checks) I was able to create an Upload Integrator. The next step is now to add some LOVs on the upload spreadsheet.
    I managed to create a Gender Popup LOV using a table (e.g. FND_LOOKUP_VALUES). Here is how to do that:
    Desktop Integration Manager => Manage Components
    Navigate to your attribute (your interface column) and click Update. Enter the following:
    Val Type      = Table
    Id          = LOOKUP_CODE
    Meaning     = MEANING
    Desc          = DESCRIPTION
    Val. Entity     = FND_LOOKUP_VALUES
    Where clause     = lookup_type = 'IGW_SUBJECT_TYPE' and enabled_flag = 'Y' and meaning <> 'Unknown or not reported' and sysdate between start_date_active and nvl(end_date_active, hr_general.end_of_time)
    Lov Type      = Pop List
    Type your custom Header in the ‘Prompt above’ field if required.
    So far so good. However, I am not able to create a simple date picker or a Java validation. Somehow you need to create (or choose) a ‘Component’ with the ‘Manage Components’ function. But exactly how do you set the Component & Attribute up to make this work? For the date picker I chose:
    Validation Type = Java
    Component Name = Date Picker for From Date
    LOV Type = Blank
    I get a Popup Date Picker in my sheet now, however when I select a date is does not return it to the spreadsheet.
    Can someone provide some screenshots how to create a date picker and/or a Java validation using seeded or custom Components?
    I have read the documentation in the Desktop Integration Framework Developer's Guide Release 12.1 (December 2009) but that didn’t get me much further as there are no examples at all.
    Thx
    Jeroen

    Hi, with 'hard coded security check' I meant that some parts of the "Desktop Integration Manager" only work if you have responsibility "Application Developer" attached to your User.
    You can change a 'seeded' integrator with:
    update BNE_INTEGRATORS_B
    set
    created_by = <your user id>
    ,last_updated_by = <your user id>
    ,display_flag = 'Y'
    ,source = 'C'
    where integrator_code = <your code>
    ;

  • BAPI_PO_CREATE1 to create PO with limit item (item category = B)

    Hello,
    I want to create a PO with a limit item (category = B). What are the important parameters/tables which have to be filled.
    Currently I'm filling the following:
    POHEADER + POHEADERX
    POITEM + POITEMX
    POSCHEDULE + POSCHEDULEX
    POACCOUNT + POACCOUNTX
    POSRVACCESVALUES
    POLIMITS
    The package number in the item matches with the one which is used in POSRVACCESSVALUES and POLIMITS. When I debugg the function module everything looks fine to me and a PO is also created BUT it does not contain any item with category = B.
    Does anyone of you have an idea what is missing?
    Kind regards,
    Thomas

    hi,
    Please reffer the below link
    Blanket Purchase Order and the Framework Order
    Thanking you

  • How to populate the LOV with warehouse item in Item Roles form

    Hi
    Any one please tell me can we populate the list of values for warehouse items in the item roles form, if so please let me know how to do it.
    Navigation
    Go to OPM Inventory Control
    Go to Workflow
    Go to Item Roles
    Opens a window Item Role Relation.
    When I click on the LOV tab of Warehouse Item, it says list of values contains no entries.
    Thanks in Advance
    Prem.

    This applies for Release 11 or before. (Not for R12)
    Warehouse items are the OPM Items. When you define new item there is field warehouse item and by default it gets populated with the same item name. You can manually changed it to previously defined item name.

  • Using bapi_po_create1 to create PO with return item - Order Combination

    Hello,
    There's a shipping tab that appears in a purchase return item, and in it there's a flag called Order Combination.
    Only i can't seem to find a way to change that flag using this BAPI, nor using bapi_po_change.
    Any ideas?
    Thank you in advance.
    Duarte

    Hi
    Its a setting that you maintain in the customer master reord that defaults it.
    So if you want this to be flagged for some vendors and for some no flag the you need to maintain accordingly in the Customer master data  - Sales are data  Shipping tab
    If you want it to be maintained through BAPI then populate the same in  POSHIPPINGEXP structure
    Thanks & Regards
    KK

  • SM Portal display issue while creating incident classification with child items

    Hii,,
    We need to create some incident classification with child items. After creating classification with child items, portal is not showing the classification properly and the page display not showing properly. i.e. showing a block with drop down instead of simple
    drop down as same as for urgency. Please find the snapshot and suggest..
    Regards, Syed Fahad Ali

    The portal flattens those lists, so sadly this is normal behaviour. I would assume it sorts the list according to ordinal which means you may be able to atleast get a list in the correct order. 
    ex. Ordinal in paranthesis
    1. Hardware (1)
    1.1 Printers (3)
    2. Software (2)
    2.1 Windows (4)
    I would expect this list to be flattened into
    Hardware
    Software
    Printers
    Windows
    You see? In order to edit ordinal you would have to edit the list manually in XML. Tons of ressources on how to do that. 
    Cheers,
    Anders Spælling
    Senior Consultant
    Blog:  
    Twitter:   LinkedIn:
    Please remember to 'Propose as answer' if you find a reply helpful

  • Shopping Cart with Service Item (SRM 7.02) - not created successfully

    Hi Experts,
    We have a requirement to create a Shopping Cart with Service Item (SRM 7.02) from PR Data coming from ECC via standard Proxy (PurchaseRequestERPSourcingRequest_In). But we are not able to create the SC with Service Items, though we are successfully able to create SC for Material Items successfully.
    Please suggest, what can be the additional parameters to be passed in order to create a SC with Service Items in SRM 7.02.
    Thanks in advance.
    Regards,
    Gaurav Gupta.

    Hi Gaurav,
    Thanks for your response, but we have standlone scenario( No ECC), we have the Service Hierarchy, Category and Product all setup for Service, yet the system is not creating the SC with Service Item via PR Data Coming in to SRM System.
    Also, we tried the same directly from SRM system using describe what you need, and their as well the SC goes with Service category but when SC details are shown up it shows as Outline Item, where again we need to add subline using service category. Ideally i suppose it should take the Service Category which we added at the time of filling details in Describe what you need.
    Please suggest, where in my main concern was in standalone SRM system if we have material PR data, then apart from the Category to be used Service is their any other parameter to be passed in, to create SC with Service Item.
    Regards,
    Gaurav

  • Unable to create LOV

    Hi, I'm new to APEX and following the 2Day App Express Dev Guide for version 3.1.
    On pages 4-15 to 4-18 is explained how to create an LOV. I followed all the steps without any problems but the LOV doesn't show on the screen.
    Any idea what i'm doing wrong or i'm overlooking?
    The installation of the oehr app went without any problems.

    Hi Menno,
    You may want to review the steps in section Editing Items to Display as Select Lists, on pages 4-17 & 4-18, to ensure that you have edited your items correctly to display as Select Lists, and also associated those items with the relevant LOV. These Select Lists are based on the LOVs that you created in the previous steps on pages 4-15 to 4-17.
    For example, if you edit the P4_JOB_ID item, verify that you have associated the 'JOBS' LOV with this item. When you edit the P4_JOB_ID, go to the List of Values region, and ensure that the 'Named LOV' field is set to 'JOBS'. When the page is run, the "Job" field should now appear as a Select List, with all the job titles listed.
    I hope this helps.
    Regards,
    Hilary

Maybe you are looking for

  • Account determinatin analysis in Sales Order

    Dear Team, Created 2 sales orders, for one sales order - KOFI00 Account determination folder is visible when you check in environment - analysis - account determination, but for other sales order - KOFI00 is not there. Tried to check the difference i

  • Reset Kext Cache

    I deleted a 3rd party kext i was using because it was generating tons of errors, but now it is still generating errors. I was told to clear my kext cache, and I have found ways to do this in 10.5 & 10.4 but not 10.6... If someone can be kind enough t

  • How do I upload pdf files to my iPhone?

    How do I upload pdf files to my iPhone?  I want to be able to read pdf files using the kindle app but, as my internet works at a snails pace, they are too big to transfer to the kindle cloud and back again without going insane.  Is there a way I can

  • I just purchased a new iMac. Will mountain lion be offered as a free update?

    I purchased a new iMac on Monday. Will the new OSX 10.8 (Mountain Lion) be offered as a free update for people who just purchased a new Mac?

  • Ghost image on top of screen in the menu bar...

    I've use an alternative black and white screensaver to try to get rid of that ghost image or look like "ink" going down on the upper right of my screen but it's still comming back and getting worst every week...., there is also a "grey" line all the