Internal table field does not show data.

hello experts,
I am currently modifying a code in a report where it shows PO's and it amount, downpayment, Invoice, GR, payment and balance. Now the problem is, some of the PO amount(it gets the amount from ekpo-netwr) does not show on the report output. the field is t_amount-netwr. I really need help on this one guys. Thanks and take care!
PERFORM process_with_budat.
FORM process_with_budat.
  DELETE t_pohistory WHERE hist_type <> 'A'
                       AND hist_type <> 'E'
                       AND hist_type <> 'Q'.
  LOOP AT t_account.
    DELETE it_dtl WHERE ebeln = t_account-ebeln
                    AND psphi IS initial.
    DELETE t_ekpo WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
    t_proj-ebelp = t_account-po_item.
    SELECT SINGLE psphi FROM prps INTO t_proj-psphi
          WHERE posid = t_account-wbs_elem_e.
    CHECK sy-subrc = 0.
    LOOP AT t_pohistory WHERE po_item = t_account-po_item
                          AND ebeln   = t_account-ebeln.
      t_amount-ebeln = t_account-ebeln.
      t_amount-psphi = t_proj-psphi.
      ON CHANGE OF t_pohistory-po_item.
        CLEAR v_netwr.
        SELECT SINGLE netwr FROM ekpo INTO v_netwr
              WHERE ebeln = t_account-ebeln
                AND ebelp = t_account-po_item.
        t_amount-netwr = v_netwr.
      ENDON.
      IF v_ebeln IS INITIAL AND v_ebelp IS INITIAL.
        CLEAR v_netwr.
        SELECT SINGLE netwr FROM ekpo INTO v_netwr
              WHERE ebeln = t_account-ebeln
                AND ebelp = t_account-po_item.
        t_amount-netwr = v_netwr.
        v_ebeln = t_account-ebeln.
        v_ebelp = t_account-po_item.
      ELSEIF v_ebeln <> t_account-ebeln AND
             v_ebelp <> t_account-po_item.
        CLEAR v_netwr.
        SELECT SINGLE netwr FROM ekpo INTO v_netwr
              WHERE ebeln = t_account-ebeln
                AND ebelp = t_account-po_item.
        t_amount-netwr = v_netwr.
        v_ebeln = t_account-ebeln.
        v_ebelp = t_account-po_item.
      ELSEIF v_ebeln = t_account-ebeln AND
             v_ebelp <> t_account-po_item.
        CLEAR v_netwr.
        SELECT SINGLE netwr FROM ekpo INTO v_netwr
              WHERE ebeln = t_account-ebeln
                AND ebelp = t_account-po_item.
        t_amount-netwr = v_netwr.
        v_ebeln = t_account-ebeln.
        v_ebelp = t_account-po_item.
      ENDIF.
      CHECK NOT t_amount-psphi IS INITIAL.
      if t_pohistory-pstng_date LE pa_augdt.
     IF t_pohistory-pstng_date IN so_augdt.
        IF t_pohistory-db_cr_ind = 'H'.
          t_pohistory-val_loccur = - t_pohistory-val_loccur.
          t_pohistory-val_forcur = - t_pohistory-val_forcur.
          t_pohistory-cl_val_loc = - t_pohistory-cl_val_loc.
        ENDIF.
        IF t_pohistory-hist_type = 'A'.
          IF t_pohistory-currency <> 'PHP'.
            t_amount-dpamt = t_amount-dpamt + t_pohistory-val_forcur.
          ELSE.
            t_amount-dpamt = t_amount-dpamt + t_pohistory-val_loccur.
          ENDIF.
        ELSEIF t_pohistory-hist_type = 'E'.
          IF t_pohistory-currency <> 'PHP'.
            t_amount-gramt = t_amount-gramt + t_pohistory-val_forcur.
          ELSE.
    t_amount-gramt = t_amount-gramt + t_pohistory-val_loccur.
          ENDIF.
        ELSEIF t_pohistory-hist_type = 'Q'.
          IF t_pohistory-currency <> 'PHP'.
       t_amount-iramt = t_amount-iramt + t_pohistory-val_forcur.
          ELSE.
            t_amount-iramt = t_amount-iramt + t_pohistory-val_loccur.
          ENDIF.
        ENDIF.
        IF t_pohistory-currency <> 'PHP'.
          IF t_pohistory-val_loccur = 0 OR
             t_pohistory-val_forcur = 0.
            t_amount-tramt = t_amount-iramt.
           t_amount-tramt = t_amount-dpamt.
          ELSE.
            t_amount-tramt = t_amount-iramt.
          ENDIF.
        ELSE.
          t_amount-tramt = t_amount-iramt.
         t_amount-tramt = t_pohistory-cl_val_loc + t_amount-dpamt.
        ENDIF.
        IF NOT t_pohistory-cl_val_loc IS INITIAL.
          CONCATENATE t_pohistory-mat_doc t_pohistory-doc_year
                INTO bkpf-awkey.
         SELECT SINGLE * FROM bkpf
               WHERE awkey = bkpf-awkey.
