APP query

Hello friends,
can't we run APP in future date?
when I was trying to run the APP system displayed the following message
Company codes XXXX/XXXX do not appear in proposal 31.08.2008 TEST1; correct
Message no. FZ003
Diagnosis
No data exists for the specified paying company code XXXX and the specified sending company code XXXX in payment proposal 31.08.2008 TEST1.
System Response
The payment proposal cannot be edited.
Procedure
Check the flow trace and payment proposal list in order to determine why the specified company codes are not contained in the proposal.
Please give me your inputs
Thanks
N.M.B

hi NMD,
You can certainly do app for future dates, if your posting periods are open,
In your case, may be you havent posted invoices in future date i.e 31.08.2008 there are no open items existed for that date, thats why APP program hasnt selected any items.
Post invoices in future date and in the app run give a date which is beyond future date of the invoices posted.
It will work fine.
regards
srikanth.

Similar Messages

  • How do you pass a custom value on a BW iVew (BEx Web App Query String)

    Hi,
    I am using a <b>BW Report iView</b> to display a report (BEx Web App) on a external facing portal. As part of the BEx Web App Query String, I need to pass the customer number. So, I followed the same procedure as the appIntegrator iView and put in the parameter <Custom.Customer number> as part of BEx Web Application Query String, which is supposed to get replaced dynamically with value from the UME by using the custom 'ParameterProvider' service we had written. But, it's not working here. We are using the same Customer Exits for 'ParameterProvider' on the AppIntegrator and it works there. The BW Report is bit different then the appIntegrator iView and I think I am missing something. Need some help to resolve this please. Thank you.
    Regards,
    Abu

    Any one?

  • Oracle apps query-p2p cycle

    Hi all....
    I am using oracle 10g........
    The following query is a union of two queries....The second query is a subset of the first meaning that it has fewer tables and fewer select columns as well....(I have to use union on the two queries....for a gud reason) .What i want is that the union return only the superset records from result of the union of the two queries when i pass a parameter at runtime like supplier_name as mentioned in the the query below .......
    /* Formatted on 2012/05/14 16:49 (Formatter Plus v4.8.8) */
    SELECT * FROM(SELECT DISTINCT reql.unit_meas_lookup_code "UNIT",
    reqh.type_lookup_code "PR_TYPE",
    reql.document_type_code "SUBTYPE",
    reqh.segment1 "PR_NO", reqh.creation_date "PR DATE",
    mtb.segment1 "ITEM_CODE",
    pol.item_description "DESCRIPTION",
    mcb.segment1 "INVENTORY_CATEGORY",
    reql.manufacturer_part_number "MFG NO/DRG NO",
    poh.authorization_status "AUTHORIZATION STATUS",
    papf.full_name "BUYER", NULL "CUSTOMER",
    DECODE (poh.type_lookup_code,
    'RFQ', poh.segment1
    ) "RFQ NO",
    DECODE (poh.type_lookup_code,
    'RFQ', poh.creation_date
    ) "RFQ DATE",
    NULL "RFQ SUPPLIER",
    DECODE (poh.type_lookup_code,
    'QUOTATION', poh.segment1
    ) "QTN NO",
    DECODE (poh.type_lookup_code,
    'QUOTATION', poh.reply_date
    ) "QTN DATE",
    DECODE (poh.type_lookup_code,
    'STANDARD', poh.segment1,
    'BLANKET', poh.segment1,
    'PLANNED', poh.segment1
    ) "PO_NO",
    DECODE (poh.type_lookup_code,
    'STANDARD', poh.creation_date,
    'BLANKET', poh.creation_date,
    'PLANNED', poh.creation_date
    ) "PO DATE",
    pv.vendor_name "SUPPLIER",
    NULL "SUPPLIER ACKNOWLEDGMENT DATE",
    TRUNC
    (reqh.creation_date
    - TRUNC (poh.creation_date)
    "NO OF DAYS TAKEN FROM PR TO PO",
    DECODE (rcvh.asn_type,
    'ASBN', rcvh.shipment_num
    ) "ASBN NO",
    rcvh.receipt_num "RECEIPT NO",
    rcvh.creation_date "RECEIPT DATE",
    apia.invoice_num "INVOICE_NO",
    NULL "QUALITY INSPECTION DATE",
    rcvt.inspection_status_code "INSPECTION RESULT",
    NULL "STOCKING DATE",
    TRUNC (poh.creation_date)
    - TRUNC (reqh.creation_date) "NO OF DAYS TAKEN FROM",
    NULL "PV NO", NULL "PV DATE",
    apc.amount "PAYMENT RELEASE AMOUNT",
    apc.released_date "PAYMENT RELEASE DATE",
    apc.payment_method_code "PAYMENT RELEASE MODE",
    NULL "NO OF DAYS TAKEN FROM RECEIPT"
    FROM po_requisition_headers_all reqh,
    po_requisition_lines_all reql,
    po_req_distributions_all reqd,
    po_distributions_all pod,
    po_headers_all poh,
    po_lines_all pol,
    po_line_locations_all poll,
    rcv_shipment_headers rcvh,
    rcv_shipment_lines rcvl,
    rcv_transactions rcvt,
    ap_invoice_distributions_all apid,
    ap_invoices_all apia,
    ap_payment_schedules_all aps,
    ap_invoice_payments_all app,
    ap_checks_all apc,
    per_all_people_f papf,
    po_vendors pv,
    mtl_system_items_b mtb,
    mtl_categories_b mcb,
    mtl_item_categories mic
    WHERE reqh.requisition_header_id =
    reql.requisition_header_id
    AND reql.requisition_line_id = reqd.requisition_line_id
    AND pod.req_distribution_id = reqd.distribution_id
    AND pol.po_line_id = pod.po_line_id
    AND poh.po_header_id = pol.po_header_id
    AND pol.po_line_id = poll.po_line_id
    AND pod.po_distribution_id = apid.po_distribution_id
    AND pod.po_distribution_id = rcvt.po_distribution_id
    AND rcvl.shipment_header_id = rcvh.shipment_header_id
    AND rcvh.shipment_header_id = rcvt.shipment_header_id
    AND rcvt.po_distribution_id = apid.po_distribution_id
    AND app.check_id = apc.check_id
    AND apid.invoice_id = apia.invoice_id
    AND apia.invoice_id = app.invoice_id
    AND app.invoice_id = aps.invoice_id
    AND poh.agent_id = papf.person_id
    AND poh.vendor_id = pv.vendor_id
    AND pol.item_id = mtb.inventory_item_id
    AND mic.inventory_item_id = pol.item_id
    AND poh.authorization_status = 'APPROVED'
    AND mcb.category_id = mic.category_id
    UNION
    SELECT DISTINCT NULL "UNIT", NULL "PR_TYPE", NULL "SUBTYPE",
    NULL "PR_NO", NULL "PR DATE",
    mtb.segment1 "ITEM_CODE",
    pol.item_description "DESCRIPTION",
    mcb.segment1 "INVENTORY_CATEGORY", NULL,
    poh.authorization_status "AUTHORIZATION STATUS",
    papf.full_name "BUYER", NULL "CUSTOMER",
    DECODE (poh.type_lookup_code,
    'RFQ', poh.segment1
    ) "RFQ NO",
    DECODE (poh.type_lookup_code,
    'RFQ', poh.creation_date
    ) "RFQ DATE",
    NULL "RFQ SUPPLIER",
    DECODE (poh.type_lookup_code,
    'QUOTATION', poh.segment1
    ) "QTN NO",
    DECODE (poh.type_lookup_code,
    'QUOTATION', poh.reply_date
    ) "QTN DATE",
    DECODE (poh.type_lookup_code,
    'STANDARD', poh.segment1,
    'BLANKET', poh.segment1,
    'PLANNED', poh.segment1
    ) "PO_NO",
    DECODE (poh.type_lookup_code,
    'STANDARD', poh.creation_date,
    'BLANKET', poh.creation_date,
    'PLANNED', poh.creation_date
    ) "PO DATE",
    pv.vendor_name "SUPPLIER",
    NULL "SUPPLIER ACKNOWLEDGMENT DATE", NULL,
    DECODE (rcvh.asn_type,
    'ASBN', rcvh.shipment_num
    ) "ASBN NO",
    rcvh.receipt_num "RECEIPT NO",
    rcvh.creation_date "RECEIPT DATE",
    apia.invoice_num "INVOICE_NO",
    NULL "QUALITY INSPECTION DATE",
    rcvt.inspection_status_code "INSPECTION RESULT",
    NULL "STOCKING DATE", NULL, NULL "PV NO",
    NULL "PV DATE", apc.amount "PAYMENT RELEASE AMOUNT",
    apc.released_date "PAYMENT RELEASE DATE",
    apc.payment_method_code "PAYMENT RELEASE MODE",
    NULL "NO OF DAYS TAKEN FROM RECEIPT"
    FROM po_distributions_all pod,
    po_headers_all poh,
    po_lines_all pol,
    rcv_shipment_headers rcvh,
    rcv_shipment_lines rcvl,
    rcv_transactions rcvt,
    ap_invoice_distributions_all apid,
    ap_invoices_all apia,
    ap_payment_schedules_all aps,
    ap_invoice_payments_all app,
    ap_checks_all apc,
    per_all_people_f papf,
    po_vendors pv,
    mtl_system_items_b mtb,
    mtl_categories_b mcb,
    mtl_item_categories mic
    WHERE pol.po_line_id = pod.po_line_id
    AND poh.po_header_id = pol.po_header_id
    AND pod.po_distribution_id = apid.po_distribution_id
    AND pod.po_distribution_id = rcvt.po_distribution_id
    AND rcvl.shipment_header_id = rcvh.shipment_header_id
    AND rcvh.shipment_header_id = rcvt.shipment_header_id
    AND rcvt.po_distribution_id = apid.po_distribution_id
    AND app.check_id = apc.check_id
    AND apid.invoice_id = apia.invoice_id
    AND apia.invoice_id = app.invoice_id
    AND app.invoice_id = aps.invoice_id
    AND poh.agent_id = papf.person_id
    AND poh.vendor_id = pv.vendor_id
    AND pol.item_id = mtb.inventory_item_id
    AND mic.inventory_item_id = pol.item_id
    AND poh.authorization_status = 'APPROVED'
    AND mcb.category_id = mic.category_id) a
    WHERE 1 = 1
    AND ( a.pr_type = NVL (:pr_type, a.pr_type)
    OR (:pr_type IS NULL AND a.pr_type IS NULL)
    AND ( a.pr_no = NVL (:pr_no, a.pr_no)
    OR (:pr_no IS NULL AND a.pr_no IS NULL)
    AND ( a.unit = NVL (:unit_lookup_code, a.unit)
    OR (:unit_lookup_code IS NULL AND a.unit IS NULL)
    AND a.supplier = NVL (:supplier_name, a.supplier)
    AND a.inventory_category = NVL (:inventory_category, a.inventory_category)
    AND a.buyer = NVL (:buyer_name, a.buyer)
    AND a.invoice_no = NVL (:invoice_no, a.invoice_no)
    AND a.item_code = NVL (:item_code, a.item_code)
    Edited by: Dave on May 14, 2012 5:08 AM
    Edited by: Dave on May 14, 2012 5:14 AM

    Dave wrote:
    What i want is that the union return only the superset records from result of the union of the two queriesThat is what Union does.
    If it doesn't, then it means it's not real duplicates.
    For example :Scott@my11g SQL>with
      2  table_A(val) as (
      3  select 'This is a duplicate' from dual
      4  union all select 'This is another' from dual
      5  union all select 'This is not' from dual
      6  )
      7  ,table_B(val) as (
      8  select 'This is a duplicate' from dual
      9  union all select 'This is another' from dual
    10  )
    11  ------ end of sample data ------
    12  select val from table_A
    13  union
    14  select val from table_B ;
    Scott@my11g SQL>/
    VAL
    This is a duplicate
    This is another
    This is notSee ? only 3 rows from the 5 (3+2) originals.
    But if I add some pseudo columns Which_table with different values for each table, then :Scott@my11g SQL>with
      2  table_A(val) as (
      3  select 'This is a duplicate' from dual
      4  union all select 'This is another' from dual
      5  union all select 'This is not' from dual
      6  )
      7  ,table_B(val) as (
      8  select 'This is a duplicate' from dual
      9  union all select 'This is another' from dual
    10  )
    11  ------ end of sample data ------
    12  select val, 'from table_A' which_table from table_A
    13  union
    14  select val, 'from table_B' from table_B ;
    VAL                 WHICH_TABLE
    This is a duplicate from table_A
    This is a duplicate from table_B
    This is another     from table_A
    This is another     from table_B
    This is not         from table_AThere is now 5 rows, they are no longer duplicates.

  • Apps query 10.7

    I hv a query in Oracle Applications (10.7 SC) GL if u can contact somebody to get it clarified ;
    The COA has 4 segments Company.Account.Center.SubLeg, as u know while defining a New Account in GL u have to define the segment qualifier i.e. an "account type" whether it is a Asset/ Liability/ Operating/ Revenue account. Once it is defined and saved the Account type segment qualifier can not be altered.
    After a deep homework we found that the same could be altered if u unfreeze the FlexField defination and change the segment qualifier.
    If u do so the changes can be seen there but it is not affected in Account Code Combinations table. But we tried this change to be affected there in CUI mode and it worked. Remember that there is no transactions entered so far for that account.
    My Query is that if the method we adopted above is correct or not...? If it is correct then what is the other impact of freezing / unfreezing flexfield definations specially in a live system..?
    If it is not correct than what is the correct method for doing this..?
    Can we make these changes directly into the table using a script..?
    I will appreciate yr response ASAP.
    Thanks
    null

    Sure.  Download an old version of Xcode.
    You won't be able to submit to the iTunes App Store unless you use the latest version of Xcode.

  • Imagent.app query during start-up

    After starting up my MBP (10.7.4), I keep getting asked whether I want to allow 'imagent.app' to connect to the internet. I assume this has something to do with Facetime/iChat. I have Messages beta installed.
    Is there a way to prevent this annoying query from showing? Of course without also switching of Facetime/Messages.
    Many thanks in advance for you help.
    Best regards, D.

    Try going to:
     > System Preferences > Security & Privacy | Firewall
    Presumably this is 'ON'?
    Unlock the padlock, then in the options check that you have enabled:
    'Automatically allow signed software to receive incoming connections'

  • User Function Name wrong resultset in Oracle Apps Query

    Hi,
    I am using the below query to extarct the user function names alonng with responsilibity .But doing so i am getting a User Function Name for eg 'Cross Validation Rules' under Order Management User.But thats wrong.Cross validation rules should exists in Receivables,GL and Payables.
    select distinct frv.menu_id, frv.responsibility_id, frv.responsibility_name, fff.function_name, ffft.user_function_name
    from
    fnd_responsibility_vl frv,
    fnd_responsibility frp,
    fnd_form_functions fff,
    fnd_form_functions_tl ffft,
    fnd_resp_functions resp,
    fnd_menu_entries mnu,
    fnd_menus fmn
    where
    fff.function_id = ffft.function_id
    and mnu.menu_id=frp.menu_id
    and mnu.menu_id=fmn.menu_id
    and frv.responsibility_id=resp.responsibility_id
    and mnu.function_id=ffft.function_id
    and resp.rule_type='M'
    and frv.menu_id in (select me.menu_id
    from fnd_menu_entries me
    start with me.function_id = fff.function_id
    connect by prior me.menu_id = me.sub_menu_id )
    and (frv.responsibility_name like '%Order%')
    order by 1
    Kindly any help will be helpful for me

    What is your application release?
    I am using the below query to extarct the user function names alonng with responsilibity .But doing so i am getting a User Function Name for eg 'Cross Validation Rules' under Order Management User.But thats wrong.Cross validation rules should exists in Receivables,GL and Payables.Please try the queries in these docs.
    Script To Extract Submenu And Function Information About A Menu [ID 458701.1]
    HOW TO GENERATE MENU TREE FOR A MENU ATTACHED TO A RESPONSIBILITY IN ORACLE APPLICATIONS 11i ? [ID 312014.1]
    Thanks,
    Hussein

  • Oracle APPS Query for Natural Accoun in the Chart of account

    Hello Guys,
    I am working on a query to display the natural account listing in a report, I have made the below query
    select  application_id ,SEGMENT_NAME, flex_value ACCOUNT_CODE , DESCRIPTION ACCOUNT_DESCRIPTION
    from FND_FLEX_VALUES,FND_ID_FLEX_SEGMENTS ,fnd_flex_values_tl
    where
    FND_ID_FLEX_SEGMENTS.APPLICATION_ID='101'
    AND SEGMENT_NAME='Natural Accounts'
    and FND_FLEX_VALUES.FLEX_VALUE_SET_ID=FND_ID_FLEX_SEGMENTS.FLEX_VALUE_SET_ID
    AND FND_FLEX_VALUES.FLEX_VALUE_ID=fnd_flex_values_tl.FLEX_VALUE_ID
    Its showing me the correct values but there is repetition of record each row is displayed 4 times, I have checked the joins and fields but still cant find any idea what could be causing this duplication,
    Any help will be appreciated
    Regards              

    Refer this query, you can get
    select FIS.SEGMENT_NAME, FFV.FLEX_VALUE, FIF.ID_FLEX_STRUCTURE_CODE , FSA.*
    from FND_SEGMENT_ATTRIBUTE_VALUES FSA, FND_ID_FLEX_SEGMENTS_VL FIS, FND_FLEX_VALUES_VL FFV, FND_ID_FLEX_STRUCTURES FIF
    where FSA.attribute_value='Y'
    and FSA.ID_FLEX_CODE = 'GL#'
    and FSA.SEGMENT_ATTRIBUTE_TYPE = 'GL_ACCOUNT' --Natural Account Segment
    and FIF.ID_FLEX_STRUCTURE_CODE='ACCOUNTING_FLEXFIELD'
    and FSA.APPLICATION_COLUMN_NAME = FIS.APPLICATION_COLUMN_NAME
    and FIS.FLEX_VALUE_SET_ID = FFV.FLEX_VALUE_SET_ID
    and FIS.ID_FLEX_NUM=FIF.ID_FLEX_NUM
    and FIS.ID_FLEX_CODE=FIF.ID_FLEX_CODE
    AND FSA.ID_FLEX_CODE= FIF.ID_FLEX_CODE
    and FSA.ID_FLEX_NUM=FIF.ID_FLEX_NUM
    thanks

  • Android wifi app query

    Hi,
    I have installed the BT Wifi app on my Android phone, but when I try to connect, having inputted my user id (email address) and password, I am told I need to be a broadband customer to use the service. Well, I am a customer,  Infinity activated today, (working well so far)!  There must be something very simple that I am doing wrong.  Advice appreciated.

    You need to login using the e-mail address that BT gave you, and its password. It may take 24 hours to become active.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Using Portal Variables in filter criteria of BEx Web App query string

    Our BI 7 instance is connected to a NW2004 portal, where we have created SAP BW Report iViews to access templates created with the Web Application Designer.  We would like to use some of the portal variables about the user to create filters for the BEx Web Application Query String.
    The query string would have a set of parameters at the end that looks something like:
    &FILTER_IOBJNM_1=0PLANT&FILTER_VALUE_1=<plant>
    Where <plant> is a value stored in a portal variable.
    Is it possible to do this in the SAP BW Report iView or will we have to code our own custom iView to pick up the variable values?
    Cheers,
    Lee Smith

    Any one?

  • Vb-oracle app - query failing

    i am having a problem running a select statement from VB6 to an Oracle 8 database.
    the SQL statement works when the number of records in the table PrData is small (300 records) but not when there are lots of records (166800 records). when the query is executed in VB, it runs for approximately a minute then fails with error 3669, description 'Execution cancelled'.
    i can run the same query in the SQL Worksheet against the large database and it does not fail and give an error. it returns the correct records.
    is there a setting i am missing to allow the query to finish? why does it work from the worksheet but not from VB? any help would be greatly appreciated.
    here is how i'm connecting and opening the recordset:
    'connect:
    Set wrkMM = CreateWorkspace("WKS", "", "", dbUseODBC)
    sStr = "ODBC;DSN=" + Trim(oCent.ODBCSource) + ";UID=" + xstrOracleName + ";PWD=" + xstrOraclePswd + ";"
    ' create connection
    wrkMM.DefaultCursorDriver = dbUseODBCCursor
    Set conMC = wrkMM.OpenConnection("", dbDriverNoPrompt, bReadOnly, sStr)
    'get records
    conMC.OpenRecordset(strSQL, dbOpenForwardOnly)
    the SQL statement is:
    SELECT PrData.ProjectID, PrData.MetricId, PrMetric.DisplayFormat, PrData.DataValue, PrData.CollectDate, PrData.ProductID FROM PrMetric, PrData WHERE (PrMetric.ProjectID in (71)) AND (PrMetric.DataType <> 3) AND (PrMetric.GlobalID = 34 AND (PrMetric.PushData = 1) AND PrMetric.MetricID IN (Select MetricID from PrCatMetric Where ProjectID in (71))) AND (PrData.MetricId = PrMetric.MetricID) ORDER BY PrData.ProjectId, PrData.CollectDate, PrData.ProductID;
    null

    i am having a problem running a select statement from VB6 to an Oracle 8 database.
    the SQL statement works when the number of records in the table PrData is small (300 records) but not when there are lots of records (166800 records). when the query is executed in VB, it runs for approximately a minute then fails with error 3669, description 'Execution cancelled'.
    i can run the same query in the SQL Worksheet against the large database and it does not fail and give an error. it returns the correct records.
    is there a setting i am missing to allow the query to finish? why does it work from the worksheet but not from VB? any help would be greatly appreciated.
    here is how i'm connecting and opening the recordset:
    'connect:
    Set wrkMM = CreateWorkspace("WKS", "", "", dbUseODBC)
    sStr = "ODBC;DSN=" + Trim(oCent.ODBCSource) + ";UID=" + xstrOracleName + ";PWD=" + xstrOraclePswd + ";"
    ' create connection
    wrkMM.DefaultCursorDriver = dbUseODBCCursor
    Set conMC = wrkMM.OpenConnection("", dbDriverNoPrompt, bReadOnly, sStr)
    'get records
    conMC.OpenRecordset(strSQL, dbOpenForwardOnly)
    the SQL statement is:
    SELECT PrData.ProjectID, PrData.MetricId, PrMetric.DisplayFormat, PrData.DataValue, PrData.CollectDate, PrData.ProductID FROM PrMetric, PrData WHERE (PrMetric.ProjectID in (71)) AND (PrMetric.DataType <> 3) AND (PrMetric.GlobalID = 34 AND (PrMetric.PushData = 1) AND PrMetric.MetricID IN (Select MetricID from PrCatMetric Where ProjectID in (71))) AND (PrData.MetricId = PrMetric.MetricID) ORDER BY PrData.ProjectId, PrData.CollectDate, PrData.ProductID;
    null

  • App Query, Please Help!!!

    I know it's a long shot but, does anyone know the fun/useless app where you input your hourly wage and when you go to the toilet (especially in work) you can hit the app and see how much monies you have earned!!!!!
    Yes I know, a weird question, but a fun app

    There is an (also useful) app "Payometer" which can do this, and several similar apps. Just enter "hourly wage" in the iTunes app store search box.
    Message was edited by: modular747

  • Enabling/Disabling a button in Web appl. based on exception in a Query

    Hi all,
    I am wondering whether we can grey out a button in the web applic. designer based on whether a report has an exception showing.
    So now we can enable or disable a button, so at runtime, when the web app runs, and a condition is visible in the analysis item table, then the button (save for example) should be disabled, otherwise if there are no exceptions then it should be enabled.
    I am thinking Javascript, but not sure how to read the exceptions in a web apps query?
    Thanks for any help forwarded.
    Regards
    SMS

    Hi Sumit,
    just add one more attribute of type wdy_boolean, and bind this attribute to readonly property of button by coding.
    then as per your cell value set the attribute value, below is the some sample code.
    METHOD wddoinit .
      DATA: lv_node TYPE REF TO if_wd_context_node,
            lt_mara TYPE ig_componentcontroller=>elements_mara,
            wa_mara TYPE ig_componentcontroller=>element_mara.
      SELECT matnr
             ersda
             ernam
             mtart
             matkl
             meins FROM mara INTO CORRESPONDING FIELDS OF TABLE lt_mara
                                     WHERE meins = 'GM' OR meins = 'CCM'.
      SORT lt_mara BY meins.
      lv_node = wd_context->get_child_node( name = wd_this->wdctx_mara ).
      LOOP AT lt_mara INTO wa_mara.
        IF wa_mara-meins = 'GM'.
          wa_mara-readonly = 'X'.
        ELSE.
          wa_mara-readonly = ' '.
        ENDIF.
        MODIFY lt_mara FROM wa_mara TRANSPORTING readonly.
        lv_node->bind_structure(  SET_INITIAL_ELEMENTS = ABAP_FALSE
                                  new_item = wa_mara ).
      ENDLOOP.
      lv_node->bind_table( new_items = lt_mara ).
    ENDMETHOD.
    Regards
    Srinivas

  • [iPhone] Location-aware web app

    I've been tapped to create a web app formatted for use on an iPhone that will display results depending on the user's current location. Since this is a web app, not an internal one, is there a way I can get a user's location sent to a web app (query string is fine) without creating an internal app?
    For instance, I'd like to make web bookmark on the home screen that would go to
    http://www.whatever.com/lat=xxx.xxxxx&long=yyy.yyyyy
    where x and y are the lat and long of the user's current location. Obviously, x and y will change depending on where the user is. Thanks in advance

    I am not aware of any JavaScript hacks or any other API which would allow a Mobile Safari page to access Core Location features. This would result into kind of a privacy/security issue.
    Why don't you create a very basic native SDK based app that does nothing more than calling your URL and encoding latitude and longitude into the GET/POST request?
    All other web sites that display location based content (see Locly and others) do it exactly like that and it works like a charm.

  • JClient query by example doesn't work in 10.1.2.

    I've a JClient application I migrated from 9.0.4 to 10.1.2.
    In the migrated app query by example doesn't work anymore in JTables.
    Could someone help ?
    Tks
    Tullio

    Frank, I got a testcase from Tullio. It's a 9.0.4 project uding JClient that is pre-ADF bindings.
    I migrated his 9.0.4 project to 9.0.5.2 first.
    In 9.0.5.2, I see already a change in behavior related to enter-query mode in the JTable, but the number of rows displayed looks correct.
    Tullio, can you confirm if the problem you are seeing vis a vis enter query mode is that if you:
    1. Click enter-query button
    2. Click into a field like Ename and type SMITH but don't [Tab] out of that field yet
    3. Click on the execute-query button
    It behaves as if you've entered no criteria there.
    If at step 2 above you clicked [Tab] to exit the field where you typed SMITH, then it works correctly.
    Is this the enter-query-JTable-related problem you're seeing (that is, related to when you don't focus-out of the field?)
    The "number-of-rows-displayed" issue you mention in this other thread (10.1.2 JClient binding Error. does reproduce with your testcase only in 10.1.2 (as well as also still having this 9.0.5.2 focus-related issue in enter query mode).

  • Unable install APPS from Office store

    I have configured my SharePoint 2013 for manage apps installation
    In Central administration I connect to the store, purchase the app and see it in Monitor App
    When I con in the SharePoint site I the apps avalable for installation. I click inside the app icon and appear the license and information and I can access al link. When I click on "Is trusted" (I have the italian SharePoint version and the button
    text "Attendibile") I receive a technical error.
    Also if I try to add directly from the Microsoft store the app I have the same trouble (I found the app in the store, but when I install I have the same log error)
    We have a proxy in our lan. I have tried with the configuration of the proxy inside the webconfig:
    <defaultProxy useDefaultCredentials="false">
          <proxy usesystemdefault="true" proxyaddress="URL:https://store.office.com/app/query?cmo=EN%2DUS&pmo=US&type=4&assetid=WA104034530&build=15%2E0%2E4569%2E1000&av=OSU150&origin=EC101785291&corr=%7Ba2c1e59c%2Da7a9%2D5012%2D8ef3%2D658f8b21f090%7D a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22045: 02/02/2015 11:54:25.05  w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     App Marketplace                alokv Medium   Received response from Office.com X-Machine:weu-retailer.osi.office.net,OmexStorefront_IN_2 a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22046: 02/02/2015 11:54:25.05  w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     App Marketplace                ahnhh Medium   Sending Request to Office.com with the following
    URL:https://store.office.com/appinstall/unauthenticated?cmu=EN%2DUS&pmo=US&clienttoken=%3Cr%20v%3D%221%22%3E%3Ct%20aid%3D%22WA104034530%22%20pid%3D%221f756086%2D6b40%2D46d3%2Da074%2D45445cbcc7c3%22%20cid%3D%220000000000000000%22%20did%3D%22%7B6836001C%2DBE2E%2D4483%2D8CFF%2D7D432FD1A5DD%7D%22%20ts%3D%220%22%20sl%3D%22true%22%20et%3D%22Free%22%20ad%3D%222015%2D02%2D02T09%3A59%3A00Z%22%20sd%3D%222015%2D02%2D02%22%20te%3D%222016%2D02%2D02T09%3A59%3A00Z%22%20ss%3D%220%22%20%2F%3E%3Cd%3ExAlUH5URAzagUyup6S1st0Th8lRyY9ZuTTJ6TFO%2Bth8%3D%3C%2Fd%3E%3C%2Fr%3E&ret=0&build=15%2E0%2E4569%2E1000&av=OSU150&origin=EC101785291&corr=%7Ba2c1e59c%2Da7a9%2D5012%2D8ef3%2D658f8b21f090%7D&corr=%7Ba2c1e59c%2Da7a9%2D5012%2D8ef3%2D658f8b21f090%7D a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22055: 02/02/2015 11:54:25.27  w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     App Marketplace                aep7f Unexpected Request to office.com with the following
    URL:https://store.office.com/appinstall/unauthenticated?cmu=EN%2DUS&pmo=US&clienttoken=%3Cr%20v%3D%221%22%3E%3Ct%20aid%3D%22WA104034530%22%20pid%3D%221f756086%2D6b40%2D46d3%2Da074%2D45445cbcc7c3%22%20cid%3D%220000000000000000%22%20did%3D%22%7B6836001C%2DBE2E%2D4483%2D8CFF%2D7D432FD1A5DD%7D%22%20ts%3D%220%22%20sl%3D%22true%22%20et%3D%22Free%22%20ad%3D%222015%2D02%2D02T09%3A59%3A00Z%22%20sd%3D%222015%2D02%2D02%22%20te%3D%222016%2D02%2D02T09%3A59%3A00Z%22%20ss%3D%220%22%20%2F%3E%3Cd%3ExAlUH5URAzagUyup6S1st0Th8lRyY9ZuTTJ6TFO%2Bth8%3D%3C%2Fd%3E%3C%2Fr%3E&ret=0&build=15%2E0%2E4569%2E1000&av=OSU150&origin=EC101785291&corr=%7Ba2c1e59c%2Da7a9%2D5012%2D8ef3%2D658f8b21f090%7D&corr=%7Ba2c1e59c%2Da7a9%2D5012%2D8ef3%2D658f8b21f090%7D
    caused an exception. System.N... a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22056: 02/02/2015 11:54:25.27* w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     App Marketplace                aep7f Unexpected ...et.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException:
    Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host     at System.Net.Sockets.NetworkStream.Read(Byte[]
    buffer, Int32 offset, Int32 size)     --- End of inner exception stack trace ---     at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)     at System.Net.FixedSizeReader.ReadPacket(Byte[]
    buffer, Int32 offset, Int32 count)     at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.StartSendBlob(B... a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22057: 02/02/2015 11:54:25.27* w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     App Marketplace                aep7f Unexpected ...yte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ForceAuthentication(Boolean
    receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)     at System.Threading.ExecutionContext.RunInternal(ExecutionContext
    executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)    
    at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)     at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)     at System.Net.TlsStream.Wr... a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22058: 02/02/2015 11:54:25.27* w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     App Marketplace                aep7f Unexpected ...ite(Byte[] buffer, Int32 offset, Int32 size)     at System.Net.PooledStream.Write(Byte[] buffer,
    Int32 offset, Int32 size)     at System.Net.ConnectStream.WriteHeaders(Boolean async)     --- End of inner exception stack trace ---     at System.Net.HttpWebRequest.GetResponse()    
    at Microsoft.SharePoint.Marketplace.OfficeProxy.OfficeProxy.SendWebRequest(String url, Boolean autoRedirect, String userIP, String postBody, String contentType, Encoding encoding, String jobRunIdLogPrefix) a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22059: 02/02/2015 11:54:25.27  w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     Monitoring                     b4ly High     Leaving Monitored Scope (OfficeProxy.SendWebRequest). Execution Time=216,446922723419 a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22060: 02/02/2015 11:54:25.27  w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     General                        8nca Medium   Application error when access /_layouts/15/storefront.aspx, Error=Non è possibile
    connettersi a SharePoint Store. Riprovare più tardi.   at Microsoft.SharePoint.Marketplace.OfficeProxy.OfficeProxy.GetAppDownloadStream(String billingMarket, String contentMarket, String rawXMLEntitlementToken, Stream& appDownloadStream, Int64&
    appStreamLength, String& responseUrl)     at Microsoft.SharePoint.ApplicationPages.StorefrontBase.StartDownload(Guid productId, String oauthAppId, Boolean isUpgrade)     at Microsoft.SharePoint.ApplicationPages.StorefrontBase.AppDownload(Boolean
    isUpgrade, Boolean autoRedirect)     at Microsoft.SharePoint.ApplicationPages.StorefrontBase.Render(HtmlTextWriter writer)     at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)    
    at... a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22061: 02/02/2015 11:54:25.27* w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     General                        8nca Medium   ... System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,
    Boolean includeStagesAfterAsyncPoint) a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22062: 02/02/2015 11:54:25.27  w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     Runtime                        tkau Unexpected Microsoft.SharePoint.SPException: Non è possibile connettersi a SharePoint Store.
    Riprovare più tardi.    at Microsoft.SharePoint.Marketplace.OfficeProxy.OfficeProxy.GetAppDownloadStream(String billingMarket, String contentMarket, String rawXMLEntitlementToken, Stream& appDownloadStream, Int64& appStreamLength, String&
    responseUrl)     at Microsoft.SharePoint.ApplicationPages.StorefrontBase.StartDownload(Guid productId, String oauthAppId, Boolean isUpgrade)     at Microsoft.SharePoint.ApplicationPages.StorefrontBase.AppDownload(Boolean
    isUpgrade, Boolean autoRedirect)     at Microsoft.SharePoint.ApplicationPages.StorefrontBase.Render(HtmlTextWriter writer)     at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)    
    at System.Web.UI.Page.ProcessRequ... a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22063: 02/02/2015 11:54:25.27* w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     Runtime                        tkau Unexpected ...estMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22064: 02/02/2015 11:54:25.27  w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     General                        ajlz0 High     Getting Error Message for Exception System.Web.HttpUnhandledException
    (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> Microsoft.SharePoint.SPException: Non è possibile connettersi a SharePoint Store. Riprovare più tardi.     at Microsoft.SharePoint.Marketplace.OfficeProxy.OfficeProxy.GetAppDownloadStream(String
    billingMarket, String contentMarket, String rawXMLEntitlementToken, Stream& appDownloadStream, Int64& appStreamLength, String& responseUrl)     at Microsoft.SharePoint.ApplicationPages.StorefrontBase.StartDownload(Guid productId,
    String oauthAppId, Boolean isUpgrade)     at Microsoft.SharePoint.ApplicationPages.StorefrontBase.AppDownload(Boolean isUpgrade, Boolean autoRedirect)     at Microsoft.SharePoint.ApplicationPages.StorefrontBase.Render(Ht... a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22065: 02/02/2015 11:54:25.27* w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     General                        ajlz0 High     ...mlTextWriter writer)     at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter
    writer, ControlAdapter adapter)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.HandleError(Exception e)    
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at System.Web.UI.Page.ProcessRequest()     at System.Web.UI.Page.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecu... a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22066: 02/02/2015 11:54:25.27* w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     General                        ajlz0 High     ...tionStep step, Boolean& completedSynchronously) a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22067: 02/02/2015 11:54:25.27  w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     General                        aat87 Monitorable   a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22068: 02/02/2015 11:54:25.27  w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     Micro Trace                    uls4 Medium   Micro Trace Tags: 0 nasq,3 agb9s,22 ahnhh,99 alokv,1 ahnhh,215 aep7f,0 b4ly,0 8nca,0 tkau,0 ajlz0,0
    aat87 a2c1e59c-a7a9-5012-8ef3-658f8b21f090
     Line 22069: 02/02/2015 11:54:25.27  w3wp.exe (0x3128)                        0x19D8 SharePoint Foundation        
     Monitoring                     b4ly Medium   Leaving Monitored Scope (Request (POST:http://<sharepoint site fqdn>/SiteCollection/_layouts/15/storefront.aspx?source=<Source
    page path>&sname=<Site title>). Execution Time=349,605257092731 a2c1e59c-a7a9-5012-8ef3-658f8b21f090
    LSo Lorenzo Soncini Trento TN - Italy

    Hi Lorenzo,
    You can add the following address to the trusted sits in IE:
    https://store.office.com.
    Please also check this article:
    http://www.nothingbutsharepoint.com/2013/02/13/configure-an-environment-for-apps-for-sharepoint-2013-aspx/
    Best regards.
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • ORA-00001: unique constraint: How to discard the insert and print error

    Hi: I have a table with a constraint on a single field. The application that is inserting into this table is a multithreaded application. Sometimes two inserts could come with the same value for this field. Is it possible in oracle to configure it to

  • Add and remove items by comparing 2 arrays

    I have two arrays of objects. Each object has a unique name property besides few others. One of the array is a local copy and the other one is sent from server after regular intervals. The local copy of arrays is then used to add a movieclips into a

  • Partial Reconciliation on Payment on Account

    I am working on SAP Business One 2007 A Patch Level 38: I understand the usefulness of Partial Reconciliation but am having the following problems when it is used in conjunction with a "Payment on Account".  Here is the scenario. I have a Customer wh

  • How to get a colored JButton?

    I wanted to have a coloured button, I set the background of the JButton to the desired color, but when I set the desired look n feel to the one of the system, like Windows Xp Look n feel, i could only see the border of the button with that color and

  • Sniffer result code 1

    I have upgraded my computer to intel h87 mc and core i5 4670 processor.. and i have found most of the adobe cc 2014 applications like after effects and premiere pro cc 2014 failed to start except photoshop cc2014.. those applications which failed to