CLAF_CLASSIFICATION_OF_OBJECTS does not fetch ATINN

Hi,
Since this Fm: CLAF_CLASSIFICATION_OF_OBJECTS does not fetch ATINN, hence is there any alternate similar FM which can be used and which fetches ATINN too?
ags.

As per my understanding you are looking for characteristic number for corresponding characteristics name. If yes then you can check the conversion exit attached to the field pass characteristics name to FM CONVERSION_EXIT_ATINN_OUTPUT which will return its  corresponding characteristics number.
There is one FM CLGV_DISPLAY_OBJECT_VALUES you can check if it suits your purpose.

Similar Messages

  • Operation does not fetch in process order

    hi PP-Pi gru,
    when i am creating process order from planed order , operation ( master recipe) does not fetch in process order..only take default operation 10, kindly suggest me how all operation will fetch in process order
    another mater is when assign production profile  in  t- code CORU show the error massage  " production scheduling profile for plant ALIV,order type does not exist"...but we have used stander order type PI01..kindly suggest me
    Rogers
    Aqueel

    Hi,
    Check In master Recipe ,in the PI Tab,There must be some PI category is assigned and in that PI Category,this PI Charactiristic has been assigned.
    First goto that Phase of the Master Recipe and then goto PI tab and then find the PI category.
    You need to define production scheduling profile for your plant in OPKP which is assign to order type dependent parameter  COR4 In planning screen. Please check. Also check the work scheduling view of material master.
    Regards,
    R.Brahmankar

  • Function Module does not fetch value

    Hi All,
    I am using the fm RV_PRICE_PRINT_HEAD to fetch condition records. When I run this fm in SE37 for a particular document(vbeln) number, the values are fetched correctly into the internal tables TKOMV and TKOMVD.
    The same fm does not fetch values when I run for second time for the same document(vbeln). This means :
    1) I will go to SE37, type RV_PRICE_PRINT_HEAD, supply the export parameters in COMM_HEAD_I, execute it and obtain the condition records (Till this time absolutely fine)
    2) Now, press Back (F3), Let the export parameters in "COMM_HEAD_I" will remain same. Just press Execute (F8). Then condition values are not fetched.
    Could any body help in this regard...
    Thanks
    Thimmappa Hegde

    Hi
       I have given you the other alternative bcoz there is a limitation while calling this FM: RV_PRICE_PRINT_HEAD.
    If you see the comments and code of Include: LV61AA11, you can understand the problem.
    <b>* mechanism to controll which conditions are already part of table TKOMV
    Every time a pricing result is read from database the key is put into
    TABGL. Also TABGL is updated if we've lines in TKOMV assigned to a
    special key but entry in TABGL (case 2).
    Originally TABGL was established to handle following pathological
    case: condition successfully read from DB -> entry in TABGL. Then all
    read conditions where deleted during processing (e.g. manually
    deletion etc.). If we run into this routine again no records should
    be redetermined from DB...</b>
      read table tabgl with table key knumv = komk-knumv
           transporting no fields.
    Case 1:
    conditions have been already read because there is a fitting entry in
    TABGL. Exit immediately if caller doesn't want to force DB access.
      if sy-subrc eq 0. ---><b> First time SY-SUBRC NE 0 so no problem</b>   
         if generell_lesen ne 'X'. <b>--> Later runs SY-SUBRC  eq 0 and generell_lesen value is SPACE</b>.
            exit.
        endif.
      else.
      Hope this clarifies your doubt now.
    Kind Regards
    Eswar

  • IPhone does not fetch automatically

    I have set my phone to fetch every 15 minutes for the "non-push" e-mails. But lately, if I don't run the mail application, it does not fetch e-mail automatically. The mail icon will show no new e-mails, I will click on it, then it will start checking mail, then I will have bunch of old e-mails (2-3 hours old if not older) pop up. Any ideas how to fix this?

    The issue is supposedly with Yahoo. Something with their servers. Most of the people discussing the Push problem are Yahoo email users. I just can't understand why it's taking so long to correct. Apparently they've known for months. Mine worked flawlessly until sometime in early October. And then one day, it stopped working. I've tried everything except a complete restore. I don't want to do that and hoping it gets fixed before I resort to that.

  • How to notify in case SQL query(JDBC sender adapter) does not fetch records

    hi,
    How can we notify(by alerts or something) in case SQL query(JDBC sender adapter) does not fetch records? In channels logs it only says processing started & finished(no message is created for same).
    Thanks,
    Mayank

    Hi,
    1 ) What is exact audit log message ?
    2) Try fetching the count in SQL statement  if there are any valid records it will give the count.
        May for testing you can use <TEST> in update statement.
    3) Have you used taskTimeout parameter ?
    4) Are multiple channels polling on same table ?
    regards
    Ganga

  • Does not fetch records

    The following trigger first fetch the record from paymaster. It will put the paymst_list cursor in loop, if transaction exists in the transaction(tran_list) file for the given period (form variable month) it will update the transaction file by calculating salary (variable sal),Conveyance (variable conv) etc based on number of days absent ( i.e. proportionate ). If transaction does not exists in transaction file it will take the basic from paymaster and calculate the rest.
    Where as the following trigger does not work properly, it inserts the record correctly but, but will not update. I think the cursor tran_list does not fetch any record. Can any one help me Please.
    DECLARE
    CURSOR paymast_list IS SELECT empcode,empname,basic FROM paymast;
    CURSOR tran_list(emp_id varchar2) IS
    SELECT month,absent from tran where empcode = emp_id and month = :month;
    tmp_empcode paymast.empcode%type;
    tmp_basic paymast.basic%type;
    tmp_name paymast.empname%type;
    tmp_month tran.month%type;
    tmp_absent tran.absent%type;
    cal_sal number(12);
    cal_pf number(12);
    cal_conv number(12);
    cal_proftax number(12);
    cal_present number(4);
    BEGIN
    OPEN paymast_list;
    LOOP
    FETCH paymast_list INTO tmp_empcode,tmp_name,tmp_basic;
    OPEN tran_list(tmp_empcode);
    FETCH tran_list INTO tmp_month,tmp_absent;
    IF tran_list%NOTFOUND THEN
    cal_sal := ((tmp_basic/:total_days)*(:total_days - tmp_absent));
    cal_pf := tmp_basic * 10 / 100;
    cal_conv := 800;
    cal_proftax := 200;
    :proce_desc := tmp_name;
    INSERT INTO tran (empcode,month,sal,conv,pf,pt) VALUES
    (tmp_empcode,:month, cal_sal,cal_conv,cal_pf,cal_proftax);
    IF tran_list%FOUND THEN
    ---ELSE
    cal_present := :total_days - tmp_absent;
    cal_sal := tmp_basic/:total_days * cal_present;
    cal_pf := tmp_basic * 10 / 100;
    cal_conv := 800;
    cal_proftax := 200;
    UPDATE tran SET sal = cal_sal,conv = cal_conv,pf = cal_pf
    WHERE empcode = tmp_empcode and month = :month ;
    END IF;
    END IF;
    CLOSE tran_list;
    EXIT WHEN paymast_list%NOTFOUND;
    END LOOP;
    COMMIT;
    CLOSE paymast_list;
    END;
    null

    hi,
    you are checking the tran_list%FOUND within the tran_list%NOTFOUND checking. You have commented the ELSE part. You should comment before tran_list%FOUND and one ENDIF. You should try once.

  • DTP does not fetch all records from Source, fetches only records in First Data Package.

    Fellas,
    I have a scenario in my BW system, where I pull data from a source using a Direct Access DTP. (Does not extract from PSA, extracts from Source)
    The Source is a table from the Oracle DB and using a datasource and a Direct Access DTP, I pull data from this table into my BW Infocube.
    The DTP's package size has been set to 100,000 and whenever this load is triggered, a lot of data records from the source table are fetched in various Data packages. This has been working fine and works fine now as well.
    But, very rarely, the DTP fetches 100,000 records in the first data package and fails to pull the remaining data records from source.
    It ends, with this message "No more data records found" even though we have records waiting to be pulled. This DTP in the process chain does not even fail and continues to the next step with a "Green" Status.
    Have you faced a similar situation in any of your systems?  What is the cause?  How can this be fixed?
    Thanks in advance for your help.
    Cheers
    Shiva

    Hello Raman & KV,
    Thanks for your Suggestions.
    Unfortunately, I would not be able to implement any of your suggestions because, I m not allowed to change the DTP Settings.
    So, I m working on finding the root cause of this issue and came across a SAP Note - 1506944 - Only one package is always extracted during direct access , which says this is a Program Error.
    Hence, i m checking more with SAP on this and will share their insights once i hear back from them.
    Cheers
    Shiva

  • IdcService LOAD_USER_LOCALIZATION does not fetch Resultset SystemTimeZones in UCM11g

    Hi,
    In UCM11g, when we examine the output after executing IdcService, LOAD_USER_LOCALIZATION  we notice that the Resultset SystemTimeZones is not getting fetched. Where as it does get fetched in 10g.
    i.e. when i access the following URL in 11g, i cannot see the Resultset SystemTimeZones being fetched,
    http://host:16200/cs/idcplg?IdcService=LOAD_USER_LOCALIZATION&IsJava
    Where in when i access the same 10g URL, i see Resultset SystemTimeZones.
    I am in need of this because we are migrating code from 10g to 11g and there is part of the code i.e. failing because of this.
    Is there a way to get Resultset SystemTimeZones in 11g too.
    Thanks in advance...
    Seshan K.

    Hi Seshan ,
    The resultset cannot be retrieved if it is not there in there in the response of idc service . I think you are looking for some specific output w.r.t 10g , but are not clear on what exactly it is .
    What is the exact use case of the section where SystemTimeZone is being retrieved ? It's just a list of all available TZ details and it's offsets.
    Thanks,
    Srinath

  • Af:query does not fetch rows on submit but does hit on page refresh

    Hello:
    Thanks for looking at this post...
    I'm using Jdev 11.1.1.3.0 and trying to get a simple ADF Web app to fetch data from the database. I'm using af:query on the left to enter the search criteria and af:table on the right to display the result. It seems when enter the search criteria and hit search button in the query panel, the rows are not fetched in the table on the right. But when the browser refresh button is hit, it shows the data
    Any ideas on what I'm doing wrong?
    Thanks for the help.
    Edited by: SmDas on Nov 8, 2010 5:57 PM

    Well I followed the note you had pointed out, and implemented the same for two LOV's. I'm getting "Server Exception during PPR, #3". Would be able to identify where I'm going wrong please.
    FYI: I'm using a UI template that is stripped won from Oracles Dynamic tab template
    1. parent LOV
    <?xml version="1.0" encoding="windows-1252" ?>
    <!DOCTYPE ViewObject SYSTEM "jbo_03_01.dtd">
    <!---->
    <ViewObject
    xmlns="http://xmlns.oracle.com/bc4j"
    Name="QcChiptypeVViewRO"
    Version="11.1.1.56.60"
    BindingStyle="OracleName"
    CustomQuery="true"
    RowClass="com.qualcomm.qdt.fwk.model.QdtViewRowImpl"
    ComponentClass="com.qualcomm.qdt.fwk.model.QdtViewObjectImpl"
    DefClass="com.qualcomm.qdt.fwk.model.QdtViewDefImpl"
    PageIterMode="Full"
    UseGlueCode="false">
    <DesignTime>
    <Attr Name="_codeGenFlag2" Value="Access|VarAccess"/>
    <Attr Name="_isExpertMode" Value="true"/>
    </DesignTime>
    <SQLQuery>
    <![CDATA[SELECT QcChiptypeV.CHIPTYPE
    FROM QC_CHIPTYPE_V QcChiptypeV]]>
    </SQLQuery>
    <ViewAttribute
    Name="Chiptype"
    IsUpdateable="false"
    IsPersistent="false"
    PrecisionRule="true"
    Precision="42"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    AliasName="CHIPTYPE"
    Expression="CHIPTYPE"
    SQLType="VARCHAR">
    <DesignTime>
    <Attr Name="_DisplaySize" Value="42"/>
    </DesignTime>
    </ViewAttribute>
    </ViewObject>
    2. Child LOV
    <?xml version="1.0" encoding="windows-1252" ?>
    <!DOCTYPE ViewObject SYSTEM "jbo_03_01.dtd">
    <!---->
    <ViewObject
    xmlns="http://xmlns.oracle.com/bc4j"
    Name="QcMcnVViewRO"
    Version="11.1.1.56.60"
    BindingStyle="OracleName"
    CustomQuery="true"
    RowClass="com.qualcomm.qdt.fwk.model.QdtViewRowImpl"
    ComponentClass="com.qualcomm.qdt.fwk.model.QdtViewObjectImpl"
    DefClass="com.qualcomm.qdt.fwk.model.QdtViewDefImpl"
    PageIterMode="Full"
    UseGlueCode="false">
    <DesignTime>
    <Attr Name="_codeGenFlag2" Value="Access|VarAccess"/>
    <Attr Name="_isExpertMode" Value="true"/>
    </DesignTime>
    <Variable
    Name="chiptype"
    Kind="viewcriteria"
    Type="java.lang.String"/>
    <ViewAccessor
    Name="QcChiptypeVViewRO1"
    ViewObjectName="com.qualcomm.qdt.model.lov.QcChiptypeVViewRO"
    RowLevelBinds="true"/>
    <SQLQuery>
    <![CDATA[SELECT QcMcnV.MCN,
           QcMcnV.CHIPTYPE
    FROM QC_MCN_V QcMcnV]]>
    </SQLQuery>
    <ViewAttribute
    Name="Mcn"
    IsUpdateable="false"
    IsPersistent="false"
    PrecisionRule="true"
    Precision="20"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    AliasName="MCN"
    Expression="MCN"
    SQLType="VARCHAR">
    <DesignTime>
    <Attr Name="_DisplaySize" Value="20"/>
    </DesignTime>
    <Dependencies>
    <Item
    Value="Chiptype"/>
    </Dependencies>
    </ViewAttribute>
    <ViewAttribute
    Name="Chiptype"
    IsUpdateable="false"
    IsPersistent="false"
    PrecisionRule="true"
    Precision="42"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    AliasName="CHIPTYPE"
    Expression="CHIPTYPE"
    SQLType="VARCHAR">
    <DesignTime>
    <Attr Name="_DisplaySize" Value="42"/>
    </DesignTime>
    </ViewAttribute>
    <ViewCriteria
    Name="QcMcnVViewROCriteriaChiptype"
    ViewObjectName="com.qualcomm.qdt.model.lov.QcMcnVViewRO"
    Conjunction="AND">
    <Properties>
    <CustomProperties>
    <Property
    Name="displayOperators"
    Value="InAdvancedMode"/>
    <Property
    Name="autoExecute"
    Value="true"/>
    <Property
    Name="allowConjunctionOverride"
    Value="true"/>
    <Property
    Name="showInList"
    Value="true"/>
    <Property
    Name="mode"
    Value="Basic"/>
    </CustomProperties>
    </Properties>
    <ViewCriteriaRow
    Name="vcrow5"
    UpperColumns="1">
    <ViewCriteriaItem
    Name="QcMcnVViewROCriteria_vcrow5_Chiptype"
    ViewAttribute="Chiptype"
    Operator="="
    Conjunction="AND"
    Value=":chiptype"
    IsBindVarValue="true"
    Required="Optional"/>
    </ViewCriteriaRow>
    </ViewCriteria>
    </ViewObject>
    3. JSF page
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1">
    <af:messages id="m1"/>
    <af:form id="f1">
    <af:pageTemplate viewId="/oracle/ui/pattern/dynamicShell/dynamicTabShell.jspx"
    value="#{bindings.pageTemplateBinding}" id="pt1">
    <f:facet name="copyright">
    <af:outputText value="2010 Qualcomm Inc. All Rights Reserved."
    id="ot10"/>
    </f:facet>
    <f:facet name="about">
    <af:navigationPane id="np3" hint="buttons">
    <af:commandNavigationItem text="About" id="cni5"/>
    <af:commandNavigationItem text="Privacy" id="cni6"/>
    </af:navigationPane>
    </f:facet>
    <f:facet name="navigation">
    <af:panelAccordion id="pa1">
    <af:showDetailItem text=" Asset Details" id="sdi1">
    <af:panelGroupLayout layout="vertical" id="pgl1">
    <af:panelHeader text=" " id="ph1">
    <af:query id="qryId1"
    headerText="Search Criteria (Use % as wildcard)" disclosed="true"
    value="#{bindings.ImplicitViewCriteriaQuery.queryDescriptor}"
    model="#{bindings.ImplicitViewCriteriaQuery.queryModel}"
    queryListener="#{bindings.ImplicitViewCriteriaQuery.processQuery}"
    queryOperationListener="#{bindings.ImplicitViewCriteriaQuery.processQueryOperation}"
    saveQueryMode="hidden"/>
    </af:panelHeader>
    </af:panelGroupLayout>
    </af:showDetailItem>
    <af:showDetailItem text="More Info" id="sdi2"/>
    </af:panelAccordion>
    </f:facet>
    <f:facet name="globalLinks">
    <af:navigationPane id="np2" hint="buttons"
    inlineStyle="text-align:right;">
    <af:commandNavigationItem text="Help" id="cni4" action="noop"/>
    <af:commandNavigationItem text="Sign out"
    id="commandNavigationItem1"
    action="noop"/>
    </af:navigationPane>
    </f:facet>
    <f:facet name="status"/>
    <f:facet name="globalToolbar"/>
    <f:facet name="globalSearch"/>
    <f:facet name="globalTabs">
    <af:navigationPane id="np1">
    <af:commandNavigationItem text="Device Query/Update" id="cni1"
    selected="true" partialSubmit="false"/>
    <af:commandNavigationItem text="Asset Return" id="cni3"
    action="dummy" rendered="false"/>
    </af:navigationPane>
    </f:facet>
    <f:facet name="welcome">
    <af:panelSplitter id="ps1" orientation="vertical">
    <f:facet name="first">
    <af:panelCollection id="pc1" defaultToolbarItemDisplay="icon">
    <f:facet name="menus">
    <af:menu text="Options" id="m2" rendered="false">
    <af:commandMenuItem text="Printable Page" id="cmi2">
    <af:showPrintablePageBehavior/>
    </af:commandMenuItem>
    <af:commandMenuItem text="Download" id="commandMenuItem1">
    <af:exportCollectionActionListener exportedId="t2"
    type="excelHTML"
    title="Asset Details"/>
    </af:commandMenuItem>
    </af:menu>
    </f:facet>
    <f:facet name="toolbar">
    <af:toolbar id="t1">
    <af:commandToolbarButton id="ctb1"
    hoverIcon="/images/view_image.gif"
    text="Export to Excel">
    <af:exportCollectionActionListener exportedId="t2"
    type="excelHTML"
    title="Asset Details"/>
    </af:commandToolbarButton>
    </af:toolbar>
    </f:facet>
    <f:facet name="statusbar"/>
    <af:table value="#{bindings.QcDeviceTrackingVO1.collectionModel}"
    var="row"
    rows="#{bindings.QcDeviceTrackingVO1.rangeSize}"
    emptyText="#{bindings.QcDeviceTrackingVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.QcDeviceTrackingVO1.rangeSize}"
    rowBandingInterval="0"
    filterModel="#{bindings.ImplicitViewCriteriaQuery.queryDescriptor}"
    queryListener="#{bindings.ImplicitViewCriteriaQuery.processQuery}"
    filterVisible="true" varStatus="vs"
    selectedRowKeys="#{bindings.QcDeviceTrackingVO1.collectionModel.selectedRow}"
    selectionListener="#{bindings.QcDeviceTrackingVO1.collectionModel.makeCurrent}"
    rowSelection="single" id="t2"
    columnSelection="single"
    partialTriggers=":::ph1 :::qryId1">
    <af:column sortProperty="Serialnum" filterable="true"
    sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Serialnum.label}"
    id="c28" width="103">
    <af:outputText value="#{row.Serialnum}" id="ot17"/>
    </af:column>
    <af:column sortProperty="Assettag" filterable="true"
    sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Assettag.label}"
    id="c7" width="107">
    <af:outputText value="#{row.Assettag}" id="ot24"/>
    </af:column>
    <af:column sortProperty="Chiptype" filterable="true"
    sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Chiptype.label}"
    id="c18" width="26">
    <af:outputText value="#{row.Chiptype}" id="ot27"/>
    </af:column>
    <af:column sortProperty="Mcn" filterable="true"
    sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Mcn.label}"
    id="c11">
    <af:outputText value="#{row.Mcn}" id="ot13"/>
    </af:column>
    <af:column sortProperty="Mcnrev" filterable="true"
    sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Mcnrev.label}"
    id="c8">
    <af:outputText value="#{row.Mcnrev}" id="ot3"/>
    </af:column>
    <af:column sortProperty="Assignedto" filterable="true"
    sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Assignedto.label}"
    id="c15">
    <af:outputText value="#{row.Assignedto}" id="ot32"/>
    </af:column>
    <af:column sortProperty="Location" filterable="true"
    sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Location.label}"
    id="c24">
    <af:outputText value="#{row.Location}" id="ot19"/>
    </af:column>
    <af:column sortProperty="Locationfullname" filterable="true"
    sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Locationfullname.label}"
    id="c14">
    <af:outputText value="#{row.Locationfullname}" id="ot26"/>
    </af:column>
    <af:column sortProperty="Locationtype" filterable="true"
    sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Locationtype.label}"
    id="c13">
    <af:outputText value="#{row.Locationtype}" id="ot28"/>
    </af:column>
    <af:column sortProperty="Description" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Description.label}"
    id="c21">
    <af:outputText value="#{row.Description}" id="ot22"/>
    </af:column>
    <af:column sortProperty="Assignment" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Assignment.label}"
    id="c30">
    <af:outputText value="#{row.Assignment}" id="ot34">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.QcDeviceTrackingVO1.hints.Assignment.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="Createddate" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Createddate.label}"
    id="c1">
    <af:outputText value="#{row.Createddate}" id="ot15">
    <af:convertDateTime pattern="#{bindings.QcDeviceTrackingVO1.hints.Createddate.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="Lastid" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Lastid.label}"
    id="c33">
    <af:outputText value="#{row.Lastid}" id="ot9">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.QcDeviceTrackingVO1.hints.Lastid.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="Lportfolioitemid" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Lportfolioitemid.label}"
    id="c23">
    <af:outputText value="#{row.Lportfolioitemid}" id="ot23">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.QcDeviceTrackingVO1.hints.Lportfolioitemid.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="Lkeycontactid" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Lkeycontactid.label}"
    id="c4">
    <af:outputText value="#{row.Lkeycontactid}" id="ot11">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.QcDeviceTrackingVO1.hints.Lkeycontactid.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="Fullname" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Fullname.label}"
    id="c22">
    <af:outputText value="#{row.Fullname}" id="ot6"/>
    </af:column>
    <af:column sortProperty="Status" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Status.label}"
    id="c16">
    <af:outputText value="#{row.Status}" id="ot21"/>
    </af:column>
    <af:column sortProperty="Qcemployeenumber" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Qcemployeenumber.label}"
    id="c6">
    <af:outputText value="#{row.Qcemployeenumber}" id="ot33">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.QcDeviceTrackingVO1.hints.Qcemployeenumber.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="Field3" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Field3.label}"
    id="c12">
    <af:outputText value="#{row.Field3}" id="ot18"/>
    </af:column>
    <af:column sortProperty="Empdeptfullname" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Empdeptfullname.label}"
    id="c27">
    <af:outputText value="#{row.Empdeptfullname}" id="ot4"/>
    </af:column>
    <af:column sortProperty="Comments" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Comments.label}"
    id="c10">
    <af:outputText value="#{row.Comments}" id="ot16"/>
    </af:column>
    <af:column sortProperty="Builtby" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Builtby.label}"
    id="c19">
    <af:outputText value="#{row.Builtby}" id="ot20"/>
    </af:column>
    <af:column sortProperty="Mesbuild" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Mesbuild.label}"
    id="c31">
    <af:outputText value="#{row.Mesbuild}" id="ot2"/>
    </af:column>
    <af:column sortProperty="Esn" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Esn.label}"
    id="c26">
    <af:outputText value="#{row.Esn}" id="ot31"/>
    </af:column>
    <af:column sortProperty="Imei" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Imei.label}"
    id="c17">
    <af:outputText value="#{row.Imei}" id="ot29"/>
    </af:column>
    <af:column sortProperty="Macaddress" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Macaddress.label}"
    id="c32">
    <af:outputText value="#{row.Macaddress}" id="ot1"/>
    </af:column>
    <af:column sortProperty="Brf" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Brf.label}"
    id="c25">
    <af:outputText value="#{row.Brf}" id="ot8"/>
    </af:column>
    <af:column sortProperty="Brfrev" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Brfrev.label}"
    id="c3">
    <af:outputText value="#{row.Brfrev}" id="ot25"/>
    </af:column>
    <af:column sortProperty="Dacquisition" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Dacquisition.label}"
    id="c29">
    <af:outputText value="#{row.Dacquisition}" id="ot7">
    <af:convertDateTime pattern="#{bindings.QcDeviceTrackingVO1.hints.Dacquisition.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="Datqcmainttermdate" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Datqcmainttermdate.label}"
    id="c2">
    <af:outputText value="#{row.Datqcmainttermdate}"
    id="ot30">
    <af:convertDateTime pattern="#{bindings.QcDeviceTrackingVO1.hints.Datqcmainttermdate.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="Datqcissueddate" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Datqcissueddate.label}"
    id="c5">
    <af:outputText value="#{row.Datqcissueddate}" id="ot5">
    <af:convertDateTime pattern="#{bindings.QcDeviceTrackingVO1.hints.Datqcissueddate.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="Itlqciteclass" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.Itlqciteclass.label}"
    id="c20">
    <af:outputText value="#{row.Itlqciteclass}" id="ot14"/>
    </af:column>
    <af:column sortProperty="RowID" sortable="true"
    headerText="#{bindings.QcDeviceTrackingVO1.hints.RowID.label}"
    id="c9">
    <af:outputText value="#{row.RowID}" id="ot12"/>
    </af:column>
    </af:table>
    </af:panelCollection>
    </f:facet>
    <f:facet name="second">
    <af:panelTabbed id="pt2">
    <af:showDetailItem text="Update Attributes" id="sdi3"
    stretchChildren="first"/>
    </af:panelTabbed>
    </f:facet>
    </af:panelSplitter>
    </f:facet>
    <f:facet name="innerToolbar"/>
    <f:attribute name="brandingTitle" value="ITE Device Tracking System"/>
    <f:attribute name="navSplitterPosition" value="450"/>
    </af:pageTemplate>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>

  • Table Browser does not 'fetch' any tables back from Database.

    Post Author: StevenL
    CA Forum: Semantic Layer and Data Connectivity
    When I click on 'table browser', after waiting overnight (not me, physically..), the list of modules are shown but with no tables in. If I click on a module's contents it says 'Fetching tables' for a split secind before returning nothing. If I do a refresh the modules list goes blank. I have been able to do this until very recently, my Connection, user Account (Supervisor-Designer), BO version (6.5.1, ORACLE Database 10g) etc have all not changed. The problem we have is because there is more than 20 000 tables to return when 'table browser' is clicked and this takes overnight. Other users here with same resp. can all come in next morning to a full list to choose from - except me. We're all confused. Can anyone offer suggestions to what this could be?u201D A trace file setup via sqlnet.ora revealed nothing.
    Has anybody got any suggestions here or methods of finding out more information?
    Many thanks in Advance..
    StevenL

    Post Author: StevenL
    CA Forum: Semantic Layer and Data Connectivity
    Well well. The good old remove and re-install has worked! Can't understand it. After simply getting the product re-installed, I opened up Designer, imported 2 differing Universes that used the LIVE Finance Database that was causing me the problems, clicked on table browser, waited approximately 60 seconds, hit escape, all tables were visible, I dragged and dropped no problem. I didnt need to reconfigure and create new BO Database Connections, replace the BoMain Key, in fact, anything. Totally mystery yet it works so Im happy!" Many thanks for all who read, helped or assisted.
    Steven

  • Program does not fetch desired results

    I need to enhance a master data datasource with additional fields STPRS, PEINH from MBEW table and WAERS (currency for STPRS) from T001 table. Table T001 and MBEW table have no fields in common. So I took an indirect approach to this.I have a program for enhancing a BW DataSource in R/3. Here is the code:
    types: begin of zty_waers,
           bukrs type bukrs,
           waers type waers,
           bwkey type bwkey,
           end of zty_waers.
    data: zit_waers type standard table of zty_waers,
          wa_waers like line of zit_waers.
    DATA : it_temp type standard table of biw_marc_s,
           wa_temp like line of it_temp,
           S_INDEX TYPE SY-TABIX,
           z_index type sy-tabix.
    DATA : BEGIN OF ITAB_MBEW OCCURS 0,
           MATNR TYPE MATNR,
           BWKEY TYPE BWKEY,
           STPRS TYPE STPRS,
           PEINH type PEINH,
           WAERS type WAERS,
           END OF ITAB_MBEW.
    data: wa_mbew like line of itab_mbew.
    DATA: BEGIN OF ITAB_CEPC OCCURS 0,
          PRCTR LIKE CEPC-PRCTR,
          KOKRS LIKE CEPC-KOKRS,
          DATBI LIKE CEPC-DATBI,
          SEGMENT LIKE CEPC-SEGMENT,
          END OF ITAB_CEPC.
    select abukrs awaers b~bwkey into table zit_waers
           from t001 as a inner join t001k as b on
              abukrs = bbukrs.
    IF NOT I_T_DATA[] IS INITIAL.
      IT_TEMP[] = I_T_DATA[].
      SELECT MATNR BWKEY STPRS PEINH FROM MBEW INTO TABLE ITAB_MBEW FOR ALL ENTRIES IN IT_TEMP
      WHERE MATNR = IT_TEMP-MATNR and BWKEY = IT_TEMP-WERKS.
      SELECT PRCTR KOKRS DATBI SEGMENT FROM CEPC INTO TABLE ITAB_CEPC FOR ALL ENTRIES IN IT_TEMP
      WHERE PRCTR = IT_TEMP-PRCTR AND KOKRS = IT_TEMP-KOKRS AND DATBI = '99991231'.
      ELSE.
      EXIT.
      ENDIF.
    loop at itab_mbew into wa_mbew.
    z_index = sy-tabix.
    read table zit_waers into wa_waers with key bwkey = wa_mbew-bwkey.
    if sy-subrc = 0.
    wa_mbew-waers = wa_waers-waers.
    endif.
    modify itab_mbew from wa_mbew transporting waers.
    endloop.
      sort itab_mbew by matnr.
      loop at i_t_data into wa_temp.
        s_index = sy-tabix.
        Read Table itab_mbew with key matnr = wa_temp-matnr
         into wa_mbew.
          if sy-subrc = 0.
          wa_temp-zzstprs = wa_mbew-stprs.
          wa_temp-zzwaers = wa_mbew-waers.
          wa_temp-zzpeinh = wa_mbew-peinh.
          endif.
          Sort itab_cepc.
          Read Table itab_CEPC
          with key PRCTR  = wa_temp-PRCTR
                   KOKRS  = wa_temp-KOKRS
          binary search.
          if sy-subrc = 0.
          wa_temp-ZZSEGMENT = itab_CEPC-SEGMENT.
          endif.
          modify i_t_data from wa_temp.
          clear wa_temp.
        endloop.
    I_T_DATA table has entries from the DataSource MAT_PLANT.  But when I am testing the datasource for the new fields the data is coming out wrong. For example if I run the extractor checker RSA3 for material number 10000306 and plants 1017 - 1021 i extract 2 entries and the stprs values are same for both plants
    But if I run RSA3 for 1021 alone then i get another value for 1021 plant. This means the STPRS value is getting overwritten for some reason. Debugging of this code is very difficult since it is embedded in another program.
    Can anyone tell me wht is wrong with the logic?
    Thanks
    Deepthi

    Hi,
    In the read table itab_mbew..Try adding the bwkey also..changes marked in bold..
    sort itab_mbew by matnr.
    loop at i_t_data into wa_temp.
    s_index = sy-tabix.
    Read Table itab_mbew with key matnr = wa_temp-matnr
    <b>                                               bwkey = wa_temp-werks</b>.
    into wa_mbew.
    if sy-subrc = 0.
    wa_temp-zzstprs = wa_mbew-stprs.
    wa_temp-zzwaers = wa_mbew-waers.
    wa_temp-zzpeinh = wa_mbew-peinh.
    endif.
    Thanks,
    Naren

  • In inspection lot..task list does not fetch

    Hi QM Guru..
    when i do UD for fish material. with QA32....in QA32 showing inspection lot no..but when i select line item of inspection lot and click on inspection lot..one window open..when i go inspection specification for task list..when i  click on task list....show the massage....
    but i all ready created inspection plan from QP01...i have over ther MIC and sampling procedure also
    No inspection plan could be found
    Message no. QA278
    Diagnosis
    A task list  could not be found for the selection criteria. The inspection setup for this material in the quality management view of the material master defines an inspection with a task list.
    System Response
    Sample calculation and inspection lot release are not possible.
    Procedure
    Check the:
    Selection criteria
    Material/task list assignment
    Task list status
    Task list usage
    Task list usages i have taken 5  for GR
    status 4 general release
    kindly suggest me why task is not taking...i have already created task list
    kindly suggest me
    Regards
    Aqueel

    Dear,
    Is this quality Plan is back dated and Lot size should be 1 to 9999,999.
    Why are you creating rate routing? check lot for 04 insp type in QA02.
    Or for old material just create one new order and test it once again.
    You can check the statuses in config.
    QM>Quality Planning>Inspection Planning>General>Define Task List Status.
    You should find that "4" is in there with all the check marks on.
    QM--> Quality Inspection --> Inspection Lot Creation --> Maintain Inspection Lot Origins and Assign Inspection Types.
    There is a column called status. For each inspection ORIGIN, you can specify the status of the inspection plan. It appears someone in your system changed the 4's to an X and then created the status "X".
    Regards,
    R.Brahmankar

  • Freight does not auto fetch in Outgoing Excise Invoice??

    Dear Expert,
    When i select ExciseVAT tax code at Raw Level Freight 1 Tax Code in Sales Delivery & add transaction. Then when i try to made Outgoing Excise Invoice, system does not fetch Freight amount & selected ExciseVAT tax code & Freight Tax Amount at raw level of Outgoing Excise Invoice transaction.
    I am using SAP 8.81 PL:5 version.
    Thanks & Regards,
    Vishal

    Dear
    VISHAL DABHI,
    EX+Vat Tax code and Freight is not come at Outgoing Excise Invoice. that means you have to manually enter Tax Code in Outgoing Excise Invoice?
    Thanks,
    Srujal Patel

  • IPod Touch (4) does not automatically fetch email

    My iPod Touch 4 does not fetch email unless I force it to. Push is off and my mail accounts are all working (MobileMe & Gmail).
    I've tried everything and the device just sits there, even though it is set to fetch new emails every 15 minutes.
    Any idea why? Also, does auto-lock interfere with fetch?
    Cheers!
    Doug
    San Cristobal de las Casas, Mexico

    I believe you need to have "Push" turned on. Try that and see what happens

  • Item will not fetch values

    Hi all,
    I have a number of fileds on my page that are entered with user-input. Then, I have one hidden-protected field that is composed of 2 concatenated values from another field, so that I can use this field in the automatic row update process.
    However, this composed field does not always (sometimes it does..) fetch the data from the user-input fields, so then month and year are left blank in the composed field and I get an ill formed date (01-- instead of 01-10-2008). A part of the debug shows that the user input fields are filled with data, but the composed field does not fetch the data (see bold parts):
    Debug
    0.01: A C C E P T: Request="CREATE"
    0.01: Metadata: Fetch application definition and shortcuts
    0.01: NLS: wwv_flow.g_flow_language_derived_from=FLOW_PRIMARY_LANGUAGE: wwv_flow.g_browser_language=nl
    0.01: alter session set nls_language="DUTCH"
    0.01: alter session set nls_territory="THE NETHERLANDS"
    0.01: NLS: CSV charset=WE8MSWIN1252
    0.01: ...NLS: Set Decimal separator=","
    0.01: ...NLS: Set NLS Group separator="."
    0.01: ...NLS: Set date format="DD-MM-RR"
    0.01: ...Setting session time_zone to -05:00
    0.01: Fetch session state from database
    0.02: ...Check session 4402719362367456 owner
    0.02: ...Metadata: Fetch Page, Computation, Process, and Branch
    0.02: Session: Fetch session header information
    0.02: ...Metadata: Fetch page attributes for application 21436, page 5
    0.02: ...Validate item page affinity.
    0.02: ...Validate hidden_protected items.
    0.02: ...Check authorization security schemes
    0.02: Session State: Save form items and p_arg_values
    0.02: ...Session State: Save "P5_ID" - saving same value: ""
    0.02: ...Session State: Save "P5_VS_ID" - saving same value: "10"
    0.02: ...Session State: Save "P5_VERBRUIK" - saving same value: "370"
    *0.02: ...Session State: Save "P5_MAAND" - saving same value: "10"*
    *0.02: ...Session State: Save "P5_JAAR" - saving same value: "2008"*
    0.02: ...Session State: Save "P5_USER_ID" - saving same value: "241"
    _0.02: ...Session State: Save "P5_MAAND_OPNAME" - saving same value: "01--"_+
    0.02: Processing point: ON_SUBMIT_BEFORE_COMPUTATION
    0.02: Branch point: BEFORE_COMPUTATION
    0.02: Computation point: AFTER_SUBMIT
    0.02: Tabs: Perform Branching for Tab Requests
    0.02: Branch point: BEFORE_VALIDATION
    0.02: Perform validations:
    0.02: ...Item Not Null Validation: P5_VS_ID
    0.03: ...Item Not Null Validation: P5_VERBRUIK
    0.03: ...Item Not Null Validation: P5_MAAND
    0.03: ...Item Not Null Validation: P5_JAAR
    0.03: Branch point: BEFORE_PROCESSING
    0.03: Processing point: AFTER_SUBMIT
    0.03: ...Process "Process Row of MAANDVERBRUIK": DML_PROCESS_ROW (AFTER_SUBMIT) #OWNER#:MAANDVERBRUIK:P5_ID:ID|IUD
    0.03: Show ERROR page...
    0.03: Performing rollback...
    /Debug
    To compose the P5_MAAND_OPNAME field I do the following:
    Source type: Database column
    Source value or expression: MAAND_OPNAME (name of the db column)
    Default value: '01-'||:P5_MAAND||'-'||:P5_JAAR
    Defaukt value type: PL/SQL expression
    Is this not the right approach? It should work and it does occasionaly, but more often it doesn't...

    Hi Voxie,
    Your approach doesn't work, because you use the Default Property of your item which is evaluated on rendering the page. What you need is a computation which runs right before the insert-process.
    Peter

