Using a function module i want to create another function module

Hi all,
        My requirement is by using a function module i want to create another function module(if needs modify action should also be done if i need this is for the created function module) and the main thing is that the function module which we are used to create is should be RFC enabled.
Thanks,
Vichu.

Hi,
You can do one thing... you write the BDC code in the function module name you are creating... so that if you call the function module in a program and execute that program and if you give the function module to be created in the selection screen of the program... in this way there is chance of creating another function module.
Hope this would help you.
Good luck
Narin

Similar Messages

  • Using two T lists i want to create a UI, from which user can make selection

    I want to create a UI in forms 6i, wherein there will be two T lists on the same canvas. I'll populate the left one from the record group and then make selections to the right one using four buttons in between.
    I'm using the add_list_element, delete_list_element, get_list_element_label, get_list_element_value built ins to do that. But it is not working properly. Giving a lot of forms errors.
    The same thing can be done in JDeveloper using a shuttle bean.
    An example of the UI that i want to construct :
    The kind of UI that i'm talking can be seen when we construct a new form manually, then we goto data block wizard. There we browse for a table and the wizard gives the list of the columns for that table, from this list selections can be done using the four buttons in the same way that i intend my form to do. This is the kind of UI i want to develop.
    I'm very new to development in forms. I'm sure you people at OTN will help me.
    Thanks,
    Abhishek.

    Hi Abhishek
    What is happening by these
    Copy(v_value, p_tlist_into); and
    ...This commans set list item value (list selection).
    The most simple way to move all elements between lists is to populate the target list from record group, and the to clear the source list. The lack of the given method - order of elements will be same, as in group.
    PROCEDURE Move_All_Elements (p_tlist_from VARCHAR2, p_tlist_into VARCHAR2) is
    v_value VARCHAR2(100);
    v_label VARCHAR2(100);
    v_index_from NUMBER;
    v_index_into NUMBER;
    v_count_from NUMBER; -- Count elements of tlist_out
    BEGIN
    --v_index_from := Get_List_element_count(p_tlist_from);
    -- Get_List_element_count never return zero!
    v_index_from := Get_List_Current_Index(p_tlist_from);
    if v_index_from = 0 then -- The source list is enpty
    --fnd_message.debug('elements=0, so return');pause;
    RETURN;
    end if;
    --v_index_into := Get_List_element_count(p_tlist_into);
    v_index_into := Get_List_Current_Index(p_tlist_into);
    if v_index_into = 0 then -- The target list contant only DEFAULT value
    --fnd_message.debug('no elements, so clearing the list');pause;
    clear_list(p_tlist_into);
    end if;
    v_count_from := Get_List_element_count(p_tlist_from);
    FOR i IN 1..v_count_from
    LOOP
    v_label := Get_List_Element_Label(p_tlist_from, i);
    v_value := Get_List_Element_Value(p_tlist_from, i);
    --Add_List_Element(p_tlist_into, v_index_into, v_label, v_value);
    Add_List_Element(p_tlist_into, v_index_into+i, v_label, v_value);
    -- The commands are lower in a loop are not necessary.
    -- The commands after the loop make too most.
    --Copy(v_value, p_tlist_into);
    --Delete_List_Element(p_tlist_from, i);
    --v_index_from := Least(v_index_from, Get_List_Element_Count(p_tlist_From));
    --v_value := Get_List_Element_Value(p_tlist_from, v_index_from);
    --v_value := Get_List_Element_Value(p_tlist_from, v_index_from + v_index_into);
    --Copy (v_value, p_tlist_from);
    --fnd_message.debug('done for one element');pause;
    --exit when v_label is null;
    END LOOP;
    clear_list(p_tlist_from);
    v_value := Get_List_Element_Value(p_tlist_into, v_count_from + v_index_into);
    Copy (v_value, p_tlist_into);
    EXCEPTION
    when others then null;
    END;

  • Using two T lists i want to create a UI, from which selections can be made

    I want to create a UI in forms 6i, wherein there will be two T lists on the same canvas. I'll populate the left one from the record group and then make selections to the right one using four buttons in between. I'm using the add_list_element, delete_list_element, get_list_element_label, get_list_element_value built ins to do that. But it is not working properly.
    I'm very new to development in forms.
    If anybody has developed such an UI in forms, please help me.
    Thanks,
    Abhishek.

    The kind of UI that i'm talking can be seen when we construct a new form manually, then we goto data block wizard. There we browse for a table and the wizard gives the list of the columns for that table. This is the kind of UI i want to develop. I hope the people at OTN would not dissappoint me.
    Abhishek

  • Create another partition in Windows

    Hi,
    I'm using Mac OS X Snow Leopard, and I installed Windows 7 using Boot Camp.
    I want to create another partition for Windows for personal files.
    How can I do that?
    I used some Windows applications such as Acronis but it was unable to identify partitions.

    NOT on the same drive!
    Buy a PC. People tend to do what you want (I don't but I only use 35GB for system under Windows and about same for a Mac OS X volume).
    Boot Camp and Windows on Mac is a one size fits all and only supports
    GPT 200MB
    EFI 128MB
    Mac OS HFS+
    NTFS
    4 total - MBR is a subset of GPT (all drives with GPT/GUID have at least a zero size MBR protective entry).

  • How to create another instance on linux without using dbca?

    I have an oracle database (or instance) named viton1 on my linux.
    Now I want to create another instance (or database) named viton2 on my linux without using dbca.
    I know I can create a database by runing a sql script : create database ......
    But my problem is:
    before I can run the script for create database, I must startup nomount database.
    Before I can startup nomount the instance, I have to connect the instance.
    So I do it:
    $sqlplus /nolog
    sql > conn sys/password as sysdba;
    sql >
    then I connected to viton1, that's not what I expected.
    In order not to connect to viton1, I set ORACLE_SID=viton2. Then it show error: insufficient privilege.
    Who can tell me the right way to create another database without using dbca?
    Thanks in advance.

    In $ORACLE_BASE/admin you should have a directory structure for the viton1 instance : create a similar directory structure for the viton2 instance.
    In the pfile subdirectory create the initviton2.ora file : you can copy it from initviton1.ora file and change all occurrences of viton1 to viton2.
    At OS prompt : export ORACLE_SID=viton2, then
    sqlplus /nolog
    conn / as sysdba
    startup nomount pfile=$ORACLE_BASE/admin/viton2/pfile/initviton2.ora
    then CREATE DATABASE.....

  • I want to create a dulicate server

    Dear all,
               I have win2012 R2 server. I have 15 user on it. I have terminal server and another database software over there. now the point of security I want to create another server. where all reflection must
    be done. please suggest me the way by which if one server failed then the all process/users should have to redirect to another server. what i have do for that? please suggest which kind of server I have to configure.and how to configure it,Thanks in advance

    I'd look at virtualizing these roles onto a two host setup. I'd ask them more over here about the hardware / configuration details.
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverhyperv&filter=alltypes%2Cnoreplies&sort=lastpostdesc
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • How to Create another program instance in iphone from a COPY previous proj

    Say I've created one program by starting Xcode afresh.
    Now I want to create another program using the previous program as a base, I copy and paste the project folder and rename it, unfortunately, when I run the program, it replaces the previous program in my iPhone.
    How do I tell xcode it's a new program ?
    Message was edited by: Bracer-J

    Thank you

  • How to create another partition on mac and restore from time machine

    I want to create another partition on my macbook running on OS X Yosemite. I want to recover a time machine back up on this partition. Basically this is a backup of my other old PC which I saved on a time machine external hard disk and now I want to create it as a new separate partition which I can log into to as opposed to continuous to connected to it via USB.
    Any advise on how I can do that?

    Hi Patrick,
    Thanks for the that great tip.
    In that time machine back up I have some applications for e.g. MS office etc and I wanted it to be like a virtual machine as such that I launch when I want to use the applications, see my data etc....I have bought parallels as that allows you to have multiple virtual machines on your laptop whether these are multiple mac images as time machine backups or linux, Microsoft Windows 7, 8 etc....
    Thats what I eventually want to do here...
    This feature that you provided is also of good reference for me in future.

  • I can't create another account in Mail!

    i have an existing @mac.com email account but i want to *create another Mail account* even thought i already have a @live.com email. I use my @mac.com email for ichat already, but when i try to sign in to Mail with that same account it says it cannot connect "check your password and username" but i am sure i putting the right information. I don't know whats happening.

    Hi PrepeF,
    Welcome to the forums.
    Instead of trying to add [email protected], try the same email address as me.com. ie [email protected]
    have you tried logging into the me.com website? if dose dose that work?

  • Need to create another index ?

    Hi,
    Using Oracle 9.2 I have a table STATS and an index STATS_IDX on the following columns in the order : Objectid, Stat_Hour, Parent.
    I now want to optimize queries that filter or sort on Stat_Hour. Do i have to create another index having just Stat_Hour or will Oracle use the existing index to optimize my queries that filter or sort on Stat_Hour ?
    Thanks
    Christian

    Christian,
    Since stat_hour is not the leading column of STATS_IDX, you might want to create another index where stat_hour is the leading key in case you want the query to center around stat_hour column.
    Please post the query plans with and without indexes if you try the recommendation.
    Shakti
    http://www.impact-sol.com
    Developers of Guggi Oracle - Tool for DBAs and Developers

  • HT2731 can I add another account to my I tunes libary or do I need to create another i tunes libary

    I have an i tunes account i want to create another account for my wife using the same libary how can i do this?

    exactly, or 30 or 40, depending on how many texts u want. be sure to get a plan that u wont go over on texts, thats what drives up the bill quickly. if your not sure on how many texts u have left, call 611 on your phone or call *DATA# and a text message will be sent to your phone.
    Message was edited by: bg23

  • How to create another table with an exisiting table

    Hi,
    I want to create another table on the top of an existing table, my existing table has few constraints and checks, i want to create another table which should copy all checks and constraints from existing table.
    for example;
    <p>
    create table temp
    </p>
    <p>
    (idx number primary key,
    </p>
    <p>
    publish varchar2(250) not null,
    </p>
    <p>
    address varchar2(250) not null,
    </p>
    <p>
    rent number check (rent &gt;=0))
    --<strong>Required output</strong>
    </p>
    <p>
    create table temp1
    </p>
    <p>
    as select * from temp
    </p>
    <p>
    where 1=2
    the structure of the table received as an output has the following structure:
    </p>
    <p>
    CREATE TABLE TEMP1
    </p>
    <p>
    </p>
    <p>
    IDX NUMBER,
    </p>
    <p>
    PUBLISH VARCHAR2(250 BYTE) NOT NULL,
    </p>
    <p>
    ADDRESS VARCHAR2(250 BYTE) NOT NULL,
    </p>
    <p>
    RENT NUMBER
    </p>
    <p>
    </p>
    <p>
    where i could not find primary key and check constraint but i can see not null check. Is there anyway that i could get the all checks when i create another table on the top of an existing table.
    </p>
    Best Regards,

    A CTAS (CREATE TABLE AS SELECT ...) probably isn't what you're looking for since that doesn't handle constraints.
    Depending on the Oracle version, you can probably use the DBMS_METADATA package to get the DDL for the table and then modify the DDL to create the copy, i.e.
      1* select dbms_metadata.get_ddl( 'TABLE', 'TEMP' ) from dual
    SQL> /
    DBMS_METADATA.GET_DDL('TABLE','TEMP')
      CREATE TABLE "SCOTT"."TEMP"
       (    "IDX" NUMBER,
            "PUBLISH" VARCHAR2(250) NOT NULL ENABLE,
            "ADDRESS" VARCHAR2(250) NOT NULL ENABLE,
            "RENT" NUMBER,
             CHECK (rent >=0) ENABLE,
             PRIMARY KEY ("IDX")
      USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS"  ENABLE
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS"You'd then just need to replace the "TEMP" with "TEMP1".
    Justin

  • Can I create another client in SAP BI?

    Hi,
    I have a BI system installed on client 150. I want to create another client for sandbox. Is it possible in BI? In R/3 I know it is possible.
    Regards,
    Shailesh Naik

    Hi,
    BI systems are client independent. So this split up will not serve the purpose of different environments. You need different boxes(hardware) for sandbox, Development &  quality testing. You shouldnt have multiple clients in same server. Multiple client are possbile R/3 as it is Client dependent, But BI system is client independent.
    Hope this is helpful.
    Regards
    Uday.

  • Create another table from existing table with distinct elements

    I have a table applying select clause on which gives following result.
    SQL> select *
    2 from BRANCH_MSTR;
    BRANCH_NO NAME
    B1 Vile Parle(HO)
    B2 Andheri
    B3 Churchgate
    B4 Sion
    B5 Borivali
    B6 Matunga
    B1 C.S.Pur
    B1 Shahidnagar
    B1 Shahidnagar
    I want to create another table ACCT_DTLS from this table which has only one column BRANCH_NO, but has only distinct elements.
    I tried this,
    SQL> create table ACCT_DTLS
    2 (BRANCH_NO)
    3 as
    4 select BRANCH_NO
    5 from BRANCH_MSTR;
    Table created.
    SQL> select 8
    2
    SQL> select *
    2 from ACCT_DTLS;
    BRANCH_NO
    B1
    B2
    B3
    B4
    B5
    B6
    B1
    B1
    B1
    9 rows selected.
    But its not working.

    HI Asit,
    try like this
    sql>create table table-name as (select distinct column-name from another-table);example
    SQL> create table temp_emp2 as (select distinct deptno from scott.emp);
    Table created.
    SQL> select * from temp_emp2;
        DEPTNO
            30
            20
            10

  • Want to burn another copy of IDVD a week later - no audio in preview

    First IDVD worked beautifully - I just want to create another copy - but when I preview it, there is no audio.

    I have discovered that the problem is orginating in IMovie. I will post a question there.

Maybe you are looking for

  • What is the latest version out? why does it not work on my phone?

    Firefox also force closes every time it is opened.

  • FAGLL03 and FBL5n do not tie

    Hello, Any help on the following question will be most appreciated. I am looking at an FI document. In FAGLL03, I see a value of $257,656.29 for example, but in FBL5n is see a value of $86,277.20 for example not $257,656.29. The general ledger view a

  • "Free goods functionality" - activate tab Conditions in PO

    Hi All! I made all the settings to use "free goods" facility (tcode MBN1 - every time I buy one material I have to buy a second material, different from the first). The only problem I have is that in ME21N for the second material (the "free" one) the

  • Business Content tab is empty in RSA1

    Hi all : I have installed Netweaver 2004s, with BI_CONT 702 SP4.  When I execute the transaction RSA1,   in the tree do not appear the BUSINESS CONTENT pushbutton, if I click in others pushbuttons,   appear BUSINESS CONTENT button, but under it, ther

  • Scans in Elements 12?

    Trying to figure out how to scan an image directly into Elements 12 (for Mac).  Just "upgraded" from 6 and can find no answers other than to go to Apple menu, scan in with Preview or Image Capture, save to desktop, then retrieve with Elements.  Reall