How to create reference, when an instance is created through  interface

Hi All,
How to create reference, when an instance is created through  interface.
Regards,
Lisa

hi
good
http://help.sap.com/saphelp_nw2004s/helpdata/en/c3/225b5c54f411d194a60000e8353423/content.htm
http://help.sap.com/saphelp_nw2004s/helpdata/en/c3/225b5f54f411d194a60000e8353423/content.htm
/people/jocelyn.dart/blog/2006/06/28/getting-started-with-abap-oo-for-workflow-using-the-ifworkflow-interface
THANKS
MRUTYUN

Similar Messages

  • How we can see when the condition records created.

    Hi,
    How we can see when the condition records created ( Valid from and Valid to ) ? And also how we can see the changes made in the Condition records?
    Regards,
    jyothi.

    Hello,
    you can display the condtion records in transaction VK13.
    Here you have the posibillity to display the changes of the condtion records.
    Please goto VK13
    > Enter your selection criteria
       > Enviroment
          > changes
    But you can also create a condtion list. and the you can display more than one condition record:
    Please have a look at the transation V/LD - Pricing Report
    For example: conditon list 14 for taxes.
    Here you get an overview of tax condtions.
    I hope that the information are helpful.
    Regards
    Claudia
    If you are satisfied with the answer, please give Reward Points.

  • How can you see when an event was created?

    Is there a way to see when an event was created in a calendar?

    However, this will have no legal standing - it is not a proof and it trivial to fake. Only carefully set up digital signatures (set up in particular ways) have legal standing (varies by country).

  • Can't create folder when saving docs; can create on desktop but can't move

    This is boggling. When I choose "save" or "save as" for the first time in Word or Excel, and then "create new folder," it asks me to name the folder, and then tells me it can't create it. The error simply says "Could not create folder." So I created a new folder on the desktop, which worked fine, but when I tried to drag it into the folder I wanted it to live in, I got a pop-up that said "You cannot copy some of these items to the destination because their names are too long for the destination."
    1) There is only one item - an empty folder.
    2) The name of the folder is "blah" -- which is in no way too long.
    What the heck is happening? This only started today.

    I just went through your instructions, and the DU window says that it found a bunch of things that need repairing, but won't repair them.
    ??? What on earth is going on? Here's the text that was in the details window:
    Repairing permissions for “Home Base 150 GB”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "usr/bin/lppasswd", should be -rwxr-xr-x , they are -rwsr-xr-x .
    Warning: SUID file "usr/bin/lppasswd" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/quota" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/ipcs" has been modified and will not be repaired.
    Warning: SUID file "usr/sbin/traceroute6" has been modified and will not be repaired.
    Warning: SUID file "usr/sbin/vpnd" has been modified and will not be repaired.
    Permissions differ on "usr/bin/rlogin", should be -rwsr-xr-x , they are -r-sr-xr-x .
    Warning: SUID file "usr/bin/rlogin" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/rsh" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/su" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/at" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/atq" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/atrm" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/batch" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/chfn" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/chpass" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/chsh" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/newgrp" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/passwd" has been modified and will not be repaired.
    Permissions differ on "usr/libexec/dirhelper", should be -rwxr-xr-x , they are -r-xr-xr-x .
    Permissions differ on "usr/share/man/man1/atq.1.gz", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "usr/share/man/man1/atrm.1.gz", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "usr/share/man/man1/batch.1.gz", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "usr/share/man/man8/halt.8.gz", should be -r--r--r-- , they are lr--r--r-- .
    Warning: SUID file "usr/bin/top" has been modified and will not be repaired.
    Warning: SUID file "Applications/Utilities/Activity Monitor.app/Contents/Resources/pmTool" has been modified and will not be repaired.
    Warning: SUID file "Applications/Utilities/Keychain Access.app/Contents/Resources/kcproxy" has been modified and will not be repaired.
    Permissions repair complete
    Help?

  • How to update data when primary key is set through for update cursor

    Dear friends,
    I have tried to update data in the table through forms using cursor for update and i have given the plsql i have used please help me where i do mistake.
    DECLARE CURSOR EMP IS
    SELECT EMPNO,EMPNAME,FATHERNAME,COMMUNITY,SEX,BILLUNIT,BIRTHDATE,RLYJOINDATE,RETIREMENTDATE
    FROM PRMAEMP WHERE BILLUNIT=:CTRL.BILLUNIT AND SERVICESTATUS='SR'ORDER BY DESIGCODE,SCALECODE
    FOR UPDATE;
    BEGIN
    GO_BLOCK('EMP_DETAILS');
    SYNCHRONIZE;
    FOR I IN EMP
    LOOP
    I.BILLUNIT:=:EMP_DETAILS.BILLUNIT;     
    I.EMPNO:=:EMPNO;
    I.EMPNAME:=:EMPNAME;
    I.FATHERNAME:=:FATHERNAME;
    I.COMMUNITY:=:COMMUNITY;
    I.SEX:=:SEX;
    I.BIRTHDATE:=:BIRTHDATE;
    I.RLYJOINDATE:=:RLYJOINDATE;
    I.RETIREMENTDATE:=:RETIREMENTDATE;
    DOWN;
    END LOOP;
    COMMIT;
    END;
    your help is needed immediately

    DECLARE CURSOR ABC IS
       SELECT EMPNO,
              EMPNAME,
              FATHERNAME,
              COMMUNITY,
              SEX,
              BILLUNIT,
              BIRTHDATE,
              RLYJOINDATE,
              RETIREMENTDATE
    FROM PRMAEMP
    WHERE BILLUNIT=:CTRL.BILLUNIT
    AND SERVICESTATUS='SR'
    ORDER BY DESIGCODE,SCALECODE
    FOR UPDATE OF COMMUNITY;
    V_EMPNO           PRMAEMP.EMPNO%TYPE;
    V_EMPNAME         PRMAEMP.EMPNAME%TYPE;
    V_FATHERNAME      PRMAEMP.FATHERNAME%TYPE;
    V_COMMUNITY       PRMAEMP.COMMUNITY%TYPE;
    V_SEX             PRMAEMP.SEX%TYPE;
    V_BILLUNIT        PRMAEMP.BILLUNIT%TYPE;
    V_BIRTHDATE       PRMAEMP.BIRTHDATE%TYPE;
    V_RLYJOINDATE     PRMAEMP.RLYJOINDATE%TYPE;
    V_RETIREMENTDATE  PRMAEMP.RETIREMENTDATE%TYPE;
    BEGIN
       GO_BLOCK('EMP');
       SYNCHRONIZE;
       OPEN ABC;
       LOOP
          FETCH ABC INTO .... /*yOU NEED TO MENTION YOUR VARIABLES HERE*/;
          UPDATE PRMAEMP
          SET BILLUNIT= :EMP.BILLUNIT,
              EMPNO= :EMPNO,
              EMPNAME= :EMPNAME,
              FATHERNAME= :FATHERNAME,
              COMMUNITY= :COMMUNITY,
              SEX= :SEX,
              BIRTHDATE= :BIRTHDATE,
              RLYJOINDATE= :RLYJOINDATE,
              RETIREMENTDATE= :RETIREMENTDATE
          WHERE CURRENT OF ABC;
          EXIT WHEN ABC%NOTFOUND;
       END LOOP;
       CLOSE ABC;
    END;
    COMMIT;
    END;Cheers
    Sarma.

  • How do you reference the current version of DIAdem through an automation reference?

    I need a way to find out which version of DIAdem is active. REading the registry doesn't help, because DIadem simply registers subkeys and doesn't keep track of multiple versions. Can I do this via the DIAdem API? Thanks.

    Hi DecaGregg,
    Yes, you can query which version of DIAdem you have on the other end of an OLE Automation Server connection. Use the ToCommand server's "IntegerVarGet" method and one of 3 internal DIAdem variable names to get the information you want. Try double-clicking on the VBScript attached below from Windows Explorer to see what it looks like from a text-based program.
    If you are controlling DIAdem from LabVIEW, there is a built-in VI in the LabVIEW-DIAdem Connectivity VIs that does this version querying for you.
    Have fun,
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments
    Attachments:
    DIAdemVersion.VBS ‏1 KB

  • How to detect when new record is created?

    How can I detect when new record is created in PA30? For example, a newly create record for infotype 6 (address).
    Can I get the information in PCL4?

    Hi Irene,
    the field PAnnnn-AEDTM, nnnn is the infotype number, will give you the date when the record was last changed.
    Not sure if you can precisely get the date when the infotype was created. I dont feel the need to read cluster form the same.
    Regards,
    Pulkit

  • How to get notified when changes happen on Hyper-V host or VMs

    Is there a way to get notified on Hyper-V host or VM changes? Our intention is to notify the system-administrators on any changes.
    1. How to get notified when new VM is created (or deleted) on Hyper-V.
    2. How to get notified when any memory/CPU/disk is added (or deleted) on any VM(s).
    In general: 
    - Get notified when any changes happens to Hyper-V host.
    - Get notified when any changes happens on any VMs.
    Our target servers are Windows Server(2008, 2008 R2, 2012, and 2012 R2)
    We tried to get the notification using "Event Viewer" on different Windows servers (2008, 2008 R2, 2012, and 2012 R2)
    We were able to get event-logs only on one of our 2012 R2 server as described below on creation/deletion of VMs (on another 2012 R2 server, we did not got any such event, Is there any setting required on host computer to get Hyper-V event-logs in "Event
    Viewer"?)
    Log Name:      Microsoft-Windows-Hyper-V-VMMS-Admin
    Source:        Microsoft-Windows-Hyper-V-VMMS
    Date:          12/18/2014 1:21:45 AM
    Event ID:      13002
    Task Category: None
    Level:         Information
    Keywords:      
    User:          SYSTEM
    Computer:      HPHyper-V.COMPUTERNAME.lab
    Description:
    A new virtual machine 'TestVM' was created. (Virtual machine ID A0FED305-7B1A-4BB5-952C-BA9634ACDA45)
    Log Name:      Microsoft-Windows-Hyper-V-VMMS-Admin
    Source:        Microsoft-Windows-Hyper-V-VMMS
    Date:          12/17/2014 10:57:01 PM
    Event ID:      13003
    Task Category: None
    Level:         Information
    Keywords:      
    User:          SYSTEM
    Computer:      HPHyper-V.COMPUTERNAME.lab
    Description: The virtual machine 'TestVM' was deleted. (Virtual machine ID A0FED305-7B1A-4BB5-952C-BA9634ACDA45)

    Thanks for your reply,
    Just to make it more clear:
    In our environment we have enabled Hyper-V on following Windows servers: 2012 R2, 2012, 2008 R2, 2008. The environment is very dynamic, VMs are getting created and deleted very frequently. Our intention is to get notified by any means on VM creation/deletion,
    currently we are relying on event-logs (we are OK with any different mechanism for such notification if there exists, i,e other than event-logs)
    We were able to get event-logs only on few of our 2012 R2 server on creation/deletion of VMs. On another 2012 R2 server, we did not got any such event (do we need to make some settings on 2012 R2 to get events? If yes, what are those settings).
    Also we are not getting any such event of VM creation/deletion on our Windows Server 2012, 2008, 2008 R2. Is there any setting required on hese host computer to get Hyper-V event-logs in "Event Viewer" for VM creation/deletion?

  • What is FCHU Create reference for check from payment document?

    Hi,
    I need some help on this T-code FCHU Create reference for check from payment document.
    1) I've post check payment. Do I need to do anything on FCHU, before I review the check register FCHN?
    2) When we should use this t-code FCHU?
    3) What is the purpose of this T-code FCHU?
    Please clarify my doubts. Please provide me step by step on this if possible. Thanks

    Hi,
        all check entries are ... report from table of list ... Issued Checks FCHU - Create reference for check.
        FCHU    Create Reference for Check .(RFCHKU00) to transfer the check number into the invoice document.
    to transfer check# to field Assignment, Reference or Reference 3.
    Exp:Step 1 - Go to ta F110 and get House Bank
    Account ID
    Step 2 - Run programm FCHU
    Regards
    Sridhar

  • How to reference the class-instance, created in parent class.

    Hi, I have following scenario. During compilation I am gettting error message -- "cannot resolve symbol - symbol : Variable myZ"
    CODE :
    under package A.1;
         ClassZ
         Servlet1
              ClassZ myZ = new ClassZ;
    under package A.2;
         Servlet2 extends Servlet1
              myZ.printHi();
    How to reference the class-instance created in the parent class?

    some corrections ...
    under package A.1;
         ClassZ
         Servlet1
              init()
                   ClassZ myZ = new ClassZ;
    under package A.2;
         Servlet2 extends Servlet1
              myZ.printHi();

  • How do I reference the instance in a constraint on an object table?

    I want to create a unique constraint that involves the result of a deterministic member function.
    I can do it just fine if I create table with a column of the object type:
    drop table test_table1;
    drop table test_table2;
    drop type test_type;
    create type test_type as object (
         alpha varchar2(30),
         member function get_beta return varchar2 deterministic
    show errors;
    create type body test_type as
         member function get_beta return varchar2 deterministic is
         begin
              return 'Beta';
         end;
    end;
    show errors;
    create table test_table1 (
         test_instance mattk.test_type,
         beta varchar2(4000) as (test_type.get_beta(test_instance)),
         constraint test_table1_pk primary key (beta)
    insert into test_table1 (test_instance) values (test_type('Alpha'));
    commit;
    insert into test_table1 (test_instance) values (test_type('Gamma'));
    commit;As I said, this works just fine, and the second insert statement produces the following error:
    insert into test_table1 (test_instance) values (test_type('Gamma'))
    ORA-00001: unique constraint (MATTK.TEST_TABLE1_PK) violatedHowever, I'd really like my table to be an object table.
    If I do that:
    create table test_table2 of test_type;How do I then reference the object instance that the row represents?

    I've got it all worked out now. Thanks everyone for the helpful advice.
    I changed the type definition slightly. I added an Attribute for Beta, in addition to keeping the deterministic member function.
    drop table test_table2;
    drop type test_type;
    create type test_type as object (
         alpha varchar2(30),
         beta varchar2(30),
         member function get_beta return varchar2 deterministic
    show errors;
    create type body test_type as
         member function get_beta return varchar2 deterministic is
         begin
              if (self.beta <> 'Beta') then
                   raise_application_error(-20000, 'Beta is not properly set.');
              end if;
              return 'Beta';
         end;
    end;
    show errors;
    create table test_table2 of test_type;
    alter table test_table2 add (
         constraint test_table2_pk primary key (alpha, beta)
    create unique index test_table2_idx1 on test_table2(test_type.get_beta(object_value));
    insert into test_table2 values (test_type('Alpha', 'Beta'));
    commit;
    insert into test_table2 values (test_type('Gamma', 'Beta'));
    update test_table2 t set t.beta = 'BETA';
    insert into test_table2 values (test_type('Delta', 'Delta'));Correctly produces the following errors:
    insert into test_table2 values (test_type('Gamma', 'Beta'))
    ORA-00001: unique constraint (MATTK.TEST_TABLE2_IDX1) violated
    update test_table2 t set t.beta = 'BETA'
    ORA-20000: Beta is not properly set.
    ORA-06512: at "MATTK.TEST_TYPE", line 5
    insert into test_table2 values (test_type('Delta', 'Delta'))
    ORA-20000: Beta is not properly set.
    ORA-06512: at "MATTK.TEST_TYPE", line 5The presence of the unique index over the deterministic member function guarantees that function will be called on any insert or update, which gives it the opportunity to error out if the attribute is not properly set.
    The reason I was interested in doing this is because Oracle does not support constant attribute values.
    Again, thanks everyone for the helpful replies.

  • How to fix crashing when PDF and procedure for cross reference?

    I'm using Frame 8.  When I try to PDF my book, Frame crashes.  I have tried PDFing the individual chapters, but that didn't work.
    Also, I'm trying to create either a cross reference or hyperlink.  I have a paragraph that says "For more information, see the Setup section in Chapter 1"  The Setup section in chapter 1 is a heading 4.  I've tried using the instructions in the Frame help, but I don't understand them, and I don't know whether I need a hyperlink or a cross reference.  Can I get simpler explanation and how-to?
    Thanks!

    Several things could be causing the crashing during the PDF creation process.
    1. Have you applied the MS hotfix mentioned here?
    http://blogs.adobe.com/techcomm/2009/07/repost_hotfix_for_framemaker.html
    2. In your PDF Setup, make sure that you have Tagged PDF turned off and in the Links panel enable "Create Named Destinations for All Paragraphs".
    Try it again and also make sure that you have applied all of the FM8 patches in sequence.
    You can use either cross-references or hypertext links to create the jumps, though cross-refs are easier to do and maintain.
    1. To insert a cross-ref to the Chapter 1 Setup section, you first would need to have Chapter 1 open along with the document that you are currently working on.
    2. At the location where you want to insert the cross-reference, select the Special > Cross-Reference menu option.
    3. For the first time that you use a cross-reference, you have create a format for it. In your case the "For more information, see the" and "section in" are constant strings and the section name "Setup" and "Chapter 1" are the variables.
        a) Click on the "Edit Format" button in the Reference section towards the bottom of the window. This will open a new dialogue window allowing you to create a format for use.
         b) In this window, give the format a name so that you can easily identify it, such as "More info in Chapter section".
         c) Then you have to enter in the "Defintion" line what you want the cross-ref to say, which could be (without quotes) "For more information, see the <$paratext> section in <$paranum[Chapter]>." The items in the angled brackets are building blocks used by FM to pick up content from the specified destination when you make the cross-ref. The first one <$paratext> specifies to grab the content of the paragragh that you point to (in this case it should be "Setup" section heading. The <$paranum[Chapter}> item will grab the autonumber value from the Chapter tag (or use whichever one that you have for chapter numbering at the start of each chapter).
         d) Once you're satisfied with your format, click on the Add and then Done buttons. This will save thgis format in the cross-ref catalog.
    4. To actually insert the cross-ref, select the target document (e.g. Chapter 1) from the drop down list for "Dcoument:".
    5. Then under the Source Type (the down arrow below the Document), make sure that you have Paragraphs selected.
    6. In the left column you will see the paratags available in the Chapter 1 document.
    7. Pick the paratag type that contains the Setup section title (heading 4 ?).
    8. In the right-hand column you should then see all of the heading 4 tags in Chapter 1.
    9. Select the Setup in this column.
    10. Check that the Format line shows the one that you created earlier ("More Info in Chapter Section") and then click on the Insert button.
    You're done.
    If you don't like the formatting or it's picking up the wrong content, then open the cross-ref dialogue again and edit the format to get what you want.

  • Howe can I tell when there are no references to an object?

    Hi all,
    Is there any way for me to know when there are no references to an object without using finalize()?
    I want to pool created objects when it is safe to do so.
    finalize() won't work since it is called only once for every object instance.
    Regards,
    Marcus

    If you are trying to establish an object pool by placing the objects back in the pool when there are no references to the object, then I am afraid you are out of luck.
    If there were no references, then you would not have a "handle" on the object to be able to manipulate it in any way (like putting it back in the pool).
    If you are talking about something else, then the classes in java.lang.ref.*, might be of use.
    If you are really trying to pool objects, then you should have some sort of "close" method in the objects that is called when they are no longer needed and can be returned to the pool.

  • Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Same problem here (no graphics in header or footer) and the problem has been reported months ago. It is another bug/feature lost when Apple moves from 09 to the iCloud-compatible versions.  Complain to Apple, you may have better chance than me and they may finally listen to their users....

  • How to programmatically set initial password when a user is created in OID

    We are using the odihragent synchronization process to automatically create users in OID when an employee record is created. We would like to set the initial password for the newly created user to their last name + the last 4 digits of their SSN.
    The odihragent process is successfully creating the user in OID and populates the last name and the last 4 digits of the SSN in OID. According to an open SR I have with Oracle, we cannot use the odihragent process to set the initial password because any time the employee record is updated, the synchronization process will reset the password to last name + SSN. They have recommended that we use a pl/sql plug-in to set the password using the WHEN_ADD plug-in procedure.
    I am new to using OID and plug-ins and the examples provided in the Developer's Guide are limited.
    I would like to know if anyone else is using plug-ins or another process to set initial passwords when a user is created? If you are using plug-ins would you be willing to share a code sample?

    I am surprised that I have not received any responses... Surely there are others who are experienced with programmatically setting passwords when new users are programmatically created. Does anyone have any pointers on how to best accomplish this?

Maybe you are looking for

  • I cannot find FaceTime in my iPad Mini.

    I just bought ipad mini yesterday but it seem facetime and imessage has a problem. I cant find facetime on my ipad and i cannot activate my imessage it keeps on saying i entered wrong username/password. Ive tried like a hundred times but still its no

  • 2007B AR downpayment request (no invoice) acct setup for Payment Advance

    I compared 2007A and 2007B.  In 2007B there has AR downpayment REQUEST not invoice and the Admin>Setup>Financials>GL Account Determination>tab Sales there is no "Payment Advance" account field need to be setup like 2007A.   I found it from GL Acct De

  • Converting a pdf file to jpeg

    I want to copy some photographs currently held in pdf to another format such as jpeg. i tried copying a photograph from pdaf into a word document and it appeared with a full page black border line.  Copying photographs in jpeg I do not have this prob

  • Essbase API Custom Function 11.1.2.1

    I recently decided to start playing around with the Essbase Java API to see if I could write a custom function that overwrites a subvar. I found the createSubstitutionVariable command is already in the API. I wrote a MaxL script that registers a new

  • Different results for the semantically the same queries

    Hi, I'm encountering a very odd problem. Before providing an XQuery code, I will ask on the abstract level. I have an XQuery module with my own functions defined. Then in my main query I import that module and execute one function from there. I get l