*AVH - removed wrbtr and dmbtr from selection
          SELECT augdt augbl shkzg FROM bsak
                INTO (bsak-augdt,bsak-augbl,bsak-shkzg)
                WHERE bukrs = bkpf-bukrs
                  AND gjahr = bkpf-gjahr
                  AND belnr = bkpf-belnr.
*AVH
            if not bsak-augbl is initial.
              select belnr gjahr from bsak
               into (bsak-belnr, bsak-gjahr)
                where bukrs = bkpf-bukrs
                 and belnr = bkpf-belnr
                 and gjahr = bkpf-gjahr.
                select awkey from bkpf
                 into v_bkpf_aw
                 where bukrs = 'GLOB'
                   and belnr = bsak-belnr
                   and gjahr = bsak-gjahr.
                  w_len = strlen( v_bkpf_aw ).
                  w_off = w_len - 4.
                  v_awkey_1 = v_bkpf_aw+0(10).
                  v_awkey_2 = v_bkpf_aw+w_off(4).
                  select single dmbtr wrbtr from ekbe
                    into (ekbe-dmbtr, ekbe-wrbtr)
                   where belnr = v_awkey_1
                     and gjahr = v_awkey_2.
*AVH - Changed all bsak-wrbtr to ekbe-wrbtr and dmbtr to ekbe-dmbtr.
                  IF bsak-shkzg = 'H'.
                    ekbe-dmbtr = - ekbe-dmbtr.
                    ekbe-wrbtr = - ekbe-wrbtr.
                  ENDIF.
                  IF t_pohistory-currency <> 'PHP'.
                    IF bsak-augdt GT pa_augdt.
             IF bsak-augdt IN so_augdt.
                      t_amount-tramt = t_amount-tramt + ekbe-wrbtr.
                    ENDIF.
                  ELSE.
                    IF bsak-augdt GT pa_augdt.
             IF bsak-augdt IN so_augdt.
                      t_amount-tramt = t_amount-tramt + ekbe-dmbtr.
                    ENDIF.
                  ENDIF.
                endselect.
               endselect.
              endselect.
            endif.
          ENDSELECT.
        ENDIF.
        IF t_account-distr_perc <> 0.
          t_amount-dpamt = ( t_account-distr_perc *
                             t_amount-dpamt ) / 100.
          t_amount-gramt = ( t_account-distr_perc *
                             t_amount-gramt ) / 100.
          t_amount-iramt = ( t_account-distr_perc *
                             t_amount-iramt ) / 100.
          t_amount-tramt = ( t_account-distr_perc *
                             t_amount-tramt ) / 100.
        ENDIF.
      ENDIF.
      IF t_amount-tramt < 0.
        t_amount-tramt = 0.
      ENDIF.
      t_amount-tramt = t_amount-iramt.
      t_amount-blamt = t_amount-netwr - t_amount-tramt.
      COLLECT t_amount. CLEAR t_amount.
      APPEND t_proj.
    ENDLOOP.
    IF sy-subrc <> 0.
      CLEAR v_netwr.
      SELECT SINGLE netwr FROM ekpo INTO v_netwr
            WHERE ebeln = t_account-ebeln
              AND ebelp = t_account-po_item.
      t_amount-ebeln = t_account-ebeln.
      t_amount-psphi = t_proj-psphi.
      t_amount-tramt = t_amount-iramt.
      t_amount-blamt = t_amount-netwr - t_amount-tramt.
      COLLECT t_amount. CLEAR t_amount.
      APPEND t_proj.
    ENDIF.
  ENDLOOP.
