Can you please help me with validation logic for Events in Table maintenance generator

Can you please help me with validation logic for Events in Table maintenance generator,i.e if i enter record in 1st internal table then automatically 2nd internal table should be updated.

Hi Glen Anthony,
    Thanks for replay,
     I used foreign key relationship between those 2 internal tables....
I used event 05: When creating a new entry. I want to know the custom logic by which my 2nd Internal table gets automatically updated when i update my 1st Internal table
Thanks Glen.

Similar Messages

  • Can anyone please help me with the logic for this..

    hi all,
    os  has the value Windows 2000
    IF os CP 'WINDOWS' OR os CP 'SUN'.
         OS1 = 'X'.
      ENDIF.
    (if i test this,
    os1 doesnot have any value, (should be x)).
    This doesnot work for me.
    Any suggestions.
    Regards,
    Sukumar.

    Dear Sukumar,
    just use the F1 help on CP in ABAP code, there is a description.
    I think you need to use the asterix '*' than it will work.
    Regards
    Tibor
    Just check the example:
    Report z_example.
    data: os1, os type string.
    os = 'WINDOWS 2000'.
    IF os CP 'WINDOWS' OR os CP 'SUN' or os = space.
    OS1 = 'X'.
    ENDIF.
    write: / os1.

  • Hey guy can you please help me with this issue PLEASE!

    Hey Apple can you please help me with this issue, i have a iPhone 3gs and when i put my sim card into the iPhone it makes iphone 3gs shut down suddenly how do i fix that?
    iPhone version: 6.0.1
    service provider: Vodafone nz

    You could restarting your phone that sometimes fixes issues
    Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for phone to restart (no data will be lost).

  • HT1553 Hi, I'm stuck at step 9. I don't see my external harddrive when I want to save the DMG backup file. Can you please help me with this? I'm desperate to make this backup! Big thanx in advance!

    Hi, I'm stuck at step 9. I don't see my external harddrive when I want to save the DMG backup file. Can you please help me with this? I'm desperate to make this backup! Big thanx in advance!
    http://support.apple.com/kb/HT1553

    Repair permissions and restart your computer.  If this does not work, zap the pram.  You should now see your external hard drive. 

  • HT201318 I tried to downgrade my iCloud and when i did it never refunded me can you please help me with this thank you James

    I tried to downgrade my iCloud and when i did it never refunded me can you please help me with this thank you James
    <Personal Information Edited by Host>

    How did you try to downgrade
    (Don't post your telephone number in public places, unless you need more useless phone calls) I will ask for it to be removed.

  • My ipod touch is stuck on the 4.2.1 software, its a 3rd gen as well i was just wondering why i can not get the lastest update can you please help me with this issue

    i have been having an issue with updating my ipod touch for some time now and i can not seem to get it to update to the lastest update. it is stuck on 4.2.1 software and i can not update it to 4.3 or any other ios software update. can you please help me to solve this issue.

    It sounds like you actually have a 2G iPod Touch which can only go as high as iOS 4.2.1.  If it's an 8 GB iPod Touch it's definitely a 2G iPod Touch as there was never such a thing as a 3G 8 GB iPod Touch. See this article to help verify what generation iPod Touch you have.
    Identifying iPod models
    B-rock

  • Can you please help me with WVC200!!

    hey, im using the WVC200 ip camera in my college project, and the problem is im not able to configure the settings to receive email alerts, so can you help me please?
    this is what i did so far:
    send to : [email protected]
    Show "From" as: [email protected]
    Subject: motion detection!!
    SMTP Mail Server: mail.hotmail.com
    finally there is a box that i left unticked  which is the (My Mail Server Requires Authentication) what should i do with this setting!?!
    can anyone guide me step by step on how to configure the email alerts please!!
    thanks a lot for your time

    i've already tried to make it work,but nothing happens
    here is a printscreen of the settings
    [IMG]http://i35.photobucket.com/albums/d183/z400_suzuki/ipcamerasetting.jpg[/IMG]
    did i do anything wrong?!
    Message Edited by I hate HCT on 04-13-2009 11:04 PM

  • Hi Guys, can you please help me with Connection Pooling.

    I have:-
    Tomcat 5.0.27
    MySQL 4
    Apache 2.0.
    JSP web pages.
    I have been trying to get connection pooling working but i havent been successful yet. Please do help me make it happen.
    I have posted my server.xml and web.xml from /conf/. They are not edited. I have also included the pages that I am currently ussing to connect to the database.
    I need you to assist me with how I should edit the above.
    1.     SERVER.XML
    Where and how should I edit this file?
    2.     WEB.XML
    Where and how should I edit this file?
    3.     DATABASE_INFO.JSP
    <%
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    %>
    <%!
    public java.sql.Connection dataconnect() throws SQLException {
    Connection database_connector;
    database_connector = DriverManager.getConnection("jdbc:mysql://localhost/publications?user=hello&password=hello");
    return database_connector;
    %>
    <%!
    public java.sql.Connection adminconnect(javax.servlet.http.HttpSession session) throws SQLException {
    Connection database_connector;
    if (session.getAttribute("s_conn")!=null) {
    database_connector = (Connection) session.getAttribute("s_conn");
    if (database_connector.isClosed()) {
    database_connector = DriverManager.getConnection("jdbc:mysql://localhost/publications?user=hello&password=hello");
    } else {
    database_connector = DriverManager.getConnection("jdbc:mysql://localhost/publications?user=hello&password=hello");
    session.setAttribute("s_conn", database_connector);
    return database_connector;
    %>
    <%!
    public String filedir() {
    String directory = "C:/Tomcat/webapps/ROOT/publications/";
    return directory;
    %>
    etc
    Database Name : publications

    Hi,
    1- put your jdbc driver jar file in $CATALINA_HOME/common/lib (ex: C:\tomcat\common\lib )
    2- Next, modify the web application deployment descriptor (/WEB-INF/web.xml) to declare the JNDI name under which you will look up preconfigured data source
    take care of the ordering as below so resourc-ref tag is after taglib
    <resource-ref>
    <description>
    Resource reference to a factory for java.sql.Connection
    instances that may be used for talking to a particular
    database that is configured in the server.xml file.
    </description>
    <res-ref-name>
    jdbc/EmployeeDB
    </res-ref-name>
    <res-type>
    javax.sql.DataSource
    </res-type>
    <res-auth>
    Container
    </res-auth>
    </resource-ref>
    3- add an element like this to the /META-INF/context.xml file in the web application. ( under ../webapps/mywebapplication/WEB-INF
    <Context ...>
    <Resource name="jdbc/EmployeeDB" auth="Container"
    type="javax.sql.DataSource" username="hello" password="hello"
    driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost/publications"
    maxActive="8" maxIdle="4"/>
    </Context>
    4- code sample
    Context initCtx = new InitialContext();
    Context envCtx = (Context) initCtx.lookup("java:comp/env");
    DataSource ds = (DataSource)
    envCtx.lookup("jdbc/EmployeeDB");
    Connection conn = ds.getConnection();
    ... use this connection to access the database ...
    conn.close();
    The default data source support in Tomcat is based on the DBCP connection pool from the jakarta commons
    Regards,
    Alan Mehio
    London,UK

  • Can You Please Help Me with My Prepaid Verizon Extravert Phone

    I have a Verizon prepaid Extravert phone.  The phone has a opera mini browser built into it.  I can read and respond to emails from Gmail through the phone.  It is just awkward to use the phone to check and respond to email.  My employer is cutting off access to personal email at the office and that is one of the reasons I purchased this Extravert phone and the prepaid plan with email access. 
    I would like to know if I can connect my phone to my laptop and use the Verizon connection and the opera mini browser to read and respond to personal emails while at the office.  I basically just want to use the computer because it is easier to read and type with it.
    If this is possible, can you explain how I can do it.
    Also, on my personal laptop, the Extravert will be recognized for about a minute when I have it connected with a USB cable.  And then the cell phone disapears from my view within My Computer.  Can you explain how I can get this phone recognized by laptop.  Thanks.

        Hi nico08,  We want you to be able to get the most out of your phones email capabilities!  While the LG Extravert does not have the capability to tether the data connection to a laptop.  Our Mobile Email application can be a very beneficial feature for you!  Check out your options right through the Messaging section of your device.  If you are currently paying for a data package the app may be included. If not, you can even use Mobile Email ten times without paying the subscription fee but data charges will apply.  Please let me know if you have any additional question.
    Thank you,
    YaleK_VZW
    Follow us on Twitter @VZwsupport

  • Twice I have tried to buy this software and been refused. Can you please find me a valid reason for this

    Twice my request to but an upgrade to export psd has been refused. As I already have bought in the past this is very strange and annoying. It also means that the work that I have in hand cannot proceed. Can you give me a valid reason for this?

    Hi dcg41,
    There was a service outage yesterday that may have affected your purchase: Adobe Service Outage Update | Adobe Customer Care Team
    However, if the error is persisting today, please double-check the credit card information that you're entering, including the expiration data and CCV. If all that checks out, I would encourage you to contact Adobe Customer Support to resolve this issue. Here is the contact information: http://helpx.adobe.com/contact.html?product=acrobat-com&topic=signing-in-to-or-managing-my -account#
    Please let us know how it goes.
    Best,
    Sara

  • Can you please help me with an office 365 issue in regards to receiving encrypted data/secure messages and being able to open and see the information

    I am unable to received encrypted emails from my work as when I log into my gmail account once I have clicked onto the email message I keep getting
    an error that says I must log out of my hotmail and into my gmail to receive this message.  I do this and still the same message.  I have actually gone onto Hotmail and signed out, gone then back to the link to sign into my gmail link for the encrypted
    message to log in with my gmail and password which I have also changed and still same, I am logged into Hotmail and I must log out and sign in with gmail address to access the encrypted message.  I have tried to use IE, Google Chrome and Firefox all with
    the same issues.  It appears our IT person is having the same issue.  We really need to get this going and is there a contact person who can help us?

    This is not an Office 365 support forum.  This is a Windows 7 support forum.
    The Microsoft Office support forums are found @
    https://social.technet.microsoft.com/Forums/office/en-us/home?category=officeitpro%2Cvisio2010%2Cgrooveserveritpro and that is where you need to post for assistance with Office 365.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • The contents of my emails are not showing when I open in my usual Firefox. However, if I open in explorer all contents are displayed. I prefer Firefox and don't want to switch back to Explorer. Can you please help me with this situation?

    I have always been able to open my emails and access their contents using Firefox. Now, this morning, I can no longer access the contents of my emails, but can still open them.
    I called 'virginmedia' who told me to try using Explorer, which worked, and they told me the problem was with Firefox.

    Sugestion: Upgrade Firefox to the latest stable version => www.getfirefox.com
    There are many problems with webmail (especially gmail) lately. It can be caused by the AdBlock extension. If you have it installed here's what to do:
    1. "Ctrl+Shift+F" Preferences (or right click on ADP symbol and choose preferences)
    2. 'Filters' menu > "Update all subscriptions"
    Solution from https://support.mozilla.com/pl/questions/896267 by [https://support.mozilla.com/pl/user/52 dmcritchie]

  • Can you please help me with this simple (not for me:) issue

    Why this doesnt work?
    public void spl ()
         String a=("moon.sun");
    String [] f=a.split(".");
    System.out.println(f[0]);
    }

    The second expression to split() is a regular expression. A period in a regular expression matches all characters, and you're wanting it to just match a period.
    To match just the period for your split, you'll need to escape it:String[] f = a.split("\\.");

  • HT4009 I have been trying all day to purchase chips on Ace Casino and it tells me I have to get in touch with Itunes support and there is no number or website...Can you please help me with this.

    I need help purchasing chips on ace casino.  When I try to purchase it tells me that i have to contact itunes support but there is no number or website.  Does anybody know what to do?

    See Contact here  >  http://www.apple.com/support/itunes/contact.html

  • After a google search I click a topic, and get rederected to a completely different webpge. EVERYTIME. Can you please help me with this?

    This has been going on for weeks. I've deleted and reinstalled Firefox at least a dozen times.
    After EVERY search, I click the site i want, and get redirected to a completely different site.
    Not to mention Firefox crashes quite a bit.
    == This happened ==
    Every time Firefox opened
    == A few weeks ago

    Jailbreaking devices is a bad idea (and for most people, it's really old school). Update the devices to iOS 7 and all of your problems should go away.

Maybe you are looking for

  • DO NOT INSTALL 7.0.1 ITS NO GOOD

    I keep checking in and seeing how things are going still the same problems in this board. By now you should know that iTunes 7 is as good as viral and you should return to 6.0.5. Here is a short list of some things you will notice when you install iT

  • How do I STOP a subscription renewal on an app?

    My daughter deleted this Karaoke app, but i am getting charged every week on a subscription renewal.  How do I suspend/ stop this charge from hitting my account every week? Thanks

  • Suspicious Activity?

    I was checking my Yahoo mail (On the website) for the first time in like forever and it said i had an email from Facebook saying "antonio, you have notifications" or something like that... but the thing is i don't have a Facebook nor is my name anton

  • Query on ADF Tree rendering - Jdeveloper 11g

    Hi, Am facing issues with Tree component rendering. Please find details below. Am using Jdeveloper 11g and have created data controls using plain java objects. Issue 1: I have a method getEmployees() which contains hierarchical data. Upon dragging th

  • Keep track of recently used items in my app

    I have developed and app which have several services when user launch the app in the first screen that shows all available services as Tiles. So what i need to do is to track users usage of those apps and load those apps according to the usage in a s