Maybe you are looking for

  • How can i get a software update notification on my iphone

    (settings app 1 badge on it) I have an update for ios 7.0.4 but it doesnt show the notification. Help

  • Another User Frustrated and the Disappointed

    I am currently a producer for the NBA and a former segment director on ABC's Jimmy Kimmel Live. I started editing on 3/4" U-matic video tape years ago and now work with tapeless acquisition formats such as RED, the Canon MK II, and Sony XDCAM cameras

  • HD erasure to prevent dropped frames.

    I know I am not alone on this dropped frames thing. I have received a lot of great info and areas to consider. Here is my little situation. I had a HD replaced on my PB G4. I have 2 GB of memmory... I reinstalled all my apps... but my new project is

  • Sound Effects on the Fly

    Hi...just starting to podcast and I've looked up how to do this but I just can't seem to get the sounds assigned to the musical keyboard or onscreen keyboard. Does anyone have a great "how to" or example how I can assign sound effects to certain keyb

  • Registering a CCMS Agent SAPCCMSR (Double-Stack)

    Hello, In our landscape, we are implementing the Central Monitoring System (CEN) functionality on NW2004s system. Here are the landscape details: F41 Instance - Dual Stack (ABAP + JAVA) R3H - ABAP Stack F31 - JAVA Statck What we are trying to accompl