BAPI for Finding Materials which have Classification Characteristics

Hi,
Does anyone know of an RFC or BAPI to return a list of materials which have a specific Classification Characteristic
Most of the functions I've found will return the all the classification characteristics if you know the material number and the class.
The other search tools and reports all seem to work with the SAP GUI and are quite interactive. I need to be able to execute an RFC or BAPI without SAP GUI.
In my case, I know the Class Type and Class and I know the characterstic and attribute value but need a list of matching materials.
Thanks
Paul

Hi Ashok
Actually my requirement is that i want to post the Vendor expenses thro' Vendor Portal and for that Validation will not helps us.
So thro' BAPI 's only we can post the expenses ...........
I suppose that its clear for you now.
Revert
Regards
Praveen

Similar Messages

  • Report for materials which have not been cycle counted.

    Hi,
    Is there any report which can show me materials which have not been cycle counted and also materials which have been cycle counted with the cc date?
    Sincerely,
    Nicky

    Hi,
       As of my knowledge, there is no standard report which can fulfill your requirement. You may go for development. Please check the similar thread: Cycle count analysis report
    Regards,
    AKPT

  • BAPI for finding child WBS elements under a Parent WBS element

    Hi friends,
    I am working on the transaction ZIOS02 transaction. On releasing the Parent or Main WBS element in ZIOS02 transaction I need to copy some data from ZIOS to PRPS based on WBS element.
    I have a Bapi for retrieving all the WBS elements based on Project Definition (BAPI_PROJECT_GETINFO) but i want to know whether is there any BAPI for finding the child WBS elements when we give a Parent WBS elemnts as Input to BAPI.
    Could any one please help me in the query ASAP.

    Hi friends,
    I have got the answer for finding the child WBS elements.
    In Function module BAPI_Project_get_info.
    Use parameter subtree = 'X' and give the WBS element name in tables section under I_wbs_element. You will get all the child WBS elements which are under Main WBS element.
    Thanks
    Satish Raju

  • How can I find items which have crop marks effect?

    Now, I am creating a script for Illustrator CS4, CS5, CC2014 with Japanese version in Windows.
    I wish to find items which have Crop Marks Effect (which is created by Effect > Crop Marks) by Javascript or VBScript.
    Is it possible?
    Any help is appreciated.

    It looks like the crop marks are part of the "visibleBounds" of the object.  So if you compare the visibleBounds to the geometricBounds you should see a stable difference of 54.5pt
    Test this out on some variations.  Quick testing shows that it looks viable.
    #target illustrator
    #targetengine "main"
    var workingDoc = app.activeDocument;
    if (workingDoc.pathItems[0].geometricBounds[0] - workingDoc.pathItems[0].visibleBounds[0] = 54.5)
        alert("crops");

  • How to find photos which have not been updated to the current Process Version?

    How can I search and/or filter to find photos which have not been updated to the current Process Version?  I would like to get a list of the photos rather than going through them one by one and looking for the lightening bolt.

    Thank you!  As my memory fades, it is good to know that my memory is backed up with you and others on this forum!

  • How to find procedures which have changed since the previous day

    Hi All,
    My requirement is to find out the procedures which have been changed since last day i.e the procedures which were compiled in the previous day.
    How could I find this using query. Please help me out.
    Thanks in Advance
    Regards,
    Srikanth

    All objects, visible to your schema, that were created or modified during the previous day
    select OBJECT_TYPE
          ,OBJECT_NAME
    from   all_objects
    where  trunc(LAST_DDL_TIME) = trunc(sysdate-1)
    order  by object_type
             ,object_name;

  • Identifying Primary Keys for table(s) which have no natural PK

    Hello,
    At my organization, a person used the loader to bring in 4 tables which have no natural PK's. The user is using BI Studio to demo to upper management. He wants to be able to get down to a single row returned, but the table(s) don't appear to have anything unique, and the data pulled from the warehouse has no timestamps, and only dates. Since there can be multiple occurrences of case names, supervisor names, worker names, case numbers, dates, etc. I have no idea how to get anything for sure down to a unique single row returned and this table has no other table in relation to it:
    Name Null Type
    APPROVAL_PERIOD VARCHAR2(50)
    PAGE_NUMBER VARCHAR2(50)
    SERVICING_AGENCY VARCHAR2(50)
    ELIGIBILITY_OVERRIDES_1 VARCHAR2(50)
    SERVICE_AUTH_OVERRIDES_1 VARCHAR2(50)
    SUPERVISOR VARCHAR2(50)
    ELIGIBILITY_OVERRIDES_2 VARCHAR2(50)
    SERVICE_AUTH_OVERRIDES_2 VARCHAR2(50)
    WORKER VARCHAR2(50)
    ELIGIBILITY_OVERRIDES_3 VARCHAR2(50)
    SERVICE_AUTH_OVERRIDES_3 VARCHAR2(50)
    TYPE_OF_OVERRIDE VARCHAR2(50)
    CASE_NUMBER VARCHAR2(50)
    CASE_NAME VARCHAR2(50)
    CC_PROGRAM VARCHAR2(50)
    PERIOD_BEGIN DATE
    OVERRIDE_REASON VARCHAR2(50)
    OVERRIDE_VERSION VARCHAR2(2)
    APPROVED_DATE DATE
    If anyone has some advice on how to proceed with this data I would appreciate it.

    Data model normalization is usually different for data warehouses.
    Data often is denormalized purposely.
    To get "unique" rows you have to aggregate data one or another way.
    Work with OLAP/BI is oriented rather on aggregations of facts by dimensions, versus looking to individual rows in fact table.
    Aggregations are usually done by BI Studio automatically when user slices and dices, a fact column will be either summarized, or max'ed or aggregated otherwise.
    Getting down "to the row" may make sense when user wants to go (drill through) to original data that came from OLTP database.
    Usually it is required for investigations or like that.
    Normally OLAP/BI applications do no go that deep and manipulate aggregated data on more high level.
    He wants to be able to get down to a single row returnedWhat is a reason for that? What will change if he will see that same worker had multiple interactions for a case for one day?
    Worker  Case       Date
    Joe Doe SC12345 2013-02-07
    Joe Doe SC12345 2013-02-07
    Joe Doe SC12345 2013-02-07
    Joe Doe SC12345 2013-02-07instead of normally aggregated result
    Worker  Case       Date           Count
    Joe Doe SC12345 2013-02-07  4Edited by: Mark Malakanov (user11181920) on Feb 7, 2013 12:22 PM
    If user still want to drill through, a drill through query needs to be specified and send to OLTP database where this data was originated from.
    For above it should be like:
    select w.WorkerName, c.Case#, i.Timestamp, ... other details
    from Workers@OLTP w
    join Cases@OLTP c on c.worker_id=w.worker_id
    join Interactions@OLTP i on i.case#=c.case#
    where w.WorkerName='Joe Doe' and c.Case#='SC12345'
    and TRUNC(i.Timestamp)=TO_DATE('2013-02-07');Edited by: Mark Malakanov (user11181920) on Feb 7, 2013 12:22 PM
    Edited by: Mark Malakanov (user11181920) on Feb 7, 2013 12:35 PM

  • We have two iphones and only one ipad.  We want to be able to use "find my iphone" for both phones, which have separate apple ids.  How do we get our ipad to accept this?

    We have two iphones and only one ipad - no mac.  We want to be able to use "find my iphone" for both phones.  How do we get the ipad to accept two iphone accounts?  icloud is enabled on all three devices. 

    Also, be aware of the following:
    The "Find my..." function is pretty much useless if the device is in the hands of a thief.  All that is necessary is for the thief to connect to any computer with iTunes and "Restore as new."
    The only real protection you have is with the personal information on the device rather than the physical device itself.  Something as small as an iPod/iPhone should have a strong 8-digit (or longer) password AND be configured for automatic wipe in the event of ten consecutive incorrect password entries.

  • Vendor Returns for SLED materials which are blocked

    Hi All,
        We have certain materials for which Shelf Life has been expired. Using QA07, we have blocked these materials. Now we need to return those materials to vendor. We tried creating return PO. While doing MIGO (using 161 mov type ), it is showing the error "SLED 09.06.2011 of batch A has been exceeded".
    Please let us know how to return those material to vendor from blocked stock.
    Regards,
    Rosh

    Hi,
    It depends if vendor is ready to accept the expired materials then we return it to vendor.
    If this is not the same then we have to keep it blocked (Transfer from unrestricted to blocked stock, MvT - 344) for that time till we destroy (scrap) it. And once we have decided to scrap it then we do Goods Issue using MvT 551.

  • How to find forms which have associate a DFF

    Hi all,
    I need to look for all forms with a DFF associate, but I don't know how to looka for it.
    I try to made a "find" from my unix machine but it doesn't work.
    Any idea about it?
    Thanks,
    bpf

    Hi,
    Every form having a DFF would have the DFF definition under the WHEN-NEW-FORM-INSTANCE (fnd_flex.define('Items')) where the item name and the DFF name are associated. Please get the FMT file which is the ASCII format of FMB. I am not very sure whether the fnd_flex.define(dff_name) is shown in FMT. Please open one of these and check. Thereafter grep on this should help.
    Thanks

  • BAPI for material creation which returns the new material number

    Hi,
    I need a single BAPI or a remote enabled function module to create a material which would return the new Material number generated.
    Regards,
    Tanveer S.

    Hi
    if this scenario should occur:
    run BAPI_MATERIAL_GETINTNUMBER  and get next material number
    run BAPI_MATERIAL_SAVEDATA and get an error when creating.
    Is there a way to rollback the internal number range?!
    ROLLBACK WORK doesn't seem to work and, if the  BI_SAVEDATA returns with the error, the next try will have the material number X+1, although X  was never used.

  • Standard Bapi for Create Materials

    Hi all
    I need to  know how is the bapi standard that i need to use for create, modify materials. We need to execute this bapi from XI system...
    I want to know the name of bapi and how to use it!!
    BR

    Hello Jose,
    The BAPI BAPI_MATERIAL_SAVEDATA is used to create/Change a material data.
    On how to use BAPI you can refer the following thread (it is with JAVA).
    /people/ramganesan.karuppaiah/blog/2006/12/14/material-creation-bapi-access-in-webdynprojava
    Hope this helps
    Regards,
    Arif Mansuri

  • Making programs for nokia phones which have symbian operating system

    hi
    I want to make program for nokia phones.I wrote a program for pc general application and i want to change it for mobile phones. Please inform me about how to make program for mobile phones step by step?
    thanks for your replies.

    frknml
    If your PC application is in java and suitable for the limitations of CLDC / MIDP, I really don't see any barrier -- of course, you may have to sacrifice much of the layout and possibly some of the functionality. Hard to say without knowing exactly what you have in mind.
    Simple core java classes require no conversion and can be adopted into your mobile app. MIDlet is the basic application class, roughly (only roughly) corresponding to Applet for larger platforms.
    So... I'm assuming that you're already reasonably famililar with the java language and syntax, and have a worked with a code editor and / or IDE. If that is the case, I would suggest you download and install NetBeans (if you don't already have it) and work through some of the mobility tutorials.
    www.netbeans.org/downloads/
    The javadocs for jsr-118 (included with NB) will also help. More complete docs and code samples are available in plenty, google java j2me CLDC MIDP sample codes.
    For Nokia-specific features, you may want to download the Nokia SDK and integrate it into NetBeans. Series 60 SDK 2.0 for Symbian OS is available at
    http://software.techrepublic.com.com/download.aspx?docid=78818
    (and many other places)
    But I strongly recommend that you focus on device-independent applications, and use device-specific features only where absolutely necessary.
    Hey - I'd never used java before (I do have experience in various other programming languages) and I had a centimetre-inch convertor up and running on my Motorola handset just 2 days after installing NetBeans.
    You know java, you may do better :-)
    All the best, Darryl
    Note: Download WTK 2.5 separately and integrate into NetBeans, the WTK 2.2 which comes bundled with NB has a few bugs :-(

  • I want know the RFC or BAPI for Vendor details which gives customise lfa1

    Hello Experts,
    I want to fecth the Supplier information from SAP server to PDM server (non sap) using RFC call.But the LFA1 have some customised fields..
    1) I want the RFC or BAPI which Gives the supplier details with customised fields in LFA1.
    2) How Can I code In the PDM server??I mean How can I call In the PDM script??
    Please send me how to write a script and code of the script??
    Thanks In Advance
    Preethi

    hi,
    use BAPI_VENDOR_GETDETAIL
    A.

  • Unable to get cells for the columns which have no data in cross-tab report

    Hi friends,
    I am developing a cross-tab report.
    Let's take an example to explain the problem.
    Here is the XML file i am using
      <?xml version="1.0" ?>
    - <!--  Generated by Oracle Reports version 6.0.8.11.3
      -->
    - <MODULE1>
    - <LIST_G_SCHEMECODE>
    - <G_SCHEMECODE>
      <SCHEMECODE>171091</SCHEMECODE>
      <AMOUNT>0</AMOUNT>
      <ASSET_TYPE>Govt Guarantee</ASSET_TYPE>
      <MARGIN>0</MARGIN>
      <AMOUNT_SECURED>0</AMOUNT_SECURED>
      <VALUE_OF_SECURITY>0</VALUE_OF_SECURITY>
      </G_SCHEMECODE>
    - <G_SCHEMECODE>
      <SCHEMECODE>171091</SCHEMECODE>
      <AMOUNT>0</AMOUNT>
      <ASSET_TYPE>Loans To Govt</ASSET_TYPE>
      <MARGIN>0</MARGIN>
      <AMOUNT_SECURED>0</AMOUNT_SECURED>
      <VALUE_OF_SECURITY>0</VALUE_OF_SECURITY>
      </G_SCHEMECODE>
    - <G_SCHEMECODE>
      <SCHEMECODE>171093</SCHEMECODE>
      <AMOUNT>0</AMOUNT>
      <ASSET_TYPE>Govt Guarantee</ASSET_TYPE>
      <MARGIN>120</MARGIN>
      <AMOUNT_SECURED>0</AMOUNT_SECURED>
      <VALUE_OF_SECURITY>0</VALUE_OF_SECURITY>
      </G_SCHEMECODE>
    - <G_SCHEMECODE>
      <SCHEMECODE>171093</SCHEMECODE>
      <AMOUNT>0</AMOUNT>
      <ASSET_TYPE>Loans To Govt</ASSET_TYPE>
      <MARGIN>0</MARGIN>
      <AMOUNT_SECURED>0</AMOUNT_SECURED>
      <VALUE_OF_SECURITY>0</VALUE_OF_SECURITY>
      </G_SCHEMECODE>
    - <G_SCHEMECODE>
      <SCHEMECODE>*171095*</SCHEMECODE>
      <AMOUNT>0</AMOUNT>
      <ASSET_TYPE>Govt Guarantee</ASSET_TYPE>
      <MARGIN>100</MARGIN>
      <AMOUNT_SECURED>0</AMOUNT_SECURED>
      <VALUE_OF_SECURITY>0</VALUE_OF_SECURITY>
      </G_SCHEMECODE>
      </LIST_G_SCHEMECODE>
      </MODULE1>Now I want SCHEMECODE in rows and ASSET_TYPE in columns.
    And the each ASSET_TYPE column is to be divided into 2 sub-columns (MARGIN,AMOUNT_SECURED).
    I am able to achevie this.
    The problem is that ,for the schemecode 171095, since there is no data for ASSET_TYPE "Loans To Govt",no cells are generated for this SCHEMECODE and ASSET TYPE.
    But the requirement is to generate blank cells.
    If needed i will send the template at xml files also.

    try this, there must be simpler one i guess...
    1. take a form field, and make its type as number. Paste the below one <?xdoxslt:set_variable($_XDOCTX,'v1',2)?>
    2. now take a table with as below,
    A l B |
    C l D1 l D2 l E1 l E2 l
    observe that i. A, C are in one column
    ii. cell B is on top of D1, D2
    iii. we have no cell on top of E1 and E2 cells
    iv. 'l' represents the wall of the cell :)
    A: <?horizontal-break-table:1?> SCHEMECODE
    B: <?for-each-group@column:G_SCHEMECODE;ASSET_TYPE?> <?ASSET_TYPE?> <?end for-each?>
    C: <?for-each-group:G_SCHEMECODE;SCHEMECODE?> <?xdoxslt:set_variable($_XDOCTX,'v1',2)?> <?SCHEMECODE?>
    D1: <?for-each-group@cell:current-group();ASSET_TYPE?> <?MARGIN?> <?xdoxslt:set_variable($_XDOCTX,'v1',xdoxslt:get_variable($_XDOCTX,'v1')-1)?>
    D2: <?AMOUNT_SECURED?> <?end for-each?> <?end for-each?>
    E1: <?for-each@column:xdoxslt:foreach_number($_XDOCTX,1,xdoxslt:get_variable($_XDOCTX,'v1'),1)?>
    E2: <?END FOR-EACH?>
    3. If you are confused gimme your email id, i will pass the template. But you should add credits to me.. :)

