Searching for "Functionality"

Hi All Experts,
I am working in BW, with technical knowledge... ( like creation of various info-providers, loading data from different sources.. etc. etc )
Now I am coming across terms like FUNDS CENTER, COST CENTER.. etc. etc...
Can anybody guide me / give me the useful links, wherein i can explore the functionality of these things.
Warm Regards
Vinay

As rightly pointed out by our friend, these are all business terms used across varied SAP modules. The basiz terminology you can get it from help.sap.com site. Follow the link below.
http://help.sap.com/saphelp_nw70/helpdata/en/3d/5fb13cd0500255e10000000a114084/frameset.htm
Whenever need to understand the complete flow for different modules, better to take help from functional guy to speed up teh process.
Regards
Pankaj

Similar Messages

  • Search for Function Name in multi seq files

    HI,
    How can you search for a Fucntion Name (calling a CVI dll) in multi seq files?
    The normal search function is looking for step name only....
    so, as an example
    Step Name:  Test No. 1
    Specify Module (CVI type step):  

    Have you tried using the Find in Files feature of the sequence editor? What version of TestStand are you using? I think it's been in the sequence editor since at least 3.1.
    If you have tried this feature, but are having trouble getting the results you want, please provide more details about what exactly you are trying to do and how it is not working.
    Hope this helps,
    -Doug

  • Search for function module

    Hi @all,
    I`m searching for a function module to load customer confirmation data (CRM 4.0 Add on SI, IPM) to license sales contracts.
    Does anybody know this interface?
    Kind Regards
    Oliver

    To load confirmation data I have used CRMXIF_ORDER_SAVE (The same used to create contracts).
    You should:
    --> on segment data-item-dates-data, load values for IPMCONFFROM, IPMCONFTO, IPM_EXC_DATE appointment
    --> on segment data-item-cumulation_item-data, load quantities and values, with cumulation rule (Per Period or Inception To Date)
    I give you a tip: load a confirmation manually, then look with transaction SMW01 at the bDoc (BUS_TRANS_MSG type) that is generated.
    Bye
    Marco

  • Searching for function modul which insert adressdata bevor fm vendor_insert

    hello,
    i read many threads, but I find no solution.
    I want use the fm vendor_insert for a migration. But using the fm vendo_insert require an existing address entry.
    Is there any central fm which create the whole address.
    regards
    Kim Werner

    Hi Mahesh,
    Very good questions.  Infact it's very difficult to answer all the questions.
    You can search many FAQs in net...
    If you have any specific questions related to single topic, Post message for each.
    I can send some of FAQ documents to u
    Answers
    1) Using Index like Field(1)-1st record field , Field(2) - 2nd record field etc... in Table control.. we can handle BDC
    2) BAPI will be programmed using OO concepts more.. and as Interfacing is more enhanced here than normal FM.
    etc...
    Regards,
    Manjunatha

  • What is the best method to parse a java file for function names

    st="class";
    while (StreamTokenizer.TT_EOF != tokenizer.nextToken ())
       if (StreamTokenizer.TT_WORD == tokenizer.ttype)
        if (tokenizer.sval.toLowerCase().equals(st.toLowerCase())){
        System.out.print (tokenizer.nextToken() + " "); //prints the class name on the console
        fileOut.print (tokenizer.sval + " "); //prints the class name to a file
    }The above program searches a .java file for classes. I want to modify it so that it searches for function names as well. After several hours of figuring out various ways to do it with StreamTokenizer, I still havnt found a way. There seems to be no way to go back, i.e. no previousToken method, in StreamTokenizer.
    Is it possible to do search for using StreamTokenizer, and are there easier ways of doing it?

    Simple string tokenizing isn't an effective way to do this. You probably want something like ANTLR.

  • I just bought an iPhone 4s. Now the search iphone function is not working. When I swipe the screen to the left, the search box appears but when I type what I want to search for, there is no action. Please help.

    I just got an iphone 4s. Now the search iphone function is not working. When I swipe the start screen, the search box shows up. But when I type what I want to search, there is no action. Please help.

    Try this...
    You will Not Lose Any Data...
    Turn the Phone Off... ( if it isn’t already )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear and then Disappear...
    Usually takes about 15 - 20 Seconds... (But can take Longer...)
    Release the Buttons...
    Turn the Phone On...

  • Search for records in a table on the basis of a function

    Hi,
    How is it possible to use a function as search criteria in a sql query ?
    For example, I have the following query :
    select a.job_name JOB_NAME, substr(a.job_name,instr(a.job_name,'.',-1)+1) as AUTNAME
    FROM autosys.job a
    where a.job_name like %PRD%' and a.command like '%dsjob%'
    and a.command not like 'substr(a.job_name,instr(a.job_name,'.',-1)+1)';
    This is now working because of the use of function "substr" on the right side of the query.
    How can I write the query so as to find the same result as using this function ?
    Can someone help me out on this ?
    Thanks

    Among other things, you have the quotes in the wrong place in the NOT LIKE predicate. As posted, you are searching for records where command does not contain the literal string substr(a.job_name,instr(a.job_name,'.',-1)+1). I don't think that is really what you are after. You need to concatenate the operators to the results of the SUBSTR function. Something more like:
    SELECT a.job_name job_name,
           SUBSTR(a.job_name, INSTR(a.job_name, '.', -1)+1) as autname
    FROM autosys.job a
    WHERE a.job_name LIKE 'HP.TM.%PRD.%' and
          a.command LIKE '%dsjob.sh%' and
          a.command NOT LIKE '%'||SUBSTR(a.job_name, INSTR(a.job_name, '.', -1)+1)||'%'; John

  • Search for a function module for deleting document originals (DMS)

    Hi,
    I'm searching for a function module to delete originals in documents (like manually with transaction cv02n). I'm only able to set an delete mark with the module 'BAPI_DOCUMENT_DELETE'.
    The module 'BAPI_DOCUMENT_CHANGE2' can only add new originals to an existing document. I need a possibility to delete all originals in an document without deleting the document itself.
    Has anyone an idea?
    Thanks.
    Jan-Christian Treusch

    Many thanks!
    That's especially the method I've searched for so long....
    best regards.
    Jan-Christian Treusch

  • How to search for a string in ALL Function Modules source code

    Hello,
    I want to search for the string "HELLO" in all FUNCTION MODULES source code(FM, no reports/programs).
    Is this possible? How?
    Cheers,
    Andy

    hi,
    Execute RPR_ABAP_SOURCE_SCAN to search for a string in the code ... Press where-used-list button on the program which takes to the function group or the function module where it is used ..
    Regards,
    Santosh

  • Why can't I find events with cmd-F? I can see the appointment I am searching for, but the search cmd-F function does not find it. Why is this. It used to work...

    Why can't I find events with cmd-F? I can see the appointment I am searching for, but the search cmd-F function does not find it. Why is this. It used to work...

    Why can't I find events with cmd-F? I can see the appointment I am searching for, but the search cmd-F function does not find it. Why is this. It used to work...

  • Search help(f4)  for function module input

    can we create a serch help for  function module input giving process

    Hello basichodary,
    You can encapsulate the function module within a program.  Include the search help in a parameter statement in the calling program and pass the parameter to the function module.  For example, suppose you want to have field i_carrid to have a search help.  Use the following code. 
    report  call_function_module.
    parameters p_carrid type s_carr_id matchcode object demo_f4_de.
    call function 'FUNCTION_MODULE'
       exporting
          i_carrid    = p_carrid
    Kind Regards,
    Rae Ellen Woytowiez

  • Cannot search for "@" symbol when using search function

    I am trying to create a calculated column which extracts the domain part of an email address. My problem is that no type of search formula (SEARCH or FIND) seems to be able to recognise the "@" symbol so I get an error stating that
    "The search TEXT provided to function 'SEARCH' could not be found in the given text"
    Even more bizarre is that if I do just a general search in my table (CTRL + F from inside Powerpivot) it cannot find @ symbols either. Could someone please explain why PowerPivot cannot search for the @ symbol (I haven't tested others) and whether there
    is a solution?
    The formula I was trying to use was:
    =SUBSTITUTE(A1, LEFT(A1,FIND("@",A1)),"")
    Obviously with A1 replaced by the column name of where my email data is stored.
    Any help would be much appreciated.
    Thanks.

    Both FIND() and SEARCH() should find the "@" in PowerPivot.
    I have done it many times.
    You probably have one row in your data set that doesn't contain "@".  That will cause the error you describe and if one row in a Calculated Column causes an error, every row has an error if you do nothing to account for it.
    Try wrapping your formula in an IFERROR([Your Formula], BLANK()).
    This should allow it to run successfully on valid rows and will show a blank on any rows that are causing problems.
    Once you identify the problem row (or rows) you can make a decision about how to deal with it.

  • TS1424 How do you fix a R6025 pure virtual function call error?  When I try to search for music, iTunes freezes & returns this message.

    How do you fix a R6025 pure virtual function call error?  When I try to search for music, iTunes freezes & returns this message.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Search for document function in Ipad Reader

    It seems that there's no such function.
    I refer to the possibility of searching for title or part of it.
    Am I wrong ?
    Thanks
    Livio

    Hi Livio,
    1. You can search in documents list for file names. Go to documents tab from, pull down the list in right pane and it will give a search bar. Just type in it and it will search through the list.
    2. You can search in the document for text in file. Tap on find icon in top toolbar (search icon). Just type your search text in it and press search.
    -Charu 

  • Cancel button functionality does not work--- while searching for G/l Acc

    HI SAP SRM Gurus,
    This is regarding an issue faced by the end user.
    For information my client is on WAS 6.4 Patch Level 155, SRM 4.0, EBP 5.0, SRM Server 5.0.
    In account assignment details..while searching for G/l account for the Account Assignment used at the time of creation of the shopping cart, if no G/l account is found, the ‘Cancel’ button functionality provided, does not work, however when
    G/l account(s) is/are found, then the ‘Cancel’ button functionality
    works properly.
    Kindly assist.
    Awaiting your reply in this regard.
    Thanks in advance
    Ankur

    Hi,
    Sound like a bug.
    Did you open an OSS ticket ?
    Kind regards,
    Yann

Maybe you are looking for