Order child + item structure in a SyncBo

hello all,
i need to implement and combined <b>order using 1 header & 2 childs field of my sync bo in my web page.</b>
I <b>tried to use, as javadoc explain, the classes: Condition, Query, SortOrder</b> but they not have effect in my dataset display.
could we help me?
my java code is:
<i>Condition cond =                    queryFactory.createCondition(fd, filterOperator, filter);
FieldDescriptor OrderNumberField = rd.getFieldDescriptor(OrderNumber);
SortOrder byOrderNumber = queryFactory.createSortOrder(OrderNumberField, true);
RowDescriptor childrow = sbd.getRowDescriptor("010");
FieldDescriptor posFieldDescriptor = null;
FieldDescriptor rowFieldDescriptor = null;
iteratorSyncBos = dataFacade.getSyncBos(sbd).iterator();
SyncBo S = (SyncBo) iteratorSyncBos.next();
RowCollection rc = S.getRows(childrow);
MeIterator ri = rc.iterator();
Row r = (Row) ri.next();
posFieldDescriptor = r.getRowDescriptor  ().getFieldDescriptor("EBELP");
rowFieldDescriptor = r.getRowDescriptor().getFieldDescriptor("EXTROW");
SortOrder singleSortOrder = queryFactory.createSortOrder(fd, sortOrder);
SortOrder byPosition = queryFactory.createSortOrder(posFieldDescriptor,true);
SortOrder byRow = queryFactory.createSortOrder(rowFieldDescriptor,true);
SortOrder[] multipleSortOrder = new SortOrder[];
SortOrder compositeSortOrder =  queryFactory.createSortOrder(multipleSortOrder);
Query syncBoQuery =
queryFactory.createQuery(sbd,cond,compositeSortOrder, start,     count);</i>
- using MIClient 2.5 SP13 -