Maybe you are looking for

  • Time Machine Backups of Pages file cannot be opened by Pages

    I just restird a backup of a Pages file from my Time Machine backup volume.  It's not a Pages file!  Finder jusy says it's a document and if I double click it, a folder is created with the same name as the file with a number appended.  There are seva

  • My computer and itunes all of a sudden does not recognize my iphone

    my itunes and computer all of a sudden will not recognize my iphone....i connect them with my cable and it says my apple mobile device service is not set up ....but i just used it not that long ago...i don't know what has changed or how to fix it

  • Segmentation Fault when connecting to SQL*Plus from Applications tier

    Hi Everyone - I am currently in the process of upgrading a client from 11.5.10.2 to 12.1.1 (eventually 12.1.3) on a OEL x86-64 server. I have laid down the software stack and followed all of the requirements as per the Installation manuals and 761566

  • ECCS - Combining statutory and management reporting thru ECCS

    Hi, We use ECCS for Company based consolidations. Our statutory reports are from ECCS and Management reports are from PCA. We want to combine these 2 and use ECCS for both kinds of reporting. However, the challenge we have is we don't have the PC in

  • Additional Software

    Most irritating that I have to disable the possibility to download/install Chrome or other program when I only want to install Flash Player. If this continues I stop with downloading Flash Player and even will minimize the use of Adobe programs. Jan