endform.
**This is where it transfers the data**
LOOP AT t_amount.
    it_dtl-netwr = t_amount-netwr.
    it_dtl-dpamt = t_amount-dpamt.
    it_dtl-gramt = t_amount-gramt.
    it_dtl-iramt = t_amount-iramt.
    it_dtl-tramt = t_amount-tramt.
    it_dtl-blamt = t_amount-blamt.
    MODIFY it_dtl TRANSPORTING netwr dpamt gramt
                               iramt tramt blamt
          WHERE ebeln = t_amount-ebeln
            AND psphi = t_amount-psphi.
    CLEAR it_dtl.
  ENDLOOP.

hi ,
just place the code and check for a particular po if its there inthe ekpo table then it has to get it for ur select single query .
but ur logic is build on if --- endif.check this option first of all.
if in the debugging u see the value then as u say in the report output u r not able to see the value then the problem will be space alignment also.
check the value in debugging and let us know first of all . okay
vijay.
IF v_ebeln IS INITIAL AND v_ebelp IS INITIAL.
CLEAR v_netwr.
SELECT SINGLE netwr FROM ekpo INTO v_netwr
WHERE ebeln = t_account-ebeln
AND ebelp = t_account-po_item.
break-point.
t_amount-netwr = v_netwr.
v_ebeln = t_account-ebeln.
v_ebelp = t_account-po_item.
ELSEIF v_ebeln <> t_account-ebeln AND
v_ebelp <> t_account-po_item.
CLEAR v_netwr.
SELECT SINGLE netwr FROM ekpo INTO v_netwr
WHERE ebeln = t_account-ebeln
AND ebelp = t_account-po_item.
break-point.
t_amount-netwr = v_netwr.
v_ebeln = t_account-ebeln.
v_ebelp = t_account-po_item.
ELSEIF v_ebeln = t_account-ebeln AND
v_ebelp <> t_account-po_item.
CLEAR v_netwr.
SELECT SINGLE netwr FROM ekpo INTO v_netwr
WHERE ebeln = t_account-ebeln
AND ebelp = t_account-po_item.
break-point.
t_amount-netwr = v_netwr.

