Problem in getting the new custom infotype in test client

Hi All,
I have created a new custom infotype. I can execute the infotype from the development system thru PA30.
But when I tried to check in the test client (same system), it shows me that the infotype does not exist.
Do I need to transport it to other client? If so please let me know how...

You will need to import the Customizing TR(generated for Infotype) into other client. Use tcode SCC1 for importing TR without releasing it in the same system.
Cheers,
Rupesh

Similar Messages

  • Query to get the new customer or updated customer in last 3 days in AR

    hi Consultants,
    we have a custom customer summary table whcih maintain the all customer details with balance and aging bucket information.
    we have program to update this custom table daily base based on the day transation. now we need to find the query to find new customer or updated customer in last 3 days.
    then we need to update the customer to custom table .
    Please advice me
    Thanks in advance
    Anu.

    Hi Vikram ,
    Thanks for your reply.
    Actually we have culoms in my custom table needs to update based on AR CUSTOMER
    below culomn needs to update in my custom table .
    CUSTOMER_ID
    ADDRESS_ID
    CUSTOMER_NUMBER
    CUSTOMER_NAME
    ADDRESS1
    ADDRESS2
    CITY
    STATE
    COUNTRY
    PHONE_NUMBER
    FAX_NUMBER
    POSTAL_CODE
    CONTACT_NAME
    COLLECTOR_CODE
    PAYMENT_TERMS
    CREDIT_LIMIT
    EXPIRATION_DATE
    DB_RATING
    DB_RISK_CLASS
    DUNNING_LETTER_STAGE
    LOCKBOX
    ACCOUNT_OPENED
    SALES_REP
    LAST_COLL_CALL_COMMENT
    FUTURE_ACTION_DATE
    ORG_ID
    LOCATION_NUMBER
    HIGH_CREDIT_LIMIT_LAST_YEAR
    HIGH_CREDIT_LIMIT_YTDPlease advice me how can we find the customer who update the above customer information in last 3 days.
    Thanks,
    Anu.

  • Problem when getting the new iphone software iOS4

    I did the download to get the software but during the download i had a call ... didnt seem to disturb the download.. it then said it was backing up (syncing)... and then it would say "cancelling back up" n stop... ive tried to do it again .. many times and ive even turned both my laptop and my iphone off n retried it. but it goes straight to "backing up" but it cancells again! any help?!

    I also had trouble with updating to OS4 through iTunes update. What I did to get around it is this:
    1. Set iPhone to airplane mode and wifi off
    2. Open iTunes and connect iPhone
    3. If update message comes up - cancel (do not download and do not install)
    4. Create a backup (via sync and backup)
    5. While that is working, go to this site and download the 3GS OS4 firmware to your desktop.
    http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone4/061-7437. 20100621.5urG8/iPhone2,14.0_8A293Restore.ipsw
    6. When 4 and 5 are complete, disconnect iPhone and reconnect it
    7. At the iPhone summary page, "shift + click" restore and select the firmware from the desktop.
    8. After upgrading the firmware to OS4, iTunes should recognize that the device has already been associated and offer to restore the most recent backup.

  • New SCCM 2012 client machines still getting SCCM 2012 SP1 client not the new SCCM 2012 SP1 CU3 client

    Hi,
    I've successfully (as far as I can tell) deployed SCCM 2012 SP1 CU3 and all my existing clients are showing a client version of 5.00.7804.1400.  But when I setup a new client system recently I noticed that the client version was showing 5.00.7804.1000,
    and not 5.00.7804.1400. 
    For new client systems, do I need to redeploy the packages that were created for SCCM 2012 SP1 CU3 so that the new systems get the new SCCM 2012 SP1 CU3 client? 
    Thanks,
    Nick

    Hi,
    Here's some good information to look over:
    http://sccmfaq.wordpress.com/2013/09/24/sccm-2012-include-cu-in-osd/
    I haven't followed these instructions myself, since I haven't really had any good reason to include CUs during the initial installation process. I use this method instead and I've never run into any problems:
    http://www.ronnipedersen.com/2013/06/installing-sccm-2012-sp1-cu2-quick-start-guide/
    Don't retire TechNet! -
    (Don't give up yet - 12,575+ strong and growing)

  • I have the Iphone 5, and it shuts off randomly and the screen glitches. I have taken it into verizon and had it reset but the problem still continues. Is the only way to fix the problem to get a new phone?

    I have the Iphone 5, and it shuts off randomly and the screen glitches. I have taken it into verizon and had it reset but the problem still continues. Is the only way to fix the problem to get a new phone? Also, why is it if I do need a new phone I can only get a refurbished one when I am paying insurance every month?

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    If the issue persists, take the device to Apple for evaluation.

  • Trying to get the New Rascal Flatts Album....

    I have been trying to get the new Rascal Flatts Album (Unstoppable) using the complete my album feature. I bought the four singles from the countdown to the album thing. When I go to my "Complete My Albums" page, it doesn't show up there. I went to the album main page and clicked "Buy Album." I confirm I wanna buy the album and a pop-up window comes up saying I have bought 4 songs previously that meet the requirements for the "Complete My Album." I click complete my album, but it does NOT download ANYTHING!
    I don't want to pay $4 more to get the album. I was told that I could buy it for $7 TODAY using this feature as long as I bought the four singles. I did buy them and I don't really wanna go through and buy them yet again.

    Presuming you're using the latest version of iTunes (if not, you might try updating), contact the iTunes Store Customer Service department using the form at the bottom of the Purchase Issues FAQ web page and explain the problem to them.
    Good luck.

  • Problem in getting the database connection from a connection pool

    Hai All,
    I am facing a problem in getting the database connection from a connection pool created on weblogic server 8.1.
    I am using the Oracle database 8.1.7.
    I have configured my connection pool, datasource and JNDI in weblogic.
    In my java program i have the following code to retrieve the connection.
    import java.sql.*;    
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    class jdbcshp1 {
        public static void main(String[] args) {
         Connection connection = null;
         try {
               Hashtable ht = new Hashtable();
               ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");  // Wanna get rid of this.
               ht.put(Context.PROVIDER_URL,"t3://localhost:7001"); // wanna get rid of this.
               // Get a context for the JNDI look up
               Context ctx = new InitialContext(ht);
            javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup ("myjndi1");
              //Create a connection object
              connection = ds.getConnection();
         The above code is working fine but, the two ht.put statements are creating problem.
    The problem is, after converting the application into WAR file it can be deployed
    on any machine or different port on same machine. My application fails if its deployed on
    weglogicserver which is at different port.
    Is there any way that i can get rid of those ht.put statements or any other way to solve the problem.
    any help is appreciated.
    Thanks in advance
    Pooja.

    Hai All,
    Firstly, thanks for ur reply.
    Even i have seen some code which uses context constructor with out any parameter and works fine.
    i dont understand why its not working for my code.
    When i remove those ht.put code and use context constructor with out any parameter, it giving an error.
    Context ctx = new InitialContext();
    javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup ("ocjndi");
    connection = ds.getConnection();The error is as follows:
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
    the above error is forcing me to include those code but if the port number is changed the code will not work. Plz let meknow if some setting have to be made.
    I appreciate all ur valuable help.
    Thanks once again.
    Pooja.

  • I Just received the update to iTunes, when I I look at the screen I do not see the normal icons.  When I select movies I do not get the new downloads unless i select the list in the sub file. How do I get backto the old method of seeing and using iTunes??

    I Just received the update to iTunes, when I I look at the screen I do not see the normal icons.  When I select movies I do not get the new downloads unless I select the list in the sub file. How do I get back to the old method of seeing and using iTunes??

    I can tell you that this is some of the absolutely worst customer service I have ever dealt with. I found out from a store employee that when they are really busy with calls, they have third party companies taking overflow calls. One of those companies is Xerox. What can a Xerox call center rep possibly be able to authorize on a Verizon account?  I'm Sure there is a ton of misinformation out there due to this. They don't note the accounts properly or so everyone can see them. I have been transferred before and have asked if they work for Verizon or a third party also and was refused an answer so, apparently they aren't required to disclose that information. I spent a long time in the store on my last visit and it's not just customers that get the runaround. It happens to the store employees as well and it's beyond frustrating.

  • I have the Mac Os 10.4.11, and iTunes store will no longer come up on my screen to order tunes.  A download screen appears for the new iTunes. I can't download the new iTunes unless I get the new operating system for my mac.  Is there a way around this?

    I have an iMac with a 10.4.11 operating system.  When I click on iTunes Store, I no longer get the iTunes screen, instead, I get a new iTunes download screen.
    I can't download the new iTunes without upgrading my operating system.  Is there a way around this problem without buying the new operating system?
    I haven't been able to download songs for awhile now.

    which version of iTunes are you on ? if it's earlier than iTunes 9.2.1, get it here.

  • Every time i connect my iphone to itunes and trying to do a backup or get the new update it says i have to restore my iphone. and then that doesnt work, i tried to reinstall itunes but it doesnt work. i get this all the time. fix it please.

    Every time i connect my iphone to itunes and trying to do a backup or get the new update it says i have to restore my iphone. and then that doesnt work, i tried to reinstall itunes but it doesnt work. i get this all the time. fix it please.

    iTunes states " There's a problem with your Iphone, please contact apple service center " Also i took my iphone to a local service man and he told me the IMEI code has been corrupted and there's nothing that can be done about it. Please help, if you have any solution.
    Thank you

  • When trying to get my music from itunes a message pops up on my computer stating the disk cannot be found, what is this? I cant get the new music i purchased

    when trynig to get new music from itunes a message pops up on my computer saying the disk cannot be found. I dont know what this is, now i cannot not only get the new music i just purchased i seem to have lost all of my other music i already has as well. Is there anything I can do to fix this problem a get all my music back?

    Thanks for all of your help. Took the old girl in to a techie at London Drugs and my HD had failed, simple mechanical failure after 5 years of useful service. They mentioned that it was a pretty massive failure as they were unable to extract ANY information whatsoever. For those of you wondering what the warning signs were: slowing down of all processes, especially opening applications; freezing up when running an internet applcation and browsing at the same time; occasional starting up with a flashing folder with the dreaded ? (which would restart the first few times once I disconnected all peripherals, including the keyboard); finally full failure with only a white screen showing upon start up.
    I am getting a new HD, will reinstall from Time Machine and there will be peace in the valley.

  • I just bought the new late 2013 iMac.  Can I get the new iWork for free?

    I just bought a new late 2013 iMac.  Can I get the new iWork for free?  I updated it to Mavericks also.  The Mac App store is showing $19.99 for each iWork component (Pages, Numbers, Keynote).  I also bought the previous iWork version, if that matters.  Free updates for iPhoto and  iMovie seemed to show up with no problems.  Maybe these are just glitches that will clear up in a couple of days?

    Hi.  If you want it to get updated, this should take care of it.
    1. Uninstall iWork from your Mac.
    2. Do a fresh install of iWork from DVD.
    3. Install iWork update from Apple Downloads (direct link here:  http://support.apple.com/kb/DL1563)
    4. Sign into the Mac App Store, and check for updates.  It should now show up as a free update.  You may have to give it a few minutes (i.e. 10-15 minutes).
    I've been a Windows user for years, so I know all of the tricks by now.  I had hoped I would not need this knowledge for a Mac, but oh well...
    Good luck.

  • I have tab mix plus and i have set the new tab to open my home page, no matter what i do I can't get the new tab of firefox to show up.

    I can't get the new feature of firefox 13 of the new tab.

    Find '''browser.newtab.url''' and double click on it (or right-click and select modify) and type your homepage you want, to open a new tab in your homepage.
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • How to get the new dependency SCA's related to  7.4 version with out upgrading NWDI server

    Hi
    We are in process of upgrading the custom webdynpro and portal components to SAP Portal  7.4.
    I saw in some discussions that, we don't need to upgrade NWDI , we need to install new JDK version(1.6) to map that jdk to the new track for migrating the custom component to new track.
    But i have questions related to NWDI track dependency files.
    When i create new track to support 7.4 components need to be available in the respective track.
    we have central SLD and we create all the product and custom software components in that SLD(7.01) itself , To create the custom software component in SLD , i add  required dependency files. once the software component is ready, when i create the track  in nwdi system i will be able to fetch the custom software component in nwdi system by click on cms update.
    But now i  need following new new dependency software component versions   in SLD  related to  7.4 for creating new software component to those dependency's to support the new track in NWDI.
    EP_BUILDT
    SAP-JEE
    SAP_BUILDT
    SAP_JTECHS
    But my SLD server version is : 7.01 version.
    so do i need to upgrade the SLD server to  7.4 get the latest dependent SCA's  or just need import new SLD content in SLD server to add new custom software component to create?
    kindly advice how to get the new software components  in SLD without upgrading the NWDI  & SLD system to  7.4
    Thanks

    Jun,
    Thanks for the reply.
    But i am not able to find the  following two SCA's related to 7.4 version. I am able to find the rest of the SCA's. I able to see only 7.02 version related to following dependency files.
    SAP-JEE
    SAP_JTECHS
    SAP-EU (CA EU)  ( having only 7.01, 7.02, 7.10, 7.11 and 7.20) related to Guided procedures.
    Did they changed any naming conventions related to these software components? if so what are new software compnents names to use
    Please clarify.
    Thanks
    Vijay

  • I currently have the Mac OS X v10.5.8 and want to get the new operating system but I don't know how to do it. I don't have the Mac App Store and can't get it because of my version. What do I do?

    I currently have the Mac OS X v10.5.8 and want to get the new operating system but I don't know how to do it. I don't have the Mac App Store and can't get it because of my version. What do I do?

    The Early 2006 model 1,1 Core Duo can only run a maximum of 10.6 Snow Leopard. The models Late 2006 Core 2 Duos 2,1 through Early 2008 4,1 can only run a maximum of 10.7 Lion. The Late 2008 model 5,1 Aluminum Unibody through the Mid 2010 White Unibody model 7,1 can run 10.8 Mountain Lion.
    To see which model you have go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up check the Model Identifier and post it back here.
    The Snow Leopard 10.6 DVD should still be available from Apple for $20. You will have to call Apple Customer Care 1-800-692-7753 or 1-800-676-2775 to purchase it. It may still be in the Legacy Products list.
    If they no longer have any in stock you will have to buy it from eBay or Apple resellers that still have stock. But you will have to pay a premium since the DVDs are no longer being made. Snow Leopard DVDs are already up to $100 on Amazon.
    http://www.ebay.com/sch/i.html?_nkw=10.6+snow+leopard&_sacat=0&_odkw=mac+os+10.6 &_osacat=0
    Once you are at 10.6.8 Lion is still available from Apple. You will have to call Apple Customer Care 1-800-692-7753 or 1-800-676-2775. to purchase it. Then within 3 days you will get an email with a code which you can use to download Lion from the App Store.  The price is still $29. You must have at least a model 2,1 MacBook.
    Lion will require at least 2gb of RAM but really needs 4gb to run smoothly.
    As for third party programs see this list for compatibility with 10.7 http://roaringapps.com/apps:table
    Also Lion doesn't run any Power PC programs. To see if you have any Power PC programs go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up select Applications under Software. Then look under Kind to see if any of your applications are listed as Power PC. Universal and Intel will run under Lion.
    Before Mac switched to Intel processors in 2006 they used Power PC processors from 1994 to 2005. Power PC 601 through 604, G3, G4 and G5. Applications written for the Power PC processors need the application called Rosetta to run on Intel processors. This was part of the Operating System in 10.4 and 10.5 but was an optional install in 10.6. With 10.7 Lion Apple dropped all support for Power PC applications.

Maybe you are looking for