Doing loop just one time

hi max
i have loop for tmp_emp_day and i wont to do the loop target_hours_exp just one time (fill cnt_days just one time) in all the big loop (tmp_emp_day) how i do that?
LOOP AT tmp_emp_day ASSIGNING <fs_emp>.
CALL FUNCTION 'Z_EMP_CAP'
EXPORTING
pernr = <fs_emp>-pernr
begda = fir_day
endda = last_day
IMPORTING
target_hrs = target_hrs
TABLES
target_hours_exp = target_hours_exp
work_hours = work_hours.
<b>LOOP AT target_hours_exp ASSIGNING <target_hours_exp> WHERE stdaz = '0.5' .
ADD 1 TO cnt_days.
ENDLOOP.</b>
<fs_emp>-miss_days = <fs_emp>-miss_days - cnt_days.
APPEND <fs_emp> TO emp_miss_days.
ENDLOOP.
Regards

try
LOOP AT tmp_emp_day ASSIGNING <fs_emp>.
CALL FUNCTION 'Z_EMP_CAP'
EXPORTING
pernr = <fs_emp>-pernr
begda = fir_day
endda = last_day
IMPORTING
target_hrs = target_hrs
TABLES
target_hours_exp = target_hours_exp
work_hours = work_hours.
if sy-tabix = 1.
LOOP AT target_hours_exp ASSIGNING <target_hours_exp> WHERE stdaz = '0.5' .
ADD 1 TO cnt_days.
ENDLOOP.
endif.
plz reward points if it helps