Hi Elina,
this will help u ... go through this code samples...
<b>//Method for  getting the field names in the ITEM .This is a standard method in the //SmartSyncDBAccess.This have two  input parameters . ]
// syncBoName  - Name of sync Bo
// itemName – Item name of the syncBo. Eg – 010 , 020… If you want to find out the                  // field names of the header of the sync bo , then  u can use “TOP”  in place of the item //name…</b>
public String[] getFieldNames(String syncBoName, String itemName) {
SyncBoDescriptor sbd = descriptorFacade.getSyncBoDescriptor(syncBoName);
RowDescriptor rd = sbd.getRowDescriptor(itemName);
FieldDescriptorIterator fdi = rd.getAllFieldDescriptors();
String[] arrayItemFieldNames = null;
if (fdi != null) {
               // count the SyncBoDescriptors to size the array     //accordingly
               int i = 0;
               while (fdi.hasNext()) {
                    fdi.next();
                    i++;
               fdi = rd.getAllFieldDescriptors();
               arrayItemFieldNames = new String<i>;
               i = 0;
               while (fdi.hasNext()) {
                    arrayItemFieldNames<i> = fdi.next().getFieldName();
                    i++;
               return arrayItemFieldNames;
          } else {
               System.out.println(
                    "SmartSyncDBAccess.getItemFieldNames - Array of Item Field Names is empty");
               return null;
<b>/// This method is for getting the values of Header instances..This is the modified version //of one  standard method in SmartSyncDBAccess.The modification is to avoid the null
// pointer exception in the standard method. The standard method is without handling
//some null pointer exceptions….use this way….
//Here import params are SyncBo instance and HeaderFieldName</b>
public String getHeaderFieldValue(SyncBo sb, String headerFieldName) {
          SyncBoDescriptor sbd = sb.getSyncBoDescriptor();
          RowDescriptor trd = sbd.getTopRowDescriptor();
          FieldDescriptor fd = trd.getFieldDescriptor(headerFieldName);
          BasisFieldType bft = fd.getFieldType();
          Row header = sb.getTopRow();
          try {
               if (bft == BasisFieldType.N) {
                    NumericField nf = header.getNumericField(fd);
                    try {
                         return nf.getValueWithLeadingZeros();
                    } catch (RuntimeException e) {
                         return "";
               } else {
                    Field f = header.getField(fd);
                    if (f == null) {
                         return "";
                    } else if (f.getValue() == null) {
                         return "";
                    } else {
                         if (bft == BasisFieldType.D) {
                              String aDa = f.getValue().toString();
                              if (!aDa.equals("")) {
                                   Date fDa = Date.valueOf(aDa);
                                   return formater.format(fDa);
                         return f.getValue().toString();
          } catch (SmartSyncException ssex) {
               System.out.println(ssex.getMessage());
               return null;
<b>/// This method is for getting the values of Item instances..This is the modified version //of one  standard method in SmartSyncDBAccess.The modification is to avoid the null
// pointer exception in the standard method. The standard method is without handling
//some null pointer exceptions….use this way….
//Here import params are Row instance and FieldName…</b>
public String getItemFieldValue(Row item, String itemFieldName) {
          RowDescriptor rd = item.getRowDescriptor();
          FieldDescriptor fd = rd.getFieldDescriptor(itemFieldName);
          BasisFieldType bft = fd.getFieldType();
          try {
               if (bft == BasisFieldType.N) {
                    NumericField nf = item.getNumericField(fd);
                    try {
                         return nf.getValueWithLeadingZeros();
                    } catch (RuntimeException e) {
                         return "";
               } else {
                    Field f = item.getField(fd);
                    if (f == null) {
                         return "";
                    } else if (f.getValue() == null)
                         return "";
                    else if (f.getValue() != null) {
                         if (bft == BasisFieldType.D) {
                              String aDa = f.getValue().toString();
                              if (!aDa.equals("")) {                                   
                                   Date fDa = Date.valueOf(aDa);
                                   return formater.format(fDa);
                         return f.getValue().toString();
                    } else
                         return "";
          } catch (SmartSyncException ssex) {
               System.out.println(ssex.getMessage());
               return null;
<b>//How to use these methods….
// How to loop through Header instances and getting the values of  each instaces , which // are already queried ,using the code I have given in my second last forum..</b>
String[]getFieldNames =
               getItemFieldNames(<syncBoName>, “TOP”);
<b>MeIterator headerValues = <Here query the header values as I mentioned in that sample code ></b>
int fieldCount = arrayHeaderFields.length;
while (headerValues.hasNext()) {
   SyncBo sb = (SyncBo) headerValues.next();
for (int col = 0; col < fieldCount; col++) {
   String headerFieldValue =
     getHeaderFieldValue (sb,arrayHeaderFields[col]);
<b>// Get values from item instaces which are already queried ..u can use the code in my last // reply itself.</b>
String[] arrayItemFields =
               getFieldNames(<syncBoName>, <itemName>);
<b>Row[] itemValues = <”Here query the item instances as I mentioned in that last sample code”>;</b>
int itemCount = itemValues.length;
int itemFieldCount = arrayItemFields.length;
          String itemFieldName;
          String itemFieldValue;
//loop through item instances
          for (int row = 0; row < itemCount; row++) {
// loop through each instace of item
               for (int col = 0; col < itemFieldCount; col++) {
// getting values 
                itemFieldName = arrayItemFields[col];
itemFieldValue =                    getItemFieldValue(itemValues[row],itemFieldName);
                         Regards
                         Kishor  Gopinathan

Similar Messages

  • Plant Determination for Third Party Material as Child Item in Sales Order

    Hi All,
    We have an issue with the Plant Determination for Third Party Material as Child Item in a Sales Order.
    Even when a Delivering Plant is maintained for the child item which is a Third Party Material, the plant of the Parent Item is only populated as the Default plant in the Sales Order
    Can someone explain the reason behiind this determination.
    P.S.- For all non -Third PartyChild Items (with non-Third Party Item Catefory & Material Type), the Plant is population correctly as per Delivering plant in Material Master.
    TIA.
    Regards,
    Sridhar

    Hi,
    Thanks everyone for the feedback.I agree with Samir Danish.It is a standard functionality of SAP which does not allow free goods for BOM material.
    However, can someone suggest work around to deal with this issue.I mean if any one has been doing any work around for this issue then please let me know.It s becoming critical for me.
    Regards,
    BM

  • Sales BOM its possible edit the quantity for child items in Sales Order

    Hello friends, this is my issue
    I need to use a Sales BOM but the problem is that the child items in any Document marketing, such as Sales Order, the quantity for that child items it´s possible to edit independant of the father item code, and I don´t want this because allows to users to change diferent quantity for child items versus the quantity of the father item code.
    Thanks in advance

    Thanks Gordon yes I know even with this solution the problem is the with transaction notification is not possible determine that event to block, or if you know how or get some tip, please send me, because I analyze the requirement and I couldn´t develop.
    Tks

  • Finding Order Lines with only top model and no child items

    Hi All,
    Can you please help me in finding out the Order lines which are having only top model and no child item and the lines total is zero. I framed a query for this but it takes too long time to retrieve such lines. the query is:
    select top_line_id, header_id,flow_status_code ,line_type_id
    from (select count(*) lines, top_model_line_id top_line_id, header_id,flow_status_code ,line_type_id
    from oe_order_lines_all
    where flow_status_code in ('BOOKED','ENTERED')
    and line_type_id IN (<line_type_id>))
    group by top_model_line_id,header_id,flow_status_code,line_type_id)
    where oe_totals_grp.get_order_total (header_id,top_line_id,'ALL')<=0
    and lines <=1
    order by line_type_id desc;
    Can you please help me in this case?
    Thanks
    Himanshu

    Hi,
    You can try including the condition top_model_line_id is not null. I think that would make the query faster because it would allow the use of an index. The query would look like:
    select top_line_id, header_id,flow_status_code ,line_type_id
    from (select count(*) lines, top_model_line_id top_line_id, header_id,flow_status_code ,line_type_id
    from oe_order_lines_all
    where flow_status_code in ('BOOKED','ENTERED')
    and top_model_line_id is not null
    and line_type_id IN (<line_type_id>)
    group by top_model_line_id,header_id,flow_status_code,line_type_id)
    where oe_totals_grp.get_order_total (header_id,top_line_id,'ALL')<=0
    and lines <=1
    order by line_type_id desc;Hope it helps.
    Regards.

  • Child Item Warehouse in Production Orders

    In a Production Order, I am trying to change the child item warehouses when the parent item warehouse is changed.  I created a UDV that is set in the child item warehouse field and triggers when the parent item warehouse is changed.
    SELECT $[OWOR.Warehouse]
    The error I get is:
    Internal error 'Items - Warehouse' (OITW)(-2118) occured [Message 131-183.
    What could be causing this error?

    Hi,
    Try Below
    $[$78.1]
    and refresh it on item code.
    Regards
    Deepak Tyagi

  • 57F4 challan print - getting parent item no and po number for child item

    Hi ,
    In 57F4 challan, Subcontract components - i.e Child items are used for creating the challans.
    However while printing needs the parent item no with the purchase order number for that child item number.
    It is getting stored in RM07M structure.
    Any inputs / suggestions how to retrive parent item number and purchase order number for child item i.e for subcontract items?
    Thank you .
    Prasad.

    Thank you for the reply. I checked the table RSEG table for material document and PO details, however the RSEG gets populated when there is credit or debit entries.
    In this 57F4 challan there is no credit or debit enteries hence would not get in RSEG table.
    Appreciate your inputs for any other alternative.
    OR is there any table or Function Module to get the enteries of the struture of RM07M .

  • About production order & phantom item

    Hi experts,
    I made a BOM containing several phantom items which are virtual items and don't have any stock. then I made a production order, SBO appears an error, "This product contains components which are phantom items, you must define the BOM for these items."
    that seems i can't directlly use phantom items in production orders, I have to make a BOM for those phantom items and use that new BOM, is that right? or are there any methods to let production order contain phantom items?
    Thanks...
    PS, one of my phantom item is gummed tape.

    A Phantom item is more for structural purpose and it should contain child items and must be defined as a BOM.  The child item will be issued to jobs when a Production Order for the Parent Item containing the phantom item is created.
    Suda

  • Need to Split Sales Order Line Item in VA01

    Hi,
      I have a requirement in which i have to split an order line item for KMAT materail number. system popup configurable screen, here all the required characteristic values have to be selected as per the customer requirement.
    After entering all the required customer specific characteristic values, system determines batch automatically. If characteristic values of the Batch matches with the characteristic values of configurable screen selected in the sales order
    Here also we have to check the sales Order Quantity (VBAP u2013 KWMENG) and order Confirmed quantity (VBEP u2013 BMENG), if the both the quantities are not same, consider order has partially confirmed.
    If Order quantity is partially confirmed, check for the batches with the same characteristic values of the quotation configurable screen and if batch found, system has to create a one more line item and new batch has to be assigned to create line item.
    Reduce the order quantity equal to the confirmation quantity in the first line item.
    Create a new line item in the quotation, copy all the remaining unconfirmed quantity from the first line item and also copy all the characteristics and properties (item category, schedule line category, business data, item data, and requirement type) and assign the batch to the new line item. System does the availability check automatically and confirms.
    In another scenario system doesnu2019t find batch, in this case capable to promise has to trigger directly.
    Here we have to check the Order confirmed quantity, if confirmed quantity is equal to zero.
    Change the item category of the line item, due to which system determines different Requirement type and schedule line category.
    Based on the Requirement type system triggers the capable to promise.
    I would lke to know which is the suitable user eixt or BADI to split the line items and what all the tables or structures i need to populate in order to create a new line item successfully.
    I have seen many post in sdn but no body gives the right user exit name where i can add new line item.
    Regards,

    Hi Amit,
      Thanks for your reply. In this scenario configurable material is involved. And first Make to Stock scenario is executed to check any material with customer entered characteristics are avialable. If its so it will determine its batch and assigned the quantity.
    If zero quantity is assigned or no quantity is assigned then I have to trigger the Make to Order scenario for rest of unconfirmed quantities in order.
    I have check it in USEREXIT_MOVE_FIELD_TO_VBAP but it was of no use. I even tried in USEREXIT_CHECK_VBAP but still no result. I am not sure what all the tables and structures i need to populate there.
    Regards,

  • Error-M2O-Settlement rule for assembly order for item...could not be genera

    Hi,
    When I am creating Sales Order (VA01) for M2O, I am able to do the costing and copy the EK02 condition type. I have verified the the incompletion log, it indicates that document is complete.
    But while saving the sales order, the below error message is displaed:
    Settlement rule for assembly order for item 000010 could not be generated. Should the order still be saved?
                    Yes/No
    1. If No is choosen the following error message is displayed
           Error when processing Production order
          Error when processing Production order
          Message no. V1380
          Diagnosis
            A technical error has occurred. On calling up the assembly interface, exception 5 was triggered. The exceptions have the  following meanings:
    1 = External block,  2 = General error,  3 = Insufficient data for the interface,  4 = Order was not found, 5 = Update has been rejected, 6 = Final document number for Production order is not issued.  Procedure: Inform your system administrator.
    2. If Yes is choosen, it is creating Production Order without settlement rule. Able to perform GI & Gr. If I try to enter settelement rule (Settlement receiver SDI - Sales document item) in production order (CO02), the belwo error message is displayed
    "Distribution rule for Sales document item can only be created automatically Message no. KD063"
    We are using the requierement class with below details:
    Reqmts class: ZSO- for M2O
    AAC = E, Valuation = A, Settlement profile =SD1, RAKey = 000004, Assembly type = 3.
    Settlement profile contain:
    Allocation structure, PA structure, Default object type = SDI. Valid receivers: Optional -Sales Order / Prof. seg.
    If I make the Valuation field as blank in Reqmts class, there is no error while creating Sales order. And also Settelemnt rule with sales document item as receiver is successfully creating for the production order. Since the Valuation is blank in requirement class, it is Non valuated Sales order stock. All GIs & GR are non valuated
    The business requirement is it should be valuated sales order stock and the production varinaces has to be settled to Sales order. Then Sales order has to be settled to COPA.
    Need your valuable inputs to meet this requirement.
    Let me know if you need any further details.
    Thanks in advance.
    Regards,
    ADI

    Dear SAP PP Consultant ,
    What is the strategy group you are maintained in the material master ?

  • How to Differentiate between Parent & child item of material determination

    Hi Experts
    I have a list of material & the Business requirement is to found that whether a material is a Parent material , Child material or Both ( a parent to other children  and a child to another parent).
    I tried using table KONDD & KONDDP but I was not able to differeniate between Parent & Child item.
    I even cant use item category to diferentaite the two as by item categairy i can only find that it is a Prent material but cant find whether this material is a Child material or not.
    Is there any table in which i can enter the Parent material & the output would be child material or any other table which contain both parent & child material.
    Note : In Material determination ( VB11) , the material which is entered is Parent material & the material with which it would be replaced is Child material.
    Kindly Guide.
    Thanks in Advance

    Hi
    The wording of Parent and Child sounds like using a BOM material. In material determination...these two items can be called as Material entered and material determined or Main Item and Sub Item.
    In the sales order overview screen...at line item level check the field 'HLvItem' (Higher Level Item). It will show the POSNR of the main item to which this item is linked. Since this can also happen in the case of free goods and BOM...you have make another check for these items with the item category.
    If the substitue material is not determined as a sub item... you can check the material number in the field 'Material Entered' in the sales tab of the item and compare the material number with that exists in the VBAP-MATNR. If both are different, then this material can be considered as a determined material.
    Thanks,
    Ravi

  • TAX Calculation as per child items for fininsh goods in sale bill.

    hi team,
    here i am implementing SAP business one in construction company :
    SCENARIO:
    TEMPLATE BOM= FG=ABC+D
    steps:
    1.sales order for FG item in which child items we are manually at row level for print layout issues.
    2.Delivery challan document we are making by copy to functionality and then again selecting FG item so that
    child items come again under FG at row level this we are doing so that we can decrease teh stock of chil items whihc ever is required.
    3.A/R invoice we are creating in system only with FG item by deleting child item at row level due to print layout problems.
    in sales invoice we are entering unit price of FG.
    ISSUE ONLY ON VAT:
    here in this company during creation of sales invoice WE HAVE to calculate the tax amount through system but the problem is that we have different taxt rates for different child items whihc is explained as below:
    1.A(Material-aluminum)-vat@4%
    2.B(material- hardware)- vat 12.5%
    3.c(Material- Glass)- vat@4%
    4.D(labour)-  VAT not applicable only service tax 10.3% is applicable
    so now my question is as follows:
    1.how to calcualte the vat tax amount on invoice if child items are not present on invoice or
    how to calculate the sale price( exclusive of  tax) of the child item from the sale price of the FG(COMPANY is not able to bifurcate the sale price of finish goods at child items)
    example:
    after adding delivery we can come to know the COGS of the child items suppose
    A=50
    B=30
    C=20
    D=60
    total=160
    FG SALE PRICE =200 (exclusive of tax)SO Total margin is 40Rs(equivalent to 25%)
    then A= 5012.5(MARGIN)=62.5 WITH VAT 4%= 62.52.5=65
    B=307.5(MARGIN)=37.5 WITH VAT 12.5%= 37.54.69=42.19
    C= 205(MARGIN)=25 WITH VAT 4%= 251=26
    D=60+15(MARGIN)=75 with  NIL VAT
    FG= 62.537.525+75=200
    vat on above= 2.54.691= 8.19Rs.

    Hi Amit,
    Ur example is practicle example by PLD or query and QPLD this is not possible to solve.
    I will suggest u , through help of crystal report and developer u can get desire output for print out of sales bill
    with reference of its base documents.
    Regards,
    Mahesh.

  • Re: Procurement of Parent item & Child item

    Dear Friends,
    I have a scenario, for Parent item & child item
    client is procuring a parent  material as Set, this comprises of child materials
    we have maintained material codes for Parent material and Child material
    For ex:
         Parent Material : XYZ
    Child MateriaL 1    : X
    Child MateriaL 2    : Y
    Child MateriaL 3    : Z
    maintained MAP in parent material as well as child material as below
    Child MateriaL 1    : X   100 Rs
    Child MateriaL 2    : Y   150 Rs
    Child MateriaL 3    : Z    200 Rs
    Total                              450
    Parent Material : XYZ = 450 ( the total of child materials is equal to Parent material)
    here is my query
    I raise PO for main material and GRN will done for material, and deplete the stock of main material through 201 and update the child materil through 202 mov type. so that stock will update accordingly
    but  when i Procures for main material for market price 600 Rs, it has to distribute apportionately to the child components but here the child material value updates based on the Old map but not updated MAP,
    Please guide how can i achieve this functionality in MM
    thanks in advance

    Hi,
    In your case of doing 201 to deplete the parent material and then doing the 202 to increase the stock of child materials, there is no linking between the two. So there will not be any change in the MAP of child material. It will always take the MAP while increasing the stock.
    The business requirement need come redefining. Do your client buy the Parent material as a set and dismantle it to individual child items?
    If that is the case, the best method to achieve this is through a production BOM. You have to create a BOM and routing and create a production order with negative qty for child items and once you confirm this order, the parent item will be consumed and child item will be increased in stock.
    Search the forum for more details about this.

  • I need to add fields in additional fields B the sales order line item

    i  need to add fields in additional fields B beside the field (icon_val_quantity_ structure) in the sales order line item, How to achicve this? please help me..

    Please fined the below solution for achieving your requirement.
    1. Add new filed "B" in table VBAP.
      a) T.code  SE11 --> Enter structure name VBAP --> display
      b) Goto --> Append Structure --> Enter Structure name and new field "B"
    2. request your basis team and take the access key for modification of stabdard program SAPMV45A & Screen: 8459
       a) After receiving access key for standard program then got o SE51 --> enter program name  SAPMV45A & Screen: 8459
       b) click change Button
       c) click layout button
       d) add new field "B" below of the screen (F6 -> enter table name : VBAP --> get from dictionary --> selet new field and past in screen )
    3) write below code in flow logic
    PROCESS BEFORE OUTPUT.
                               Verarbeitung vor der Ausgabe
      MODULE ZZPB_INITIALIZE_8459.
      MODULE ZZPB_OUTPUT_8459.
    PROCESS AFTER INPUT.
      CHAIN.
        FIELD VBAP-New field name "B".
        FIELD ZVC_SALES_EXPORT-ZZAPLHENKO.
      ENDCHAIN.
      MODULE ZZPA_OUTPUT_8459.
    4. functin Module code
    module ZZPB_OUTPUT_8459 output.
      Data: l_v_actve type ale_active,
            l_v_ttyp  type c.
      Data: l_v_tragr type tragr.
    l_v_ttyp = t180-trtyp.
      if l_v_actve is initial.
        l_v_ttyp = 'A'.
      endif.
      LOOP AT SCREEN.
        CASE l_v_ttyp.
          WHEN 'A' OR 'C'.
            SCREEN-INPUT = 0.
        ENDCASE.
      ENDLOOP.

  • One inspection lot for multiple materials of purchase order line items

    Hi All,
    My client requirement is one inspection lot for multiple materials of purchase order line items.
    Please share your thoughts.
    Thanks in advance for early reply.
    Regards,
    Jishu

    I totally agree with Amol.
    I don't think I would touch that development nor would I ever tell a client it could reliably be done through development.
    Knowing what I know about the table structures, I don't think you could create any development for this that could use a significant amount of the existing tables and functionality.  I think you'd have to create all your own Z tables and basically rebuild the functionality.  Tying it back in with SAP data will be difficult.
    You're even looking at all custom screens for your results recording and UD as well.  And if you have follow-on functions like batch classification requirements, batch determination, COA publication, results copy functions, use of DMR and sampling procedures, physical samples, quality notifications, etc. etc.. you could be looking a whole lot of development.
    Craig

  • BAPI_SALESORDER_CREATEFROMDAT2 Purchase order line item number

    Hi Freinds,
    I have small issue using the function module "BAPI_SALESORDER_CREATEFROMDAT2" , it is creating incomplete sales orders when the Saleorder line item number and POline item number are different.
    Example:
    If i assign the same value like "000010" for ptb_items-itm_number,ptb_items-po_itm_no it works fine and sales order doesn't have any incomplete log.
    but when i have different values like "000010" for   ptb_items-itm_number and "000123" for ptb_items-po_itm_no. both the cases all other information is same.
    Could anybody helps me to fix this problem so that i can avoid creating incomplete sales orders.
    Thanks for the quick reply and help.
    Regards,
    Praveen

    Hello Praveen
    The items structure BAPISDITM has a field <b>PO_ITM_NO</b> (Item Number of the Underlying Purchase Order) which most likely links the two numbers together.
    Regards
       Uwe

Maybe you are looking for

  • SSL error Registering on Oracle Linux Network

    I performed the following actions using Linux v4 update 4. [root@as1 ~]# rpm --import /usr/share/rhn/RPM-GPG-KEY [root@as1 ~]# up2date nox register There was an SSL error: [('SSL routines', 'SSL3_GET_SERVER_CERTIFICATE', 'certificate verify failed')]

  • Need Advice about AVCHD related stuff

    I just bought a canon HF-S100 AVCHD camcorder. I will be using it entirely for family and casual stuff. I would like to watch the footage over my HD tv via apple tv. Needless to say I would love to watch the footage at full HD (1980x1080i) or (p, if

  • Transferring files from Address Book to Outlook for Mac 2011

    I know that this topic has been addressed, but I have a strange problem with what should be a straightforward process. Whenever I highlight all the entries in Address Book and drag them to an empty folder on my desktop, Address Book creates a single

  • Session Variable in Physical Layer

    Hi All, I am trying to use session variable in Physical layer i mean in select statement like select region,revenue,year from ABC where siteid ='VALUEOF(NQ_SESSION."siteid")' but it throws a warning saying that WARNINGS: GLOBAL: The repository variab

  • 9iAs 9.0.3 unable to process JSP. HELP !!!!

    Hi, I recently installed Oracle 9iAS 9.0.3 on my windows 2000 server. The installation went seccussfully and I could access all the sample pages that came with the server. However, when I deploy my application to 9iAS and tries to call the JSP page I