Similar Messages

  • Newly added field does not show in table genarator.

    Hi,
         I have added one more field to my custom table.
    When I make new entries in table maintanance, the new field does not show up.
    Thank U for Ur time.
    Cheers,
    Sam

    hai sam raj,
    first activate your database table .
    if any error occurs better you go to
    se14(database utility) -
    >give table name in object and select the table check box and click the edit push button.
    and then click activate and adjust pushbutton.
    surely you ll get some idea.
    reward points if those idea helps.
    thanks,
    velu.

  • CFGRID does not show data (CF9.0)

    Under development server, CFGRID show data , all is fine , correct. (CF9.0  version dev)
    Under production server , CFGRID does not show data, only a grey line (like a HR).
    How to debug this ?
    Thanks,

    Kindly check below to troubleshoot this issue:-
    Is there any difference between your CF production & developement server setting summary?
    Is there any browser script level difference between your both CF server?
    Are you getting any relevant logging error in your CF server application.log & exception.log?
    Run a very simple cfgrid running app to check, either getting issue with that too or not.

  • PMI Problem (End-to-End Monitor does not show data)

    (End-to-End Monitor does not show data)
    As I know that XML Messages Alerts T-code: SXMB_NOMI shows all alerts including errors as well I put date Range: 01-01-2008 to 01-08-2008 and filters for "Errors" system does show more then 300 errors
    But problem in RWB - End-to-End Monitoring, when I click on display and date range 01-01-2008 to 01-08-2008 its give me graphical overview in right of window
    and shows summary:
    Errors:                     0  Average
    Open                  904  Maximum
    Successfully Completed         0  Minimum
    Overall:                  904
    I thing End-to-End Monitor doesn't get data from PMI...
    why does't show any errors, which is shows in SXMB_MONI
    Please tell me how to resolve that problem
    Thanks in Advanced
    Edited by: issue2008 issue on Aug 26, 2008 12:02 PM

    Hi,
    A destination pointing to the Integration Server is created on the J2EE engine to collect the data for the end-to-end monitoring. If this destination is incorrect or if there are several clients in the system of the integration server, the data may be sent to the incorrect client.
    This might be a reason so you can  implement the correction of the destination in a manual way as follows:
    Open the J2EE visual administrator.
    Select the Destination service.
    Select the HTTP "pmistore" destination.
    Enter the URL for the ICF service spi_gate of the Integration Server in the following form "http://<host>:<port>/sap/bc/spi_gate?sap-client=<xxx>", where 'host' denotes the host of the integration server, 'port' denotes the HTTP port, and xxx is the client of the Integration Server.
    Thanks,
    Hemant

  • Added fields does not show up in the RSA6

    Hello.
    Problem 1:
    I am enhancing 0bbp_td_sc_1. I added a field to the structure, but it does not show up in the rsa6. ( I double clicked on the extractor name).  If I go to the extractor structure (BBP_SC_BW_GET_TD_STRUC), I am able to see the append. The structure is activated. The append structure is also activated (Zabbp_sc_bw_get_td_struc).
    What can be wrong? I did not see the added the field in the ROOSFIELD table either.
    Problem 2:  What is the difference If I populated the field value from “RSU5_SAP_BADI” to the rsap001 user exit “EXIT_SAPLRSAP_001”?
    I am not able to run debug RSU5_SAP_BADI. STOP does not stop. While I debug, I am able to see the field ( The field I added from problem 1). But the value never populated.
    I am able to run the debug for EXIT_SAPLRSAP_001. I see the data populated for the field. But in RSA3 result, I am not able to see it.
    Thanks in advance.

    Hi
    1. this is usualy the case if the append struct is not active or you did not add the new fields in the append struct.
    I would suggest to remove the fields save activate and re do the process making sure you either use an existing append struct or create a new one.
    2. BADI are different then UE in the way they are implemented.  I will recommend using UE.
    You will not see the enhanced fields in the out put of RSA3 so I stop on the last line and check the values in the struct.
    to debug I would either go to the UE (in a different session) and put a break point there and run RSA3 or check the debug in RSA3 and then find the SAPEXIT that calls the UE.
    I hope this helps.
    Reg's
    Edan

  • PLD Report does not show data from Query

    Hello,
    SAP b1 9.0 PL08 on MSSQL 2008 and I get data on the query, but when the PLD prints, it shows nothing. Is there a way to filter the data that the PLD shows? Does PLD have its own SQL script it uses b/c its not showing data from the query.
    Thanks,
    Nick

    Hi Nicholas,
    Please check below links.
    query based print layout design
    Print Layout Designer \Custom Reports
    How to Make a Print Layout (PLD) Report from a SBO Query | SBOnotes.com
    http://www.tegrous.com/wp-content/uploads/2011/07/HowTo_QPrintLs_88.pdf
    Hope this help
    Regards::::
    Atul Chakraborty

  • Report does not show data , but data exists in the cube.

    Hi All,
    I have a situation where I could not show the data in the report. When I load data from an extractor 0CO_OM_WBS_1 into a Cube directly I am able to show the data in my report. When I load the same extractor to a DSO and from the DSO when I load it into the Cube, the data does not show up in the query. To check the data I use the same restriction and could see the data reside in the cube (LISTCUBE). I compressed the requests, still it is not showing up in the query. No aggregates create on the cube.
    It shows the data if I load directly from the extractor, but not when I load data thru DSO.
    Any ideas.
    Alex(Arthur Samson)

    Hi Alex,
    I am facing same problem, i have data in cube but in report i cant see....
    i have created a generic DS, i loaded the data to DSO  then CUBE.
    data is loaded succesfully and i can see data in CUBE ( Manage ), when i am running the repory i am not getting data.
    i think you solve this issue... plz help me to resolve this issue.
    Regards,
    SHAIK.

  • Page does not show data

    Hi all,
    I would appreciate any help for the following problem that I am facing.
    I have created master-detail pages sharing the same AM.
    The details page shows details of the request from 3 different VOs.
    The VOs are entity-based and I modify the VOs using the setwhereclause for my purpose.
    The master page runs fine and shows the searched request but when I goto the details page, it renders correctly but does not show any data.
    Thanks in advance.

    Hi,
    Thanks for the reply.
    The view instance and view attribute to the details page columns are already set.
    To add to the information,the AM is also used by othe pages for logic calcuation.
    After executing these pages for one of the request, when I use ther master detail page for ther same request, it works.
    But for the other requests, the details page does not return any data.
    I suppose this is linked with EO not getting updated/refreshed with the new search request in the master details page.
    If this is supposedly the reason,then how can I refresh the EO for each master detail search?
    Has anybody encountered this issue before?
    --Riyaz
    Edited by: mriyaz on Mar 7, 2009 12:29 PM

  • Application Insights Online does not show data. How to find out where the problem is?

    Hi, 
    I have application insight set up, sometimes I see data online, but sometimes I don't. I am wondering how to: 
    1. Make sure the monitor is running for my application?
    2. see there is data has been sent to cloud server? I tried to run DebugView but it does not show up anything. Is there a log flag that can be turned on so I can log everything to a log file while it is being sent to server?
    Thanks.

    Hello ChadKaKit,
    You can try Fiddler2 to see whether something gets out of the box to dc.services.visualstudio.com.
    Make sure to either run application under the same account as a Fiddler or set a .NET proxy settings in web.config (app.Config for executables) to redirect to Fiddler.
    Also, you can take a look at the AI traces with PerfView:
    Perfview.exe /onlyProviders=*Microsoft-ApplicationInsights-Extensibility-Web,*Microsoft-ApplicationInsights-Core,*Microsoft-ApplicationInsights-Extensibility-RuntimeTelemetry,*Microsoft-ApplicationInsights-Extensibility-Rtia-SharedCore collect

  • Add table list does not show database view in Configuration Manager

    Hi,
    I am trying to add a database view in the table tab of the configuration manager. The view does not show up in the list of available tables in WCM 11.1.1.6 version. This is possible in the 11.1.1.4 version. Anyone else facing this issue?
    Thanks
    Soumya

    I think what is being asked is "How do I expose a database view as a schema table in Configuration Manager?"
    This is accomplished by creating a database view within the WCC database schema (and with the WCC schema user as the view owner). The view then will appear as a table in the "table" tab in Configuration Manager.
    One caveat in 11g is that the user created by RCU does not have any privileges to read/create views in its own schema. You may need to grant privileges to views for the WCC schema user before this will work.

  • Reports does not show data which contains HTML tags

    Dear Gurus
    Im trying to resolve this problem but im really stuck in it. I have the requirment to customize PO reports in R12 and at the end of every report we have to show its Terms and Conditions.I have the following query wich brings me the data i need.
    SELECT
    otu.document_number po_segment1,
    otu.document_id,
    otta.template_id,
    otta.template_name,
    otta.description,
    otta.intent,
    otta.status_code,
    otta.start_date,
    otta.end_date,
    otta.instruction_text,
    otu.document_type,
    otu.document_number po_segment1,
    otu.document_id po_header_id,
    osb.HEADING titulo_seccion,
    oav.display_name,
    oav.article_text article_text
    FROM
    apps.okc_terms_templates_all otta,
    apps.okc_template_usages otu,
    apps.okc_k_articles_b okab,
    apps.okc_sections_b osb,
    apps.okc_articles_all oaa,
    apps.okc_article_versions oav
    WHERE otta.template_id = otu.template_id
    AND otu.document_id = okab.document_id
    AND osb.scn_id(+) = okab.scn_id
    AND okab.article_version_id = oav.article_version_id
    AND oaa.article_id = oav.article_id
    AND otu.document_number='21000000111' -- Purchase Document
    AND otu.DOCUMENT_TYPE NOT IN ('RFQ_RESPONSE', 'RFQ','RFI_RESPONSE','RFI','AUCTION_RESPONSE','AUCTION')
    The problem is the field okc_article_versions.article_text storage data with HTML tags as an example : ''<P>COMPANY will make it’s best effort to provide an accurate forecast to CONTRACTOR, <B><I>at the end of every quarter,</I></B> however, a forecast in any form, shall not represent a firm commitment by COMPANY.,</P>"
    So when i tried to show the information my .rtf template nothing comes out. Does anybody knows whats happenig and how to resolve it??
    Please, resolve this issue is more than urgent an i guess somebody have the answe Thanks a lot
    Mily

    Hi ,
    Currently image url have value http://serverip:port/reports/rwservlet
    I don't know is this correct? Suggest What value it should have?
    Thanks
    Vinod

  • A table field is not showing.

    <b>PLS HELP. I am a newbie.</b> I have 3 tables. The WA-PRODUCT field is not appearing. I am suppose to get "POLO" output but the result is blank. Please see the image below:
    <a href="http://i150.photobucket.com/albums/s116/painkiller2007/23drt56g543g67hr/sap_table001.jpg">see image</a>
    Please help. <b>Thanks.</b>
    data: begin of WA,
            CUSTID     like ZCUSTPROFILE-CUSTID,
            CUSTFNAME  like ZCUSTPROFILE-CUSTFNAME,
            PRODUCTID  like ZORDER-PRODUCTID,
            PRODUCT    like ZPRODUCT-PRODNAME,
          end of WA.
    data: ITAB like table of WA.
    select  ZC~CUSTID
            ZC~CUSTFNAME
            ZO~PRODUCTID
            ZP~PRODNAME
            from (  ( ZCUSTPROFILE as ZC
                      inner join ZORDER as ZO on ZO~CUSTID = ZC~CUSTID
                    inner join ZPRODUCT as ZP on ZO~PRODUCTID = ZP~PRODUCTID
          into corresponding fields of table ITAB
          where ZC~CUSTID = 3.
    loop at ITAB into WA.
      write: / WA-CUSTID, WA-CUSTFNAME, WA-PRODUCTID, WA-PRODUCT.
    endloop.

    data: begin of WA,
            CUSTID     like ZCUSTPROFILE-CUSTID,
            CUSTFNAME  like ZCUSTPROFILE-CUSTFNAME,
            PRODUCTID  like ZORDER-PRODUCTID,
            PRODUCT    like ZPRODUCT-PRODNAME,
          end of WA.
    data: ITAB like table of WA.
    select  ZC~CUSTID
              ZC~CUSTFNAME
              ZO~PRODUCTID
              ZP~PRODNAME
            from  ZCUSTPROFILE as ZC
            join   ZORDER as ZO
               on ZOCUSTID = ZCCUSTID
            join  ZPRODUCT as ZP
               on ZOPRODUCTID = ZPPRODUCTID
          into corresponding fields of table ITAB        <b>" < when u mentioned in the same order not need of corresponding .. this might be a peformance issue later</b>
          where ZC~CUSTID = 3.
    loop at ITAB into WA.
      write: / WA-CUSTID, WA-CUSTFNAME, WA-PRODUCTID, WA-PRODUCT.
    endloop.
    check the data in the table.. do a manual verification first..

  • View does not show data

    Hello All,
    I develop an iview which is subscribing to the employee search iview event.  so whenever manager clicks on an employee...i get some employee information from my bapi and display to the manager...the problem i am facing is that...i can not seem to get the data to display....
    i did some debugging and found that bapi is returning all the required data...and also employee pernr is getting pass to bapi as well...so all is good there...
    also i have this bapi call in the same action where i get the pernr from my dataObject parameter...which is filled by the event...when the manager clicks on an employee....
    i thought that i might have mapping issue....so i moved the same code for calling bapi to my wddoinit method of my component controller...and assign a static pernr....it seems that mapping is correct...since i was able to see the data in my view...
    i can not seem to figure out...why when i call bapi from my action...no data is visible....but when i call bapi (using the same code )from wddoinit method...my data is visible....
    any input on this...
    Thanks...
    J.

    Hi..
    At first you have to check table cardinality set to 0.n or any other else..cardinality set..0.n.then create
    nade instance which is mappint to ur table.after that ..you have to check back end node which is having data from backe end..if data is available then make it loop upto back end table size.then
    table instance.getnodeattributElementAt(i).getAny data.
    then add element into table node.
    wdcontext.nodetable.addelement(element).
    then iot will work fine.

  • CSCus46899 - Bridge Utilization page does not show data

    Found out to be working with google chrome....

    Hi,
    Thanks for the reply.
    The view instance and view attribute to the details page columns are already set.
    To add to the information,the AM is also used by othe pages for logic calcuation.
    After executing these pages for one of the request, when I use ther master detail page for ther same request, it works.
    But for the other requests, the details page does not return any data.
    I suppose this is linked with EO not getting updated/refreshed with the new search request in the master details page.
    If this is supposedly the reason,then how can I refresh the EO for each master detail search?
    Has anybody encountered this issue before?
    --Riyaz
    Edited by: mriyaz on Mar 7, 2009 12:29 PM

  • Meeting Room reservation does not show data in the calendar view in SharePoint 2013

    Hi,
    I have created one calendar list using the following link.
    http://www.codeproject.com/Articles/588685/ReservationplusofplusresourcesplusinplusSharePoint
    Here it giving two content type -Reservation and another is scedule & reservation.
    In reservation content type attendees filed is not added.So if i am not adding the attendees,the item is not showing in the calendar view,but the item is showing in all events view.
    And if i am using another content type,its asking for attendees and i have added my name.
    So the problem is that it shows the item where the attendees is me.
    So how can i make it public that all the user can see the bookings.
    Please help
    Thank you

    Check this pls
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/7edbfab2-885b-43b8-8cf4-90323df9b0a5/new-meetings-are-not-showing-up-in-room-mailbox-calendars?forum=exchangesvrgenerallegacy
    Please remember to click 'Mark as Answer' on the answer if it helps you

Maybe you are looking for

  • Print Too Small from Photoshop CS4 with HP 8500 All In One Printer

    I'm running Windows XP with CS4 and latest patches and drivers.  When I print an image to my HP 8500 All in one printer, the printout is too small.  Instead of a centered 4 x 6 image on the page I get a 1 x 1-1/4 inch small print of the image in the

  • When I send an e-mail to my rogers account in the mac mail programme the computer dings like I have received the e-mail but it never shows up ever

    All of a sudden I stopped getting e-mails from my rogers account set up in the Mail programme. All settings have been checked and confirmed okay. When I send myself an e-mail my computer gives the alert that I have received an e-mail but the e-mail d

  • Whats the Advantages of OEM Grid control

    Hi All, I would like to know what the term "Grid control" means and whats the advantages of OEM10g Grid Control over OEM 9i.... If anyone has good docuements,Please share the source.It will be highly appriciated. Thanks in Advance.. Anand

  • Cs4 Cs5.5 Mpeg2 problems?

    Recently upgraded the machines from CS4 to CS5.5 and the render results of the MPEG2s we produce have dropped considerably. There is a lot of degradation around type and it especially shows on blocks of static pieces of  solid colour. Anyone know why

  • E72 Crashing/Hanging often

    Hello, I purchased my Nokia E72 around 4-6 months ago and I love it as a phone. It does everything I need it to. The problem I have is that it doesnt receive incoming calls 100% of the time or let me do outgoing 100% of the time. It randomly hangs or