Copying Banking info from Header to Site using RA_CUSTOMER_BANKS_INT_ALL

Hi guys
I wonder if you can help me. We're using Oracle R11.5.10, and in AR, my client has all the customer banking detaills sitting at Header Level and he wants to copy them to Site Level (Bill_To_Site). I've tried entering banking details at Bill_To_Site using RA_CUSTOMER_BANKS_INT_ALL. But when I run the import program(Customer Interface), I get the following error: "Bank and branch name already exists". I can understand that I'm getting this error because the bank already exist at Header Level. But how do I create it at Site Level because there is no provision for this on the RA_CUSTOMER_BANKS_INT_ALL. How do I specify on RA_CUSTOMER_BANKS_INT_ALL that the bank I'm creating must be at Bill_To_Site and not at Header?
Thank you for all your help.

Please apply patch 4649221 to get this work.
Regards
Dev

Similar Messages

  • How can I stop other people copying my images from my web site.

    How can I stop other people copying my images from my web
    site.
    I use dreamweaver CS3 for the mac

    both are a waste of time. Fornication with a leaky condom.
    Pointless and not
    worth the effort. Or worse!
    the obfuscation JavaScript will get the site to not be
    listed in any search
    engines because they can't "see" the page or any links on it.
    You would be
    "protecting" the images but no one would find them.
    And all of those obfuscation JS things can be reverse
    engineered. In most
    cases- it's not worth it to prove it can be broken other than
    to prove it
    can be done. The images are nothing special in almost any
    site using one of
    those $29.95 applications.
    Have you done the basics? Turned off directory browsing or
    put a default
    index page in every folder? A few years ago i ran across a
    site with one of
    those block right click scripts on it. Dumb curiosity- opened
    a picture, and
    looked around the directory. All open directories. A block
    right click
    script and every folder on the site was open.
    /photos/private/girlfriend/hottub
    Nuff said. The blocking script made me curious enough to poke
    around the
    directories.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Vendor payments using bank info from HR master data

    Dear experts,
    We have setup all employees as vendors in FI to make reimbursements.
    Can we use the banking information in HR master data (IT0009) and make the vendor payments in FI. We don't want to maintain bank information in vendor master.
    So, by entering the personnel number of the EE in the vendor master, can SAP integrate and read the banking information from the HR master data?
    Please let me know if this is possible and how.
    regards,
    vishal.

    You have to maintain bank data for vendors and employees separately.  Vendor master cannot access bank data in payroll module.  Use LSMW to populate bank data in XD02 and establish a process to update bank information whenever there are changes in payroll side.

  • I am fairly new to MacBook. I want to copy a picture from a web site to Word and i can't select it using the usual command. What am I doing wrong? With windows it was very simple

    Why can't a copy a picture from the web in MS word using the available commands?

    Ask Microsoft by posting in their forums.  Not an Apple product.
    Microsoft for Mac Support

  • How do I get info from Active Directory and use it in my web-applications?

    I borrowed a nice piece of code for JNDI hits against Active Directory from this website: http://www.sbfsbo.com/mike/JndiTutorial/
    I have altered it and am trying to use it to retrieve info from our Active Directory Server.
    I altered it to point to my domain, and I want to retrieve a person's full name(CN), e-mail address and their work location.
    I've looked at lots of examples, I've tried lots of things, but I'm really missing something. I'm new to Java, new to JNDI, new to LDAP, new to AD and new to Tomcat. Any help would be so appreciated.
    Thanks,
    To show you the code, and the error message, I've changed the actual names I used for connection.
    What am I not coding right? I get an error message like this:
    javax.naming.NameNotFoundException[LDAP error code 32 - 0000208D: nameErr DSID:03101c9 problem 2001 (no Object), data 0,best match of DC=mycomp, DC=isd, remaining name dc=mycomp, dc=isd
    [code]
    import java.util.Hashtable;
    import java.util.Enumeration;
    import javax.naming.*;
    import javax.naming.directory.*;
    public class JNDISearch2 {
    // initial context implementation
    public static String INITCTX = "com.sun.jndi.ldap.LdapCtxFactory";
    public static String MY_HOST = "ldap://99.999.9.9:389/dc=mycomp,dc=isd";
    public static String MGR_DN = "CN=connectionID,OU=CO,dc=mycomp,dc=isd";
    public static String MGR_PW = "connectionPassword";
    public static String MY_SEARCHBASE = "dc=mycomp,dc=isd";
    public static String MY_FILTER =
    "(&(objectClass=user)(sAMAccountName=usersignonname))";
    // Specify which attributes we are looking for
    public static String MY_ATTRS[] =
    { "cn", "telephoneNumber", "postalAddress", "mail" };
    public static void main(String args[]) {
    try { //----------------------------------------------------------        
    // Binding
    // Hashtable for environmental information
    Hashtable env = new Hashtable();
    // Specify which class to use for our JNDI Provider
    env.put(Context.INITIAL_CONTEXT_FACTORY, INITCTX);
    // Specify the host and port to use for directory service
    env.put(Context.PROVIDER_URL, MY_HOST);
    // Security Information
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, MGR_DN);
    env.put(Context.SECURITY_CREDENTIALS, MGR_PW);
    // Get a reference toa directory context
    DirContext ctx = new InitialDirContext(env);
    // Begin search
    // Specify the scope of the search
    SearchControls constraints = new SearchControls();
    constraints.setSearchScope(SearchControls.SUBTREE_SCOPE);
    // Perform the actual search
    // We give it a searchbase, a filter and the constraints
    // containing the scope of the search
    NamingEnumeration results = ctx.search(MY_SEARCHBASE, MY_FILTER, constraints);
    // Now step through the search results
    while (results != null && results.hasMore()) {
    SearchResult sr = (SearchResult) results.next();
    String dn = sr.getName() + ", " + MY_SEARCHBASE;
    System.out.println("Distinguished Name is " + dn);
    // Code for displaying attribute list
    Attributes ar = ctx.getAttributes(dn, MY_ATTRS);
    if (ar == null)
    // Has no attributes
    System.out.println("Entry " + dn);
    System.out.println(" has none of the specified attributes\n");
    else // Has some attributes
    // Determine the attributes in this record.
    for (int i = 0; i < MY_ATTRS.length; i++) {
    Attribute attr = ar.get(MY_ATTRS);
    if (attr != null) {
    System.out.println(MY_ATTRS[i] + ":");
    // Gather all values for the specified attribute.
    for (Enumeration vals = attr.getAll(); vals.hasMoreElements();) {
    System.out.println("\t" + vals.nextElement());
    // System.out.println ("\n");
    // End search
    } // end try
    catch (Exception e) {
    e.printStackTrace();
    System.exit(1);
    My JNDIRealm in Tomcat which actually does the initial authentication looks like this:(again, for security purposes, I've changed the access names and passwords, etc.)
    <Realm className="org.apache.catalina.realm.JNDIRealm" debug="99"
    connectionURL="ldap://99.999.9.9:389"
    connectionName="CN=connectionId,OU=CO,dc=mycomp,dc=isd"
    connectionPassword="connectionPassword"
    referrals="follow"
    userBase="dc=mycomp,dc=isd"
    userSearch="(&(sAMAccountName={0})(objectClass=user))"
    userSubtree="true"
    roleBase="dc=mycomp, dc=isd"
    roleSearch="(uniqueMember={0})"
    rolename="cn"
    />
    I'd be so grateful for any help.
    Any suggestions about using the data from Active directory in web-application.
    Thanks.
    R.Vaughn

    By this time you probably have already solved this, but I think the problem is that the Search Base is relative to the attachment point specified with the PROVIDER_URL. Since you already specified "DC=mycomp,DC=isd" in that location, you merely want to set the search base to "". The error message is trying to tell you that it could only find half of the "DC=mycomp, DC=isd, DC=mycomp, DC=isd" that you specified for the search base.
    Hope that helps someone.
    Ken Gartner
    Quadrasis, Inc (We Unify Security, www -dot- quadrasis -dot- com)

  • Open a pdf file with Acrobat Reader/Pro from a https site using ie

    Hi!
    I somehow don't manage to open a pdf file directly with Acrobat Reader/Pro when trying to open it from a https site and using ie8.
    With http sites everything works just fine.
    Are there any settings to enable this with https sites?
    Greetings
    Laura

    Reader is a different product
    http://forums.adobe.com/community/adobe_reader_forums

  • Can I copy all info from 1 contact in Addressbook?

    This is really an Addressbook question more than specific to Addressbook  on just my iPad, but having an iPad orig w/ iOS 5 may be the problem...
    I want to copy all data from all fields from a single contact in Adressbook to paste the entire contact info somewhere else.
    All I seem to be able to do is copy a field or section of fields at a time. Paste and return to the contact to copy the next bit of data
    But no select all fields, copy, and paste.
    Thanks
    Steve

    I completely agree with your problem.
    I worked on an application with partitioned tables as well (also started with des2000),
    and even for a few tables defining the partitions is a hell of a job, especially for the indexes.
    When having equipartitioned tables it is very desirable to copy partitioning from one table (and indexes) to another.
    I recommend to write a utility based on the repository API for it. That may seem some work, but once you have written such a utility you can easily write more of them, and it will save you a lot of time later on.
    I am currently writing utilities for similar tasks.
    Peter

  • I have downloaded a no charge copy of Reader from the IBM site, but it says I have to pay

    I downloaded a copy of reader from the corporate IBM site, which I understand is no charge, but now I am being asked to pay.  Do I actually need to pay?

    I do not find any Adobe Reader download on the ibm.com site; all mention of Reader links to the adobe.com site.
    How are you "asked to pay"?  Can you post a screenshot?
    Anyway, download the free Reader from http://get.adobe.com/reader/ and make sure you uncheck any bundled software you don't want.

  • Copying to Hardrive from Mac and also using Windows - which FAT or NTFS?

    I and struggling with what do as best backup solution for both Docs, Music and most inportantly Photos.  I have just copied each event from iPhoto onto a memory stick which is formated as MS-DOS (FAT 32).  I have got Paragon NTFS for MAC OS X  9.5 software running.  Now my question is - should I need to view these photos (on the memory stick) via a Windows PC - can I?  Also, if I want to download to a Windows PC can I?  and ... if I want to add to the exisitng folders on the memeory stick via a Windows PC can I?  I have no idea what I am doing....??  I formatted the memory stick before I copied over 14GB - and all the photos appear to be there when viewing on Mac.  Should I have formatted to NTFS ?  Hope someone can be patient enough to explain to me. Many thanks.

    Yes, shouldn't be a problem.
    Music files should be in platform independent formats like .mp3.
    Other documents - depends what programme they were made with in the first place. MS Office should work OK in the Windows or Mac versions.
    iWork Pages should be exported to Office Word on the Mac before transferring, likewise with Numbers to Excel.
    Depending on the original application, you may occasionally see a 'ghost' file when a Mac originated file is viewed in Windows. This is nothing to worry about, it's just the Resource Fork of the main file, which Windows doesn't understand. If any appear, just trash them.
    Make sure all files transferred to Windows have the relevant file extensions showing (.doc, .xcl, .mp3 etc) so Windows knows what to open them with.

  • Copying Table Info From One Database to Another

    I am trying to copy data from a database instance on one server to an identical database instance on another server. I have a BC4J application module that I would like to use on both servers. I am relatively new in the BC4J area and would appreciate help from those of you who have done this type of thing before. How do I set up the connections in my client code to accomplish copying the data?

    Table may be copied with the
    expdp and impdp utilities.
    http://www.oracle.com/technology/products/database/utilities/index.html

  • How do you copy the templates from another webstie and use them as your own?

    Hi Everyone, I was told that with Dreamweaver it is possible to copy another websites templates? What are the steps in copying another websites template with Dreamweaver? I would like to know I am a newbie when it comes to this program so please make your statement understandable for me, thanks. Also, I am having problems creating a drop down menu for each of my web pages. When I go to highlight a specific box on my homepage I want the dropdown menu to appear vertically and not horizontally. I may have missed something when watching the video tutorials or I didn't quite understand what they meant. Thank you for any information on the series of questions that I have asked in this new thread.

    Hi Everyone, I was told that with Dreamweaver it is possible to copy another websites templates? What are the steps in copying another websites template with Dreamweaver?
    This is difficult to understand.   How are you copying templates from another site?
    If you have all the files that make up the template, then it's only a matter of saving all the files to a folder on your hard drive and setting up a site definition pointing to this folder.  You then work on the files as usual.
    Also, I am having problems creating a drop down menu for each of my web pages. When I go to highlight a specific box on my homepage I want the dropdown menu to appear vertically and not horizontally. I may have missed something when watching the video tutorials or I didn't quite understand what they meant. Thank you for any information on the series of questions that I have asked in this new thread.
    Without seeing the page it's difficult to judge what your problem is.  If possible, please upload the files to a remote server and provide a link to the page. It's the only way people can help - if they see your page in action.
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • Problems in Downloading a file from a web site using HttpClient

    Hi,
    My requirement is to download a file from a website using a java program. I have written a program using HttpClient API but I am unable to do so. Reality is that I don't know how to proceed with the HttpClient API to get the file downloaded. Same file can also be downloaded manually by login to that website, below mentioned steps are to be followed to download the file manually.
    1. Login to the website using Login/Password (I have valid login/password)
    2. Two options (links) are there (a) Report (b) Search [I am chosing report option]
    3. Newly opened window shows two tabs (a) Today (b) From & To [I am selection Today tab]
    4. Every tab has two radio button (a) File (b) Destination [Destination is selected by me]
    5. When Search button is pressed. A link gets created when that link is clicked file download popup is opened which allows facility to open/save the file.
    All these 5 step are to be followed in a java program to download the file. Please help in doing the same.

    // first URL which is used to open the website, this will have two text fields userName and password
    String finalURL = "http://www.xyz.in/mstatus/index.php";
    SMSGatewayComponentImpl obj = new SMSGatewayComponentImpl();
    obj.sendMessage(finalURL);
    public void sendMessage(String finalURL) {
    String ipAddrs = "a.b.c.d";
    int port = 8080;
    boolean flag = false;
    try {
    // Create an instance of HttpClient.
    HttpClient client = new HttpClient();
    HostConfiguration hostConfig = new HostConfiguration();
    hostConfig.setProxy(ipAddrs,port);
    client.setHostConfiguration(hostConfig);
    // Create a method instance.
    String cookieName=null;
    String cookieValue=null;
    // Here URL for the login page is passed and passing the user/password
    PostMethod method = new PostMethod(finalURL);
    method.setRequestHeader("userid","userName");
    method.setRequestHeader("passwd","pwd");
    // Execute the method.
    int statusCode = client.executeMethod(method);
    Cookie[] cookies = client.getState().getCookies();
    for (int i = 0; i < cookies.length; i++) {
    Cookie cookie = cookies;
    cookieName = cookie.getName();
    cookieValue = cookie.getValue();
    System.err.println(
    "Cookie: " + cookie.getName() +
    ", Value: " + cookie.getValue() +
    ", IsPersistent?: " + cookie.isPersistent() +
    ", Expiry Date: " + cookie.getExpiryDate() +
    ", Comment: " + cookie.getComment());
    NameValuePair[] respParameters = method.getResponseHeaders();
    String cookie = "";
    for(NameValuePair o : respParameters){
         System.out.println("Name : "+o.getName());
         System.out.println("Value : "+o.getValue());
         if("Set-Cookie".equalsIgnoreCase(o.getName()))
              cookie = o.getValue();
    NameValuePair[] footParameters = method.getResponseFooters();
    System.out.println("****************** Footer Values *******************");
    for(NameValuePair o1 : footParameters){
    System.out.println("Name : "+o1.getName());
    System.out.println("Value : "+o1.getValue());
    // This is jthe URL which comes when login/passowrd is entered and Login button is pressed.
    // I am trying to get the cookie from the first URL and pass this cookie for the second URL so that the session can be maintained
    // Here I may be wron..don't know is this the right way to download the file like this.....????
    finalURL = "http://www.xyz.in/mstatus/mainmenugrsms.php";
         method = new PostMethod(finalURL);
         method.setRequestHeader(cookieName,cookieValue);
         method.setRequestHeader("userid","userName");
         method.setRequestHeader("passwd","pwd");
         method.setRequestHeader("Set-Cookie",cookie);
         statusCode = client.executeMethod(method);
         respParameters = method.getResponseHeaders();
    for(NameValuePair o : respParameters){
    System.out.println("Name : "+o.getName());
         System.out.println("Value : "+o.getValue());
    // and this is the final URL which i got when that final link which enabled file download from the website have been copied as a shortcut and
    // pasted in a notepad. I was thinking that this will return the file as an input stream. but its not happening.
         finalURL = "http://www.xyz.in/mstatus/dlr_date.php#";
         method = new PostMethod(finalURL);
         method.setRequestHeader("Set-Cookie",cookie);
         method.setRequestHeader("userid","userName");
    // userid and passwd field are obtained when login/password page contents are seen using view source of that html
         method.setRequestHeader("type","1");
         // trying to set the cookie so that session can be maintained
    method.setRequestHeader(cookieName,cookieValue);
         method.setRequestHeader("passwd","pwd");
         statusCode = client.executeMethod(method);
         ObjectInputStream objRetInpuStream = new ObjectInputStream(method.getResponseBodyAsStream());
         System.out.println("objRetInpuStream : "+objRetInpuStream);
         if(objRetInpuStream!=null)
         System.out.println("objRetInpuStream available bytes : "+objRetInpuStream.available());
         String returnFile=(String)objRetInpuStream.readObject();
         System.out.println("Returned value \n : "+returnFile);
         respParameters = method.getResponseHeaders();
         for(NameValuePair o : respParameters){
         byte[] responseBody = method.getResponseBody();
         System.out.println("Response Body : "+new String(responseBody));
         if (statusCode != HttpStatus.SC_OK) {
              System.out.println("Error: " + method.getStatusLine());
         } else {
              System.out.println(method.getStatusLine());     
         } catch(Exception nfe) {
                   System.out.println("Exception " + nfe);
    Output
    =====
    /home/loguser/batch> sh run.sh SMSGatewayComponentImpl
    Classname : SMSGatewayComponentImpl
    run.sh[4]: test: 0403-004 Specify a parameter with this command.
    final URL : http://www.xyz.in/mstatus/index.php
    client is :org.apache.commons.httpclient.HttpClient@190e190e
    Cookie: PHPSESSID, Value: anqapu83ktgp8hlot06jtbmdf1, IsPersistent?: false, Expiry Date: null, Comment: null
    Name : Date
    Value : Thu, 06 May 2010 09:08:47 GMT
    Name : Server
    Value : Apache/2.2.3 (Red Hat)
    Name : X-Powered-By
    Value : PHP/5.1.6
    Name : Set-Cookie
    Value : PHPSESSID=anqapu83ktgp8hlot06jtbmdf1; path=/
    Name : Expires
    Value : Thu, 19 Nov 1981 08:52:00 GMT
    Name : Cache-Control
    Value : no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Name : Pragma
    Value : no-cache
    Name : Content-Length
    Value : 4792
    Name : Content-Type
    Value : text/html; charset=UTF-8
    Name : X-Cache
    Value : MISS from dcp.pas.abc.in
    Name : X-Cache-Lookup
    Value : MISS from dcp.pas.abc.in:8080
    Name : Via
    Value : 1.0 dcp.pas.abc.in:8080 (squid/2.6.STABLE21)
    Name : Proxy-Connection
    Value : keep-alive
    Cookie Value : PHPSESSID=anqapu83ktgp8hlot06jtbmdf1; path=/
    ****************** Footer Values *******************
    Name-2 : Date
    Value-2: Thu, 06 May 2010 09:08:47 GMT
    Name-2 : Server
    Value-2: Apache/2.2.3 (Red Hat)
    Name-2 : X-Powered-By
    Value-2: PHP/5.1.6
    Name-2 : Expires
    Value-2: Thu, 19 Nov 1981 08:52:00 GMT
    Name-2 : Last-Modified
    Value-2: Thu, 06 May 2010 09:08:47 GMT
    Name-2 : Cache-Control
    Value-2: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Name-2 : Pragma
    Value-2: no-cache
    Name-2 : Location
    Value-2: index.php
    Name-2 : Content-Length
    Value-2: 0
    Name-2 : Content-Type
    Value-2: text/html; charset=UTF-8
    Name-2 : X-Cache
    Value-2: MISS from dcp.pas.abc.in
    Name-2 : X-Cache-Lookup
    Value-2: MISS from dcp.pas.abc.in:8080
    Name-2 : Via
    Value-2: 1.0 dcp.pas.abc.in:8080 (squid/2.6.STABLE21)
    Name-2 : Proxy-Connection
    Value-2: keep-alive
    Cookie Value second time : PHPSESSID=anqapu83ktgp8hlot06jtbmdf1; path=/
    **Exception java.io.EOFException**
    Is my approach to download the file fromthe website ok????? please help me.

  • Copy GPS infos from exif to xmp

    Hello,
    I would like to copy the gps coordinates from pictures from the exif data to the xmp data to read the information in indesign cs5. How does this could work?
    I was sent to this forum, this is the original thread:
    http://forums.adobe.com/thread/873022?tstart=0
    Thanks for help
    Thomas

    Thanks for the example, but it I wonder if Picassa is using it's own format?
    This is the information that is in the exif data..
    GPS Version = 2.2.0.0
    GPS Time Stamp = 12:59:57
    GPS Date Stamp = 2010:02:25
    Image Width = 1024
    Image Height = 683
    EXIF tag 258 = 8 8 8
    EXIF tag 262 = RGB
    Make = Canon
    Model = Canon EOS 40D
    EXIF tag 277 = 3
    X Resolution = 72.0
    Y Resolution = 72.0
    Resolution Unit = Inches
    Software = Picasa 3.0
    Date Time = 2010:02:25 15:59:57
    Artist = thomas Wießner
    yCbCr Positioning = Cosited
    Exposure Time = 1/320 sec
    F-Stop = f/11
    Exposure Program = Normal program
    ISO Speed Ratings = 400
    EXIF tag 34858 = IFD Segment, ID = 34858
    ExifVersion = 0221
    Date Time Original = 2010:02:25 15:59:57
    Date Time Digitized = 2010:02:25 15:59:57
    Shutter Speed = 1/320 sec
    Aperture Value = f/11
    Exposure Bias Value = 0.00
    Max Aperture Value = f/3.5
    Subject Distance = 1.1 m
    Metering Mode = Pattern
    Flash = 16
    Focal Length = 18.0 mm
    EXIF tag 37520 = 00
    EXIF tag 37521 = 00
    EXIF tag 37522 = 00
    FlashPix Version = 0100
    Color Space = sRGB
    Pixel X Dimension = 1024
    Pixel Y Dimension = 683
    Focal Plane X Resolution = 4438.356
    Focal Plane Y Resolution = 4445.969
    Focal Plane Resolution Unit = Inches
    Custom Rendered = Normal Process
    Exposure Mode = Auto
    White Balance = Manual
    Scene Capture Type = Standard
    Image Unique ID = 49e5de27a4eacc78664f825224c07059
    As you can see the GPS data isn't there only date, time and version, does it use Image Unique ID?
    I downloded Picassa and Google Earth, the details didn't show in Picassa and nothing came up in Google Earth when trying to view it from Picassa.
    Have I missed anything? as I don't use Picassa or Google Earth normally?
    Edit: I have also had a look at all the metadata using Exiftool and no further GPS data is available.

  • Not receiving initial apple verification email - email address is known working and correct - Sent verification email muliple times - Actually got an welcome email from this community site using same email address - any ideas?

    Trying to setup a new ipod touch for the first time - Setup apple ID and used an existing known working email address - Accepted terms and sent verification - never received the email.  Email account is known working - (Note: actually received a welcome email from the apple community site when I posted this question).  Resent the verification email multiple times from the IPOD - No luck - Logged into PC and attempt to resend the verification email and that did not work.  Any one have any ideas?
    Thanks in advance.

    Check the trash folder also. Spam could get deleted immediately, depending on how you configured your Comcast account.
    Is it possible that you or a family member have another Apple ID?

  • Cannot copy and paste from application which is using jinitiator 1.1.8.16

    Dear all,
    I am using oracle application which loads in the browser using jinitiator 1.1.8.16, my browser is IE 6.0, Application is working fine but the problem is that I cannot do the operations like copy and paste, except this application copy & paste is working on entire system, can anybody please help me solve this problem.
    Thanks in Advance for who is going to help me to solve this problem.
    Regards,
    Phani Kumar .B

    Phani,
    Jinitiator has nothing to do with JDeveloper. You may wish to try the Forms Forum.
    John

Maybe you are looking for

  • How to export internal table and pass the internal table to another screen?

    Hi, I have a sql SELECT statement that select data from table into internal table. I would like to export out the internal table and pass to another screen and display the data in ALV list. How to export it out? I try but the error given was " The ty

  • Create PDF PO in SAP R/3 4.7

    Anyone know whether it is possible to create PDF PO document in R/3 4.7? If you have experience on the above work, appreciate if you can share with me. TQ.

  • Photo bug after upgrade to iOS 5.01

    Today I upgraded my iPad 1 to iOS5.01. After the succesful upgrade I created some new folders with photos on my PC, and synced my iPad. When I open the photo app on iPad, and then open the new albums I created today, and then close the albums again,

  • How to manage Podcasts as normal files?

    I have Podcasts that I have updated and auto-deleted regularly. Sometimes, I want to treat a few files differently, and save them or put them in smart playlists while not having them show up on the main Podcast menu of mine. However, as soon as I del

  • How to install HFM 9.5.0

    Dear All, I try to install HFM 9.5.0 and after install share service , workspace and HFM I login from workspace and try to get into HFM , however I can not get in and show up some error : Invalid or could not find module configuration. Required appli