Identify Datasources.

Hi gurus,
            Well i got some standard R3 Transactions in MM and it would be really fantastic is someone could take time to help me  identify the respective datasources:
1).MBLB - Stock Provided to Sub Contract Vendor
2)MMBE - Stock Overview                                   ( Guess i can use 0IC_C03 Cube)
3)MB51  -  Material Document List
4)MB52  -   W/H Stock
5)MC.1  -   Plant Stock Evaluation.
6)MB5M -  Shelf Life
Manythanks
Arun

Hi,
Pls Check the following link for MM :
http://help.sap.com/saphelp_nw2004s/helpdata/en/ed/62073c44564d59e10000000a114084/frameset.htm
Please look into this tables and their relationship.
http://www.erpgenie.com/abap/tables_mm.htm
Hope this helps,
Regards
CSM Reddy

Similar Messages

  • Identify datasources for Product ID

    Hi All,
    is there any specific table to identify for the specific datasource linked to the particular info Object.
    In CRM I need to pull the data from the table CRMC_SRU_REFOBJ and the field is PRODUCT_ ID.I was little confused to identify the datasources.
    Can u pls help on this,
    Thanks,
    Ram.

    Hi Ram,
    In the source system (CRM in this case) you have the tables ROOSOURCE and ROOSFIELD which contains information about all datasources
    in the system. The table ROOSFIELD shows the fields that belong to a particular datasource. Maybe these tables are of help to you.
    Best Regards,
    Des.

  • Need to identify Datasource for master data 0CRMVERSION

    Dear Experts,
    I required to load master data for 0CRMVERSION (CRM Plan Version). However could you please help to get suitable datasource for this object.
    Thanks in advance!
    Best Regards,
    Khader

    Hi,
    Any master data source will exist with its name(i.e with name _ attr/text).
    So you can search at your source side at RSA5 and look for data source 0CRMVERSION_ATTR or TEXT.
    As my guess there won't be data source. because 0crmversion is plan indicator,
    If exist data source then you will find at source side RSA5 other wise you may need to go with custom data source. About source table of 0CRMVERISON you can check with CRM team.
    Thanks

  • Generic DataSource using function module

    Hello experts,
    I created a generic dataSource using copy of function module RSAX_BIW_GET_DATA. It is syntactilly correct. But when I execute  and debug associated generic DataSource in RSA3, this generic function module could not identify DataSource(i_isource) and update mode(i_updmode).
    Could you please answer what went wrong?
    I also created by using copy function module RSAX_BIW_GET_DATA_SIMPLE. I did not find above such problem. The generic DataSource is executed fine in this case.
    Thanks in advance,
    Zak.

    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c062a3a8-f44c-2c10-ccb8-9b88fbdcb008
    /people/p.renjithkumar/blog/2009/10/07/generic-datasource-creation-using-function-module

  • How to use SEARCH-API provided by portal30 default schema

    I want information about the search api provided by the
    default portal30 schema.
    How can i use that for my specific requirement.
    i want to manipulate it's search limits
    is it possible ???
    Can i customize the specification provided in this api

    Hi,
    about the addDataSource using the Java API, for now you have to disable the security
    in order to add the data source using the MapViewer client API.
    You can do that editing the MapViewer config file:
    <mv_security enforce_sec_role="false" />
    Assuming that you have added your data source, and you have rendered some map,
    you can get the attribute information using the "identify" methods of the
    MapViewer client API.
    1) To identify one individual geometry:
    String [][] result = mapviewer.identify(dataSource,table_name,columns,
    geometry_column,srid, x, y);
    where: "columns" contains the table attribute names that
    you want to retrieve
         x,y represents the device coordinate.
    2) To identify geometries inside a rectangle:
    String [][]result = mapviewer.identify(dataSource,table_name,columns,
    geometry_column,srid, xlowleft,ylowleft,
    xupright,yupright,false);
    where the rectangle coordinates are defined by xlowleft,ylowleft,
    xuprigth, and yuprigth values in device unit.
    3) The resulted String array contains on the first row the attribute
    names, and on the remaining rows the attribute values for each geometry.
    int nlin = result.length; // return the number of lines
    int col = result[0].length; // number of columns
    To get the attribute names:
    // attribute names
    Object []tableattrs = new Object[ncol];
    for(int j=0;j<ncol;j++)
    tableattrs[j] = result[0][j];
    To get the attribute values:
    Object [][]tablevalues = new Object[nlin-1][];
    for(int lin=1;lin<nlin;lin++)
    tablevalues[lin-1] = new Object[ncol];
    for(int col=0;col<ncol;col++)
    tablevalues[lin-1][col] = result[lin][col];
    Regards.

  • Mapping with source fields

    We are having characteristics keyfigures in SAP BW.We have to identify these fields in R/3 i.e. source fields and source tables.But we are unable to match some keyfigures and characteristics in R/3.What approach we have do.Mean if we are unable to find some characteristics and keyfigures in R/3 what we have to do and how to we mapping?what extraction we have to take?what approach we have to do

    Hi Sam and Ramesh,
    These reports are coming to Portal via Bw only.
    And we dont have access other client (X client) BW systems and they are not giving design document also.They are giving only R/3 sytem copy and we are able to see reports in web based portal.Based on Portal reports we identified Characteristics and Keyfigures.And some characteristics and keyfigures we are mapped with R/3 source fields and Source tables.And these are not standard reports and all are custom report.And there is no use of businee content.Based on these information we have to develop reports from scratch mean from starting i.e. identifying KFs and char's and mapping fields with R/3 here I have doubt we are unable to map some fields with R/3 what we have to do?what approach we have to take.How we identify datasource.what extractor method we have to follow.
    Please give ur suggestions.What we have to approach

  • How to use MapViewer API?

    Hi,
    I have a problem that is acturally regarded to java programming. I want to use MapViewer JavaBean-Based API. I did the preparing work described in Mapviewer doc §4.2.
    I saved the demo jsp page "mapclient.jsp" in my own application folder (under oc4j\j2ee\home\default-web-app). The other jsp pages written by myself can be displayed. But this mapclient.jsp can not be retrieved. "HTTP 500 internal server error The page cannot be displayed." It seems that I don't have J2EE container that contains the MapViewer service.
    I also changed the codes of mapclient.jsp. I use
    import oracle.spatial.mapclient.MapViewer;
    MapViewer mv = new MapViewer("http://localhost ...");
    It does not work, either. "The page cannot be displayed."
    I don't know how to invoke the MapViewer service. I use oc4j standalone. I don't know how to get the error message, either.
    I hope somebody can give me some suggestions. Thanks in advance.

    Hi,
    about the addDataSource using the Java API, for now you have to disable the security
    in order to add the data source using the MapViewer client API.
    You can do that editing the MapViewer config file:
    <mv_security enforce_sec_role="false" />
    Assuming that you have added your data source, and you have rendered some map,
    you can get the attribute information using the "identify" methods of the
    MapViewer client API.
    1) To identify one individual geometry:
    String [][] result = mapviewer.identify(dataSource,table_name,columns,
    geometry_column,srid, x, y);
    where: "columns" contains the table attribute names that
    you want to retrieve
         x,y represents the device coordinate.
    2) To identify geometries inside a rectangle:
    String [][]result = mapviewer.identify(dataSource,table_name,columns,
    geometry_column,srid, xlowleft,ylowleft,
    xupright,yupright,false);
    where the rectangle coordinates are defined by xlowleft,ylowleft,
    xuprigth, and yuprigth values in device unit.
    3) The resulted String array contains on the first row the attribute
    names, and on the remaining rows the attribute values for each geometry.
    int nlin = result.length; // return the number of lines
    int col = result[0].length; // number of columns
    To get the attribute names:
    // attribute names
    Object []tableattrs = new Object[ncol];
    for(int j=0;j<ncol;j++)
    tableattrs[j] = result[0][j];
    To get the attribute values:
    Object [][]tablevalues = new Object[nlin-1][];
    for(int lin=1;lin<nlin;lin++)
    tablevalues[lin-1] = new Object[ncol];
    for(int col=0;col<ncol;col++)
    tablevalues[lin-1][col] = result[lin][col];
    Regards.

  • Activating BC For 0FIGL_O02

    Hi,
    Please Help me.
    Activating BC For 0FIGL_O02.
    need to chk for datascources FI_Gl4.
    thanks

    Hi Dinesh,
    I have done it, now
    <b>0FIGL_O02</b> datascource is 0FI_Gl_4
    <b>BW activities</b>
    Activate desired info providers - done
    Identify datasources required - done
    Identify new vs. existing infoobjects - done
    Identify infoobjects that will be master data - done
    Confirm existing infoobjects are not adversly affected - <b>not yet</b>.
    Replicate datasources -  <b>help needed</b>
    Activate the infosources & transfer rules - <b>help needed</b>
    Activate the update rules - - <b>help needed</b>
    Append additional fields if necessary to structure - not now.
    Create infopackages - intial and delta - - <b>help needed</b>
    Perform initialization extractions - - <b>help needed</b>
    Create process chain
    <b>R/3 activities</b>
    Identify datasources required - 0FI_GL_4
    Activate master datasources - Transfered datascource - transport released
    Activate transactional datasources - - <b>help needed</b>
    can you please give me steps, i am totally new to this.

  • 2LIS_03_BF, 2LIS_11_VAHDR and PP question

    I'm deriving a report & need following:
    1) Inventory - Stock in transit: For this calculation I require issuing & receiving plants. I get receiving/issue plant as a single field (UMWRK) in 2LIS_03_BF, but I want bifurcation between receiving & issue plant & not a single field. Is there any other field in 2LIS_03_BF which gives bifurcation?
    2) PP - Production Plant: As per ECC logic I need to identify Special procurement type(MARC-SOBSL) for the Material/Plant combination. Pass WERK & SOBSL from MARC to T460A ( with following restriction MARC-BESKZ <> "E"). Get WRK02 from T460. Do we have a standard datasource which gives MARC-SOBSL, MARC-WERK, MARK-BESKZ & T460-WRK02?
    3) SD: I need to derive Sales order Qty with restrictions on VBUK-CMPSB, VBAK-VTWEG and VBUK-GBSTK. I've identified datasource 2LIS_11_VAHDR as this points to header data. I get VBUK-CMPSB and VBAK-VTWEG but VBUK-GBSTK I'm not getting in 2LIS_11_VAHDR. Do I have any other option to enhance 2LIS_11_VAHDR & accommodate VBUK-GBSTK through code or any standard datasource or functionality is available?

    Hello
    1) 2LIS_03_BF clearly gives you the receiving plant and the issuing plant. For eg if you are doing plant to plant transfer there will be 2 entries in 2lis_03_bf , one for issue and one for receiving. You can bifurcate the receiving plant and the issuing plant by using either process key (BWVORG ) or debit credt (SHKZG)  (H stands for issue & S stands for receipt).
    2) 0MAT_PLANT_ATTR  provides you the plantwise specila procurement type
    3)  you will get  VBUK-GBSTK in the standard source 2LIS_11_VASTH . You will have to combine the data at the BW level
    Regards
    Gajesh

  • Step by step reports creation

    Hi,
    We are doing one migration project i.e. already it is production to some sompany.We have to do develop exactly and we have no system access and document we have only portal access and SAP R/3 data.
    We have identified infoobects characteristics and keyfifures and we mapped charstics with source field mapping.We identified datasources and extractors also and we identified infocubes and ods and multiproviders also.we have to develop 70 reports.What next step we have to take .Can anyone explain in detail.What next steps we have to do step by step in detail level.
    Sridhar

    Dear sridhar k  ,
    You have to check out the pros and cons before
    creating report
    -Whether the business had the necessary skills to
    complete the task
    -The complexity of the reports
    -The sensitivity of data
    -Using report painter/writer
    - whether to use SAP Query
    -the difference between inner and outer joins and also,
    table access to reconcile the data before signing off
    the reports.
    Again, it depends on your business.
    How to generate reports through BEx
    http://help.sap.com/saphelp_nw04/helpdata/en/9d/76563cc368b60fe10000000a114084/frameset.htm
    Tools for creating Reports
    http://help.sap.com/saphelp_nw70/helpdata/EN/f1/0a55dfe09411d2acb90000e829fbfe/frameset.htm
    Abab programs for creatinfg Reports
    http://www.geocities.com/mpioud/Abap_programs.html
    Hope it helps
    regards
    Bala

  • I have activated the standard datasource in r/3? how to identify active?

    Hi All,
    i have activated the standard datasource in r/3 ? and i have replicated the same in the bw system and in the source system of r/3 i have replicated it and i can find the data source there ? but how to identify whether the datasource is active in the bw system or not ?
    i cant see a tick mark on the data source does it determine it is active?
    Pls guide me on this?
    thanks
    Pooja

    Hi all,
    I am working on 3.5
    And where can i find the datasource is green or not? it is not assigned to the source system i can identify it?
    i am not able to rightclik on the datasource and see the active version.
    When i right click on the data source i can see this option:
    1. assign infosource
    2. maintain datasource in the source system etc?
    Thanks
    Pooja

  • Identifying the target system using FM extraction in a Generic Datasource

    Hi all,
    We are using a Generic datasource using FM for extraction from R/3 system to BW system. This Function module picks data from a Z table! After each successful delta extraction from the table, a flag field is set to identify whether the data is pulled or not.
    We are about to use BO data services which is connected to the R/3 system to fetch data. For capturing delta records after the BW run has happened, the table can be added a new flag field to pull delta for Data services.
    Is there any way to identify which target system's extraction is running particularly in the function module (for e.g., if BW extraction is triggered or BODS extraction is triggered) so as to set the respective target flag in the Z table?
    Regards,
    vivek

    Leandro,
    The calling program of your FM should have a local variable I_RLOGSYS which is populated with the BW server ID.
    If you don't know how to access a variable in a program that is in call stack using field symbols, search SDN.
    I haven't tested this, so you may have to explore a little.
    Good luck.

  • Identifying connection/datasource by application name, machine and user

    Hi,
    I am implementing a Java app to gather few connection related statistics. As part of this, in the JDBC layer, I want to identify the connection by app name, os/app user and client's machine name. I searched for all the ways an oracle app would set these attributes. I have some queries around them, will be grateful if somone can respond and clarify them. Here are my findings/observations
    *1. DataSource.setConnectionProperties() with v$session param and values for program, osuser, machine*
    It appears setting the v$session.program, v$session.osuser and v$session.machine on datasource is a preferred way to set the client information for v10.2 and higher. Is my assumption that this is the predominant/preferred way oracle apps would set the client information valid ?
         Properties props = new Properties();
         props.put("v$session.program", "OracleApp");
         props.put("v$session.osuser", "human");
         props.put("v$session.machine", "dale");
         ds.setConnectionProperties(props);*2. OracleConnection.setClientData() with key-value*
    There is a method setClientData but available only with OracleConnection as class referrence (needs cast). It seems to be a deprecated in 10g. Does anyone know why is this deprecated and replaced by what ? Hope it is not deprecated due to JDBC 4.0 spec, which is not supported by Oracle
         OracleConnection conn_ = (OracleConnection) con;
         conn_.setClientData("ApplicationName", "OracleApp");
         conn_.setClientData("ClientHostname", "dale");
         conn_.setClientData("ClientUser", "human");*3. Connection.setClientInfo() with ApplicationName, ClientHostname, ClientUser*
    Apparently, JDBC 4.0 has exposed api-s to set/get clientInfo values that I am looking for. But surprisingly, oracle doesn't seem to have correctly implemented these methods. I get SQLClientInfoException for the above values and when I do DatabaseMetaData.getClientInfoProperties I get empty Properties object. Does this indicate 0 keys are supported ? Or is there any special setting/configuration I have to executed to allow setting of keys?
         ResultSet clientInfoProperties = con.getMetaData().getClientInfoProperties();
         while (clientInfoProperties.next()) { // next() returns false
              System.out.println(clientInfoProperties.getString(1));
         Properties properties = new Properties();
         properties.put("ApplicationName", "OracleApp");
         properties.put("ClientHostname", "dale");
         properties.put("ClientUser", "human");
         con.setClientInfo(properties);
         // throws java.sql.SQLClientInfoException and e.getFailedProperties() returns
         // {ClientUser=REASON_UNKNOWN, ApplicationName=REASON_UNKNOWN, ClientHostname=REASON_UNKNOWN}
         // and e.getMessage() returns Invalid or unsupported name for clientInfo.*4. Other ways to set/get client info using connection or datasource ?*
    Apart from the above, are there other ways to set/get client info on connection or datasource objects ? how do oracle apps in general handle this kind of need.
    If someone has some insight on my queries, will appreciate if you can spare some time replying to this thread.
    Thanks
    Rajesh

    bumping it up. Can anyone help ?
    -Rajesh

  • How to identify enhanced datasources

    Hello All,
    Is there a way in BW or R/3 to identify any standard content datasources that have been enhanced?  If so, is it also possible to display the individual fields that have been added as part of the enhancement?

    Hi,
    This can be done by going into tcode CMOD.
    In R/3, go to this tcode and give the Project name created for BW enhancements. In this project, go to components.
    You would find 4 customer exits.
    EXIT_SAPLRSAP_001(transactional datasources)
    EXIT_SAPLRSAP_002(master data datsources)
    EXIT_SAPLRSAP_003
    EXIT_SAPLRSAP_004
    Inside these exits, you would find your datasources. These datasources are standard datasources that have been enhanced. Here the fields that are being filled up in e_t_data are the enhanced fields for your extractors.
    Edited by: Rahul K Rai on Jul 9, 2010 4:36 PM

  • How to identify if there is standard datasource available for a table/view

    hi
    Is there anyway we can identify or know if a particular table/view  in r/3 already has a standard datasource on it .
    we are working on tax/insurance data   table - J_3GVERSI
    is there any std. datasource available for this table .
    we have requirement in our report - insurance data report  which gets data from the above table.
    thanks

    Hi,
    Enter your table name in SE11 and click ''Display'. Then click ''Where-Used-List'' and select Programs, Structures etc.,
    You can see wherever your table has been used.
    Carry out this activity in ECC.
    REgards,
    Suman'

Maybe you are looking for