Search So based on PR

Hello frnds ,
Can anyone please tell me where the relation between a sales order and a purchase requisition is maintained .
I have to pass the item level text of a sales order to the Purchase order item level which are created from the Purchase requisition by a PR fast conversion tool.
I want to search the sales order based on which that purchase requisition is created.
Thanks in advance
Regards,
khushboo

Hi Khushboo,
I think you should post this thread in the ERP forum.
Kind regards,
Yann

Similar Messages

  • Batch search strategy based on goods receipt date

    Hello,
    Can some one help me with setting up Batch search strategy based on goods receipt date currently is on batch number.
    Thanks a lot
    Thanks!
    Best Regards
    Srw

    Hi
    If you want to set up Batch search strategy based on goods receipt date......then you have to create GR Date as one charecteristics in T.Code: CT04 and assign this charecter in Class with respect to class type  023
    Then assign this class in Material Master Classification view..
    Make sure in Material master, Purchasing view...you have activated Batch management active check box....
    Then when ever you do GR in MIGO, In batch tab, In classification field maintain the GR Date..
    Then Create sort sequence in  T.Code: CU70 and you can maintain in what basis ie)in assending or desending GR Date you have to search the batch..
    And then Create Batch Search Statergy in MBC1 and there you assign the sort sequence in Details...
    Now  you do your regular procedings.....the material Batch will be searched based on GR Date...
    Reward if useful
    Regards
    S.Baskaran

  • Searching BPs based on Mail address.

    Hi all,
    I want to search BPs based on the Email address.Kindly suggest me how to solve the issue.
    Regards,
    V.Sekhar.

    Hi Bruno,
    I am also facing the same problem. when in FM BAPI_BUPA_SEARCH, i pass email add. it does not get the bp but, if i pass value other than email(e.g. fax no., telephone, etc.) it shows the BP.
    Also i want to know that i only have email ID and not other info than that. So how should i search for BP. Is there any FM for this?
    Please Help.
    Full Reward Points for helpful answers also.
    Regards,
    Vinayak

  • Creating a search form based on a table.

    Hello,
    I'm currently trying to create a search form which performs a searchquery in values stored in a table in my database.
    The table is filled peoples names,lastnames ,telephonenumbers and departments.
    I can use the sample application to make a form based on the tableview but this returns a search textfield for every column in the table. I just want 1 searchfield/textfield to search on ALL columns at the same time and display the other fields as labels when returning the queryresults.
    I tried searching the forums for an explanation on how to build said form and I checked Metalink but I have yet to find one. Anyone out there willing to help me out?
    thanks in advance,
    Melvin K.

    Why not use an instr with your data in a bind variable in your where clause for the select?? Page 1 sets an item called P2_Parameter with your value string slightly modified ('12345','345632','645534534','3434344')
    Select a,b,c,d,e from some_table where INSTR(TO_CHAR(Lookup_column,'099999999'),:P2_Parameter)
    Maybe that will work? Its off the top of my head, but should get you what you want.. (But to agree with one of the other posters, it is a BAD Design..) I would try like an interactive report to allow them to enter in acct #'s or whatever these are and let them access the rows that way..
    Thank you,
    Tony Miller
    Webster, TX

  • Creating select option with the search help based on other select option

    Hi,
    I have displayed a selection screen with two select options S1 and S2.
    My requirement is that the values in the search help of S2 should get filled based on the values selected in S1.
    Note: User has option to select multiple values in S1.
    Does anybody know how to implement this?
    Thanks,
    Feroz

    >
    Sanjeeva wrote:
    > Hi,
    >
    > With standard f4 you cannot acheive this. You need to write customise with OVS or Simple value selector by reading S1 selected values.
    >
    > Thanks,
    > Sanjeev
    I'm getting fairly tired of seeing this completely incorrect information on this forum.  As stated before and already found out by this poster, you can map input and output values between multiple data dictionary search helps. You do NOT have to resort to using OVS for this option.

  • After creating a searchable database I am unable to search documents based off of the bates number.

    I just finished creating a searchable database in Adobe Acrobat Pro and it finds documents based off of search terms fine. It does not however locate documents based off of the Bates number that I am using as a search term. Why won't it let me do this?

    Hi Dodu.NET,
    Please refer the Kb Doc : http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html.
    Please see Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html for information on how to review your installation logs
    In addition you cna try these steps :
    > Enable the hidden Admin Account on Windows 7 ( Ref :  http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-administrator-account-on-wi ndows-vista/ )
    > Disable all Non-Microsoft Startup Services. (Ref : http://helpx.adobe.com/x-productkb/global/disable-startup-items-services-windows.html )
    > Disable all the Antivirus softwares like CA, Norton,Mc Afee etc. temporarily from the computer.
    Reboot and try installing in the new enabled Admin user account and check.

  • Using filter in PAPI-WS to search instances based on project variables

    Hi All
    I wanted to search the BPM instances from my external application. Used PAP-WS to do that.
    To be precise, I was using the filterbean, and have set the process scope, status scope, and the variable on which I want to filter.
    However, I noticed that if the variable specified in the filter is a 'project' variable instead of the 'instance' variable for the process, then BPM does not
    search the instances and throws an exception.
    The code works fine if the variable in filterbean is an instance variable in the process.
    Is it possible to search for the processes based on the values of project variables?
    Below is the code snippet and the exception details.
    Code snipppet:
    PapiWebService port = initializePapiWS(participantId); //private method, dont bother about this
    ProcessIdSetBean b = new ProcessIdSetBean();
    List<String> processids = b.getProcessIds();
    processids.add("/MYPROCESS");
    FilterBean fb = new FilterBean();
    SearchScopeBean ssb = new SearchScopeBean();
    ssb.setParticipantScope(ParticipantScope.ALL);
    ssb.setStatusScope(StatusScope.ALL);
    fb.setSearchScope(ssb);
    List<FilterAttributeBean> fabList = fb.getAttributes();
    FilterAttributeBean fab =new FilterAttributeBean();
    fab.setVariableId("messageNo");
    fab.setComparison(Comparison.IS);
    fab.setValue("123");
    fab.setIsParametric(false);
    fabList.add(fab);
    InstanceInfoBeanList iabl = null;
    try{
    iabl = port.processesGetInstancesByFilter(b, fb);
    catch (OperationException_Exception ex)
    Exception:
    An exception occurred while executing a transaction. Details:
    An error occurred while accesing the database.
    Detail:SQL statement: 'unknown'
    Caused by: Syntax error: Encountered "null" at line 1, column 575.
    fuego.transaction.DatabaseException: An error occurred while accesing the database.
    Detail:SQL statement: 'unknown'
         at fuego.server.persistence.jdbc.JdbcProcessInstancePersMgr.getInstancesByFilter(JdbcProcessInstancePersMgr.java:527)
         at fuego.server.persistence.Persistence.getInstancesByFilter(Persistence.java:329)
         at fuego.server.ProcessInstanceManager.getInstancesByFilter(ProcessInstanceManager.java:132)
         at fuego.server.AbstractProcessBean$34.execute(AbstractProcessBean.java:1666)
         at fuego.server.execution.DefaultEngineExecution$AtomicExecutionTA.runTransaction(DefaultEngineExecution.java:304)
         at fuego.transaction.TransactionAction.startBaseTransaction(TransactionAction.java:470)
         at fuego.transaction.TransactionAction.startTransaction(TransactionAction.java:551)
         at fuego.transaction.TransactionAction.start(TransactionAction.java:212)
         at fuego.server.execution.DefaultEngineExecution.executeImmediate(DefaultEngineExecution.java:123)
         at fuego.server.execution.DefaultEngineExecution.executeWithoutComponentImmediate(DefaultEngineExecution.java:199)
         at fuego.server.execution.EngineExecution.executeWithoutComponentImmediate(EngineExecution.java:95)
         at fuego.server.AbstractProcessBean.getInstancesByFilter(AbstractProcessBean.java:1660)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at fuego.lang.JavaClass.invokeMethod(JavaClass.java:1410)
         at fuego.lang.JavaObject.invoke(JavaObject.java:227)
         at fuego.component.Message.process(Message.java:585)
         at fuego.component.ExecutionThread.processMessage(ExecutionThread.java:780)
         at fuego.component.ExecutionThread.processBatch(ExecutionThread.java:755)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:142)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:134)
         at fuego.fengine.FEngineProcessBean.processBatch(FEngineProcessBean.java:244)
         at fuego.component.ExecutionThread.work(ExecutionThread.java:839)
         at fuego.component.ExecutionThread.run(ExecutionThread.java:408)

    Hi Mikael,
    Thank you for your input. Sorry for my delayed response, I was not alerted that anyone had replied. Anyway, the code you show above, as far as I know, will sort the results by a formula, but not limit results to that formula. For now we've temporarily settled
    on this approach of sorting by distance as this still gives value to the end user. We can also write some JavaScript to display the distance for each item using the longitude and latitude values for each item.
    In my mind that query above needs something similar to "between dates" (i.e. Range) syntax whereas we would need "within a geolocation distance".
    I admit that my knowledge of refiners is not great so I might just need to spend some time with them to understand this all better but at the moment I still don't see how you limit the result set. You could limit the results in JavaScript after the search
    has run (i.e. hide items that aren't within the given distance) but this would break the interaction with the other refiners on the page, especially if they are displaying counts (that are based on the original query). Unless there is an event
    we can hook into and filter the search results as a last step before they (and the refiners) are rendered on the page?
    Thanks for your input,
    James.

  • Offline search engine based on Oracle Text and XML SDK?

    Hi,
    I am pretty new to Oracle Text, so I am not shure if the
    question is correct.
    We have an intranet, with lots of MS Word, PDF and HTML files.
    The site is starting to get out of hand, there is to many
    information distributed all over it.
    We would need a search engine for these files. The front would
    be HTML or XML based on XSQL. The backend, that is the search
    engine would look like this: I would store the HTML, PDF and
    Word files inf the file system and regularly reload them into
    Oracle into BFILE columns. I could user Oracle Text to index the
    content and use XDK to make the searching part for it.
    Is the Oracle Text feasable?
    Every hint would be highly appreciated.
    Tamas Szecsy

    We would need a search engine for these files. The front would
    be HTML or XML based on XSQL. The backend, that is the search
    engine would look like this: I would store the HTML, PDF and
    Word files inf the file system and regularly reload them into
    Oracle into BFILE columns. I could user Oracle Text to index the
    content and use XDK to make the searching part for it.
    Is the Oracle Text feasable?You can store HTML, PDF and Word documents in the file system or
    in a database column and make it searchable using Oracle Text.
    You can write a JSP or PSP that executes the SQL statement and
    then displays the result. Take a look at the Indagine sample
    code (Java - it's a little bit old: version 8.1.5) or the "Text
    search with PL/SQL Server Pages" notes. All available from
    otn.oracle.com/products/text -> sample code.

  • Search resources based on created date

    Hi,
    I am unable to search the resources based on creation date.
    I used the code as follows.
    sqb = new SearchQueryListBuilder();
    Timestamp ts3 = new Timestamp(d3.getTime());
    String searchCreDt = "default:created(value>"ts3.toString()")";
    sqb.setSelectedCustomProps(searchCreDt);
    qel = sqb.buildSearchQueryList();
    // where d3 is the Date object.
    I am able to get the using sqb.setSelectedStartDate(d1); and sqb.setSelectedEndDate(d2);     
    I am able to get the string type as follows,
    String searchAnd = "default:modifiedby(value=" + modByTxt + ")," + "default:createdby(value=" + creByTxt + ")";
    sqb.setSelectedCustomProps(searchAnd);
    I need the sample code for getting the resources between from and to dates.
    Regards
    Chede

    Please provide me some input.
    Regards
    Chede

  • Search Page based on select Query...

    I want to create a simple search page base on a select query.
    The select query will not be based on Table.Its based on functions.
    I have created a view object like this
    select xx_test_accruals(:p_date) ACCRUAL,:p_date DT from dual
    I have created a Search page
    In Main Page layout region i have added a query region.In that Query region i have created a result based search Table.
    When i run the page is opening with field
    Dt
    When i enter date and click go i am getting error like this..
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (select xx_test_accruals(:p_date) ACCRUAL,:p_date DT from dual) QRSLT WHERE (( UPPER(DT) like :1 AND (DT like :2 OR DT like :3 OR DT like :4 OR DT like :5)))
    Please help
    Edited by: [email protected] on Oct 4, 2009 2:04 PM

    Hi,
    i tried it on my machine....there's a little change on the approach.
    See we have a View Object : XxAccrualsSummaryVO
    the query is
    select xx_test_accruals(to_date(:1,'YYYY-MM-DD')) ACCRUAL,to_date(:2,'YYYY-MM-DD') DT from dual
    Create a Property View Object : say DateTestPVO and in that create a Transient Attribute of DATE type say InputDate. How to create property View Object(read in dev guide).
    Bind the date text input to DateTestPVO and InputDate Attribute.
    Now as the page loads in process request initialise the PVO not XxAccrualsSummaryVO.
    public void initialisePVO()
    OAViewObject vo = (OAViewObject)getDatePVO1();
    if (!vo.isPreparedForExecution())
    vo.setMaxFetchSize(0);
    Row row = vo.createRow();
    vo.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    And when the Go button is pressed then grab the date being entered and set the where clause of XxAccrualsSummaryVO.
    if(pageContext.getParameter("Go")!=null)
    //Get the value entered by user in date field.
    OAMessageDateFieldBean dateField = (OAMessageDateFieldBean)webBean.findIndexedChildRecursive("text");
    String datetest = (String)dateField.getValue(pageContext).toString();
    //Now set the where clause parameters of VO.
    OAViewObject vodate = (OAViewObject)am.findViewObject("invoicetestVO1");
    vodate.setWhereClauseParams(null);
    vodate.setWhereClauseParam(0,datetest);
    vodate.setWhereClauseParam(1,datetest);
    vodate.executeQuery();
    It works perfectly...I have tested it.
    Thanks,
    Gaurav

  • ADF Swing Search form based on readonly VO

    Hello,
    Does somebody know how to use the JUNavigationBar search form, when it is binded to ViewObject, that is readonly?
    The problem is that the form begins readonly too...
    Thanks,
    Jordan

    Hi,
    you could create your own parameter form and pass the data to a method on the ApplicationModule that hen applied the ViewCriteria. Alternatively you add bind variables to the query and use a form based on the ExecuteWithParams operation
    Frank

  • I'd like a search keyword-based RSS Feed for iOS apps. Possible?

    It's great that Apple offers a variety of RSS feeds for the iTunes store. I'd like to be able to further hone the feed to particular search-based keywords. For example, limit the top paid apps to just those about dogs or some other long-tail (I did NOT mean that as a pun :-) ) keyword term. Is this possible?
    Alternatively, if one could convert Apple JSON-based searches into an RSS feed, that would do the trick, too. An example JSON feed:
    http://itunes.apple.com/search?term=dog&entity=iPadSoftware&limit=200

    If you want more, then see these (if you're not coming from windoze, skip the switching stuff):
    Switching from Windows to Mac OS X,
    Basic Tutorials on using a Mac,
    Mac 101: Mac Essentials,
    Anatomy of a Mac,
    MacTips, and
    Switching to the Mac: The Missing Manual, Snow Leopard Edition.
    Additionally, *Texas Mac Man* recommends:
    Quick Assist.
    Welcome to the Switch To A Mac Guides,
    Take Control E-books, and
    A guide for switching to a Mac.

  • Restrict BP search result based on BP role

    Hi experts,
    Is it possible to restrict BP search result list based on the BP role i.e. users should not be able to see BP's with prospect role in the search result list.
    I am able to control create,change,display using auth.objects CRM_BPROLE / B_BUPA_RLT but unable to restrict the search list. Any hints would be really helpful.
    Regards.

    Hi Anup,
    Thanks for the reply. For the time being we are using authorization groups instead as a workaround solution. Haven't tried the BADI though. Thanks again.
    Regards.

  • Search Results based on other Search Results

    Scenario -
    I have a BDC content type which has a custom page for end users to view the data in the content type.  This page has a search result we part that displays the details of the content type.  There are other search result web parts that show related
    documents to the content type. 
    We are able to use the query string to pass in properties of the content type that will filter the search results to documents based on the passed value.  Example: Employee content type has custom page that lists the details about that employee, and
    when passing the department in the url to the page, a list of department specific documents can be displayed.
    There are several attributes of the "Employee" content type that we would like to filter for specific documents with.  How can I access these attributes with out passing them through the query string in the url? 
    I would rather not have to pass all these elements in the url Employee.aspx?employeeid={0}&department={1}&state={2}&employeetype={3} ect...  I would be better to just pass the employee id, and the page be able to get all the information
    it needs for the Search Results/Content Search web parts.
    Any thoughts would be helpful.  We are currently looking at the Product Catalog items, but this doesn't seem to fix our issue where we need to filter the results based on attributes of the current contextual content type.
    Thank You
    Shane

    I have been doing some more research, and I just cannot seem to find a viable option.  Can I use the Page.<FieldName>, or ListItem.<property>?  I am not sure, and no body seems to be doing anything like this?  Can it be done with
    javascript on the client, without having to rebuild the Display Template functionality for the results?
    So many questions and no one seems to have an answer?
    Shane

  • Need to Create Search Help Based on Condtions from one table to another tab

    Hi All,
    I have a table like ZGROUP Which contains the data below
    Filed name Filed Name Filed Name
    ZGROUP ZTYPE ZTEXT
    Entries
    ABC P TEXT FOR
    C P SDFNSDFKLN
    DDDD PSG TEPRTPERERTWERT
    DEF P TEST
    FFFFF PSG
    SEF PS SDFSDFLASLDFNASDLFN
    XYZ PS TESTING
    Whree P is Product , PS- Point of Sales, PSG-Sales Group
    Now i am going to crate another ZPROUDCT TABLE
    FIELDNAME FIELDDESCRITPON
    PRODUCT PROD_DESC
    Entry
    abc pRELATED ENTRY
    My Questions
    1) ZGROUPS table has 3 kinds of data P, PSG, PS type records,
    1) In Table ZPROUDCT , I want to create search help only P records for Table Zproduct of the field Product FROM zGROUPS table
    2) In Table Zsales , I want to create search help only PS records from ZGROUPS table
    3) In Table ZPSG, I want to create search help only PSG records from table ZGROUPS
    is it possible to create search help from One Master Table(ZGROUPS) table to other tables based on conditions.
    Please help me.
    very urgent
    Regards,
    Raju

    if  <condition>
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR <field>
    SELECT <field>
             FROM <table>
             INTO TABLE i_tab
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'                  "function module to provide f4 help to sold-to-party
        EXPORTING
          retfield        = "XXXX"
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          dynprofield     = '<field name>'
          value_org       = 'S'
        TABLES
          value_tab       = i_tab
    endif.
    lkike this u can check the condition and selec the data from table and assign it into one internal table and then call the FM it will give the f4 help to particular field
    reward if helpful
    regards,
    Khan.

Maybe you are looking for