ME5A Criterias to run

Hi,
I ran the ME5A report for all PRs. I checked all the options i.e
Assigned Purchase Requisitions
Closed Requiaitions
Partly Orders Requisitions
Released Requisitions only
Requisitions for Overall Release
Requisition for Item-Wise Release
The result did not show me four of the PRs with following status:
Three of them were not at all released.
One of the was partially released.
Q1) Any idea why these did not show up?
Q2) When I unchecked all the above options and just checked the last two options i.e 
Requisitions for Overall Release
Requisition for Item-Wise Release
I was able to see those four PR's
Now my question is why did these four PR's did not appear with all options checked?
Note: I will appreciate answers to both my questions separately.
Thanks
Faisal Habib

Hi,
Please don't consider the check box of Released Requisitions only while executing the report.
Thanks & Regards,
Indranil

Similar Messages

  • How to change the view criteria at run time for af:query

    Hi,
    I've a usecase where I need to change the view criteria of the af:query at run time.
    Use case:
    =======
    1) Consider a check box (Show Emps Under Dept 10) in the query panel when user selects and clicks 'Search' button should show the employees under dept 10. If user searches without selecting the check box, the results should show all the employees in all the departments.
    2) I need to have a check box always in the query panel. Its mandatory.
    The way I implemented:
    ==============
    1) Created a transient variable 'Show Emps Under Dept 10' in the EmployeeVO and also created a bind variable bind_DeptNo.
    2) Create a view criteria 'AllEmployees' which has only the transient attribute as the view criteria item and whose value set to 'false' by default.
    3) Created another view criteria 'EmpUnderDept' which has 'DepartmentId' as the view criteria item and whose value set to the bind variable 'bind_DeptNo'.
    4) Dropped the view criteria 'EmpUnderDept' as the 'af:query' panel in the jspx page.
    5) Overridden the queryListener as '#{EmpBean.empSearch}'
    6) Has the below code in the empSearch method as below. When user selects the check box, applying the other criteria 'EmpUnderDept' and setting the bind variable to '10'.
    public void empSearch(QueryEvent queryEvent) {
    // Add event code here...
    QueryDescriptor queryDesc = (QueryDescriptor) queryEvent.getDescriptor();
    ConjunctionCriterion conCrit = queryDesc.getConjunctionCriterion();
    List<Criterion> criterionList = conCrit.getCriterionList();
    List criterionValues = new ArrayList();
    Object criteriaValue = null;
    int criteriaNo = 0;
    DCBindingContainer bc = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    FacesContext facesContext = FacesContext.getCurrentInstance();
    for (Criterion criterion : criterionList) {
    AttributeDescriptor attrDescriptor = ((AttributeCriterion)criterion).getAttribute();
    System.out.println("============== attrDescriptor.getName() =================== " + attrDescriptor.getName());
    criteriaValue = ((AttributeCriterion)criterion).getValues().get(0);
    if(criteriaNo==0) {
    Boolean val = (Boolean) ((AttributeCriterion)criterion).getValues().get(0);
    if (val.equals(true)) {
    OperationBinding method = (OperationBinding) ADFUtil.findOperation("ExecuteWithParams");
    if(method!=null) {
    Map params = method.getParamsMap();
    //params.put(key, value)
    method.getParamsMap().put("bind_DeptId", 10L);
    method.execute();
    ADFUtil.invokeMethodExpression( "#{bindings.EmpUnderDeptCriteiaQuery.processQuery}", queryEvent);
    } else {
    //ADFUtil.invokeEL("#{bindings.ExecuteWithParams.execute}");
    ADFUtil.invokeMethodExpression( "#{bindings.AllEmployeesCriteriaQuery.processQuery}", queryEvent);
    But this approach is not working and its always showing all the employees in all the departments.
    Please let me know if there is a way to change the view criteria at run time depending on the values set at run time for one of the view criteria items.
    JDev version am using is '11.1.1.5'
    Thanks,
    Lakshman

    Hi Shay,
    It worked for me without overriding the executeQuery() method in the ViewImpl.java.
    Instead of creating 2 view criteria, I created only one which has both transient variable and the DepartmentId = <bind_DeptId>. With the above code, it worked properly. Now I am using only one view criteria.
    Thank you.

  • Portal Activity Report with Selection criteria

    Hi All,
    I have created an iview using 'Portal Activity Report' template, added the iview to page and page is added to the role which is created for this report. Also, users were assigned to the new role. When users go to portal and see this report, they are seeing the final output of this report along with the 'Download Report' option.
    My requirement is to give selection screen option (Type of report and Reporting period) to users. So that users will change the selection criteria and run the report as per their need. Please advice me on how to do this.
    Thanks in advance.
    Swapna.

    swapna,
    you can do this by creating a webdynpro application for accessing the database tables, the list of data base tables is in this [help |http://help.sap.com/saphelp_nw04/helpdata/en/48/6aa9429b930b31e10000000a1550b0/frameset.htm]document and use web dynpro application to connect to that tables. Check this thread  for[ dynpro and database tables  |dynpro and database tables;
    regards
    Mahesh

  • PDF form with XML data connection comes up blank at run time

    Hello All,
    I am a newbie to ADOBE Livecycle 9, but am very proficient in C#.  I would like to request for your guidance on the following issue.
    We have a desktop application in C#, WPF, Sqlserver. The requirement is to launch a Livecycle form from the application for the user to read/edit/save data
    I have done this much so far -
    Downloaded trial version of Livecycle 9
    Developed a interactive PDf form
    Created an XML based data connection. Generated fields on the form using the fields from this connection.
    Set the .XML file as preview source for the form
    the controls on the form are boumd to the xml data source
    In design mode, the form works fine, it displays my data correctly
    I have created a WPF form with a button. On click of this button, I call the Process.Start(pdf-file-path). My pdf is launched properly
    I have added a combo box to my WPF form. I select a parameter from this, then call a stored procedure which returns me a datatable depending on parameter passed
    Using the returned datatable, I have used the datatable.writexml and datatable.writexmlschema to create my XML and XSD files. as mentioned above, this xsd is used to create the data connection for the PDF and the XML for the preview source
    This is what I want to do -
    Launch the PDF from my WPF form, pre-populated with the newly created XML data from my WPF form.
    So basically, as the user changes the selection criteria from the combo box, the XML file data will change and the PDF file will be launched each time with new data.
    The XSD format will always be constant
    Problem -
    My XML and XSD get created properly, my PDF launches, but it is empty
    If I change my selection criteria and run the WPF application, and then open the PDF in design mode, it asks me whether it should refresh the XML source. This means that the PDF form is connecting correctly to the XML source
    So why then, does the form come up empty at run time?
    What link am I missing?
    I have found some sites that help using Web applications, but nothing for desktop applications. It would be fantastic if you could point me to some help for developing Livecycle forms with C# / SQLServer
    Your help in this case will be highly appreciated.
    Thanks and Regards

    Oops, something happended with the above post. I will try again... I have tried your suggestion but I still get the same garbled XML (with data repeated and some values "cut in half".<br /><br />Here is what I get after decode-service and extract-to-XML-service. This is just the first barcode, the others are similar, sorry for the poor formatting, but I get a CDATA tage infront of the "istensen" value.<br />                                                              <br />CDATA:istensen</fld_ForMellemEfterNavn<br />><fld_VejNRpostByEnLinie<br />>Superroad 99, 1330 Supertown</fld_VejNRpostByEnLinie<br />><fld_PrivatTelefonnummer<br />>20724283</fld_PrivatTelefonnummer<br />></sub_Person<br />></sub_PktA<br />><fld_BlanketNr<br />>kb0371ff</fld_BlanketNr<br />><fld_BarcodeCount<br />/></form1<br />>/sub_Adresse<br />><sub_Person<br />><fld_ForMellemEfterNavn>Kim Christensen</fld_ForMellemEfterNavn<br />><fld_VejNRpostByEnLinie<br />> Superroad 99, 1330 Supertown </fld_VejNRpostByEnLinie<br />><fld_PrivatTelefonnummer<br />>20724283</fld_PrivatTelefonnummer<br />></sub_Person<br />></sub_PktA<br />><fld_BlanketNr<br />>kb0371ff</fld_BlanketNr<br />><fld_BarcodeCount<br />/></form1<br /><br />Obviously this is not a legal xml-string, so I can do nothing about it.<br /><br />I have tried using a custom .NET component (ClearImage) for reading the same form (with the barcode) I get the correct data out from the barcodes. So I guess something is wrong with the decode-service in Barcoded Forms ES when I use compressed XML. But I can conclude since the ClearImage component can read the barcodes that they are compressed correctly.<br /><br />Can you help me with getting further with this problem?<br /><br />Sincerely<br />Kim

  • RKAEP000 in the background without selection criteria

    Hello,
    advice, please.
    If you execute the KSB1 report in the background, the selection criteria are automatically displayed there with the header data (states within SAP Note 1174588).
    Is there any way how to disable this?
    We have got a custom program in which we start the KSB1 via SUBMIT RKAEP000 and we do not want to display also the selection criteria within the spool.
    Maybe some parameter, which could be used within the submit rkaep000?
    Thanks
    Regards
    P

    Thanks for reply,
    I know you can define an default layout, but where within the layout can you set to not display the selection criteria if running in background?

  • KSB1 in the background without selection criteria

    Hello,
    advice, please.
    If you execute the KSB1 report in the background, the selection criteria are automatically displayed there with the header data (states within SAP Note 1174588).
    Is there any way how to disable this?
    We have got a  custom program in which we start the KSB1 via SUBMIT RKAEP000 and we do not want to display also the selection criteria within the spool.
    Maybe some parameter, which could be used within the submit rkaep000?
    Thanks
    Regards
    P

    Thanks for reply,
    I know you can define an default layout, but where within the layout can you set to not display the selection criteria if running in background?

  • ME5A transaction is giving ABAP dump

    Dear Mentors
    User While executing  ME5A transaction, ABAP run time error is coming
    error details
    ABAP runtime error :SAPSQL_PARSE_ERROR
    exception : CX_SY_DYNAMIC_OSQL_SYNTAX
    Function : ME_READ_EBAN_MULTIPLE
    Our system details
    SAP_APPL 617 SP 1
    we applied sap notes
    0001855828
    0001856538
    authorization objects for that user
    M_BANF_BSA
    M_BANF_EKG
    M_BANF_EKO
    M_BANF_FRG
    M_BANF_WRK
    M_BEST_BSA
    M_BEST_EKG
    M_BEST_EKO
    M_BEST_WRK
    M_EINK_FRG
    S_ADMI_FCD
    S_ALV_LAYO
    S_ALV_LAYR
    S_BDS_DS
    S_CTS_ADMI
    S_CTS_SADM
    S_DEVELOP
    S_GUI
    S_SPO_ACT
    S_SPO_DEV
    S_SPO_PAGE
    S_TCODE
    Please find attachments for more details
    Thanks
    regards
    Sudheer k

    Hi,
    Do refer the below OSS Note, this error is caused due to internal authorization check in,
    method : CL_AUTHCHECK_SQL_MM
    This Note includes latest correction for your ABAP Dump from release 616 and 617 which was released in 27.01.2014.
    1872223 - Correction WHERE clause CL_AUTHCHECK_SQL_MM
    Rgds,
    MBPATIL

  • Run a formula if a cell contains particular data from various cells

    I have a formula which checks a list of domains to see what the TLD is and then returns a renewal price based on the TLD e.g. .co.uk may return with $5.99 and .com $10.00. The formula I am using is below:
    =VLOOKUP(RIGHT(A2,LEN(A2)−SEARCH(".",A2)+1),$A:$B,2,FALSE)
    I am now wanting to expand this formula to check additional criteria before running the above formula.
    I don't know what functions to use, but I know what I'm trying to achieve, so please, humour me when it comes to make believe syntax below:
    if a cell contains the data from a number of cells e.g. C$2:C$5 then run the above formula, if not return "N/A"

    Hi Ian,
    Thanks for your reply.
    I see exactly where you're going with this, but it's not exactly what I'm after.
    Perhaps I need to be a bit more clear in my explanation - my bad.
    Cell A2 has a domain name e.g. example.com, example.co.uk, example.org, example.net
    Cell B2 has a number of options to choose from e.g. Expire, Hosting, Backorder, Mapping
    Column D2:D5 have a number of TLDs e.g. co.uk, .com, .org, .net
    Column E2:E5 have the corresponding annual renewal prices for the TLDs listed in cells F2:F5
    Column F2:F5 have the options than can be chosen in column B2
    I only want to get the renewal price for the TLD where the option in Cell B2 is one of the options listed in cells F2:F5 and if it's not, I want it to return "N/A"

  • Business One C# DI API's for General Ledger Report?

    I am working on the General Ledger Report and unable to find the DI API's for C# for the following cases. If somebody can point me the API's, that would be really helpful. I have handle to the logged in company.
    Get all ChartOfAccounts
    Get AccountSegmentations
    Get BusinessPartners
    Get JournalEntries_lines
    I am new to SAP. The documentation is bit unclear. I am using the following code to load the objects. Now it is unclear how to loop through the journalvouchers to load all the lines one by one.
    SAPbobsCOM.AccountSegmentations segmentations =  oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oAccountSegmentations);
                SAPbobsCOM.AccountSegmentationCategories categories = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oAccountSegmentationCategories);
                SAPbobsCOM.BusinessPartners partners = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oBusinessPartners);
                SAPbobsCOM.JournalVouchers vouchers = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalVouchers);
                SAPbobsCOM.JournalEntries jEntries = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalEntries);
                SAPbobsCOM.JournalEntries_Lines jLines;

    Hi,
    Are you trying to run the report via code?  If so, you can only do that using the UI objects as there is not DIAPI for reporting.
    You first need to activate the menu item for the report:
    connect.SboApp.ActivateMenuItem("13058");
    Once you've done that, you can get the active form which will be your criteria window, use the UIAPI to set your criteria and run the report by getting the OK button object and calling the Click method.
    David

  • Stock balances by Profit centre-New GL

    Hi,
    Is there any standard FI report by which I can get the stock/material/inventory balances by profit centre and segment. We are in ECC 6.0 with new GL activated.
    If there is no standard report, can this be acheived by using a ABAP query by table join.If yes, please let me know the tables to consider.
    Thanks
    Aravind

    Try the report S_E38_98000088 - Profit Center Group: Plan/Actual/Variance for your inventory accounts. This will give you stock values by profit center. Leave the profit center value blank in the selection criterial. Run MB5L for stock values by inventory account and then double click the account to get the stock values by material.
    FAGL_FLEXT, MBEW and MARC can be joined to get the values.

  • Template Issue in Custom Filter

    Hi Experts,
    I have written a custom filter that is working on criteria. If some criteria meets, based on that criteria filter runs a search query in UCM and then send Email to some users. I have created a Template for email.
    Here is my filter code :
                   ResultSet results = ws.createResultSetSQL(query); //search returns 30 records
                   DataResultSet rs = new DataResultSet();
                   rs.copy(results);
                   dataBinder.addResultSet("SearchResults", rs);
                   cxt.setCachedObject("DataBinder", dataBinder);
              InternetFunctions.sendMailTo("[email protected]", "EMAIL_TEMPLATE", "test sub", cxt);
    In Email Template, i am looping SearchResults resultset.
    The problem is that in Template resultset does not show any record. Infact, if I set any other value in dataBinder, that is not avialable in template.
    Please help guys...!1
    Thanks
    Edited by: user4884609 on Feb 21, 2011 12:36 AM
    Edited by: user4884609 on Feb 21, 2011 1:18 AM

    I got the solution... thanks

  • How do I create a series of text frames from a list of files?

    And I'm back again.
    This time, I'm wondering how I can use JavaScript to place a series of text frames from a list of files, preferably with the ability to specify criteria before running the script.
    Here's the details: I work for a newspaper and I lay out stories for the pages (in addition to the other part of my job, laying out ad spaces, as detailed in a previous thread, for which I requested another script, thanks Andreas and Jongware ). The file names for the stories are labeled for the section they go in, like L- for Life, C- for Comment, S- for Sports, etc.
    I'd like to create a script that asks for a criteria in a text box (where I can type L-, C-, S- or whatever else I need) and then places all of the stories, in a specified directory, whose file names match what was typed in the box, one text frame for each.
    I can't rightly tell if this is a simpler or more difficult script to write out, but I plan on putting research into it as usual so I can develop it myself. However, I figured it would be more efficient to ask first, then research, so that while I'm researching, I can refer to the opinions of my fellow forumites, and/or the mods.
    Thanks again for any assistance offered.

    And I'm back again.
    This time, I'm wondering how I can use JavaScript to place a series of text frames from a list of files, preferably with the ability to specify criteria before running the script.
    Here's the details: I work for a newspaper and I lay out stories for the pages (in addition to the other part of my job, laying out ad spaces, as detailed in a previous thread, for which I requested another script, thanks Andreas and Jongware ). The file names for the stories are labeled for the section they go in, like L- for Life, C- for Comment, S- for Sports, etc.
    I'd like to create a script that asks for a criteria in a text box (where I can type L-, C-, S- or whatever else I need) and then places all of the stories, in a specified directory, whose file names match what was typed in the box, one text frame for each.
    I can't rightly tell if this is a simpler or more difficult script to write out, but I plan on putting research into it as usual so I can develop it myself. However, I figured it would be more efficient to ask first, then research, so that while I'm researching, I can refer to the opinions of my fellow forumites, and/or the mods.
    Thanks again for any assistance offered.

  • How to use varaible in place of logical operator in query

    Hi Experts,
    How can we use a variable in place of logical operator (OR, AND) ?
    For ex:
    select * from sflight where carrid = 'LH' AND connid = 100.
    data x type string.
    x = 'AND'.
    Now, I want to replace AND with the variable x.
    Query will be:
    select * from sflight where carrid = 'LH'  x connid = 100.
    I am doing this because user can select any logical operator while creating the search criteria at run time .
    I already tried this but i am getting following compilation error:
    Error: Incorrect expression used in place of logical expression.

    hi,
    Check out this sample code
    Display of flight connections after input of airline and flight number:
    PARAMETERS: carr_id TYPE spfli-carrid,
                conn_id TYPE spfli-connid.
    DATA:       where_clause TYPE  STRING,
                and(4),
                wa_spfli TYPE spfli.
    IF carr_id IS NOT INITIAL.
      CONCATENATE 'CARRID = ''' carr_id '''' INTO where_clause.
      and = ' AND'.
    ENDIF.
    IF conn_id IS NOT INITIAL.
      CONCATENATE where_clause and ' CONNID = ''' conn_id ''''
        INTO where_clause.
    ENDIF.
    SELECT * FROM spfli INTO wa_spfli WHERE (where_clause).
      WRITE: / wa_spfli-carrid, wa_spfli-connid, wa_spfli-cityfrom,
               wa_spfli-cityto, wa_spfli-deptime.
    ENDSELECT.
    Regards,
    Santosh

  • Find via network does not work

    Hi..I´m having a big trouble when trying to find images by it´s keywork when they are stored in my company server. Let´s explain
    I take some photos or even work with Photoshop, Illustrator or InDesign files. I set different keyword for the files and move it to a central folder in my server, where everyone inside the company has acess.
    The problem is: Nobody is able to find that images...In Adobe Bridge (Cs3 or CS4) they go  Edit > Find, set the criteria and run the search > not done. The unique person able to find that images by searching  via keywork is myself inside my own computer (the one I´ve set files´ keywords)
    I´ve tried everithing, check options in find dialog box, triing to centralize a cache folder in server and pointing all the bridges to that folders, purge and export cache to folders, and so on, but I do not know if it´s anything related to cache.
    In Resume, nobody is able to find images by any criteria if they are stored inside server (just the people that set keyword is able).
    How to solve it?
    Thank you a lot
    Gustavo.

    This question has been asked many times, but no one responds back as how they solved the problem.
    Seen this recent link.  It sounds like you have tried suggestions at end of post #1, and it did not work.
    If you find something that does work please post back to help others.
    http://forums.adobe.com/thread/556836?tstart=0
    Message was edited by: Curt Y
    Note:  No files will be found unless the folders are indexed. 

  • GREP 'find/change' by list script: find a text string containing different para styles

    Hi
    I'm don't write scripts but do 'enjoy' copying, pasting and changing existing code/txt files.
    I have built a GREP find/change .txt that performs a large number of text edits/changes.
    But I'm left with an issue where I have paragraphs of text (styled earlier in the .txt file) that I'm unable to identify using GREP the usual way. I need to identify text in a particular paragraph style, followed by text in another paragraph style.
    Is it possible with GREP to create a search string to find: text styled with one paragraph style, ending with a paragraph return, and to include in that selection the following paragraph/s styled with another paragraph style?
    MTIA Steve

    seb400 napisał(-a):
    What do you mean by I would mark "changing" in "copying, pasting and changing"?
    Hi Steve,
    I mean I can see a way by modifying some existing code with "find...change" job
    1. set criteria to findGrep
    2. store findGrep() in an array
    3. check each found object if next paragraph matches some new criteria
    4. run changeGrep() if true
    Jarek

Maybe you are looking for

  • TIFF files in Adobe bridge

    My normal routine after I have converted my Nikon NEF files and processed them in Photoshop CS3 is to save as TIF files. These have always then been visible in Adobe bridge CS3. For some reason I can no longer see the picture thumbnail in Adobe bridg

  • Percentage in alv report

    Hi Expert,             In alv report percentage calculation.Here we have a problem, In total column it will adding  the fields        in percentage column, but i want to calculate the percentage in run time.             Example:                      

  • Install j2se plugin version 1.6.0_07 on your client and NPX_PLUGIN_PATH environment variable set before starting Netscape.

    Hi experts m new to apps please help.. I have installed successfully Oracle Apps R12 on OEL - 5 All the services runining fine. but when i am opening forms its giving error "install missing plugins" i installed jre-6u7-linux-i586-rpm.bin and Mozilla

  • How to disable illuminated Multimedia Console Buttons sensitivity

    Does anyone know how to disable or reduce the sensitivity of the illuminated +Multimedia Console Buttons+ to the left of the main keyboard? Cheers, Alun

  • AIAFP11g Tutorial

    Hi All, I am new to AIA, can anybody provide tutorials or step by step procedure for creating one process end to end in jdeveloper. I have updated JDev with service constructor and unable to get the services in service component. pls help on this. th