Similar Messages

  • Excecute a planning sequence when open Web Template (JUST ONE TIME)

    Hello experts,
    I want to excecute a planning sequence everytime when a webtemplate is opened.
    I use the "Action before first display" for this. The problem is, that the planning sequence is excecuted multiple times when I open the web template. The web template contains several queries. Could it be that the planning sequence is started for every query?
    If yes is there a way to suppress this? I want to run the planning sequence just one time for the whole web template
    Thanks
    Johannes

    Yes I tried in action before rendering it is the same behaviour with the difference that the sequence is also executed after clicking on a button with another planning sequence. Action before first display is excactly what I need but I want to run the sequence just one time when the web template is loaded and not for every query. We don't use tabs at all.
    Thanks
    Johannes

  • HT204053 i am having iphone3gs and ipod4s, is it possible the application that i have purchased in my iphone can be available in my i pod by doing payment only one time for the same application in my i phone...if yes,plz let me know hw it is possible

    i am having iphone3gs and ipod4s, is it possible the application that i have purchased in my iphone can be available in my i pod by doing payment only one time for the same application in my i phone...if yes,plz let me know hw it is possible..

    Open the App Store on your device.
    Make sure you are signed in with the same account used for the original purchase.
    Tap on Purchased from the bottom navigation bar.
    On iPhone or iPod touch, tap Updates from the bottom navigation bar, then tap Purchased.
    Locate the app in your Purchased tab.
    Tap the download button (cloud symbol)
    See also: http://support.apple.com/kb/HT2519?viewlocale=en_US&locale=en_US

  • Send APDU just one time

    My application (in delphi) send Name(string), Family(string), And children (array of string)...
    then These data will convert into Hex format and will be sent to CAD via APDU...
    My question is how can I send all of these data at once via on APDU command, should I send Name and Family one by one and also send every index in my array one by one ??
    I wrote an applet which has a SetName, Set Family and SetChildren Methods and once call SetName and send Name via one APDU, then call SetFamily and send Family via other APDU, and the big problem is in array that I'm sending each index data of array via one APDU...
    I'm sure it's a foolish way and there's a better way to send these data :)
    would u please help me and guid me what can I do, this is so much urgent
    Kind Regards
    Hana

    Zip_Smart_Girl wrote:
    first a question about your last reply:
    I add this code in my applet process method, so what can i send from JCOP, can I now send Lc in 2 bytes ??The card you have is Java Card 2.2.1 which does not support extended length APDU's. As such your only choice is to implement chaining. This is also the reason why your code does not compile in Eclipse. You are building against the JC2.2.1 libraries.
    Here is some code that may help you get started. This code is not tested (apart from the fact it compiles) as I am not at work at the moment. This code comes with all the standard disclaimers and may not be fit for purpose... so use at your own risk :) There is still more validation that could go in (such as checking that the GET-RESPONSE command has the same CLA byte etc). Hopefully this code works and gets you started with command and response chaining. This may also help anyone else that needs to do something similar. If this can help just one person I will be happy.
    Cheers,
    Shane
    package chaining;
    import javacard.framework.APDU;
    import javacard.framework.Applet;
    import javacard.framework.ISO7816;
    import javacard.framework.ISOException;
    import javacard.framework.JCSystem;
    import javacard.framework.Util;
    * Very simple applet for chaining data to and from a card.
    * @author shane
    public class ChainingApplet extends Applet {
        private final static byte INS_GET_RESPONSE = (byte) 0xC0;
        private final static byte INS_PUT_DATA = 0x00;
        private final static byte INS_GET_DATA = 0x01;
        private final static byte OFFSET_SENT = 0x00;
        private final static byte OFFSET_RECV = 0x01;
        private static short[] offset;
        private static byte[] fileBuffer;
        private static short fileSize = 0;
        private final static short FILE_SIZE = 2048; // 2KB file
        private final static short MAX_APDU = 255;
         * Default constructor that initialises all memory to be used by the applet.
        public ChainingApplet() {
            offset = JCSystem.makeTransientShortArray((short) 2, JCSystem.CLEAR_ON_RESET);
            fileBuffer = new byte[FILE_SIZE];
         * {@inheritDoc}
        public static void install(byte[] bArray, short bOffset, byte bLength) {
            // GP-compliant JavaCard applet registration
            new ChainingApplet().register(bArray, (short) (bOffset + 1), bArray[bOffset]);
         * {@inheritDoc}
        public void process(APDU apdu) {
            // Good practice: Return 9000 on SELECT
            if (selectingApplet()) {
                return;
            short len = apdu.setIncomingAndReceive(); // This is the amount of data read from the OS.
            byte[] buf = apdu.getBuffer();
            byte cla = buf[ISO7816.OFFSET_CLA];
            byte ins = buf[ISO7816.OFFSET_INS];
            short lc = (short) (buf[ISO7816.OFFSET_LC] & 0x00ff); // this is the LC from the APDU.
            // get all bytes from the buffer
            while (len < lc) {
                len += apdu.receiveBytes(len);
            // validate the INS byte (basic check that tests for valid GET-RESPONSE or GET-DATA)
            if (offset[OFFSET_SENT] > 0 && ins != INS_GET_RESPONSE) {
                ISOException.throwIt(ISO7816.SW_CONDITIONS_NOT_SATISFIED);
            } else if (ins == INS_GET_RESPONSE && offset[OFFSET_SENT] == 0) {
                ISOException.throwIt(ISO7816.SW_CONDITIONS_NOT_SATISFIED);
            switch (buf[ISO7816.OFFSET_INS]) {
                case INS_PUT_DATA:
                    saveData(buf, ISO7816.OFFSET_CDATA, offset[OFFSET_RECV], len);
                    if ((cla & 0x10) != 0x00) {
                        offset[OFFSET_RECV] += len;
                    } else {
                        // last command in the chain
                        fileSize = (short) (offset[OFFSET_RECV] + len);
                        offset[OFFSET_RECV] = 0;
                    break;
                case INS_GET_DATA:
                case INS_GET_RESPONSE:
                    sendData(apdu);
                    break;
                default:
                    // good practice: If you don't know the INStruction, say so:
                    ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
         * Simple method to save the data somewhere. Add real implementation here.
         * @param source
         *            buffer containing data to copy
         * @param sourceOff
         *            offset into source buffer to the data
         * @param destOff
         *            offset into the destination buffer
         * @param len
         *            length of the data to copy.
        private static void saveData(byte[] source, short sourceOff, short destOff, short len) {
            // prevent buffer overflow
            if ((short) (destOff + len) > FILE_SIZE) {
                ISOException.throwIt(ISO7816.SW_FILE_FULL);
            Util.arrayCopy(source, sourceOff, fileBuffer, destOff, len);
         * Simple method to send chainined data to the client application (if required).
         * @param apdu
         *            current APDU
        private void sendData(APDU apdu) {
            // work out how many bytes to send this time and how many will be left
            short remain = (short) (fileSize - offset[OFFSET_SENT]);
            boolean chain = remain > MAX_APDU;
            short sendLen = chain ? MAX_APDU : remain;
            // Get ready to send
            apdu.setOutgoing();
            apdu.setOutgoingLength(sendLen);
            apdu.sendBytesLong(fileBuffer, offset[OFFSET_SENT], sendLen);
            // Check to see if there are more APDU's to send
            if (chain) {
                offset[OFFSET_SENT] += sendLen; // count the bytes sent
                ISOException.throwIt(ISO7816.SW_BYTES_REMAINING_00); // indicate there are more bytes to come
            } else {
                offset[OFFSET_SENT] = 0; // no more bytes to send
    }

  • Just one time use?

    Can I convert a Word Document into PDF without buying the yearly package.  I just want to do it one time?

    Hi dianna50,
    If you did decide to purchase a subscription to PDF Pack and give it a go, you are able to cancel within 30 days and get your money back. Adobe also offers a free 30-day trial to Acrobat, which not only lets you create PDF files, but edit them as well.
    If you decide to give it a try and need help with anything, please let us know.
    Best,
    Sara

  • E63: Webaccess via WLAN just one time until restar...

    Hi all,
    I've some troubles with a brand new E63. I can connect to the SE515-WLAN-Router-ADSL-Modem, i can surfing, receiving e-mails so on. WLANsetting is on demand. Now I finish all activities. Two minutes later I want to surf again. This time the E63 says: System Error or No Gateway reply. If I reboot the Router, I can surf one time again.
    I have also an E51 and it works fine with the same router.
    Guess, it's a router issue, but how to solve it?

    Look man
    From your speech , I could get that your old phone isn't Nokia 
    or it may be nokia S40 (like : 5200 , 5300 , 6300 ......) 
     Now the problem is that your old phone system isn't the same as nokia E63 system.The folders of the old system may cause conflict with the new one (resulting in (GSE : General System Error ) that you get)
    So the first thing you should have done is copying all thing from your old Micro-SD   to PC then format the memory on PC (My computer ---> format ). Then after format , insert the memory into Your E63 , this will create some folders (video, sounds, documents , ....) 
    When you solve this problem the following problems will be solved .
    Another thing you don't probably know is that 99.9999999 % of Nokia users don't copy images or any other thing from messages by clicking "save" as you have done, instead, they use Xplore.
    Xplore makes mobile the same as PC
    get it from here:
    Note : I am not telling u to buy Xplore, use the free version , it's the as full one but for the 3 seconds banner when you run it.
    Use Xplore to go to message inbox b : open xplore ----- > Menu --- > tools -----> options
    Ayman Ahmed

  • Condition loop only one time

    taking input as digits
    giving output in words
    ex:
    100 output hundread
    1234 one thousand two hundread thirty four
    0003 three
    like this we have output
    so please specify any logic
    thanks&regards
    SIva

    http://www.google.com/search?q=java+convert+number+to+text
    ~

  • Loop only one time

    Hi guys,
    I have multiple record in an internal table
    for that i have to loop only once
    ie only first record i have to loop rest i dont want to loop.
    How this can be done?
    Regards
    senthil

    Hi Senthil..
    If you want to Read only single record then use the READ TABLE statement.
    For 1st Record :
    READ TABLE <ITAB> INTO <WA> INDEX 1.
    if sy-subrc = 0.
    endif.
    For reading a single record based on  some condition:
    READ TABLE <ITAB> INTO <wA> WITH KEY MATNR = P_MATNR.
    if sy-subrc = 0.
    endif.
    REWARD IF HELPFUL.

  • Why does it only one time to sync my IPhone 5, yet to put the same playlist on my IPad Air I have to sync multiple occasions and reboot?

    Lately purchasing songs on ITunes has been difficult getting them on my IPad Air.  I can sync the exact same playlist to my IPhone 5, no problem.  Try putting the same playlist and songs on my IPad Air, forget about it!  This problem seems recent and I wonder if it is a software problem.  The computer is an Mac, so it's not a PC issue.  During the sync process, step 5 "Waiting for changes to be applied", takes the longest amount of time.
    Any thoughts?
    Dave

    Hi sdl2001,
    Thanks for visiting Apple Support Communities.
    If your iPhone only shows a "connect to iTunes" screen, see this article for steps that can help:
    If you can't update or restore your iOS device
    http://support.apple.com/kb/ht1808
    Regards,
    Jeremy

  • One time download?

    Hi,
    Does anyone use one time download? If so, could someone recommend one to me? My file is 75 MB, too big to send by email.
    Thanks in advance,
    kidd in Paris
    PS: Just wanted to thank everyone who's been so helpful. Never would've gotten this far without your help.

    There are many sites that allow you to post files for downloading by other people. I can suggest either Google or Acrobat.com. However, your question really does not involve Acrobat Windows. Please continue this discussion in a more appropriate arena.

  • How to create one time pop-up window?

    I'd like to have a pop-up window called "how to use this app" show up just one time; the first time a user opens the folio to read it for instruction but then not appear again after it is closed. How could I do this? Thanks.

    I have not tried the "alert-box technique" yet.
    I have found code that will only display for first time visitors. How would I add an image to the below code with a link to a website?
    newwin=open("yourpage.htm", "dispwin",
    "width=350,height=350,scrollbars=no,menubar=no");

  • InputStream and playback more than one time

    Hi,
    I'm trying to playback multiple times the sound I captured with microphone.
    But the method playAudio() manage to listen to the sound just one time. Which way can I use to listen many times the sound ??
    I don't want to use Clip !!!!!
    Here is my code :
    public void captureAudio() {
        try {
            final AudioFormat format = getFormat();
          DataLine.Info info = new DataLine.Info(
            TargetDataLine.class, format);
          final TargetDataLine line = (TargetDataLine)
            AudioSystem.getLine(info);
          line.open(format);
          line.start();
          Runnable runner = new Runnable() {
            int bufferSize = (int)format.getSampleRate()
              * format.getFrameSize();
            byte buffer[] = new byte[bufferSize];
            public void run() {
              out = new ByteArrayOutputStream();
              running = true;
              try {
                while (running) {
                  int count =
                    line.read(buffer, 0, buffer.length);
                  if (count > 0) {
                        out.write(buffer, 0, count);
                out.close();
              } catch (IOException e) {
                System.err.println("I/O problems: " + e);
                System.exit(-1);
          captureThread = new Thread(runner);
          captureThread.start();
        } catch (LineUnavailableException e) {
          System.err.println("Line unavailable: " + e);
          System.exit(-2);
        if(!running){running = true;};
      public void playAudio() {
        try {
          byte audio[] = out.toByteArray();
          InputStream input =
            new ByteArrayInputStream(audio);
          final AudioFormat format = getFormat();
          final AudioInputStream ais =
            new AudioInputStream(input, format,
            audio.length / format.getFrameSize());
          DataLine.Info info = new DataLine.Info(
            SourceDataLine.class, format);
          final SourceDataLine line = (SourceDataLine)
            AudioSystem.getLine(info);
          line.open(format);
          line.start();
          Runnable runner = new Runnable() {
            int bufferSize = (int) format.getSampleRate()
              * format.getFrameSize();
            byte buffer[] = new byte[bufferSize];
            public void run() {
              try {
                int count;
                while ((count = ais.read(
                    buffer, 0, buffer.length)) != -1 && !running) {
                 if (count > 0) {
                            line.write(buffer, 0, count);
                line.drain();
                line.close();
              } catch (IOException e) {
                System.err.println("I/O problems: " + e);
                System.exit(-3);
          playThread = new Thread(runner);
          playThread.start();
        } catch (LineUnavailableException e) {
          System.err.println("Line unavailable: " + e);
          System.exit(-4);
      }Thanks

    I play it back the first time correctly. But if I stop it before the end or let it playing until the end, I'm unable to start it again when I click on the play button.
    Here is a piece of the whole code (more than 7500 characters):
    class Lecture extends JFrame
         private AudioInputStream lecteurAudio;
         private AudioFileFormat formatFichier;
         private AudioFormat format;
         private SourceDataLine line;
         public boolean running;
         private Thread captureThread;
         private volatile boolean exitRequested;
        private volatile boolean isPaused;
        private volatile boolean isCancelled;     
         public Lecture()
              running=true;
         public void AudioFromFile(File fichier) throws UnsupportedAudioFileException, IOException, LineUnavailableException
          this.lecteurAudio = AudioSystem.getAudioInputStream(fichier);
               this.formatFichier = AudioSystem.getAudioFileFormat(fichier);
               this.format = lecteurAudio.getFormat();
               if((this.format.getEncoding() == AudioFormat.Encoding.ULAW) ||
                  (this.format.getEncoding() == AudioFormat.Encoding.ALAW))
                 //convertion du format
                 AudioFormat tmp = new AudioFormat(
                     AudioFormat.Encoding.PCM_SIGNED,
                     this.format.getSampleRate(),
                     this.format.getSampleSizeInBits() * 2,
                     this.format.getChannels(),
                     this.format.getFrameSize() * 2,
                     this.format.getFrameRate(),
                     true);
                 this.lecteurAudio = AudioSystem.getAudioInputStream(tmp, this.lecteurAudio);
                 this.format = tmp;
               DataLine.Info info = new DataLine.Info(
                   SourceDataLine.class,
                   this.lecteurAudio.getFormat(),
                   ((int)this.lecteurAudio.getFrameLength() *
                    this.format.getFrameSize()));
               line = (SourceDataLine)AudioSystem.getLine(info);
               line.open(format);
               line.start();
               if (line != null) {
                  try {
                      line.close();
                  } catch (Exception e) {
         public void Piste()
              DataLine.Info info = new DataLine.Info(SourceDataLine.class, this.lecteurAudio.getFormat());
               try {
                     if (line == null) {
                         boolean bIsSupportedDirectly = AudioSystem.isLineSupported(info);
                         if (!bIsSupportedDirectly) {
                             AudioFormat sourceFormat = lecteurAudio.getFormat();
                             AudioFormat targetFormat = new AudioFormat(
                                     AudioFormat.Encoding.PCM_SIGNED,
                                     sourceFormat.getSampleRate(),
                                     sourceFormat.getSampleSizeInBits(),
                                     sourceFormat.getChannels(),
                                     sourceFormat.getChannels() * (sourceFormat.getSampleSizeInBits() / 8),
                                     sourceFormat.getSampleRate(),
                                     sourceFormat.isBigEndian());
                             lecteurAudio = AudioSystem.getAudioInputStream(targetFormat, lecteurAudio);
                             format = lecteurAudio.getFormat();
                         line = getSourceDataLine(format);
                     line.open(format);
                 } catch (Exception e) {
                     e.printStackTrace();
                     return;
           Runnable runner = new Runnable(){
            int nRead = 0;
            byte[] abData = new byte[(int)format.getSampleRate()* format.getFrameSize()];
            boolean startResume;
            public void run(){
            do {
                startResume = false;
                line.start();
                while (nRead != -1 && !exitRequested) {
                    try {
                        nRead = lecteurAudio.read(abData, 0, abData.length);
                    } catch (IOException e) {
                        e.printStackTrace();
                    if (nRead >= 0) {
                             line.write(abData, 0, nRead);
                if (exitRequested && !isPaused) {
                    //cancel
                    line.stop();
                    line.flush();
                } else if (isPaused) {
                    line.stop();
                    line.drain();
                    try {
                        while (isPaused) {
                            Thread.sleep(20);
                        startResume = true;
                    } catch (InterruptedException ex) {
                        //if interrupted...
                        cancel();
           } while (startResume);
        captureThread = new Thread(runner);
        captureThread.start();
         private SourceDataLine getSourceDataLine(AudioFormat format) {
            Exception audioException = null;
            try {
                DataLine.Info info = new DataLine.Info(SourceDataLine.class, format);
                Mixer.Info [] arr = AudioSystem.getMixerInfo();
                Arrays.sort(arr, new Comparator() {
                    public int compare(Object o1, Object o2) {
                        Mixer.Info m1 = (Info) o1;
                        Mixer.Info m2 = (Info) o2;
                        if("Java Sound Audio Engine".equals(m1.getName()))
                            return -1;
                        if("Java Sound Audio Engine".equals(m2.getName()))
                            return 1;
                        return 0;
                for (Mixer.Info mi : arr) {
                    SourceDataLine dataline = null;
                    try {
                        Mixer mixer = AudioSystem.getMixer(mi);
                        dataline = (SourceDataLine) mixer.getLine(info);
                        dataline.open(format);
                        dataline.start();
                         System.out.println(mi.getName());
                        return dataline;
                    } catch (Exception e) {
                        audioException = e;
                    if (dataline != null) {
                        try {
                            dataline.close();
                        } catch (Exception e) {
            } catch (Exception e) {
                throw new IllegalStateException("Error trying to aquire dataline.", e);
            if (audioException == null) {
                throw new IllegalStateException("Couldn't aquire a dataline, this computer doesn't seem to have audio output?");
            } else {
                throw new IllegalStateException("Couldn't aquire a dataline, probably because all are in use. Last exception:", audioException);
          public boolean isPaused() {
                 return isPaused;
         public void setPaused(boolean pause) {
                 if (line != null) {
                     if (pause) {
                         isPaused = true;
                         exitRequested = true;
                     } else {
                         isPaused = false;
                         exitRequested = false;
         public void cancel() {
                 isPaused = false;
                 exitRequested = true;
                 isCancelled = true;
        public boolean isCancelled() {
                 return isCancelled;
        public void close() {
                 if (line != null) {
                     line.close();
    }Edited by: bascyr on 8 mai 2010 16:29

  • One time Discount Coupon to be used during the Sales Order Creation

    I need help to configure a one time coupon to be used during a Sales Order creation. During 2009 our customers that have purchased more than certain amount we are going to give them a discount Coupon with a code that they can use just one time during his next purchase. I need help to configure this request.
    Thanks

    Hi Gilberto
    Go VK11.
    After maintaining the material & price, please go to -->Additional data.
    You will be displayed with Validity, Assignments, Assignments for retail promotion, Limits for Pricing, Payments.
    In the 'Limits for Pricing' you have three options - Max. condition value, Max number of orders & Max condition base value.
    In the Max number of Orders - enter 1 to avail this special price only for first order.
    Importent Note: to activate the ' Limit of Pricing' -- you need to tick 'Condition update' for the particular contion type, in condition type customising.
    FOr eg. condition type - ZR00 - you need to have special price for this condition type & want to limit only for first order order.
    In the customising for ZR00 - 'condition update' need to be ticked, then only you can get the above option.
    i hope it is clear to you
    thank you
    Anirudh

  • Just one filter for queries on workbook

    Hi all,
    In a workbook i have three queries with a common free characteristic. What can i do to have just one filter on the workbook for the three queries ?.
    thanks a lot

    And how to create a common variable for 3 query??
    Is the same variable will be understand by all query if we have just one insetion (the user inter the variable just one time) because it is common?
    very interesting
    thank tc

  • I need write code executable at one time defined

    I need write a code what a one time defined trigger a pl/sql, i know that command exist but in this moments not remember this command please help me.
    Thanks

    I am not sure if this is what you are looking for, but you can add a section at the end of a package body that will be executed one time only, when the package is first invoked within the user session. Although it must be placed at the end of the package body, it will be executed just one time before anything else in the package is executed. Here is an example:
    SQL> CREATE OR REPLACE PACKAGE test_one_time_only
      2  AS
      3    PROCEDURE every_time;
      4  END test_one_time_only;
      5  /
    Package created.
    SQL> CREATE OR REPLACE PACKAGE BODY test_one_time_only
      2  AS
      3    -- this will execute every time:
      4    PROCEDURE every_time
      5    IS
      6    BEGIN
      7      DBMS_OUTPUT.PUT_LINE ('every time');
      8    END every_time;
      9 
    10  -- this will execute one time only:
    11  BEGIN
    12    DBMS_OUTPUT.PUT_LINE ('one time only');
    13 
    14  END test_one_time_only;
    15  /
    Package body created.
    SQL> SET SERVEROUTPUT ON
    SQL> EXEC test_one_time_only.every_time
    one time only
    every time
    PL/SQL procedure successfully completed.
    SQL> EXEC test_one_time_only.every_time
    every time
    PL/SQL procedure successfully completed.
    SQL> EXEC test_one_time_only.every_time
    every time
    PL/SQL procedure successfully completed.

Maybe you are looking for

  • Submit Button Hidden, Visible, Disappear

    I need to have a submit by email button that is hidden until a box is checked. Then once the user clicks the submit button then both fields disappear. My check box is named: StaffSubmission My submit by email button is named: StaffSubmit Thank you fo

  • Profit center substitution rule

    hi ,i am wondering is it possible to assign profit center substitution rule by sales org,instead controlling area?

  • Problem in Uploading Data using a Tab Separated File?

    Hi All, I am trying to upload a file which tab separated containing customer and bank details and my file structure somewhat in the following manner. 10     21169     abcde     xyz     kdHDHLk     gdh     ghgah  (Customer Details) 20     21169     DE

  • Safari keeps quitting unexpectedly.

    I'm running OS X Yosemite 10.10.1 on a MacBook Air. This morning it was running fine, but after downloading a MS word update (which required me to close Safari, which I did through the installer when prompted to close) I keep getting a message that s

  • Object Imported from Illustrator Changes When Rendering

    I am creating a page that can be seen here: http://www.jalc.org/springswing2010/ The problem is, when I import the lightning bolt from Illustrator into Flash, the two pointed corners in the lightning bolt are sharp and pointed.  However, after render