Problem with AR in NewCustomer Interface Program

I had a problem with importing data into Main Interface tables
i have created a Staging table
This r the columns i have selected and inserted data into this Manulley AR_ATPL_SAMPLE_STG(Staging table) from this i have done validations to Import data into Interface tables
The problem is the data is inserting into RA_CUSTOMERS_INTERFACE_ALL but the columns which belongs to this (CUSTOMER_PROFILE_CLASS_NAME,CREDIT_HOLD) RA_CUSTOMER_PROFILES_INT_ALL(table) is not (data) inserting into this.
I have done the validations for this tables RA_CUSTOMERS_INTERFACE_ALL,RA_CUSTOMER_PROFILES_INT_ALL
the data is not inserting and i have deleted the validations which belongs to the RA_CUSTOMER_PROFILES_INT_ALL ,still i am not inserting the data into profiles interface.
would u plz tell wat the reason is that.
any columns i have to include.
RA_CUSTOMERS_INTERFACE_ALL,RA_CUSTOMER_PROFILES_INT_ALL
CUSTOMER_NAME
,orig_system_customer_ref
,CUSTOMER_STATUS
,SITE_USE_CODE
,ORIG_SYSTEM_ADDRESS_REF
,ORG_ID
,PRIMARY_SITE_USE_FLAG
,LOCATION
,ADDRESS1
,ADDRESS2
,ADDRESS3
,CITY
,STATE
,COUNTRY
,CUSTOMER_CATEGORY_CODE
,CUSTOMER_CLASS_CODE
,BILL_TO_ORIG_ADDRESS_REF
,INSERT_UPDATE_FLAG
,LAST_UPDATED_BY
,LAST_UPDATE_DATE
,CREATED_BY
,CREATION_DATE
,CUSTOMER_NUMBER
,CUSTOMER_PROFILE_CLASS_NAME
,CREDIT_HOLD
,STATUS
,ERROR_MSG
BEGIN
BEGIN
SELECT COUNT(LOOKUP_CODE)
INTO v_custcate
FROM AR_LOOKUPS
WHERE LOOKUP_TYPE ='CUSTOMER_CATEGORY'
AND UPPER(lookup_code) = UPPER(r_arstg.customer_category_code);
IF v_custcate = 0 THEN
UPDATE ar_atpl_sample_stg
SET status = 'FAIL',
error_msg = 'Must Exist in Customer class Category in AR_LOOKUPS'
WHERE ROWID = r_arstg.rowid;
COMMIT;
END IF;
EXCEPTION
WHEN OTHERS THEN
v_custcate := 0;
UPDATE ar_atpl_sample_stg
SET status = 'FAIL',
error_msg = 'Must Exist in Customer class Category in AR_LOOKUPS'
WHERE ROWID = r_arstg.rowid;
COMMIT;
END;
BEGIN
INSERT INTO RA_CUSTOMERS_INTERFACE_ALL
( CUSTOMER_NAME
,ORIG_SYSTEM_CUSTOMER_REF
,CUSTOMER_STATUS
,SITE_USE_CODE
,ORIG_SYSTEM_ADDRESS_REF
,ORG_ID
,PRIMARY_SITE_USE_FLAG
,LOCATION
,ADDRESS1
,ADDRESS2
,ADDRESS3
,CITY
,STATE
,COUNTRY
,CUSTOMER_CATEGORY_CODE
,CUSTOMER_CLASS_CODE
,BILL_TO_ORIG_ADDRESS_REF
,INSERT_UPDATE_FLAG
,LAST_UPDATED_BY
,LAST_UPDATE_DATE
,CREATED_BY
,CREATION_DATE
,CUSTOMER_NUMBER
VALUES
( r_arstg.CUSTOMER_NAME
,r_arstg.ORIG_SYSTEM_CUSTOMER_REF
,r_arstg.customer_status
,r_arstg.SITE_USE_CODE
,r_arstg.ORIG_SYSTEM_ADDRESS_REF
,r_arstg.org_id
,NVL(r_arstg.PRIMARY_SITE_USE_FLAG,'N')
,r_arstg.location
,r_arstg.ADDRESS1
,r_arstg.ADDRESS2
,r_arstg.ADDRESS3
,r_arstg.CITY
,r_arstg.STATE
,r_arstg.COUNTRY
,r_arstg.CUSTOMER_CATEGORY_CODE
,r_arstg.CUSTOMER_CLASS_CODE
,r_arstg.BILL_TO_ORIG_ADDRESS_REF
,r_arstg.INSERT_UPDATE_FLAG
,-1
,SYSDATE
,-1
,SYSDATE
,r_arstg.CUSTOMER_NUMBER
INSERT INTO RA_CUSTOMER_PROFILES_INT_ALL
( ORIG_SYSTEM_CUSTOMER_REF
,ORIG_SYSTEM_ADDRESS_REF
,INSERT_UPDATE_FLAG
,CUSTOMER_PROFILE_CLASS_NAME
,CREDIT_HOLD
,ORG_ID
,LAST_UPDATED_BY
,LAST_UPDATE_DATE
,CREATED_BY
,CREATION_DATE
VALUES
( r_arstg.ORIG_SYSTEM_CUSTOMER_REF
,r_arstg.ORIG_SYSTEM_ADDRESS_REF
,'I'
,r_arstg.CUSTOMER_PROFILE_CLASS_NAME
,'N'
,r_arstg.ORG_ID
,-1
,SYSDATE
,-1
,SYSDATE
COMMIT;
END;
END;
Thanks in Advance
Regards
Seenu

The problem is that the ZIP file format has not standarized way to handle file name encodings (i.e. there's no standardized way to handle non-ASCII characters).
Java implemented it in one way and WinZIP/WinRAR implemented it another way.

Similar Messages

  • Problems with a simple stop watch program

    I would appreciate help sorting out a problem with a simple stop watch program. The problem is that it throws up inappropriate values. For example, the first time I ran it today it showed the best time at 19 seconds before the actual time had reached 2 seconds. I restarted the program and it ran correctly until about the thirtieth time I started it again when it was going okay until the display suddenly changed to something like '-50:31:30:50-'. I don't have screenshot because I had twenty thirteen year olds suddenly yelling at me that it was wrong. I clicked 'Stop' and then 'Start' again and it ran correctly.
    I have posted the whole code (minus the GUI section) because I want you to see that the program is very, very simple. I can't see where it could go wrong. I would appreciate any hints.
    public class StopWatch extends javax.swing.JFrame implements Runnable {
        int startTime, stopTime, totalTime, bestTime;
        private volatile Thread myThread = null;
        /** Creates new form StopWatch */
        public StopWatch() {
         startTime = 0;
         stopTime = 0;
         totalTime = 0;
         bestTime = 0;
         initComponents();
        public void run() {
         Thread thisThread = Thread.currentThread();
         while(myThread == thisThread) {
             try {
              Thread.sleep(100);
              getEnd();
             } catch (InterruptedException e) {}
        public void start() {
         if(myThread == null) {
             myThread = new Thread(this);
             myThread.start();
        public void getStart() {
         Calendar now = Calendar.getInstance();
         startTime = (now.get(Calendar.MINUTE) * 60) + now.get(Calendar.SECOND);
        public void getEnd() {
         Calendar now1 = Calendar.getInstance();
         stopTime = (now1.get(Calendar.MINUTE) * 60) + now1.get(Calendar.SECOND);
         totalTime = stopTime - startTime;
         setLabel();
         if(bestTime < totalTime) bestTime = totalTime;
        public void setLabel() {
         if((totalTime % 60) < 10) {
             jLabel1.setText(""+totalTime/60+ ":0"+(totalTime % 60));
         } else {
             jLabel1.setText(""+totalTime/60 + ":"+(totalTime % 60));
         if((bestTime % 60) < 10) {
             jLabel3.setText(""+bestTime/60+ ":0"+(bestTime % 60));
         } else {
             jLabel3.setText(""+bestTime/60 + ":"+(bestTime % 60));
        private void ButtonClicked(java.awt.event.ActionEvent evt) {                              
         JButton temp = (JButton) evt.getSource();
         if(temp.equals(jButton1)) {
             start();
             getStart();
         if(temp.equals(jButton2)) {
             getEnd();
             myThread = null;
         * @param args the command line arguments
        public static void main(String args[]) {
         java.awt.EventQueue.invokeLater(new Runnable() {
             public void run() {
              new StopWatch().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JPanel jPanel1;
        // End of variables declaration                  
    }

    Although I appreciate this information, it still doesn't actually solve the problem. I can't see an error in the logic (or the code). The fact that the formatting works most of the time suggests that the problem does not lie there. As well, I use the same basic code for other time related displays e.g. countdown timers where the user sets a maximum time and the computer stops when zero is reached. I haven't had an error is these programs.
    For me, it is such a simple program and the room for errors seem small. I am guessing that I have misunderstood something about dates, but I obviously don't know.
    Again, thank you for taking the time to look at the problem and post a reply.

  • Entire JDBC communication stopped if problem with one single JDBC interface

    Hello,
    Will the entire JDBC communication stopped if problem with one single JDBC interface?
    Thanks,
    Soorya.

    hi surya,
    this will happend if u use maintain order at runtime at interface determination.
    just uncheck this option if u dont neet EOIO.
    if you are getting the problem if u r going for EO then the problem might be using same JDBC channel for all interfaces.
    if each interface is expected with a high load then it better to go for dedicated channels for interfaces.
    like INTERFACE A should use JDBC A channel and INTERFACE B should use JDBC B channel.
    Thanks & Regards,
    Rama krishna

  • JDBC communication stopped if problem with one single JDBC interface

    Hello,
    Can you please explain this phrase
    "JDBC communication stopped if problem with one single JDBC interface"
    THanks,
    Soorya

    If you are having a problem with a JDBC interface (lets consider this to be a communication channel) then the communication is stopped (via that channel) (only in the case of EOIO).
    Hope this clarifies.
    Cheers,
    Sarath
    Award if helpful.

  • Could not complete the ... command because of a problem with the filter module interface

    I just reinstalled Photoshop CS6. I'm running OS X 10.8.2 .
    I use the Nik plugins suite, and reinstalled them as well. Now whenever I try to use one of those plugins I get the error "Could not complete the ... command because of a problem with the filter module interface."
    The reinstallation was a bit of a struggle due to issues on Adobe's end, and I am hesitatnt to just dive in and reinstall without wome idea as to what might cause these errors.
    Any insight appreciated.
    Stu

    Not sure I know what you mean by "disabling the Nik filter folder".
    I have the latest updates for the Nik filters and they are compatible with CS6.
    Since yesterday I tried uninstalling the Nik filters, manually locating and removing every file related to Nik/Nik Software, redownloading the Nik installers, uninstalling/reinstalling Photoshop, and reinstalling the Nik filters. Same result.
    I am pretty sure this is something on the Photoshop end, but am not sure what to do next. Maybe repeat the above and use the Creative Suite cleaner before reinstalling?
    Stu

  • HT204152 hello i have a problem with app store cant download program get this error verification required and no accept my visa card

    hello i have a problem with app store cant download program get this error verification required and no accept my visa card

    what i can start to download and updated programs

  • Problems with Sinn7 Audio USB Interface on Mountain Lion

    Hi Guys.
    I have problems with my USB Audio Interface Sinn7 Status 24/96 on Mountain Lion system.
    When i istalled drivers, system doesn't detect the card. After the system reboot, when i pluck the card in to usb, system makes a kernel panic.
    My hardware: MacBook Pro 15'' Late 2011 / OS X Mountain Lion / Audio Interface: Sinn7 Status 24/96.

    Hey DSevenPL,
    Have you sorted this issue yet? I'm having the same problem on my mid 2012 Macbook Pro.
    I had been running the sound card earlier on the same machine that you have (late 2011) w/out a problem but then got the new machine and it wouldn't read the sound card. Same issues as you.
    Months of searching has turned up with nothing (and Sinn is unresponsive) so any insight would be greatly appreciated!
    K x

  • Why is itunes saying "there is a problem with this installer package. a program required for this install to complete could not be run. contact your support personnel or package vendor."

    why is itunes saying "there is a problem with this installer package. a program required for this install to complete could not be run. contact your support personnel or package vendor."

    Go to START > ALL PROGRAMS > Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install
    If you can't find ASU, go to Control Panel:
    XP - Add n Remove Programs
    Win7/Vista - Programs n Features
    Highlight ASU, click change then Repair.

  • Can't use certain filters- "problem with the filter module interface"

    Hello,
    I frequently use the BPelt Flatten and Multifill plugins and they have always worked perfectly until today. Now I get the following error: "Could not complete the [Multifill/Flatten] command because of a problem with the filter module interface."
    I use Photoshop CS6 Extended with the Creative Cloud membership, and just recently updated to version 13.1.1 x64. I believe this may be related, as the plugins worked before the update and nothing else has changed.  Any recommendations on how to fix this? Is it possible to undo  the update?

    Usually this means a bug in the third party plugin that you are using.

  • Problems with counter in renaming interface not maintaining consistency across multiple libraries

    Happy New Year, all.
    We have a problem in Aperture that I was curious if others had, and I'm hoping somebody has figured out a workaround they will share with me. Originally, we used Aperture and it had one huge library for our different types of photography. We had to change away from that setup because if there was a problem it would take ages to troubleshoot a ~500GB library and perform actions like rebuilding the library. We didn't want to do this, but splitting into six libraries has improved the speed in general and has made rebuilding smaller individual libraries quicker.
    We shoot a lot of photos and want each photo to have a unique number (along with a custom name). We set up a rename option in Aperture that has "Custom Name_Counter" and set counter to be six digits. The problem this seemed to create is that the counter in the rename function doesn't produce a unique number consistently across libraries. If I'm in library A, and I rename a batch of files, the counter will go up and remember its last number as long as I stay in Library A. The minute I switch to Library B, the number is at where it was the last time I used Library B. This indicates to me that the preferences travel with the library.
    Does anybody know a way that I can have a global preferences file, rather than a library preferences file? It seems it maybe used to be this way, but one of the version 3 upgrades forced me to delete a preferences file for the Facebook bug a couple of version 3 subversions ago.
    On a different note, another problem with renaming is that it is so slow. Renaming master files for even 100 or so files takes minutes. Does anybody else have this happen? Sometimes it's faster, but I haven't been able to figure out a pattern to this.
    I've submitted feature requests for revamping the renaming interface for Aperture for at least a couple of years. It never seems to improve. iView Media Pro, a program I used six years ago, had a great renaming setup and I wish Aperture
    Maybe it's time to reinstall Aperture. I bought it on disc, so it's not through the App store. Does anybody have experience reinstalling? I would, of course, like to keep keywords and other preferences.

    hallerphoto wrote:
    Machine is a Mac Pro dual quad-core 2.16 GHz.
    I am unaware of a 2.16 GHz Mac Pro tower. Are you referring to a Macbook Pro or to an iMac? Or is it a configuration I am just unaware of?
    My concern is that it seems that you may be making major workflow compromises that might be better dealt with by hardware changes as feasible. E.g. most 2.16 GHz Mac CPUs are about 1/6 as strong as a top Mac Pro today or about 1/4 as strong as today's Macbook Pros, and that has huge implications on Aperture performance.
    Also, graphics processors of the 2.16 GHz era were ridiculously weak compared to modern Macs. Aperture has historically performed best with strong GPUs (e.g. the strongest G5 towers would not run Aperture without a GPU upgrade). If you stay with the existing box a GPU upgrade may (if feasible) be in order.
    You did not mention RAM, which has defining impact on Aperture performance.
    Even if no hardware upgrades are made, it is useful to know what hardware performance bottlenecks may exist. So some questions:
    • Which Mac(s), exactly?
    • Which OS version and which Aperture version?
    • How much RAM is on board?
    • If a Mac Pro, which GPU card is in use?
    • What mass storage (hard drives and SSDs), how connected and how full?
    Thanks.
    -Allen

  • Problem with FWSM and L3 interface in same switch

    I have two 6513s with an 802.1q trunk connecting them. Each switch has redundant Sup720s running in Native mode, IOS ver 12.2(18)SXF (they were initially running SXD3). A FWSM (ver 2.3(3), routed mode, single context) is in each switch, setup in failover mode.
    I can not get a PC, in a vlan that has the layer 3 interface defined on the switch with the active FWSM in it, to communicate with devices "behind" the FWSM. If I move the layer 3 configuration for that vlan to the other 6513, everything works fine.
    The MSFCs are on the inside of the firewall, they have a layer 3 interface configured in the same vlan as the FWSM "inside" interface. Several "same security level" interfaces are defined on the FWSM and used to protect server farms. I am using OSPF on the MSFCs and FWSM and the routing table is correct.
    The FWSM builds connections for attempts made by the PC with the layer 3 interface defined on the same switch as the active FWSM just fine, so this is not a FWSM ACL problem.
    A ping of the FWSM "inside" interface from a PC with the layer 3 interface defined on the same switch as the active FWSM fails, even though debug icmp trace on the FWSM shows the request and the response. A packet capture, using the NAM-2, shows only the request packets. I have captured on the common vlan and the FWSM backplane port channel interface.
    Just to add to the confusion, if I capture in the same places, but do the ping from a PC that is in a vlan with the layer 3 interface defined in the 6513 that does not contain the active FWSM, which works fine, I see the request and reply on the common vlan capture, but only the request on the port channel capture.
    This problem has been there from the beginning of this implementation and has not changed with IOS and FWSM software upgrades. I have experienced this with any and all vlans that I tried to define the layer 3 interface for on the switch with the active FWSM. I have MLS turned on.
    If anyone else has experienced this and solved it, or knows what is going on, I would appreciate any insight.
    Thanks.
    Keith

    I will have to get setup to record more data, but I do know the FWSM showed a ping request and a ping reply at the "inside" interface.
    I believe my problem is related to the IOS command "firewall multiple-vlan-interfaces" which I put in place to allow IPX traffic to be brought around the FWSM. The little documentation that there is for this command, states that policy routing may need to be implemented to prevent ip packets from going around the firewall. I do not have any policy routing in place.
    I also do not have any active layer three interfaces defined for any of the vlans assigned to the firewall except the "inside" interface. So my resoning was that I did not need to be concerned about ip packets having a way around the FWSM. My suspicion is that this command and the fact that I have mls on is causing some type of a problem which results in the packet being "lost" when it needs to be going through the MSFC in the switch with the active FWSM to get to the PC. Hopefully that makes some sense.
    Do you have any idea where better documention on using the "firewall multiple-vlan-interfaces" may be, or a better explanation of all that is happening inside the switch when that command is used?
    Thanks.

  • Solaris 10 Problem with Intel board network interface

    I've just installed Solaris 10 on my Intel board with integrated fast ethernet interface. Installation went smoothly, except for the networking. I've already followed the guide on this link http://solaris-x86.org/documents/tutorials/network.mhtml. The problem is, I couldn't find anything such as /dev/iprb0 under /dev directory (iprb is for Intel Ethernet 100 VE). When checking from interactive boot, I got this line:
    pci@0,0/pci8086,244e@1e/pci8086,3052@8 (which is the device for the ethernet on the pci bus)
    Since there's no link such as iprb0 under /dev, I checked the /devices/pci@0,0 directory, and found these:
    pci8086,244e@1e (directory, and in it, it contains no device file)
    pci8086,244e@1e:devctl
    My question is, how could I enable the network? Making link under /dev to pci8086,244e@1e:devctl doesn't seem to work. So I guessed there should be device file (ie. pci8086,3052@8) under pci8086,244e@1e directory. But how can I get this device file? Should I do mknod command? But I don't know how to get major and minor number under solaris.
    Please help me... I am used to Linux, but Solaris is a totally different animal to me.
    Edgar

    If you didn't get any messages about iprb iline value being out of range, simply run (as root):
    ifconfig iprb0 plumb
    Otherwise run the BIOS setup and disable plug & play os. Then run the above command.

  • Problem with Submit statement into print program for delivery

    Hi all,
    i got a problem with the SUBMIT statement that i put into a print program associated to a delivery output message.
    If i print the message by VL02N or VL71, everything works.
    But if i associate the output with RV56ABST, the SUBMIT instruction isn't accepted and i get the message
    "Processor ABAP: POSTING_ILLEGAL_STATEMENT"
    There is any solution to this situation?
    Why i cannot use the SUBMIT statement in this case?

    Hi Simone,
    you could try to do the operation in a separate task (call a function in starting new task). This will decouple your current process from the new task.
    Cheers,
    Stefan.

  • Problem with InDesing hiding and other programs can not be opened on screen at the same time.

    I have just installed InDesign on my Mac today. When opened it takes up all the screen and then when I try to open any other programs like a browser, it hides. I would like to make the InDesign window smaller, so I can follow instructions from a website, but the minimize window size buttons are not showing up at all. Any idea how I can fix the InDesing window size and show it along with the browser? Also how to detach it from Finder bar on the top of my screen?

    Hi Guys,
    Thank you so much for all your help. I was now able to fix it. It was after all the problem with the application frame being Off by dafout. It was showing up, but taking my whole descktop. Now when I followed your advice and checket it on under "Window" , it become much smaller and I am not able to resize it and the buttons to minimize or close it are now showing up (they were invisible before). Thank you so much to all of you who have helped me here.
    If I may have one more question, I have enocuntered another problem with using this Trial version of inDesign. When I wanted to access Bridge from the Bridge icon inside the program, I got an message that I need to download it from Creative Clowd. I found it strange since I have Photoshop CS6 and Brigge is part of this program, so I don't want to pay for it via Clowd service.
    I was able to open Bridge by just clicking on the program from my software launch screen, so it is now working along InDesign, but I wanted it to be part of the InDesign workspcace, so it would show along the program frame on the right of InDesign window and then could be attached there and moved along with it. In such set up I won't need to move each program frame separatelly when they are in my way while I work.  I wonder if it could be fixed and how. Any ideas? I would appreciate very much your reply.

  • Am getting the following message when trying to download latest upgrade. "a problem with Windows Installer Package, a program run as part of the setup did not finish as expected" Upgrade did not happen. Any suggestions ?

    Am getting a message when downloading latest iTunes upgrade:
    "There is a problem with this Windows Installer Package.
    A program run as part of the setup did not finish as expected"
    It doesn't give me any specific information about what or where the problem is.
    Any Suggestions

    Repair your Apple Software Update.
    Go to START/ALL PROGRAMS/Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install
    If you don't find ASU in All Program, go to Control Panel, Add & Remove programs and repair it.

Maybe you are looking for

  • Link to download Oracle GoldenGate 11g for MySQL

    Dear All, I am in search of Oracle GoldenGate 11g for MySQL. Somehow could not find it download.oracle.com and edelivery. If someone knows how to download it please guide me. Thanks, Imran

  • Setting canvas width and height objectdraw

    I would like to kno how to set the window height and width so users cannot resize it. I would like the methods to be out of the library objectdraw Thanks

  • OWB 10.1 get sid and serial from running mapping

    I have a mapping that's executing way to long. I know how to kill a kill a session with alter system kill session <psid>, <serial> immediate. In OWB 10.2 these parameters are visible when you look at running mappings, in 10.1 you don't see them . I c

  • Hi regarding parrelel processing of the program

    Hi Experts,        1.I have 2 records in one file which are processing by one program.        2.This program is calling one function module ,this function module is processing the records.        3.In that function module,there is one user exit where

  • IPhoto places won't work

    I have been using Places for a while now and it worked fine, but now all i get is a gray screen for the map and the google search won't work either. i have the latest update (8.0.3) WATS WRONG!!!