Record information of the Objects in OM

Hi All,
can any one tell me if create a relationship between objects, in which table the rec information stored.
Appreciate your early response.
Regards
Rajesh

Hi,
1. Go to SE16 table HRP1001 and press enter
2. You select the object type and object ID along with plan version and execute it will show you all relations for the object.
If you want to use it in a report then be sure to select the correct relationship using subtypes.
cheers
Ajay

Similar Messages

  • Checking the status of task records tied to the custom object 3

    We are using custom object 3
    There has been lot of configuration work done on this object.
    There is a checkbox on the UI. When a user will checks off the check box, a task record(s) is created depending on the condition.
    Is there a way for me to check the status on the task records and then set a field on the parent record i.e. custom object 3.
    Thanks,
    Nitika

    To whom are you speaking?

  • After recording text using the dragon dictation app, it is converted, it can be copied to the iOS system clipboard for use in any app, how does the user access the clipboard to retrive this information if it is no longer on the screen?

    after recording text using the Dragon dictation app, it can be copied to the iOS systme clipboard for use in any app, how does the user access the clipboard to retrive this information if it is no longer on the screen?

    You need to do a long-press in any data entry field, then select Paste.

  • PCD Audit : What information about the PCD objects are stored in the PCD?

    Folks,
    Need some information on the information stored in the PCD for audit purposes.
    Object = Any PCD object, typically iView, Page, Workset, Role, Group...
    1. Creation of any object - Should definately be present in the PCD
    2. Any modification including history - List of all actions on any PCD object - I am sure the last modification is tracked, but can we track every change to the object from creation?
    3. Deletion of any object? - This I am not sure of - Does the PCD store information about deleted object's like deletion time stamp and the user who deleted etc?
    Thank you...

    Hi,
    >>1. Creation of any object - Should definately be present in the PCD
    There is no doubt about this.
    >>2. Any modification including history - List of all actions on any PCD object - I am sure the last modification is tracked, but can we track every change to the object from creation?
       <b>AND</b>
    >>3. Deletion of any object? - This I am not sure of - Does the PCD store information about deleted object's like deletion time stamp and the user who deleted etc?
    There is no versioning concept in PCD right now, but ofcourse planned for future.
    So you cannot track the history and deleted objects, but there exists PCD Repository Manager in KM on which you can activate versioning. Check if this suites your needs. Never tried but logically ever PCD change should get versioned here.
    http://help.sap.com/saphelp_nw70/helpdata/en/76/a8934259a5cc6ae10000000a155106/frameset.htm
    Greetings,
    Praveen Gudapati

  • Identifying the previous updated record information

    hi ,,
    can any one help me that,,
    how can i identify the previous updated record information from any database table
    and also
    if i want to get the values from screen fields ....
    and based on that values i have to generate the smartform dynamically..
    i will explain my requirement u will get the issue..
    here in pa40
    whenever i changed the start date of pernr and after click on the save button one smartform should be generate..
    that smartform has to generate based on the pernr and start date ..
    so for this requirement i have to get the pernr and startdate from that pa40 screen or that corresponding database table
    so if we take that data base table at this time we should know the which record updated previously so we can retrieve that record entire information..
    so if we take that screen field values how can i get the values from pa40 screen to required smartform...
    i am struggling on this issue,,
    can any body help me
    pllss..

    To start: i had some difficulty in understanding your requirement... but i'll give it a shot anyway even though i'm not a crack on HR (stating that: i'm not a crack on anything for that matter)
    Sounds like you need to modify PA40 (either with a user-exit, BADI, enhancement-point or simply a modification) to capture the 'SAVE' and to trigger your smartform. Either way, most likely you will have the data you need (PERNR and STARTDATE).
    If useful, please hug me!

  • Capturing information from the Resource Object forms

    Hello,
    I'd like to capture information (dburl, dbdriver,username and password) from my resource objects to use in a class i'm developing through the API.
    However, I failed to find any methods in API to get this information... does anyone know how to retrieve this?
    Thanks in advance,
    Tomic

    Hi,
    I am not very clear about your question.The information below is usually store in IT Resource.If these information is store in IT Resource you can use tcITResourceInstanceOperationsIntf.
    What is your business drive for getting this information from resource object form.Can you explain me so that I can have better answer.
    Regards
    Nitesh

  • Need Information for Transferring the Object

    Hy To every I need ur help plz tell whats is the wrong thing em doing.
    I am sending a (MessageSerialize) Object Of org.jdesktop.jdic.desktop.Message through Socket problem is when i receive object the gets receive but the contents of objects doest not exists in the object which i have set before sending
    Em pasting my code here please help me
    **Server Code**_
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package com.communication.to.server;
    import com.printing.utility.*;
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.ObjectInputStream;
    import java.io.ObjectOutputStream;
    import java.net.ServerSocket;
    import java.net.Socket;
    import org.jdesktop.jdic.desktop.Desktop;
    import org.jdesktop.jdic.desktop.Message;
    * @author ABid
    * @Description This class is used to recieve Data/Files throug Socket From Server
    public class FileServer extends Thread {
    private ServerSocket serverSocket;
    public static void main(String argv[]) throws Exception {
    new FileServer();
    public FileServer() throws Exception {
    serverSocket = new ServerSocket(4000);
    System.out.println("Server listening on port 4000.");
    this.start();
    public void run() {
    while (true) {
    try {
    System.out.println("Waiting for connections.");
    Socket client = serverSocket.accept();
    System.out.println("Accepted a connection from: " +
    client.getInetAddress());
    Connect c = new Connect(client);
    } catch (Exception e) {
    class Connect extends Thread {
    private Socket client = null;
    private ObjectInputStream ois = null;
    private ObjectOutputStream oos = null;
    public Connect() {
    public Connect(Socket clientSocket) {
    client = clientSocket;
    try {
    ois = new ObjectInputStream(client.getInputStream());
    oos = new ObjectOutputStream(client.getOutputStream());
    } catch (Exception e1) {
    try {
    client.close();
    } catch (Exception e) {
    System.out.println(e.getMessage());
    return;
    this.start();
    public void run() {
    try {
    String workType = (String) ois.readObject();
    if (workType.equalsIgnoreCase("Attachments")) {
    String printDirectoy = "Attachments";
    Message ms = new MessageSerialize();
    ms = (MessageSerialize)ois.readObject();
    Desktop.mail(ms);
    ois.close();
    oos.close();
    client.close();
    } catch (Exception e) {
    e.printStackTrace();
    client COde*_+
    //This is code for sending Object
    public static void sendMessageToMail() {
    ObjectOutputStream oos = null;
    ObjectInputStream ois = null;
    //File file = new File("G://FileG.pdf");
    try {
    Socket socket = new Socket("localhost", 4000);
    oos = new ObjectOutputStream(socket.getOutputStream());
    ois = new ObjectInputStream(socket.getInputStream());
    //byte[] mybytearray = new byte[(int) file.length()];
    //FileInputStream fis = new FileInputStream(file);
    //BufferedInputStream bis = new BufferedInputStream(fis);
    //bis.read(mybytearray, 0, mybytearray.length);
    System.out.println("Sending...");
    oos.writeObject("Attachments"); // Type of Work here the String is used for Printing purpose
    //oos.writeObject("HP Deskjet 3900 Series"); // Name of the printer
    Message message = new MessageSerialize();
    //ms.setMessage(message);
    message.setBody("Hello");
    List toAdd = new ArrayList();
    toAdd.add("[email protected]");
    List attachements = new ArrayList();
    attachements.add("g://file.txt");
    try {
    message.setAttachments(attachements);
    } catch (Exception exception) {
    oos.writeObject(message);
    //oos.writeObject(file.getName());//name of the file
    //oos.write(mybytearray, 0, mybytearray.length); // file contents
    //oos.writeObject(so);
    oos.flush();
    oos.close();
    ois.close();
    } catch (Exception exception) {
    exception.printStackTrace();
    "Serialized Object Class "
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package com.communication.to.server;
    import java.io.IOException;
    import java.io.*;
    import java.io.Serializable;
    import java.util.*;
    import org.jdesktop.jdic.desktop.Message;
    * @author ABid
    public class MessageSerialize extends Message implements Serializable {
    public MessageSerialize() {
    Thanks in Advance
    Abid

    i made it like thisWhy?
    You posted that code on 11/09/2008 20:02 and asked why it wouldn't work.
    I told you why on 12/09/2008 08:48 (reply 2 of 8).
    So now on 12/09/2008 16:59 (reply 7 of 8) you've tried it again.
    Tell me why that wasn't just a complete waste of time.
    but doesn't work again
    Of course it 'doesn't work again.' It never did. It never will. Stop it. Why did you think it would work? After it didn't? After you started the thread to ask why? After I told you why?
    This is just bizarre.
    Now what will you say.Exactly what I said before. And I didn't say to extend Message. I told you why you can't do it that way.+
    OK?
    You have to construct a serializable class. You have to define the data you want serialized in that class. OK? In this case you want to transport data from a org.jdesktop.jdic.Message, so your new class will have to have the same fields and the same methods.
    Isn't that obvious?
    could you please mention i want to send files over network dont want to create them on disk through socket.This doesn't make sense either. You want files but you don't want them on the disk?
    You'll have to explain yourself better than that if you want assistance here.

  • Microsoft Access will not Sync to SharePoint - Publish Failed: The Object Could not be Committed to the Server

    I created a very simple Microsoft Access database with one table and one form. When I published it to SharePoint, everythng worked fine. It published succesfully and there were no errors. I continued to make enhancements to the database and when I attempted
    to sync to SharePoint, I got a message that the operation failed. I clicked OK and the issues table noted the following:
    Move to SharePoint Site Issues
    Issue
    Reason
    Object Type
    Object Name
    Field Name
    The object could not be committed to the server.
    Table
    Vendor Location Information
    The object could not be committed to the server.
    Form
    Add a New Vendor
    The object could not be committed to the server.
    Navigation Pane
    Navigation Pane
    The object could not be committed to the server.
    VBA Properties
    VBA References
    The object could not be committed to the server.
    Database Properties
    DBProps
    An error occurred while recording the local application status. Please re-synchronize with the Web application. No current record.
    <tfoot></tfoot>
    I thought this was weird so I downloaded the Assets database from Microsoft to determine if it was my database or something else. After it was downloaded and saved to my computer, I attempted to publish it to SharePoint and I got the same error.
    What is weird, though, is that if I use the assets web database template in SharePoint (the one that is preloaded), it works fine. Once I open that database it in Access though and click sync, I get the same error message.
    Does anyone know why this is happening?

    I tried it again this morning creating a completely new table / form and this is the error I get:
    Move to SharePoint Site Issues
    Issue
    Reason
    Object Type
    Object Name
    Field Name
    The object could not be committed to the server.
    Table
    VLI
    The object could not be committed to the server.
    Form
    ANV
    The object could not be committed to the server.
    Navigation Pane
    Navigation Pane
    The object could not be committed to the server.
    VBA Properties
    VBA References
    The object could not be committed to the server.
    Database Properties
    DBProps
    An error occurred while recording the local application status. Please re-synchronize with the Web application. No current record.
    <tfoot></tfoot>

  • I am not able to change the object after upgrade(SPAU Activity).

    HI All,
    I am not able to change the object after upgrade(SPAU Activity). Please any one can tell what is the reason with below details.
    You are not authorized to make changes
    Message no. 37202
    Diagnosis
    You have no authorization for the authorization object 'S_DEVELOP', which would allow you to change the screen concerned.
    There is also a second possibility:
    You want to edit a modified SAP screen in a customer system after an upgrate (SAP transport). The screen remains locked for editing until the new SAP version and the customer version have been aligned (Transaction SPAU).
    System Response
    Authorizations are assigned to users in profiles. Profiles are stored in the user master record.
    Procedure
    Comsult your system administrator.
    Thanks in Advance,
    Mahesh Devershetty

    Hi,
    Does the user who would like to change the screen have the authorisation
    for S_DEVELOP in his profile? Please run transaction /NSU53 after the
    failed authorisation. You will get an information which authorisation
    is missing.
    Additional please check if you have open entries in transaction SPAU for
    that object.
    If you couldn´t solve the issue I need an user to analyse it in your
    development system.
    That user needs all authorisation for development and has to be
    registrated as developer.
    The system uses the authorization object S_DEVELOP for Workbench objects
    can you please check your user master record whether it contains the
    required autorization or not.
    Please also ensure that modification adjustment is turned on as per note:
    197600  Switching the Modification Assistant off and on
    Aidan

  • DNS record ownership and the DnsUpdateProxy group

    I have a 2 x 2003 domain controller that have DNS and DHCP Services installed
    I was thinking of configuring DHCP to use a service account to update DNS records.
    If I set this, do the DHCP Servers need to be members of the DNSUpdateProxy security group for the service account to work?>

    I have to agree with John here. I don't think it's reasonable to just say 'ms told us so'. We need a
    technical before and answer is given. I have multiple DHCP servers and I use a security account on them to register the records and never use the
    DNSUpdateProxy Group and I have no problems. My thinking is this:
    Assume we are using Integrated Secure Zones in AD:
    Scenario 1:
    Windows DHCP server i registering records on behalf of clients
    Not a member of DNSUpdateProxy Group and not using dedicated account
    Records will have owner as dhcpserver$  and only that account can update
    This is a problem if that DHCP server fails
    Also, non Windows DHCP server with no AD account cannot update
    Scenario 2:
    Windows DHCP server i registering records on behalf of clients
    Member of DNSUpdateProxy Group and not using dedicated account
    Records will have owner as SYSTEM  and authenticated users can updated meaning any user or client on that domain
    No problem if that DHCP server fails as any other authorized DHCP server can update
    Non Windows DHCP servers can updated if they have a domain machine account
    Scenario 3:
    Windows DHCP server i registering records on behalf of clients
    Using a dedicated account
    Records added with owner same as this dedicated account
    Another DHCP server that also uses this same account can updated the records
    A non windows DHCP server that can use this account can also update the records
    Now, can someone from MS please clarify the technical reason they say that in Scenario 3, you must add the DHCP servers to the
    DNSUpdateProxy group ?
    http://technet.microsoft.com/en-us/library/cc780538(v=ws.10).aspx
    I guess this link didn't help?
    DNS Record Ownership and the DnsUpdateProxy Group
    "... to protect against unsecured records or to permit members of the DnsUpdateProxy group to register records in zones that allow only secured dynamic updates, you must create a dedicated user account and configure DHCP servers to perform DNS dynamic updates
    with the credentials of this account (user name, password, and domain). Multiple DHCP servers can use the credentials of one dedicated user account."
    http://technet.microsoft.com/en-us/library/dd334715(WS.10).aspx
    Just to add:
    Why is the DnsUpdateProxy group needed in conjunction with credentials?
    The technical reason is twofold:
    DnsUpdateProxy:
     Objects created by members of the DNSUpdateProxy group have no security; therefore, any authenticated user can take ownership of the objects.
    DHCP Credentials:
     Forces ownership to the account used in the credentials, which the DnsUpdateProxy group allowed to take ownership other than the registering client.
    Otherwise, the default process is outlined below, and this applies to non-Microsoft operating systems, too, but please note that non-Microsoft operating systems can't use Kerberos to authenticate to dynbamically update into a Secure Only zone, however
    you can configure Windows DHCP to do that for you.
    1. By default, Windows 2000 and newer statically configured machines will
    register their own A record (hostname) and PTR (reverse entry) into DNS.
    2. If set to DHCP, a Windows 2000, 2003 or XP machine, will request DHCP to allow
    the machine itself to register its own A (forward entry) record, but DHCP will register its PTR
    (reverse entry) record.
    3. If Windows 2008/Vista, or newer, the DHCP server always registers and updates client information in DNS.
       Note: "This is a modified configuration supported for DHCP servers
             running Windows Server 2008 and DHCP clients. In this mode,
             the DHCP server always performs updates of the client's FQDN,
             leased IP address information, and both its host (A) and
             pointer (PTR) resource records, regardless of whether the
             client has requested to perform its own updates."
             Quoted from, and more info on this, see:
    http://technet.microsoft.com/en-us/library/dd145315(v=WS.10).aspx
    4. The entity that registers the record in DNS, owns the record.
       Note "With secure dynamic update, only the computers and users you specify
            in an ACL can create or modify dnsNode objects within the zone.
            By default, the ACL gives Create permission to all members of the
            Authenticated User group, the group of all authenticated computers
            and users in an Active Directory forest. This means that any
            authenticated user or computer can create a new object in the zone.
            Also by default, the creator owns the new object and is given full control of it."
            Quoted from, and more info on this:
    http://technet.microsoft.com/en-us/library/cc961412.aspx
    More on this discussed in:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/6f5b82cf-48df-495e-b628-6b1a9a0876ba/regular-domain-user-uses-rsat-to-create-dns-records?forum=winserverNIS
    If that doesn't help, I highly suggest to contact Microsoft Support to get a definitive response. If you do, I would be highly curious what they say if it's any different than what I found out from the product group (mentioned earlier in this thread).
    And of course, if you can update what you find out, it will surely benefit others reading this thread that have the same question!
    Thank you!
    Ace Fekay
    MVP, MCT, MCSE 2012, MCITP EA & MCTS Windows 2008/R2, Exchange 2013, 2010 EA & 2007, MCSE & MCSA 2003/2000, MCSA Messaging 2003
    Microsoft Certified Trainer
    Microsoft MVP - Directory Services
    Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php
    This posting is provided AS-IS with no warranties or guarantees and confers no rights.

  • Details of database and status information of archived object can't be seen

    Hi
    I am trying to archive the ODS-0FIAP_O03 and the job overview(T.Code SARA) shows the status as finished. Attached screenshots show the statistics of written data objects and active records in spool. However when we display statistics(T.Code SARA ) , I do not see any details of database and status information of archived object.Please suggest where could the error be.
    Also let me know if you want to see the related screenshots.
    Will award high points.Thanks
    Reenu Lodha

    This could be an issue due to program error.
    Would you provide me the archiving object so as to find OSS notes if available.
    This is a common issue for most of the archiving objects..we do generally miss out the statistics..and that is after the modification in the program, this is ok.

  • Information on archiving object J_ISM_DMND

    Hi Everybody,
    Does anyone know where can I find information regarding  the MPS - Archiving object: J_ISM_DMND ?
    Right know we are not going to archive the object, but I want to know the basis, best practices, etc.  to plan a future archiving.
    Thanks,
    Anyela María Torres Sánchez

    hI,
    Archiving the sales quantity plan records: Selection
    The program RJKSDDEMAND_WRITE_TO_ARCHIVE (for writing the archiving object J_ISM_DMND) only archives the JKSDDEMAND records of a media issue if this media issue is contained in the issue sequence.
    While archiving three SAP notes will guide
    1. IS-M-SD-MS-SL-Q 1334771  Archiving of sales quantity plan records
    2. IS-M-SD-MS-SL-Q 1404597  Archiving Sales Quantity Planning records w/o issue sequence
    3.I S-M-SD-MS-SL-Q 1415506  Archiving the sales quantity plan records: Selection
    Regards,
    Saju.S

  • HT201272 can someone help me with this chat session.Font Size You are chatting with an Advisor now. This chat will be recorded. At the end of the session, you can print the transcript or request a copy via email. Privacy Policy Advisor [4:49 p.m.]: Hi, my

    Font Size
    You are chatting with an Advisor now. This chat will be recorded. At the end of the session, you can print the transcript or request a copy via email.
    Privacy Policy
    Advisor [4:49 p.m.]:
    Hi, my name is Jacob. It'll be just a moment while I review the comments you provided.
    Advisor [4:49 p.m.]:
    Hello Machelle, how may I assist you today?
    Customer [4:51 p.m.]:
    Can you please help me recover the new testament of the bible from media group. The have vanished.
    Customer [4:52 p.m.]:
    I need to recover the lost purchases I made from media group. I had all of the new testament.
    Advisor [4:53 p.m.]:
    Thank you for this information, I understand that you are missing some purchases. I do want to apologize for this inconvenience. I will be more then happy to look into  this for you.
    Advisor [4:53 p.m.]:
    Would you be able to provide your Apple ID? This is the email used to sign into the iTunes store.
    Customer [4:54 p.m.]:
    [email protected]
    Advisor [4:54 p.m.]:
    Thank you, one moment please.
    Advisor [4:56 p.m.]:
    Were these individual purchases? If so could you provide the name for each individual purchase?
    Customer [4:57 p.m.]:
    yes it the new testament books of the bible
    Customer [4:57 p.m.]:
    genesis etc...
    Advisor [4:58 p.m.]:
    I apologize, but I am not exactly familiar with the New Testament. Would you be able to provide these names for me so I can locate them on my end?
    Customer [4:59 p.m.]:
    Genisis Mark Matthew Luke John
    Customer [4:59 p.m.]:
    Exodus Levitus Numbers
    Advisor [5:00 p.m.]:
    Just a quick question, were these all audiobooks?
    Customer [5:00 p.m.]:
    Duetoronomy
    Customer [5:00 p.m.]:
    Yes from media group
    Advisor [5:00 p.m.]:
    Okay, are you currently on a computer with iTunes installed?
    Customer [5:01 p.m.]:
    yes
    Advisor [5:02 p.m.]:
    Unfortunately, audiobooks and ringtones are the only items on the iTunes store unavailable for re-download through iTunes in the Cloud. What I can go ahead and do is try and re-add these audiobooks back to your download queue for re-download. Please note if they have been removed or modified on the iTunes store they may not be available for re-download. Would this be okay?
    Customer [5:03 p.m.]:
    yes thank you!
    Advisor [5:03 p.m.]:
    Excellent, one moment please.
    Advisor [5:05 p.m.]:
    I apologize but after reviewing your account, it looks like we have already issued 3 exceptions for you to re-download your audiobooks in the past. Back on 02/23/2013. I apologize but we will be unable to do another exception for you. 
    Customer [5:06 p.m.]:
    that down load did include the new books of the bible that I had.
    Customer [5:07 p.m.]:
    that down load did not have the new testament books of the bible that I had
    Advisor [5:07 p.m.]:
    While reviewing the notes, this was issued to add all available audiobooks bought on your account. I again apologize but I will be unable to issue another exception to you. As the previous advisor did inform you to make sure to back up your files.
    Customer [5:08 p.m.]:
    the other advisor did not down load the new testament books. The advisor did not restore all of the books that I had originally brought.
    Advisor [5:10 p.m.]:
    While looking closer, the books that you are missing are no longer available to be re-downloaded. This is the reason why they were not added back to your download queue when he issued them. Unfortunately, as we do not handle the content on the iTunes store you will need to get in contact with the publisher of the content as they were the ones two remove or modify these books on the iTunes store. If you would like I can provide a link to their support site.
    Customer [5:11 p.m.]:
    yes they are I saw them.
    Advisor [5:11 p.m.]:
    They may have been modified by the content owner. This will be the reason why they were not added. As Apple does not control 3rd party content on the iTunes store. You will need to get in contact with them as we are unable to re-add this content back to your download queue.
    Customer [5:12 p.m.]:
    it is I just looked at it in the itunes store
    Customer [5:13 p.m.]:
    the material is still the same. The store does have it.
    Advisor [5:13 p.m.]:
    Machelle, if the items have been modified since you bought them, they will be unavailable for us to issue them back to you. You will need to get in contact with the providers for these books as they are the content owners and we do not have access to issue these back to you.
    Customer [5:14 p.m.]:
    the are still the same bible books that I purchased at the store.
    Customer [5:14 p.m.]:
    The audio books are the same. When I buy it again nothing will be different.
    Advisor [5:14 p.m.]:
    Machelle, I understand this. This is what our records are showing. When the previous advisor tried to re-issue them to you they were unable to as they have been modified on the iTunes store.
    Advisor [5:15 p.m.]:
    In order to receive further support for this issue you will need to get in contact with Media Group as they are the content providers for these audiobooks.
    Customer [5:15 p.m.]:
    I will buy them from another source. Don't say they have changed. The books are the same books I brought. They are at the store.
    Advisor [5:16 p.m.]:
    Machelle, Apple does not handle the content for 3rd party publishers on the iTune

    MoonSwan wrote:I've never heard of a validating editor but I was recently wondering what exists that could help me.  Aside from emacs, what should I search for to find one of these validating editors?
    You can use whatever tool you prefer - for someone already using emacs, emacs is a natural choice. Simple, easy to use online tools exist e.g. http://schneegans.de/sv/
    Just upload the file in question ('Validate by file upload' option) and click 'Validate':
    The '=' character cannot be included in a name. (723:10)
    <Terminal="Terminal">
    ^
    Googling 'xml validation' should give you some more tools / services if this one is not good enough.

  • How do I set up the "Objects and Attachments"

    Hi .... I'm new at WorkFlow (and SAP for that matter) and have inherited a WF that is already built.  In several of the steps I can see "Objects and Attachments" on the work item screen where a User can click to be directed to a transaction. For example, on one screen the User can click on "Incoming Invoice: 5105601690" to be directed to the Invoice Display Screen that is populated with information for that particular invoice (5105601690).
    I am looking at the WF using TCode SWDD and cannot figure our how the original developer set this up.  So my question is ..... for a particular WF step, how do you set up the "Objects and Attachments: area so that the User will be directed to a particular transaction when he/she clicks on it.
    Thanks in advance, and sorry for such a "juvenile" question.
    Dan A

    Thanks for your reply Rajkumar,
    I am looking at the screen you have directed me to.  Business object is BUS2081 (actually it is ZMMWBS2081 which is a customized version BUS2081) Method is "Display" and Attribute is "InvoiceDocNumber".  How do I know by looking at this that "Display" means Display Invoice?  What if I wanted to display the PO instead?
    Thanks for the "spoon feeding".
    Dan A

  • How to create a record based on the name of a file in the file-system?

    Hi,
    With a lot of pictures I want to have a database to gather some information about these pictures.
    First question is how to generate a record based on a file in the file system?
    e.g. the pictures are "c:\fotos\2009\01\disc_001.jpg" to "c:\foto\2009\01\dis_98.jpg" .
    now i want to create records with as one of the attributes the name of the picture (not the picture itself). how to create these records (based on the information of the file-ssytem). i.e. the number of records should be the same as the number of pictures.
    any suggestions?
    any reaction will be appreciated.
    Leo

    Link to Create directory
    http://www.adp-gmbh.ch/ora/sql/create_directory.html
    You can create a list of files in the directory and read the list files from that directory.
    [UTL_FILE Documentation |http://download.oracle.com/docs/cd/B14117_01/appdev.101/b10802/u_file.htm#996728]
    [Solution using Java|http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:439619916584]
    SS

Maybe you are looking for

  • Can't boot K7T at 133 FSB

    I just picked up a brand new K7T Turbo Limited Edition (non-RAID) and moved my 1.2GHz "C" revision Athon (133MHz) and PC133x256MBxCL2 (Atlas Precision) over to it from a Shuttle AK12A (Also a KT133A chipset board). The board refuses to boot with J17

  • 24h time entry in iCal bug

    Being from Europe, all my clocks are in the 24h format, including all of my Macs and my iPhone. iCal in Leopard shows the 24h clock, but I noticed that when I want to enter a time for an event, it still shows AM/PM, which is irrelevant in the 24h sys

  • PDF Reader for IPAD 2: how to import PDF files in the library

    I have installed the "PDF reader" app and it is a great one. but can't import pdf files that are already in my IPAD (I see them in iBooks)

  • SMARTFORM - Part of variable content missing in otf file

    Hi colleagues, In my smartform, I have variables, defined as STRING, which contains HTML coding to generate URL links in the final document. The variable is correct and ends with '</a>'. But in the otf file, the result is sometimes wrong. The variabl

  • Two FK in the same tabe/query

    I'm trying to return two fields from the same table through two joins in the same query. Take this example: Table: Product ID Varchar PK Name Varchar Leader Varchar FK to Person.ID Backup Varchar FK to Person.ID DATA: 1 MyProduct 123 345 2 YouProdct