Hgrid Implementation at child level

Hi,
Would anyone please suggest me how to implement HGRID at child level in OA framework. Any advice would be appreciable. Thanks in advance,
Regards ,
Vinit

Please let me know if I'm missing something
Hi Mario,
Thank you very much for your input.
The client is planning to implement Barcode at the delivery document (despatch) level, only for a specific plant.
The objective of the implementation is improve upon the accuracy levels of what is to be despatched and what is actually despatched.
They want to keep track of the following:
1. Delivery document number
2. Total number of line items
3. the quantity of each line items.
4. Packaging: Type of box (wooden, etc.,)
5. Total number of boxes (if line items are 20 and packaged in 4 types of packing boxes each containing 5 items, then total boxes will be 4 boxes)
5. Scanned by (support personnel who scans the items using hand-held device etc.,)
tia.

Similar Messages

  • Implement Parent child Relationship using SSIS

    Could you please suggest the best way which should not impact the performance of data loading, to implement parent child relationship using SSIS.
    We have a flat file RECON80.dat which need to be loaded into the database into 2 tables.
    Parent Table JobMaster  and Child Table RECON80 .
    In the flat file we have a fields Jobphase which will get inserted in JobMaster table and the remaning details like EIN, DATE etc will get inserted in RECON80 table.
    The Parent table JobMaster has JobId as an identity column which is the Pk of the table and it will get inserted into the child table i.e RECON80 JobId as FK of the child tale.
    Please suggest the best possible way to achieve it.

    Hi SubhadipRoy, I think you might need to create a procedure for this task.
    Because in SSIS, we cannot directly get the Identity ID.
    As my experience, there were serveral ways to do. But all are workaround.
    So, My suggestion is.
    In SSIS:
    1. Create a DataFlow
    2. Drag a flat source and load the data from dat file
    3. Create a procedure which receive the parameter from your data of each row.
    4. Drag a OLEDBCommand to the Panel and Invoke the Procedure also don't forget to pass all your rows to the Procedure in OLEDBCommand control.
    5. In Procedure, after insert 1 row you could get the Identity ID throuth SCOPE_IDENTITY()
    That's it, hope it works for you even this may not the efficency way.
    Althrough, I expect someone can give the best way if there is.

  • Burst child level data in email body

    Hi all,
    is it possible to burst child level(with respect to the request select level) data in an email body?
    To explain;
    Say I wanted to burst to email all the invoices a vendor had. This burst would send email separately to each vendor with an attachment of their invoices.
    However to achieve that, the select level has to be vendors(no?). So far so good.
    The problem then comes in when I want to the invoice numbers of a given vendor within the email body itself.
    Data structure looks like this
    <XXXX_SPLIT_DATA_TEST>
    <P_START_DATE>2011-06-06 00:00:00.0</P_START_DATE>
    <LIST_G_OTHERS>
    <G_OTHERS>
    <P_START_DATE>06-Jun-2011</P_START_DATE>
    <MY_START_DATE>2011-09-14T00:00:00.000-04:00</MY_START_DATE>
    </G_OTHERS>
    </LIST_G_OTHERS>
    <LIST_G_V>
    <G_V>
    <VENDOR>ACMEVENDOR1 INC</VENDOR>
    <VEN_NUM>50182</VEN_NUM>
    <VEN_SITE_CODE>MISSISSAUGA</VEN_SITE_CODE>
    <SITE_EMAIL>[email protected]</SITE_EMAIL>
    <CF_VENDOR_ID>36985</CF_VENDOR_ID>
    <CF_VENDOR_SITE_ID>44247</CF_VENDOR_SITE_ID>
    <LIST_G_INV>
    <G_INV>
    <INV_NUM>XO178539</INV_NUM>
    <AMT>20</AMT>
    </G_INV>
    <G_INV>
    <INV_NUM>XO178539-1</INV_NUM>
    <AMT>30</AMT>
    </G_INV>
    <G_INV>
    <INV_NUM>XO178539-5</INV_NUM>
    <AMT>100</AMT>
    </G_INV>
    <G_INV>
    <INV_NUM>XO178539-6</INV_NUM>
    <AMT>20</AMT>
    </G_INV>
    </LIST_G_INV>
    </G_V>
    <G_V>
    .....My burst control file looks like this
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    <xapi:request select="/XXXX_SPLIT_DATA_TEST/LIST_G_V/G_V">
    <xapi:delivery>
    <xapi:email server="myserver" port="25" from="[email protected]"  reply-to ="">
    <xapi:message id="${CF_VENDOR_SITE_ID}" to="${SITE_EMAIL}"  attachment="true"
    subject=" New Invoices created for : ${VEN_SITE_CODE}">
    <! - Add invoices  belonging to Vendor- >
    Please find attached list of new invoices
    Regards,
    Acme Corporation
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output="TEST_${VEN_NUM}_${VEN_SITE_CODE}.pdf" output-type="pdf" delivery="${CF_VENDOR_SITE_ID}">
    <xapi:template type="rtf" location="xdo://XXXX.TEST_INV_BURST_EMAIL_XXXX.en.US?getSource=true" filter=""></xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>  Any ideas?
    Thanks
    Kofi

    I was actually able to get it working myself, using the following:
    var mail;
    var address = "[email protected]";
    var firstname = firstname.rawValue;
    var lastname = lastname.rawValue;
    var location = location.rawValue;
    var date = date.rawValue
    var email = email.rawValue;
    var phone = phone.rawValue;
    var company = company.rawValue;
    var heardabout = heardabout.rawValue;
    var reasonforcall = reasonforcall.rawValue;
    var referredto = referredto.rawValue;
    var notes = notes.rawValue
    var subject = "New Prospect: "+ firstname + " " + lastname + " in " + location;
    body = "Date: " + date + "\n" + "Last Name: " + lastname + "\n" + "First Name: " + firstname + "\n" + "Phone: " + phone
          + "\n" + "Email: " + email + "\n" + "Company: " + company + "\n" + "Location: " + location + "\n" + "Heard about us from: " + heardabout
           + "\n" + "Reason for call: " + reasonforcall + "\n" + "Referred to: " + referredto + "\n" + "\n" + "Notes: " + "\n" + notes;
    mail = "mailto:" + address + "?subject=" + subject + "&body=" + body ;
    event.target.submitForm({cURL: mail, cMsg: cBody, cSubmitAs: "PDF",cCharset: "utf-8"});

  • How to implement Bursting(Row level security) in Xcelsius

    Hi,
    We are using Xcelsius 2008. We have created xcelsius dashboard using Qaaws but for authentication in qaaws we are suing enterprise authentication and default user.
    Now in my dashboard i have one combo box wich gives data fro diffrent states, now i need to restrict the user to see the state values. I implement the row level security in universe, when i create webi report and view that reprot in infoview, the row level security works. But when i publish the dashboard to infoview the row level security doesn't work.
    We are uisng XO 3.1 with SSO on IIS. So how and what are the diffrent option available to implement the row level security in Xcelsius Dashboard.
    Thanks for the help in advance.
    Thanks,
    Nimesh.

    Nimesh,
    Were you able to implement ? I have a requirement to use the same dashboard for 5 regional users.
    Row level security works.
    combo box intial value is Global , when I login as North America user, combo still shows Global but it will have the value of North America.
    i am curious to know how you implemeted this?
    Thanks
    Pushpa

  • Property at child level to be identified at parent level

    We have child items "ingredients" listed w/ properties that are identified as allergen types. I am trying to be able to identify by parent item which of the parent items contain allergens that are identified at the child level. I could do a query at the child level to identify those that have the property boxes checked and then do a where used for each item but that would take a long time and it would be difficult.

    I will give you an example.
    BOM
    item number: 41586    Description: 16 oz bbq sauce
    F0165  BBQ Sauce    500lbs (this is the phantom item that has a BOM with the ingredients that may contain allergend defined at the propert level)
    333154 16 oz jar   500 ea
    333155  cap   500 ea
    The current query identifies the allergens from the ingredient level to the phantom item level (F0165). I need it to identify at the level 41586.
    The phantom Item example is:3
    BOM
    item number: F0165  BBQ Sauce
    333156    tomato sauce   300 lbs
    333157     Smoke flavor     1lb
    333158     onion    2lb
    I am hoping that I can get the query so I can run a report to identify all allergens for items we sell to provide to customer service. As well as if I create a Production Order for 41586 I would like it to print the allergen it contains on the production order.

  • Totals passing to child levels in drill down?

    Hi
    I have an issue where i have set my hierarchy for Region to State.
    When I drill down my reports, the totals are passing to child levels
    So if I have the totals as Region A $100
    Region B $200
    and If i drill down on Region A to States ASA ASB, ASC
    what I see is
    State ASA (region total) $100
    Region A State ASB (region total) $100
    State ASC (region total) $100
    What I would like to see is
    State ASA $ 50
    Region A $100 State ASB $ 20
    State ASC $ 30
    How do I set things up ? Any help would be appreciated.
    Thanks
    Bob

    Hi,
    In BMM layer check weather content level(last tab) is set to detail level(state level or lower than that) in LTS of that fact table.Make it to detail level and try.
    Regards,
    Srikanth

  • Book Management - Recommended child levels

    Is there any limitations in parent and child level for creating regions using Book Management to manage the region hierarchy in an organization doing business world wide.
    E.g.
    Level 1 - All Regions (Parent) - [add users]
    Level 2 - Europe, Asia, North America (All Regions as Parent) - [add users]
    Level 3 - USA (North America as Parent), Canada, Mexico - [add users]
    Level 4 - US East (USA as Parent) - [add users]
    Level 5 - ECR (US East as Parent) - [can contain data and users]
    Level 6 - East Coast Area (ECR as Parent) - [can contain data and users]
    Please let me know your thoughts, Is the above structure is recommended for any world wide companies using Book Management.
    Thanks for your help.

    It is a best practice to keep the number of levels of book management to as few as possible. This will improve performance. I would recommend the following webinars: "Flexible Data Sharing Using Book of Business" and "Consulting Best Practices for Application Configuration"

  • DDL trigger to Capture the DDL changes on one database and applies to child level databases in same server.

    Hi friends,
            I need to create one DDL trigger to Capture the all DDL modification on parent database and applies those changes to the underlying (child) databases  in my project.
            Can anyone help me out in this,how to track the changes and applies to the child level databases?
    Thanks in Advance.

    Use Visual Studio Data Tools or
    Red Gate Compare.

  • How refresh a child level of an hgrid ?

    Hello all.
    I have a screen with an hgrid with 2 levels (father/child). So one VO for each and a VL between the two. This hgrid is populated when the user click on a search button (with parameters...)
    It Works.
    When I click on a father, i can create a child for him in another screen and when I return to the hgrid, I wish to see the new child under his father with its brothers.
    Soo When I come back I my processRequest, I execute the query for the father once again.
    But when I expand the father, the new child doesn't appeared.
    I need to click on the search button again to see the child.
    I thought when I expand the father, the child VO would have been executed, but no....
    I try to reset() and clearCache() on child vo but no success...
    Any Idea ?
    Regards
    Vincent

    clear cache methods should be called in process form request, after you have committed the rows.
    --Mukul                                                                                                                                                                                                                                                   

  • Link to child level detail report via variable ? / navigate to ?

    I was wondering if anyone has had a similar experience; I am trying to based on selection link to customer details
    Example: Fact & Dimensions; Fact (I aggregated to Customers gained); Dimension1 (Date / Period); Dimension2 (Customer Dimension)
    Problem that I have aggregation level has customers and the features they have (features being lowest level); the Dimension is stored at lowest level(customer). I would like to; (based on aggregation) select value based on Time/Gained and then display applicable customers. I was trying to see if there was a way to identify via variable user selection and possible use as filter for detail/child report II. I was hesitant to go to feature level in Dimension only because of size and possible/potential relating slowness.
    Has anyone used such variable, based on selection before ? Or Has anyone noticed issue with using large Dimension 25K + w/indexes ? Also if I was to use larger dimension, is it possible to roll data up, instead of drilling down, because if going to feature level would need to show applicable customers ?
    Thank you in advance for your help

    Thanks David,
    I don't want to enhance the IMG structure. I just want to insert a link to the IMG node in my documentation.
    Example:
    Transaction SE61 -> Document class = General text -> Name = ZZ_TEST -> Create
    Within the editor choose Insert -> Link -> Document class = Implementation Guide chapter (SIMG) -> Chapter = SIMG_CFMENUOLMEOMF4 -> Name in document = PO screen layout
    Back in the editor choose Document -> Screen output
    When the output appears click the link -> SAP will navigate to the RFQ subtree in customizing, but I need that SAP navigates to the PO subtree.
    Any ideas?
    Kind regards
    Rudi

  • Barcode implementation at delivery level:

    Could you please share with me your experience of implementing / integrating Barcode with SAP.
    Hi All,
    Our client is planning to implement Barcode(developed in Dotnet) for a specific plant while doing delivery.
    On the basis of available quantity, picking, packing and post goods issue is done.
    Barcode would step-in at this point. The Barcode developer wants the data in a flat file which has the following details:
    Delivery Document Number
    Item (material number)
    Quantity
    Plant
    Storage Location
    Flat file format would be something like this:
    1004616846|000000000020000118||1000.000|40* (* asterisk as a delimiter)
    1004616846 = Delivery doc #
    000000000020000118 = Material number, etc.,
    Thanks.

    Please let me know if I'm missing something
    Hi Mario,
    Thank you very much for your input.
    The client is planning to implement Barcode at the delivery document (despatch) level, only for a specific plant.
    The objective of the implementation is improve upon the accuracy levels of what is to be despatched and what is actually despatched.
    They want to keep track of the following:
    1. Delivery document number
    2. Total number of line items
    3. the quantity of each line items.
    4. Packaging: Type of box (wooden, etc.,)
    5. Total number of boxes (if line items are 20 and packaged in 4 types of packing boxes each containing 5 items, then total boxes will be 4 boxes)
    5. Scanned by (support personnel who scans the items using hand-held device etc.,)
    tia.

  • How to implement a page level validation !!

    Hello ,
    I want to implement page level validation.
    thanks
    Edited by: kumar73 on Apr 21, 2010 1:41 PM

    Should be pretty easy - your condition would probably just be the click of the button (button name) or the request value sent by the button (SUBMIT?) You can do a function returning boolean as the type
    The code would be something like:
    begin
      if :P1_SHUTTLE is not null or
      :P1_SHUTTLE2 is not null or
      :P1_SHUTTLE3 is not null or
      :P1_SHUTTLE4 is not null or
      :P1_SHUTTLE5 is not null then
        return(true);
      else
        return(false);
      end if;
    end;

  • How to implement sharepoint 2010 security implementation at site level ?

    Hi,
    We are going to implement one school automation system as internet application using sharepoint 2010.
    I want to know what type of step's i have to take for best security level implementation in the site level.
    Thanking You, Nagendra.

    Hiya,
    simple as that, SharePoint 2010 has no known vulnerabilities against SQL injections due to the nature of how it works.
    It's hard to protect against unknown vulnerabilities. If your planning to allow only authenticated users, you can perform the authentication on a dedicated application server. TMG/UAG/Web Application Proxy.
    Besides that, SharePoint 2010 and up was build to be exposed to the internet, with all the considerations that incurs.
    I fail to see the validity in the argument about "any web application using Asp.net there is a chance to SQL inject". If you create a custom asp.net application and do not secure yourself, yes you will have a problem. If you do secure yourself, you do not
    have a problem. Proposing it as a general approach is faulty.

  • Credit Management Parent - Child level

    Hi,
    My client has two company codes A and B which share customers. I have following customer hierarchy :
    Parent - 1 - Limit - 10000
    Child Payer - 2 - Limit 6000
    Child Payer - 3 - Limit 4000
    We want to control the credit limit at each Payer level but want to see consolidated exposure and receivables at Parent level also.
    Thanks,

    Hi
    you can check for the consolidated value in TCode FD32 when you create a hierarchy it will be created like a single customer you can give the number along with the credit control area to get the consolidated parent level credit management.
    regards
    Vignesh

  • New tab implementation at item level in ME21N/ME22N/ME23N.

    Hi Friends,
    I have implemented two badis 1. ME_GUI_PO_CUST and 2. ME_PROCESS_PO_CUST to get a new tab at item level in ME21N/ME22N/ME23N, I could see this new tab only in ME23N but not in ME21N/ME22N, and I found that Badi ME_PROCESS_PO_CUST is not getting triggered for any of these tcodes : ME21N/ME22N/ME23N. Can anybody help me getting this issue resolved with coding example as well.
    Thanks in Advance.

    Hi Know ,
    I know that we have to use the following BADIs
    ME_PROCESS_PO_CUST
    ME_GUI_PO_CUST
    But I does not know what are the methods to be implemented
    and what is the code we have to write in that methods .
    Thanks in advance ,
    Siva.

Maybe you are looking for

  • How can I retrieve my user password for imac

    Just bought an imac.  My password won't work and I can't access my computer how can I change my password or retrieve the old one?

  • 6th Gen sorting issues

    iPod software: 2.0.1 iTunes software:.10.5.1.42 Windows 7 Pro 64 bit SP 1 I'm a strong supporter of proper sorting. So much so that I add the year of release to the Sorting > Sort Album field to bypass the alphabetical sorting iTunes seems to prefer.

  • Effect of commit

    Hi All, I am writing some code in a BADI. In my code I am calling some SAP function modules and in one of the function module there is a statement 'Commit work' . Will this has any effect on the overall transaction for which the BADI is implemented.

  • So many headphone jack problem so do ipod also got this problem

    I think is a standard electronics flaws rite?I heard that ipod also got headphone jack socket problem..

  • Sybase backup on disk problem

    Hello, I am trying to backup sybase database to disk with multiple dumps within one file, I use command dump database PRD to "/sybase/backup/BACKUP_PRD.DUMP" with noinit but it seems the noinit didn't work, each time the new backup will overwrite the