Update report item.

Hi,
I am new to apex. I have created one report in apex. one of the column is not a database column.
Total amount due is the column i have to get in to the report.
Total amount due is coming from one of the process.
I have created one process to get the total amount due. so how can i attach the value to the total amount due and how to attach the non data base column to the report.
Thanks,
Jay

If it is a simple expression you can put it in the query itself. Like
select empno, sal, sal*12
from emp
If it is a complex process, create db function and then call it in the sql
select empno, sal, compute_sal(sal)
from emp

Similar Messages

  • Navigate to the first item in a updatable report

    on my page i have a master/detail form. When a new detail - record is created, the cursor navigate to the first item on the page => it is the first item of the master! What I have to do, that the cursor navigate to the first item in the new detail-record ??
    Thanks
    Robert

    Hi Andy,
    thank you for your answer.
    When the program start, I can not find the cursor. I think, I have a problem to reference the item in the updatable report. I wrote the following lines:
    <script language="JavaScript1.1" type="text/javascript">
    alert('Vor Cursor Navigation');
    first_field('#FKOM_RUFNR#');
    </script>
    (FKOM_RUFNR is a column of the select statement in the report!!)
    A second problem: The cursor navigate to the field - first_field('FIELD_NAME') - every time. But the cursor should navigate to the field in the updatable report, if the button "ADD" in the region of the updatable report was clicked. If the page was displayed without clicking the ADD - button, the cursor should navigate to the first item in the master form ( like => Cursor focus: first item on the page). How can I do that ??
    Thanks
    Robert

  • The workflow could not update the item, possibly because one or more columns for the item require a different type of information using Update Item action

       I got error  "The workflow could not update the item, possibly because one or more columns for the item require a different type of information "I  found out the cause is  Update Item action       
    I need to update item in another List call Customer Report ,the field call "Issues"  with data type  "Choice"   to yes
    then the error arise .   please help..

    Thanks for the quick response Nikhil.
    Our SPF 2010 server is relatively small to many setups I am sure. The list with the issue only has 4456 items and there are a few associated lists, eg lookups, Tasks, etc see below for count.
    Site Lists
    Engagements = 4456 (Errors on this list, primary list for activity)
    Tasks = 7711  (All workflow tasks from all site lists)
    Clients = 4396  (Lookup from Engagements, Tslips, etc)
    Workflow History = 584930 (I periodically run a cleanup on this and try to keep it under 400k)
    Tslips = 3522 (Engagements list can create items here, but overall not much interaction between lists)
    A few other lists that are used by workflows to lookup associations that are fairly static and under 50 items, eg "Parters Admin" used to lookup a partners executive admin to assign a task.
    Stunpals - Disclaimer: This posting is provided "AS IS" with no warranties.

  • Update FI item text from PO item text

    Hi all,
                     i am trying to update FI item text(bseg) from PO item text(ekpo).I know that bseg is a culster table therefore inner join is not allow.So is there a way i can join these two tables together so i can retrieve the line item and then i'll do a modify to update into FI item text.I have tried the various codes that are posted within this forum but can never get anything to write:/ out.
                       I've manage to retrieve the various info from PO (ekpo) and also manage to update the FI text field with some random words(but both seperately).What i need now is to create a link between bseg and ekpo.
                       I have attached my coding for better understanding..Thankss
    REPORT  ZSTKLILINTEST3 LINE-SIZE 1023 LINE-COUNT 1023 NO STANDARD PAGE HEADING.
    Table Declaration
    TABLES: ekpo, ekko, bseg, zstkll_1.
    Types Declaration
    TYPES:  BEGIN OF t_bseg,
            ebeln LIKE bseg-ebeln,
            hkont LIKE bseg-hkont,
            END OF t_bseg,
            BEGIN OF t_ekpo,
            ebeln LIKE ekpo-ebeln,
            txz01 LIKE ekpo-txz01,
            bukrs LIKE ekpo-bukrs,
            ebelp LIKE ekpo-ebelp,
            hkont LIKE bseg-hkont,
            END OF t_ekpo.
    Data  Declaration
    *grab data from t_ekpo then append it to zstkcy008
    DATA: ekpo_tab TYPE STANDARD TABLE OF t_ekpo WITH HEADER LINE,
          bseg_tab TYPE STANDARD TABLE OF t_bseg WITH HEADER LINE,
          zstkll_1_tab TYPE STANDARD TABLE OF zstkll_1,
          wa_zstkll_1 LIKE LINE OF zstkll_1_tab.
    Selection-Screen
    SELECT-OPTIONS: s_bukrs FOR ekpo-bukrs,
                    s_ebeln FOR ekpo-ebeln,
                    s_hkont FOR bseg-hkont.
    INITIALIZATION EVENT
    AT SELECTION-SCREEN EVENT
    START-OF-SELECTION
    START-OF-SELECTION.
      SELECT bukrs
      FROM ekpo
      INTO CORRESPONDING FIELDS OF TABLE ekpo_tab
      WHERE bukrs IN s_bukrs.
    IF ekpo_tab[] IS NOT INITIAL.
    SELECT ekkoebeln ebelp bedat txz01 ekkobukrs
    FROM ekpo INNER JOIN ekko
    ON ekpoebeln = ekkoebeln
    INTO CORRESPONDING FIELDS OF TABLE ekpo_tab
    FOR ALL ENTRIES IN ekpo_tab
    WHERE ekko~bukrs = ekpo_tab-bukrs
    AND ekko~ebeln IN s_ebeln.
        WRITE:/ 'Extracted Data:'.
        LOOP AT ekpo_tab.
          MOVE-CORRESPONDING ekpo_tab TO wa_zstkll_1.
          WRITE:/ ekpo_tab-bukrs, ekpo_tab-ebelp, ekpo_tab-txz01, ekpo_tab-ebeln, ekko-ebeln, ekko-bedat.
          AT END OF ebeln.
           APPEND wa_zstkll_1 TO zstkll_1_tab.
          ENDAT.
          CLEAR: wa_zstkll_1, ekpo_tab.
        ENDLOOP.
        SKIP 2.
        TRY.
            CLEAR sy-dbcnt.
    INSERT zstkll_1 FROM TABLE zstkll_1_tab.
          CATCH cx_root.
            WRITE:/ 'Record(s) already exist!'.
        ENDTRY.
        WRITE:/ sy-dbcnt, ' Records are inserted.'.
    ELSE.
    WRITE:/ 'No data Selected.'.
    ENDIF.
    END-OF-SELECTION
    END-OF-SELECTION.
    REPORT  ZSTKLILINTEST13.
    TABLES:bseg.
    DATA:it_bseg LIKE bseg OCCURS 0 WITH HEADER LINE.
    PARAMETERS:p_belnr LIKE bseg-belnr,
               p_bukrs LIKE bseg-bukrs,
               p_gjahr LIKE bseg-gjahr.
    START-OF-SELECTION.
    SELECT * FROM bseg INTO TABLE it_bseg WHERE belnr = p_belnr AND bukrs = p_bukrs AND gjahr = p_gjahr.
    MOVE 'IF THIS APPEAR UPDATE IS SUCCESSFUL' TO it_bseg-sgtxt.
    MODIFY it_bseg FROM it_bseg TRANSPORTING sgtxt where belnr = p_belnr AND bukrs = p_bukrs AND gjahr = p_gjahr.
    LOOP AT it_bseg.
    WRITE:/3 it_bseg-belnr, it_bseg-gjahr, it_bseg-sgtxt.
    ENDLOOP.
    MODIFY bseg FROM TABLE it_bseg.
    COMMIT WORK.
    IF sy-subrc EQ 0.
    WRITE:/3 'BSEG TABLE UPDATED SUCCESSFULLY WITH TEXT'.
    ENDIF.

    self solved

  • Error in updatable report

    Hi All,
    I need to add validation to updatable report.
    As the report doesnot have items, I am using collection package.
    eg:
    select
    htmldb_item.select_list_from_query(9,em_agent,'select em_agent, em_agent from IBM_MANAGED_DATABASES') em_agent,
    htmldb_item.select_list_from_query(10,em_in_scope,'select em_in_scope, em_in_scope from IBM_MANAGED_DATABASES') em_in_scope
    from "#OWNER#"."IBM_MANAGED_DATABASES" d, ibm_servers s
    where d.server = s.server
    When I run the page, I am getting an error
    report error:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    The same thing I implemented on emp ,dept tables in apex training instance and it works.
    Can anyone please address where I am going wrong in actual implementation.
    Thanks.

    Sarvani,
    I am sorry I did not get you "or change your handle to show it".I mean go to the Control Panel link (top right of on my page) and make your handle something like "Sarvani". While you are there click "Show" for your name and put at least your first name there. Messages are a lot easier to track when they are associated with human-sounding names.
    Is that you are pointing to the way I explained the problem.I don't know what you mean by that.
    My report has 1045 columns...1045 rows
    and as you suggested I used apex_item.popupkey_from_query...I first suggested that you try select_list_from_query_xl. Did you try that? I don't think it will help because you are returning so many rows but you could try it.
    Then you tried the popupkey_from_query. I am not clear if the page doesn't run and gives a 404 or if the page runs and the popup page gets a 404.
    When you put the test case on apex.oracle.com, we will be debugging the popup item but it will be much easier if you can first check your Apache logs on your system and get the error message.
    Scott

  • MRU and manual updatable report on same page

    ok. I understand that we can't have more than one MRU process on a page. Actually it seems 2 regions using the same MRU seems to work fine, but I had a problem adding a 3rd region with a new MRU. So I resorted to putting in my own updatable report. The code works well if I use an independent page but does not do anything as soon as I add it to the page with the MRU process.
    The base query is like:
    select '***' as select_plate,
    htmldb_item.hidden(31,p.plate_id) plate_id,
    p.plate_ID "Plate Id",
    htmldb_item.text(37, PLATE_BARCODE, 30) plate_barcode,
    PLATE_TYPE ,
    htmldb_item.checkbox(23, p.plate_id) sel,
    htmldb_item.checkbox(8, p.plate_id) child,
    htmldb_item.select_list_from_query(33, modified_by, 'select first_name || '' '' || last_name uname, upper(username) username from eims_user') modified_by,
    MODIFIED_ON ,
    STATUS,
    UPLOADED_ON,
    decode(p.FILENAME, null, 'N', 'Y') loaded,
    pr.run_id assay_run
    from plate p, plate_run pr
    where p.plate_type = 'zzz'
    and p.plate_id = pr.plate_id (+)
    the update process looks like
    begin
    :p2_message := 'ok0';
    for i in 1..htmldb_application.g_f31.count
    loop
    :p2_message := 'ok1';
    :p2_message := :p2_message || htmldb_application.g_f31(i);
    --if htmldb_application.g_f31(i) is not null then
    update plate set plate_barcode = htmldb_application.g_f37(i),
    modified_by = htmldb_application.g_f33(i)
    where plate_id = htmldb_application.g_f31(i);
    --end if;
    end loop;
    I added the p2_message to kind of trace what is happening. ok0 gets outputed in the multi-region page and nothing happen for the aupdate; while on the test page with this report as the only regio, I get the expected behavior and the update goes in correctly!
    Is it correct to assume that the g_fxx arrays global to a page? I used g_f3x just to make sure there is no conflict with the ones generated with the MRU process.
    Any help/hint is appreciated
    --Nabil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Alex,
    You can use more than one region in the same page or even you can create multiple report in the same page. But remember you can not create as many region as you want, ofcourse there is limitation. Same theory applies to item.
    Hope this helps.
    Regards,
    M Tajuddin
    web: http://tajuddin.whitepagesbd.com

  • Updatable report error: "Error in mru internal routine: ORA-20001"

    Hi all,
    i have a updatable report with a Multi Row Update process.
    The report has 6 display column and 1 Select List column.
    When i try to save any changes, the application shows this error:
    "Error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-20001: ORA-20001: Current version of data in database has changed since user initiated update process. current checksum = "D8B5C89AA33C8434C26DCF9A6ED939E4", item checksum = "39FB99A42FF86E64FD66D1F3C142C5F6"., ... "
    This application allows many user's connections at the same time.
    What can i do?
    Thanks.

    Hi,
    Obviously, without these tables I can not check this, but I would suggest something like:
    SELECT
    '&lt;img title="Click to enlarge" onclick="javascript:showImage(this);" src="#OWNER#.DISPLAY_IMAGE?inID=' || NVL(IMAGE_ID, 0) || '" height="30" width="30" /&gt;' FOTO, -- DISPLAYED
    CA."E_UNI_OPER_K_UNITA_OPER", -- HIDDEN
    CA."E_OPERATOR_K_OPERATORE", -- HIDDEN
    CA."O_CARICO_UO", -- HIDDEN
    CA."O_TIMESTAMP_RSS", -- HIDDEN
    CA.K_MATRICOLA, -- HIDDEN
    CA.K_MATRICOLA K_MATRICOLA_DISPLAY, -- PRIMARY KEY, -- DISPLAYED
    CA.K_SERIAL_NUMBER, -- HIDDEN
    CA.K_SERIAL_NUMBER K_SERIAL_NUMBER_DISPLAY, -- DISPLAYED
    CA.E_UNI_OPER_K_UNITA_OPER_***, -- HIDDEN
    (SELECT TMA.N_MODELLO_ASSET FROM TIPO_MODELLO_ASSET TMA WHERE TMA.K_MODELLO_ASSET = CA.E_TMODASS_K_MODELLO_ASSET) N_MODELLO_ASSET, -- DISPLAYED
    CA.E_TCATASS_K_CATEGORIA_***, -- HIDDEN
    (SELECT TCA.N_CATEGORIA_ASSET FROM TIPO_CATEGORIA_ASSET TCA, A_IMAGES AI WHERE TCA.K_CATEGORIA_ASSET = CA.E_TCATASS_K_CATEGORIA_*** AND TCA.K_CATEGORIA_ASSET = AI.E_TCATASS_K_CATEGORIA_***) N_CATEGORIA_ASSET, -- DISPLAYED
    CA.D_RIFERIMENTO_CERTIF, -- HIDDEN
    CA.D_RIFERIMENTO_CERTIF D_RIFERIMENTO_CERTIF_DISPLAY, -- DISPLAYED
    CA.TIPO_CONFERMA_CERTIF, -- SELECT LIST
    CA.D_INSERIMENTO_CERTIF, -- HIDDEN
    CA.D_FINE_VALIDITA, -- HIDDEN
    CA.E_TMODASS_K_MODELLO_ASSET, -- HIDDEN
    CA.E_PG_SIGLA_K_PARTIZIONE -- HIDDEN
    FROM CERTIFICAZIONE_ASSET CA
    WHERE CA.D_RIFERIMENTO_CERTIF IS NOT NULL
    AND CA.TIPO_CONFERMA_CERTIF IS NULL
    AND CA.D_FINE_VALIDITA IS NULL
    AND E_UNI_OPER_K_UNITA_OPER_*** = :G_UO
    Note that you can not have a tabular form over multiple tables (if you had to do that, you should use a SQL view plus an INSTEAD OF trigger) - but, as you are only displaying data from the joined tables, you can use inline SELECT statements to retrieve the related data. All other columns should be either editable by the user or hidden - any hidden columns can also have a displayed version as well, so any DISPLAYED items above also have a HIDDEN instance as well.
    Andy

  • Dynamic query in updatable report

    I have generated a updatable report with the folowing select:
    select
    "INSTALLATIEID",
    "INSTALLATIEID" INSTALLATIEID_DISPLAY,
    "CO_DRUK" druk,
    "CO_H2O" h2o,
    "CO_O2" o2,
    "CO_O2_11" o2_11,
    "CO_TEMP" temp
    from "#OWNER#"."CORRECTIE"
    The table correctie has above the 50 columns (the same columns for different components) so I want to change the query in:
    select
    "INSTALLATIEID",
    "INSTALLATIEID" INSTALLATIEID_DISPLAY,
    "&P50_COMP._DRUK" druk,
    "&P50_COMP._H2O" h2o,
    "&P50_COMP._O2" o2,
    "&P50_COMP._O2_11" o2_11,
    "&P50_COMP._TEMP" temp
    from "#OWNER#"."CORRECTIE"
    The item P50_COMP will be filled with a default value and is a select list with submit.
    The problem is when I change the query in the above way, the query cannot be parsed and I cannot applay the changes without parsing the query.
    Also not when I use Generic Column Names (parse query at runtime only)
    Can somebody help me with this problem.

    Fred,
    You should switch to a PL/SQL Function Body Returning SQL Statement (Dynamic Query) in order to achieve this. Your Function would look like this:
    declare
      l_sql varchar2(32767);
    begin
      l_sql := 'select
    "INSTALLATIEID",
    "INSTALLATIEID" INSTALLATIEID_DISPLAY,
    "' || :P50_COMP || '._DRUK" druk,
    "' || :P50_COMP || '._H2O" h2o,
    "' || :P50_COMP || '._O2" o2,
    "' || :P50_COMP || '._O2_11" o2_11,
    "' || :P50_COMP || '._TEMP" temp
    from "#OWNER#"."CORRECTIE"';
    return l_sql;
    end;Thanks,
    - Scott -

  • Showing all rows in updatable report

    Hi everyone,
    the users of my application have requested the option of showing all records, even though the updatable report has pagination turned on. How can this be achieved at run time?
    Thanks a lot,
    Henrik

    By specifying a select list - some static LOV for the number of rows you want to show. You can enter the name of that item in your report properties - Number of Rows Item.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Add members to collection from sql updatable report.

    I have created a collection based on a query (collection_name = 'EMP_COLLECTION' query = select name, ssn, dept from emp.
    The collection is created perfectly.
    Now, I have a page with a SQL-updatable Report based off of the collection
    (select * from htmldb_collection where collection_name = 'EMP_COLLECTION'. The collection rows appear, and I am able to press an ADD button to add a row. I fill in the data using the key DEPT which a pull from a field stored on the page.
    How can I reference the other fields in the collection...#NAME#, #SSN# (as they are not items on the page).
    Please let me know if you need clarification on this question as I realize I am a bit out of my league in describing it....but could really use a tip.
    Karen

    Karen,
    I recently began working on collections, so here are a few code snippets that may help you:
    Create Collection (placed in a Before Header Page Process)
    apex_collection.create_or_truncate_collection
    (p_collection_name => 'SOME_COLLECTION');
    Initially populate a collection with default values (placed in a Before Header Page Process)
    DECLARE
    i number;
    cntr number := 5; -- Sets number of default entries in collection
    BEGIN
    for i in 1..cntr loop
    APEX_COLLECTION.ADD_MEMBER(
    p_collection_name => 'SOME_COLLECTION',
    p_c001 => 0, --Unique ID
    p_c002 => :P10_ITEM_NM, -- Item Name
    p_c003 => NULL, -- Description
    p_c004 => sysdate, -- Date of Entry
    end loop;
    END;
    each p_cXXX is a reference to a column in the collection.
    View existing collection
    SELECT SEQ_ID,
    c001 ID,
    c002 ITEM_NM,
    c003 ITEM_DESC,
    c004 ITEM_ENTRY_DATE,
    from APEX_COLLECTIONS
    where COLLECTION_NAME = 'SOME_COLLECTION'
    You can also turn this into an editable collection by going into the report and individually changing the fields to text fields, dropdowns, etc.
    To Update a collection (On Submit, After computations Page Process)
    declare
    c pls_integer := 0;
    begin
    for c1 in (
    select seq_id from apex_collections
    where collection_name = 'SOME_COLLECTION'
    order by seq_id) loop
    c := c+1;
    --Item Name
    apex_collection.update_member_attribute (p_collection_name=> 'SOME_COLLECTION',
    p_seq=> c1.seq_id,p_attr_number =>2,p_attr_value=>wwv_flow.g_f01(c));
    --Item Description
    apex_collection.update_member_attribute (p_collection_name=> 'SOME_COLLECTION',
    p_seq=> c1.seq_id,p_attr_number =>3,p_attr_value=>wwv_flow.g_f02(c));
    --Item Entry Date
    apex_collection.update_member_attribute (p_collection_name=> 'SOME_COLLECTION',
    p_seq=> c1.seq_id,p_attr_number =>4,p_attr_value=>wwv_flow.g_f03(c));
    end loop;
    end;
    In this example, the ID field is hidden to the users and populated using a sequence. The other fields are presented as text fields for Item Name and Item Description and a Date Picker for the Item Entry Date.
    The key to understanding this is that the attribute number indicated by p_attr_number references the column in the COLLECTION containing the value you want to update/overwrite. The g_fXX tells which of the updatable columns in your report provide the values for the columns. Keep in mind that the number of updateable columns in your report is likely fewer than the total number of columns, so the numbering here starts from the first updatable column and goes down. If you rearrange the order of the columns in the display, it will not alter the field in the collection you reference (the attribute), but it WILL alter the g_fXX notation you use to get the value from.
    Writing to the DB
    declare
    begin
    for c1 in (select TO_NUMBER(c001) row_id, c002 itm_nm, c003 itm_desc,
    to_date(c004,'DD/MM/YYYY') itm_dt from APEX_COLLECTIONS
    where COLLECTION_NAME = 'SOME_COLLECTION') loop
    insert into ITEMS (ITEM_ID, ITEM_NAME, ITEM_DESC, ITEM_DATE)
    values (c1.row_id, c1.itm_nm, c1.itm_desc, c1.itm_dt);
    end loop;
    end;
    Here, the trick is to reference the items using the [collection name].[attribute alias] syntax. This avoids the Oracle error "can't use a column".
    If you want to reference items not on the page and put them into the collection, I recommend pre-populating them, since the user isn't going to be able to alter something they can't see anyway. I have used this successfully with both page items and application items.
    Cheers.

  • SCCM Software Update Reporting - Understanding the Report

    I could use some help in understanding what makes a computer compliant and what makes a computer non-compliant in regards to SCCM’s Software Update reporting.
    When I look at a report for a compliant computer and a non-compliant computer, I do not see the pattern which would cause a computer to be compliant or non-compliant.
    Example for two computers:
    For each report, every item with a check mark in the Approved column also has a check mark in the Installed column. 
    For each report, if there is a check mark in the Is Required column, there are no check marks in the other two columns for that row.
    Yet one computer shows as compliant while the other shows as non-compliant.
    So in regards to the three columns in a Software Update report, what should be checked or un-checked to indicate whether a computer is compliant or not? 
    doyle

    Okay,
    When you run a Compliance 1 report, the resulting report lists three rows:
    One row for “Non-compliant”
    The second row for “Compliance state unknown”
    The third for “Compliant”
    Drilling down into each row displays the computers that fall under the three categories above. 
    Drilling down further on specific computers within each category shows each update on its own row with three columns, “Approved”, “Installed” and “Is
    Required”.
    I have been assuming that a computer lacking approved updates would fall under the “Non-compliant” report while a computer with all approved updates installed would
    fall under the “Compliant” report. (correct?)
    With this assumption, I have comparing compliant vs non-compliant computer reports by looking at the “Approved”, “Installed”, and “Is Required”
    column of each.  But I am not seeing the pattern that would designate one computer has compliant and another non-compliant.
    So it is the report (not me) that is telling what is compliant and what is not compliant.
    Am I understanding this incorrectly and if so, please fill me in (details would be great)?
    db

  • Only 2 choices for popup lov in an updatable report ?????

    Help please !!!!!!!
    Another question regarding an popup lov item in an updatable report
    The is only 2 choices for popup lov :
    popup lov(named lov)
    popup lov(query based lov)
    and if I want to display a descrition and return a key ?????
    Thnaks for help!

    jina--
    please try to not bump your posts up after only a few hours. i'm sure you understand that, but i thought i'd say it just in case. about your issue, you can create your own tabular form and use htmldb_item.popupkey_from_query or htmldb_item.popupkey_from_lov to achieve your desired effect. there's a great howto doc on manually creating tabular forms at..
    http://www.oracle.com/technology/products/database/htmldb/howtos/tabular_form.html
    and know that i've logged your request to have this feature available declaratively.
    hope this helps,
    raj

  • Self Updating Report of Open Sales Orders (Maybe Crystal )

    I want a self updating report of Open Sales Order. I want it to refresh constantly. I know that it could be an alarm but it would be executed every # minutes and dont want to. Any ideas ? I dont know Crystal Reports enough but is it posible ?

    Hi ,
    If I were you , I will not be crazy looking at my sales order in every 1 minutes ..I would train my users to check at least 15 minutes.
    I understand what u are trying to do;you  want that customer will see the latest open SO created ..but 15 minutes is good enough time .
    I think you have to check if database size grows up big time ..so far no report has come to me from my clients for this set up .
    make sure you  are not saving an alert into database
    If you are using multiple alerts , I will atleast monitor my database for a while to see i encounter performance issue ..
    So far for one alert at every 15 minutes ..i think u should be fine ..
    Hope this helps
    Bishal

  • The workflow could not update the item, possibly because one or more columns for the item require a different type of information. Outcome: Unknown Error

    Received this error (The workflow could not update the item, possibly because one or more columns for the item require a different type of information.) recently on a workflow that was
    working fine and no changes were made to the workflow.
    I have tried a few suggestions, i.e. adding a pause before any ‘Update’ action (which didn’t help because the workflow past this action without incident); checked the data type being written
    to the fields (the correct data types are being written); and we even checked the list schema to ensure the list names and the internal names are aligned (they
    are), but we still cannot figure out why the workflow is still throwing this error.
    We located the area within the workflow step where it is failing and we inserted a logging action to determine if the workflow would execute the logging action but it did not, but wrote the same error message.
    The workflow is a Reusable Approval workflow designed in SharePoint Designer 2010 and attached to a content type. 
    The form associated with the list was modified in InfoPath 2010. 
    Approvers would provide their approval in the InfoPath form which is then read by the workflow.
    Side note - items created after the workflow throws this Unknown Error some seem to be working fine. 
    We have deleted the item in question and re-added it with no effect. 
    Based on what we were able to determine there don’t seem to be any consistency with how this issue is behaving.
    Any suggestions on how to further investigate this issue in order to find the root cause would be greatly appreciated?
    Cheers

    Hi,
    I understand that the reusable workflow doesn’t work properly now. Have you tried to remove the Update list item action to see whether the workflow can run without issue?
    If the workflow runs perfectly when the Update list item action is removed, then you need to check whether there are errors in the update action. Check whether the values have been changed.
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • How to refer report items?

    Hi,
    How to refer the report items?
    I have standard sql report region contains 3 columns.
    doc_id,doc_name and No_units.all three items are apex item.
    below is my sql query for report.
    APEX_ITEM.SELECT_LIST_FROM_QUERY(17,doc_id,'select s_id from         
    sales')"doc id",
    apex_item.text(18, doc_name) "doc name",
    apex_item.text(19,  No_units) " No units",null
    from sale_docMy intention is to fire a dynamic action when event change in doc_id. So in when tab what i have to assign in item(s) fields for doc_id. i gave *#doc_id#* in items(s) field it doesnt work.
    how to resolve this?

    any help?

Maybe you are looking for

  • How To Send Multiple Spool Lists  from a Single Step in SM37

    We have converted all of our output reports to ALV and now instead of one big spool that contains all the reports generated in a single step we now have multiple spools.  We run the program as a Batch Job in SM37 and have created an entry in the SPOO

  • CS2 and Windows 7 x64 Pro -- some PS1 fonts don't appear in Photoshop.

    Since purchasing a new computer running Windows 7 x64 Pro, several of my fonts no longer appear in Photoshop CS2. They were functioning perfectly on my previous system running XP. The particular fonts that do not appear are Type 1 fonts, but other Ty

  • Can I work while playing a DVD on an iMac?

    Can I use Pages, Safari, etc. on my iMac while playing a DVD on the iMac (small viewing window of course?)  Does doing so slow down the DVD player or vice versa? I'm using 10.10.1 (Yosemite) if that makes a difference.

  • Missing Mouse with new MP

    Has anyone else received there MP with a keyboard and no mouse? Not that I am a fan of the mini mouse but shouldn't it be in the top packaging or under the keyboard? Guess it's time to call apple care. Other wise the system is amazingly quite and fas

  • BPC 7.0 error connect to SAP Component

    Dear All, I just finished installing SAP BPC 7.0 NetWeaver and there is a problem when running on the server manager Diagnostic. There was an error SAP Component. Is there that can give clues or guide? Thank You, Yusak