Regarding identification of calyear/ quarter with zquarter

Hello Guru's,
I have query on Multiprovider which reports according to the given calyear/quarter. I had to add a infoset to existing multiprovider, so that i can include a new selection in the same report. My problem is there is no calyear/quarter in the infoset. While identification can i select Zquarter under cal year/quarter. By doing this when ever use calyear/quarter in my report for the newfield, do i get union calyear quarter and Zquarter, or there will be error in the report since both are not cal year/quartet

Are you adding Zquarter to an infoprovider in the infoset ?
Is there any reason y you cant add calyear/quarter into one of the infoproviders in your infoset.  and map it to the date you want calyear/quarter on.  You can use one of the standard formula to calculate it.

Similar Messages

  • I have a problem regarding sales order line item with confimed quanity

    Hi Experts,
    I have a problem regarding sales order line item with confimed quanity with '0'  with delivery block but confirming the sales order quantity once the order is released from credit check.
    The situation arises as per the below scenarios.
    Scenario - 1 -  When the sales order has two line item - one line item with confirmed qunaity in the schedule line and for the 2nd line item there is no available stock for the Material xxxxxx.
    Initially the sales order is created for the line item 2 with confirmed quantity = 0, and having the delivery block = 01 for the Material xxxxxx  and the order is set with credit check.  Once the order is relased from the credit check.  The quanity for the item 2 where the confirmed quantity will be = 0 ( Where it is not changing the confirmed quantity)
    Scenario -2-  Updating the order qunaity for the line item 2 as (9Pcs) it will goes to credit check and save the order.
    Maintain the stock for the line item 2 ( 5 Pcs).
    Once the order is released from the credit check.  Then  for the line item 2 the confirm quanity will be seting to 5 Pcs with Delivery blcok 01.
    This should not happen, When the credit check is released even though if it has stock based on the delivery blockl it should set the confirmed quanity to Zero.
    Can you please help me how to solve this issue.
    Looking forward for your reply.
    Thanks and Regards,

    Hi,
    I agree with your point.  In the sales order When the complete delivery check box is enabled where the confimed qty is set to zero, it is fine but when we save the orderr it goes to credit check.  Once we release the order using VKM3 where in the sales order the confimed quantity is setting to 5,  But it should set to Zero quantity.  Quatity should not be get confirmed it should be Zero Quantity. 
    Further in SPRO - customizing in the deliveries blocking reasons - It has a tick mark in the confirmation blcok.  But we dont want to remove the - Confirmation Block tick mark
    Please any one can help me if you have any solution to solve this problem.
    Thanks and Regards.

  • Any help regarding iphone 4 and locks with o2

    any help regarding iphone 4 and locks with o2
    i just got my second hand iphone4
    and a friend of a friend said it was factory unlocked
    and received txt from o2 saying it was unlocked
    however when i got home i put my micro sim into it
    and
    itunes said
    "this sim card appears to be unsupported" or something similer
    it is factory unlocked because the model number in the settings is
    MC603B
    i rang o2 to ask for unlock. gave them the imei code and they said they have to send the request off to apple for a code

    i rang o2 to ask for unlock. gave them the imei code and they said they have to send the request off to apple for a code
    Obviously the iPhone was/is not unlocked or this would not be required, and there is your answer, which can take up to two weeks.

  • Query regarding identification of Customizations done in Oracle Apps

    Hi,
    I am from an IT personnel from a banking industry.
    Here we are using Oracle Apps (CU1) that too on Oracle 9i. In order to go ahead with
    migration of Oracle to 10g we need to migrate the application from CU1 to CU2.
    But before we go with this migration, at first place we need to identify what all
    customizations have been done in CU1. The application is operational in our bank since 7-8
    years, somewhere we have lost the tracking sheet of the customizations done earlier.
    Please help out if there is anyway (tools, script, etc) to find what all customizations
    have been done in the product.
    Thanks & Regards,
    Abhinov Asthana
    Mumbai

    Sorry - incorrect answer :-)
    CUSTOM.pll does not capture ALL of the customizations/extensions that may be present.
    As stated before, currently there is no tool or query that will give you this info - it can only be captured thru good documentation practices.
    Srini

  • Regarding scrap of Raw material with excise

    Dear All,
    I have few materials in my storage location which i paid excise duty. Now i want to scrap those material and later i will sell those scrap material. So how to handle in the system for those material with excise.
    Regards
    PR

    You can use J1IH to write of material which you had scrapped.

  • Regarding the count(*) while using with table alias

    Hi,
    I have question in Count(*). Will it work with table allias.
    It works when I use like below
    "select count(*) po_header_id from po_headers_all" -- its working perfectly
    but , when i queried like below its not working,
    "select count(*) poh.po_header_id from po_headers_all poh"
    I like you guys to clarify my query.
    Thanks in advance.
    Regards,
    Uvaraja

    the words you write just after a column or an expression or a function will become an ALIAS and aliases don't have any table or scheme.
    select count(*) RRRR from mytable;RRRR is an alias in this example. maybe you have a column called RRRR in the table but this is not it. so you can not put your table name as prefix to it. mytable.RRRR will indicate the column not alias. if it doesn't include a dot, it could be used as alias but dot is violating naming rules.
    you could do that:
    select count(*) "mytable.RRRR" from mytable;now, "mytable.RRRR" becomes your alias.

  • Regarding reading a field symbols with a key

    Hi
    i have a scenario where i need to delete some duplicates from previous selection
    i' m selecting some 1000 records from one table. now in my second selection i' m reading records from 1001 to 2000.
    now i need to compare the last record(1000th) and compare the record with this second selection(1001 to 2000). in this scenario i' m using all feild symbols. here is the code
            SELECT * FROM (pa_tab)
                   INTO TABLE <lt_dyntable>
                   UP TO pa_ind ROWS
                   WHERE (lt_conditions_temp).
    initially <lt_dyntable> contains 1000 records
    if lv_dbcnt GT 1000.
    read table <lt_dyntable> assigning <ls_dyntable> with key
    <ls_dyntable> = <ls_check>.-----ERROR
    endif.
    this i have written to get the last record.
          LOOP AT <lt_dyntable> assigning <ls_dyntable>.
          ENDLOOP.
    i have stored the last record in this check. as the table <lt_dyntable> should be refreshed.
    move <ls_dyntable> to <LS_CHECK>.
    the code which i mentioned is giving me an error.
      <ls_dyntable> TYPE ANY,
      <ls_check> type any.
    let me know where i' m doing the error.
    Thanks & Regards,
    T.Subhashini.

    Hi,
    I think it is looking for a field <ls_dyntable> in your internal table <lt_dyntable>
    read table <lt_dyntable> assigning <ls_dyntable> with key
    <b><ls_dyntable> = <ls_check>.-----</b>ERROR
    Try this..
    READ TABLE <lt_dyntable> assigning <ls_dyntable> INDEX 1.
    IF <ls_dyntable> = <ls_check>.
    ENDIF.
    Thanks,
    Naren

  • Regarding OPEN PO ( PO's with out GR )

    hi experts,
    i need to fetch open PO's that is PO's with out Goods receipts from table EKBE.
    i found from my functional analyst that if EKBE-BELNR is empty then this is
    Open PO but when i checked table entries in ekbe, i found that for PO with BELNR empty it wont create any entries in EKBE.
    for example: if PO 100 has Belnr say 1000 this PO is displayed in EKBE entries
            on the other hand if PO 200 has BELNR empty or entry not made then this PO not displayed in EKBE entries that is PO 200 is not there in EKBE.
    so can any one please tell me how do i select open PO's or is there any alternative.
        i hope u understood, thanks and waiting for your reply
      pavan

    Hi,
    You can select the Open PO's from MKPF and MSEG tables.
    All the GOODS RECEIPTS will be stored in MSEG table.
    Against each PO item there will be GR's in MSEG table.
    Take related Movement types and fetch the GR's received against each PO item by passing EBELn and EBELP fields to MSEG.
    Again OPEN PO means, If the PO qty is 20 and the GR qty is 15 , then again it's a Open PO. So you have to take the PO qty for each item and take the all GR's for a single PO item (you have to LOOP MSEG, as it contains multiple records for a single EBELN and EBELP) and sum up the GR qty's .
    Again here you have to substract the Returns and GI's depending on the movement types.
    So find the total effective GR qty and compare with PO qty if both are same that PO is closed. If PO qty is more than GR qty it is still OPEN.
    Hope this is clear.
    Regards,
    Anji

  • Regarding error in ESS integration with EP

    Hi,
    We are currently integrating ESS 60.2 (mySAP ERP 2004) business package with portal EP6.0 (SP14).
    We were able to view the workset and all the pages like Employee Search, Personal Information etc.
    But when we click on the links in that page, we are getting a javascript error stating “<b>object required</b>”.
    Also, when we click any of the links we are getting an error stating” <b>Personnel number not yet assigned</b>”.
    We have already assigned the personnel number in transaction PA30 for the user and we had also set the validity of user id.
    Still we are facing the same problem.
    It’s very urgent.
    Can anyone help us to solve the problem?
    Any help would be much appreciated.
    Thanks in Advance.
    Regards
    Yoga

    Hi Yoga,
    and you have user mapping for same user for which u have done prnr number settings?
    can you cross check that in your r/3 system.
    Subhash

  • Regarding attachment of own smartforms with the standard report

    hi experts,
                     cud u plz tell me how to attach our own smartforms with the standard report i.e if i want to attach a smart forms with me23n to get the printout......plz help me...

    Hi
    Goto the NACE tcode and attache the own smartform and attach to the output type
    NACE is the Tcode used to link the Application type, Output Types and its processing Routines like ( Driver programs and attached Script forms or Smartforms).
    You should know the Application of a document first Like:
    for PO it is EF, for sales Doc's it is V1, for Delivery docs it is V2, for billing Doc's it is V3 etc.
    so first select the Application type (ex: EF) for PO and press OUtput types
    then a list will come in that you should know the related output type for PO.
    in this case it is NEU,
    select that and click on the processing Routines button on the left side
    it will display the Medium, Driver Program and the Script form or smartform related to that document..
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Regarding using wwan in T400 with Intel(R) WiFi Link 5100 AGN

    Hello,
            Im interested to use of WWAN in my laptop, My is Thinkpad T400, having with Intel(R) WiFi Link 5100 AGN.
    please guide me with process accesing the simcard slot in laptop.
    Waiting for your reply.
    With Regards
    Santhosh

    Hi,
    I believe the SIM card slot is in the battery bay.  Remove the battery to access.
    That Intel 5100 is a wifi card, not a wwan card.  Do you also have a wwan card installed, or is that what you are asking about?
    Information on both (SIM and wwan card installation) is in the hardware maintenance manual: Hardware Maintenance Manual - T400 & R400
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Regarding apple loops that come with GB

    I recently had help with reindexing my apple loops. After deleting all my loop indexes for both the Apple loops that came with GB and the ones I've bought from other sites, I dragged all the loop folders back into GB. I had no problems with dragging the user loops (the ones I bought) and reindexing them. However, for some reason, the apple loops folder that came with GB will not reinstall. The window comes up after I drag it into GB that it is reindexing and then the window comes up with me needing to sign in to ok the process. But when the reindexing is done and I go to show all to see if the apple loops are there, the only ones I can see under show all are the ones that I bought and downloaded. What is weird is that my apple loops that came with GB are on my hard drive as when I click on that folder (Mac hd/library/audio/apple loops/apple/apple loops for garageband) they are all showing there. I can click on them and the demo plays. When I check in the same path but choose apple loops index instead of apple loops, there are no indexes to be found (as should be as I dragged them earlier to trash), but obviously it means the reindexing wasn't done even though the window showed that the process was taking place. I still have all the indexes removed from both apple loops and user loops in my trash. I don't want to delete them in case I need to put something back to fix this problem.
    Any help for me with this? I did do disk utility/repair permissions, but that doesn't seemed to have helped that problem as the list when it was finished did not include anything for GB. I really need to get these loops back in as I already have songs done for leading worship that need those loops.
    Again, any help would be needed and much appreciated.
    Steve

    Let me know how it went if you do
    i can't say i'm any clearer on the issue. another intel mac lists the premissions as
    system Read/Write
    admin Read/Write
    everyone read Only
    and a PPC shows
    me
    system
    admin
    others
    all as Read/Write
    maybe I should now remove myself from having permission to do it
    without a more solid knowledge base from which to draw, it just seemed like a good idea. before i made a change like that and left it, i'd want to do a bit of reading on why permissions should/would be set the way they are. iow, find out if there's a reason i'm not listed, and granted full access as an admin.

  • Regarding identification of Material nos.

    Hi,
    I want to Build an Interface, transferring the Goods Receipt, Issue or Transfer Posting information from SAP to an external system. For which a program needs to be made which executes certain times a day. I have a requirement to identify the materials for which GR,GI or Transfer Posting happened during the day.
    Please tell me through which table or through which Posting Document I can get the information of the materials that have been received, issued, posted after the pervious run of the program.

    HI
    You can use this code also ,
    data : a type konv-kwert value '13',
    b type konv-kwert value '112',
    c type konv-kwert.
    c = a - b.
    IF C >  0 .
    WRITE :/ C NO-SIGN  .
    ELSE .
    WRITE :/ C USING EDIT MASK 'V___'  .
    ENDIF  .
    Regards
    Digvijay rai

  • Question regarding creation of xml-elements with numerical values

    When i create xml-documents from xml stored in the database (xmltype table based on an xml-schema), i find that numerical values which were stored as 0.395 (with the "." as the decimal separator) are retrieved as .395.
    Is it possible to apply a format mask so that the numerical value is retrieved as 0.395?
    thanks, Bart
    N.b. Note that i select a complete xml-fragment. So my problem seems related to the storage or retreival of 'schredded' XML. I do not use SQL/XML-functions with relational data, in which case i know how to apply a format mask.

    I don't use XSLT, i just query the XML-documents stored in an XMLType column with a simple SQL-statement.
    I have posted a simple example over here Re: Is it possible to influence the creation of empty elements?

  • Help regarding a use case dealing with EO cache and Association Consistency

    Hi
    I am facing the following issue
    There are two VOs : VO1 and VO2
    VO1 has two entity usages EO1 and EO2
    VO2 has two entity usages EO1 and EO3
    I use VO1 2 create two rows therefore there will be two underlying EO Rows for each entity usage in the cache .Let me call them EO1row1,EO1row2 and EO2row1,EO2row2
    I am creating one row for EO3 without using the VO2 , therefore there is one EO3 row in the cache ,let me call it EO3row1
    I do a in memory filter using VO2(query mode as Scan Entity Rows) ,and set the row match in such a way that i get get only one view row that contains EO1row1 and EO3row1
    When i try to traverse through the VO2 using hasNext() , another viewRow gets created with EO1row2 which is not intended
    I think this might have to do with Association Consistency / EO cache but am not sure how to apply it here
    Thanks
    Sreekanth

    Thanks for the quick advice!
    Unfortunately, I am still unable to open my core productivity apps, namely Skype and Evernote. Twitter, as well, could not start. But interesting quick fix though, I never knew you could do that.
    Here's the error log after the restart:
    What else should I try?

Maybe you are looking for

  • Excel 2007 to Sql server table. Column with more than 255 characters.

    Hi there, I am facing a problem while converting data from Excel 2007 to SQL server 2005 table. I am using BIDS 2005.I have an excel file where one particular column has more than 255 characters. I use OLEDB connection for excel file as there is no d

  • PDF viewer doesn't work in FF 36.0.4 for Mac

    Macbook Pro with Yosemite and FF 36.0.4: Built in PDF viewer no longer works. Clicking on PDF links in search engines does not bring up the built in viewer. Restoring FF 35 restores the PDF viewer.

  • Adding to Existing Collections?

    I can select a bunch of images displayed in the Library, click on the "+" in the Collections tab and save the selected images to a new collection. Now, I get some different images selected in the Library, and want to add them to the above collection.

  • Tables for FM Budget Release and Budget

    Dear Gurus, Can any one please provide the tables for FM Budget and Release?? Regards, Venkat

  • Any Java on IXP4XX Network Processor ??

    Hi, I am trying to find out whether there is any Java, either J2ME CDC or CLDC, or any other Java package on can be implemented on Intel IXP4XX series of Network Processor. Is there any concrete work has been done on this? I came across news in the i