Need to create a job history report - what subject areas have this detail?

I need to create a report that shows all the history of an employee's job title, date changed, etc., what Subject Area provided this detail?
Employee ID, Name, Effective Date, Job Code, Job Title
Example:
123456     Smith, John     01/10/2015     90078     Customer Service Manager     Promotion
123456     Smith, John     09/08/2013     90075     Customer Service Supervisor     Transfer
Is there such a means to provide this?
Thank you!

Yes, but it only has one generic Date column, no start date and end date. I can't use that twice in the prompt. Although I can specify it to be 'between', but I'm not sure I can pass values to both variables like that.
Currently I have used Campaign Start Date and Campaign End Date to enter values in calender format to the variables.

Similar Messages

  • Dependency between reports and subject area

    Hi,
    We are using OBIEE 10.1.3.3.
    I would like to find out all the reports in a catalog which are dependent on a specific Subject Area.
    Is there a way to quickly determine that ? Any suggestions are appreciated.
    Thank you.

    Hi
    In the newer versions you can use an option in the catalog manager 'Create Report' which will extract Report Name, Subject area, etc....and puts in a csv file which will meet your purpose. I am not sure if this feature is available in x.3.3

  • Need help on TRacking Jobs history of an ETL package

    Hello there, Kindly Elaborate me the way to track Job history of my ETL package.
    For Sample I am running that package on my local Server.
    i need a SQL Server tAble, Which Gives me following information
    -Name of the package
    -TYpe of job.: Etl or TSql
    -Is_SuccessRun
    -LAst run time
    -ErrorRun
    -Last Execution time Taken by the ETL.
    Kindly Guide me on this,
    Thanks in advance

    Hi Aditya,
    We cannot integrate the package execution information into the job history.
    This sysssislog table is created in the msdb database when we install SQL Server Integration Services. If you configure logging to log to a different SQL Server database, a sysssislog table with this format is created in the specified database. So, whether
    the sysssislog table in the MSDB database or in a specified database depends on how you create the connection manager for the SSIS log provider for SQL Server, and either one is okay.
    For more information about implementing SQL Server logging, please see:
    http://www.bidn.com/blogs/ShawnHarrison/ssis/2436/basics-of-ssis-logging-part-1-enabling-and-using-sql-server-provider 
    http://www.msbiguide.com/2013/10/logging-in-ssis-sql-server-log-provider/ 
    In addition, you can implement custom logging using event handlers:
    http://consultingblogs.emc.com/jamiethomson/archive/2005/06/11/SSIS_3A00_-Custom-Logging-Using-Event-Handlers.aspx
    Regards,
    Mike Yin
    TechNet Community Support

  • I need to create a revision history block for my schematic drawings

    I have tried to use the Title Block Editor to make a revision history list block, but I can't get away from the structure of the title block with its forced field types, etc.
    Is there a way to create a revision history block? Thanks much, Tod
    Solved!
    Go to Solution.

    Hi Tod,
    Right-click your title block and select Edit Symbol/Title Block to open the Title Block Editor. Here is a screenshot for reference:
    Let's start by drawing the borders. The blue circle indicates the Resize Boundary Box. Click here to change the size of the area where you want to draw the title block.
    Now place the headers (green circle): click the Place Text icon on the toolbar and type REV1, etc.
    Finally place the custom fields (red circle), this is the info that you can edit when you double-click the Title Block. To enter these fields select Fields>>Custom Field 1, 2, etc.
    Close the Title Block Editor, double-click the Title Block and enter the information to your custom fields.
    I also attached the title block that I created.
    I hope this helps.
    Fernando
    Fernando D.
    National Instruments
    Attachments:
    Title block issue_2.ms10 ‏70 KB

  • Need to create a driver class for a program i have made...

    hey guys im new to these forums and someone told me that i could get help on here if i get in a bind...my problem is that i need help creating a driver class for a program that i have created and i dont know what to do. i need to know how to do this is because my professor told us after i was 2/3 done my project that we need at least 2 class files for our project, so i need at least 2 class files for it to run... my program is as follows:
    p.s might be kinda messy, might need to put it into a text editor
    Cipher.java
    This program encodes and decodes text strings using a cipher that
    can be specified by the user.
    import java.io.*;
    public class Cipher
    public static void printID()
    // output program ID
    System.out.println ("*********************");
    System.out.println ("* Cipher *");
    System.out.println ("* *");
    System.out.println ("* *");
    System.out.println ("* *");
    System.out.println ("* CS 181-03 *");
    System.out.println ("*********************");
    public static void printMenu()
    // output menu
    System.out.println("\n\n****************************" +
    "\n* 1. Set cipher code. *" +
    "\n* 2. Encode text. *" +
    "\n* 3. Decode coded text. *" +
    "\n* 4. Exit the program *" +
    "\n****************************");
    public static String getText(BufferedReader input, String prompt)
    throws IOException
    // prompt the user and get their response
    System.out.print(prompt);
    return input.readLine();
    public static int getInteger(BufferedReader input, String prompt)
    throws IOException
    // prompt and get response from user
    String text = getText(input, prompt);
    // convert it to an integer
    return (new Integer(text).intValue());
    public static String encode(String original, int offset)
    // declare constants
    final int ALPHABET_SIZE = 26; // used to wrap around A-Z
    String encoded = ""; // base for string to return
    char letter; // letter being processed
    // convert message to upper case
    original = original.toUpperCase();
    // process each character of the message
    for (int index = 0; index < original.length(); index++)
    // get the letter and determine whether or not to
    // add the cipher value
    letter = original.charAt(index);
    if (letter >='A' && letter <= 'Z')
    // is A-Z, so add offset
    // determine whether result will be out of A-Z range
    if ((letter + offset) > 'Z') // need to wrap around to 'A'
    letter = (char)(letter - ALPHABET_SIZE + offset);
    else
    if ((letter + offset) < 'A') // need to wrap around to 'Z'
    letter = (char)(letter + ALPHABET_SIZE + offset);
    else
    letter = (char) (letter + offset);
    // build encoded message string
    encoded = encoded + letter;
    return encoded;
    public static String decode(String original, int offset)
    // declare constants
    final int ALPHABET_SIZE = 26; // used to wrap around A-Z
    String decoded = ""; // base for string to return
    char letter; // letter being processed
    // make original message upper case
    original = original.toUpperCase();
    // process each letter of message
    for (int index = 0; index < original.length(); index++)
    // get letter and determine whether to subtract cipher value
    letter = original.charAt(index);
    if (letter >= 'A' && letter <= 'Z')
    // is A-Z, so subtract cipher value
    // determine whether result will be out of A-Z range
    if ((letter - offset) < 'A') // wrap around to 'Z'
    letter = (char)(letter + ALPHABET_SIZE - offset);
    else
    if ((letter - offset) > 'Z') // wrap around to 'A'
    letter = (char)(letter - ALPHABET_SIZE - offset);
    else
    letter = (char) (letter - offset);
    // build decoded message
    decoded = decoded + letter;
    return decoded;
    // main controls flow throughout the program, presenting a
    // menu of options the user.
    public static void main (String[] args) throws IOException
    // declare constants
    final String PROMPT_CHOICE = "Enter your choice: ";
    final String PROMPT_VALID = "\nYou must enter a number between 1" +
    " and 4 to indicate your selection.\n";
    final String PROMPT_CIPHER = "\nEnter the offset value for a caesar " +
    "cipher: ";
    final String PROMPT_ENCODE = "\nEnter the text to encode: ";
    final String PROMPT_DECODE = "\nEnter the text to decode: ";
    final String SET_STR = "1"; // selection of 1 at main menu
    final String ENCODE_STR = "2"; // selection of 2 at main menu
    final String DECODE_STR = "3"; // selection of 3 at main menu
    final String EXIT_STR = "4"; // selection of 4 at main menu
    final int SET = 1; // menu choice 1
    final int ENCODE = 2; // menu choice 2
    final int DECODE =3; // menu choice 4
    final int EXIT = 4; // menu choice 3
    final int ALPHABET_SIZE = 26; // number of elements in alphabet
    // declare variables
    boolean finished = false; // whether or not to exit program
    String text; // input string read from keyboard
    int choice; // menu choice selected
    int offset = 0; // caesar cipher offset
    // declare and instantiate input objects
    InputStreamReader reader = new InputStreamReader(System.in);
    BufferedReader input = new BufferedReader(reader);
    // Display program identification
    printID();
    // until the user selects the exit option, display the menu
    // and respond to the choice
    do
    // Display menu of options
    printMenu();
    // Prompt user for an option and read input
    text = getText(input, PROMPT_CHOICE);
    // While selection is not valid, prompt for correct info
    while (!text.equals(SET_STR) && !text.equals(ENCODE_STR) &&
    !text.equals(EXIT_STR) && !text.equals(DECODE_STR))
    text = getText(input, PROMPT_VALID + PROMPT_CHOICE);
    // convert choice to an integer
    choice = new Integer(text).intValue();
    // respond to the choice selected
    switch(choice)
    case SET:
         // get the cipher value from the user and constrain to
    // -25..0..25
    offset = getInteger(input, PROMPT_CIPHER);
    offset %= ALPHABET_SIZE;
    break;
    case ENCODE:
    // get message to encode from user, and encode it using
    // the current cipher value
    text = getText(input, PROMPT_ENCODE);
    text = encode(text, offset);
    System.out.println("Encoded text is: " + text);
    break;
    case DECODE:
    // get message to decode from user, and decode it using
    // the current cipher value
    text = getText(input, PROMPT_DECODE);
    text = decode(text, offset);
    System.out.println("Decoded text is: " + text);
    break;
    case EXIT:
    // set exit flag to true
    finished = true ;
    break;
    } // end of switch on choice
    } while (!finished); // end of outer do loop
    // Thank user
    System.out.println("Thank you for using Cipher for all your" +
    " code breaking and code making needs.");
    }

    My source in code format...sorry guys :)
       Cipher.java
       This program encodes and decodes text strings using a cipher that
       can be specified by the user.
    import java.io.*;
    public class Cipher
       public static void printID()
          // output program ID
          System.out.println ("*********************");
          System.out.println ("*       Cipher      *");
          System.out.println ("*                   *");
          System.out.println ("*                          *");
          System.out.println ("*                   *");
          System.out.println ("*     CS 181-03     *");
          System.out.println ("*********************");
       public static void printMenu()
          // output menu
          System.out.println("\n\n****************************" +
                               "\n*   1. Set cipher code.    *" +
                               "\n*   2. Encode text.        *" +
                               "\n*   3. Decode coded text.  *" +
                               "\n*   4. Exit the program    *" +
                               "\n****************************");
       public static String getText(BufferedReader input, String prompt)
                                           throws IOException
          // prompt the user and get their response
          System.out.print(prompt);
          return input.readLine();
       public static int getInteger(BufferedReader input, String prompt)
                                           throws IOException
          // prompt and get response from user
          String text = getText(input, prompt);
          // convert it to an integer
          return (new Integer(text).intValue());
       public static String encode(String original, int offset)
          // declare constants
          final int ALPHABET_SIZE = 26;  // used to wrap around A-Z
          String encoded = "";           // base for string to return
          char letter;                   // letter being processed
          // convert message to upper case
          original = original.toUpperCase();
          // process each character of the message
          for (int index = 0; index < original.length(); index++)
             // get the letter and determine whether or not to
             // add the cipher value
             letter = original.charAt(index);
             if (letter >='A' && letter <= 'Z')          
                // is A-Z, so add offset
                // determine whether result will be out of A-Z range
                if ((letter + offset) > 'Z') // need to wrap around to 'A'
                   letter = (char)(letter - ALPHABET_SIZE + offset);
                else
                   if ((letter + offset) < 'A') // need to wrap around to 'Z'
                      letter = (char)(letter + ALPHABET_SIZE + offset);
                   else
                      letter = (char) (letter + offset);
             // build encoded message string
             encoded = encoded + letter;
          return encoded;
       public static String decode(String original, int offset)
          // declare constants
          final int ALPHABET_SIZE = 26;  // used to wrap around A-Z
          String decoded = "";           // base for string to return
          char letter;                   // letter being processed
          // make original message upper case
          original = original.toUpperCase();
          // process each letter of message
          for (int index = 0; index < original.length(); index++)
             // get letter and determine whether to subtract cipher value
             letter = original.charAt(index);
             if (letter >= 'A' && letter <= 'Z')          
                // is A-Z, so subtract cipher value
                // determine whether result will be out of A-Z range
                if ((letter - offset) < 'A')  // wrap around to 'Z'
                   letter = (char)(letter + ALPHABET_SIZE - offset);
                else
                   if ((letter - offset) > 'Z') // wrap around to 'A'
                      letter = (char)(letter - ALPHABET_SIZE - offset);
                   else
                      letter = (char) (letter - offset);
             // build decoded message
             decoded = decoded + letter;
          return decoded;
       // main controls flow throughout the program, presenting a
       // menu of options the user.
       public static void main (String[] args) throws IOException
         // declare constants
          final String PROMPT_CHOICE = "Enter your choice:  ";
          final String PROMPT_VALID = "\nYou must enter a number between 1" +
                                      " and 4 to indicate your selection.\n";
          final String PROMPT_CIPHER = "\nEnter the offset value for a caesar " +
                                       "cipher: ";
          final String PROMPT_ENCODE = "\nEnter the text to encode: ";
          final String PROMPT_DECODE = "\nEnter the text to decode: ";
          final String SET_STR = "1";  // selection of 1 at main menu
          final String ENCODE_STR = "2"; // selection of 2 at main menu
          final String DECODE_STR = "3"; // selection of 3 at main menu
          final String EXIT_STR = "4";  // selection of 4 at main menu
          final int SET = 1;            // menu choice 1
          final int ENCODE = 2;         // menu choice 2
          final int DECODE =3;          // menu choice 4
          final int EXIT = 4;           // menu choice 3
          final int ALPHABET_SIZE = 26; // number of elements in alphabet
          // declare variables
          boolean finished = false; // whether or not to exit program
          String text;              // input string read from keyboard
          int choice;               // menu choice selected
          int offset = 0;           // caesar cipher offset
          // declare and instantiate input objects
          InputStreamReader reader = new InputStreamReader(System.in);
          BufferedReader input = new BufferedReader(reader);
          // Display program identification
          printID();
          // until the user selects the exit option, display the menu
          // and respond to the choice
          do
             // Display menu of options
             printMenu(); 
             // Prompt user for an option and read input
             text = getText(input, PROMPT_CHOICE);
             // While selection is not valid, prompt for correct info
             while (!text.equals(SET_STR) && !text.equals(ENCODE_STR) &&
                     !text.equals(EXIT_STR) && !text.equals(DECODE_STR))       
                text = getText(input, PROMPT_VALID + PROMPT_CHOICE);
             // convert choice to an integer
             choice = new Integer(text).intValue();
             // respond to the choice selected
             switch(choice)
                case SET:
                // get the cipher value from the user and constrain to
                   // -25..0..25
                   offset = getInteger(input, PROMPT_CIPHER);
                   offset %= ALPHABET_SIZE;
                   break;
                case ENCODE:
                   // get message to encode from user, and encode it using
                   // the current cipher value
                   text = getText(input, PROMPT_ENCODE);
                   text = encode(text, offset);
                   System.out.println("Encoded text is: " + text);
                   break;
                case DECODE:
                   // get message to decode from user, and decode it using
                   // the current cipher value
                   text = getText(input, PROMPT_DECODE);
                   text = decode(text, offset);
                   System.out.println("Decoded text is: " + text);
                   break;
                case EXIT:
                   // set exit flag to true
                   finished = true ;
                   break;
             } // end of switch on choice
          } while (!finished); // end of outer do loop
          // Thank user
          System.out.println("Thank you for using Cipher for all your" +
                             " code breaking and code making needs.");
    }

  • My MacBook Pro was stolen and I need to sync my Iphone and iPad, what do I have to do in iTunes?

    My MacBook Pro was stolen and I need to sync my Iphone and iPad, how do I have to do it in iTunes?

    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st olen
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
     Cheers, Tom

  • I have captivate 6, I´m using Quizers part and I need to publish  file .app in .ipa, what do I have

    I have captivate 6, I´m using Quizers part and I need to publish  file .app in .ipa(ipad), what do I have to do to make it run in native way, that is without internet conection?

    Hi!
    That's an interesting question you have raised.
    I would recommend you to create your Captivate Project, Publish it to HTML5 output and Zip the Output Package,
    Use the PhoneGap to package it for iOS devices and produce .IPA file for the same .
    You can create an account here -- https://build.phonegap.com/
    I haven't tested it yet, but, I'll do it today.
    Let me know if this works out.
    Thanks,
    Anjaneai

  • I need an answer from a person. What do I have to do to get Adobe Flash?

    I am not computer savvy and I am getting frustrated because the reason I downloaded firefox was to get Adobe Flash. Argggg!
    What can you do to help me get it? I am caught in the endless loop of computer answers and I need a live person to tell me what to do.

    You can just look up Adobe or AdobeFlashPlayer. Just make sure it's from official Adobe site. I'm pretty new at personal computing, too. So much to learn! Don't get too frustrated!

  • Handling Reports if subject area is changed

    Hi,
    We are using OBIEE 11g. We developed around 30 reports and around 50 prompts but problem is the Subject Area we used is now INVAID because its Re-Named.
    My Question is what is the fastest way to link the reports and prompts to new subject area assuming all the table and column names will be same.
    Thanks

    You can create aliases for the subject area to reflect the same name used prior to the change. In order to do that follow the steps below:
    1) Open the RPD.
    2) Double click on the subject area which was renamed and navigate to the aliases tab.
    3) Click on New Icon and type the subject area name prior to the change.
    Thanks,
    -Amith.

  • What subject areas to include in BI Sales analytics?

    Need urgent help to find which subject areas to include in the execution plan?

    hi User,
    Have a look at
    http://download.oracle.com/docs/cd/E13697_01/doc/bia.795/e13766/configsales_analytics.htm
    Thanks,
    Saichand.v

  • HT201401 im trying to reset my iphone 4s and it says it needs the origional apple id and password. i do not have this because i bought the phone from someone who bought it from someone is there a way to get around this issue?

    im trying to reset a iphone 4s that i bought from someone. it is in the middle of the restoring process and it says it needs the origional apple id and password. i dont have this and the person i bought it from got it from someone else so there is no way for me to get that info. is there any way around this issue?

    No. There is no way around this. Without the credentials used to lock it, you can't use it at all. Return it to the person you got it from and get your money back. Failing that, turn it over to the police. There is a high likelyhood that it's stolen.

  • Help.  Need to create 3 methods to do what main did originally.

    good afternoon. I am new to programming with java and would like to change the current code that I had written below to include 3 methods to do all the work originally done in main. I would like a method to handle the input, a method to do the subtotals and a method to display the data. Main will simply call all 3 methods in order and when they end, main will end. I am struggling some on how this should look and am seeking some of your advice on accomplishing this task. Any help is greatly appreciated as I am struggling to separate this out properly to get it to compile.
    import java.util.Scanner;
    import java.text.NumberFormat;
    public class CateringProject
    // This program requests the name of an item to be catered, the price
    // of the item, and the quantity ordered. It will then calculate the
    // total cost plus tax.
    public static void main (String[] args)
    final double TAX_RATE = 0.06; // 6% sales tax
    int quantity;
    double subtotal, tax, totalCost, unitPrice;
    String itemName;
    Scanner scan = new Scanner (System.in);
    NumberFormat fmt1 = NumberFormat.getCurrencyInstance();
    NumberFormat fmt2 = NumberFormat.getPercentInstance();
    System.out.print ("Enter the item name: ");
    itemName = scan.nextLine();
    System.out.print ("Enter the unit price: ");
    unitPrice = scan.nextDouble();
    System.out.print ("Enter the quantity: ");
    quantity = scan.nextInt();
    itemName = itemName;
    subtotal = quantity * unitPrice;
    tax = subtotal * TAX_RATE;
    totalCost = subtotal + tax;
    // Print output with appropriate formatting
    System.out.println ("Item requested: " + itemName);
    System.out.println ("Price per item: " + fmt1.format(unitPrice));
    System.out.println ("Quantity of requested item: " + quantity);
    System.out.println ("Subtotal: " + fmt1.format(subtotal));
    System.out.println ("Tax: " + fmt1.format(tax) + " at "
    + fmt2.format(TAX_RATE));
    System.out.println ("Total: " + fmt1.format(totalCost));
    }

    Thank you for your response. This is, in essence, a homework problem. The only difference is that I am trying to "self-teach" myself java and have borrowed a book from a friend to help me do so. I am working through the coding problems in the book but am missing a key factor when I need a push in the right direction.... I have no instructor. I am wanting to learn this but do not have the resources yet to take a class at a recognized institution. I thought this might be a good way for me to reach out for help and a nudge. The catering code (which I have reposted using the code button below) is the first "project" that the book calls for. what I am trying to do now is the next.
    import java.util.Scanner;
    import java.text.NumberFormat;
    public class CateringProject
       //  This program requests the name of an item to be catered, the price
       //  of the item, and the quantity ordered.  It will then calculate the
       //  total cost plus tax.
       public static void main (String[] args)
          final double TAX_RATE = 0.06;  // 6% sales tax
          int quantity;
          double subtotal, tax, totalCost, unitPrice;
          String itemName;
          Scanner scan = new Scanner (System.in);
          NumberFormat fmt1 = NumberFormat.getCurrencyInstance();
          NumberFormat fmt2 = NumberFormat.getPercentInstance();
          System.out.print ("Enter the item name: ");
          itemName = scan.nextLine();
          System.out.print ("Enter the unit price: ");
          unitPrice = scan.nextDouble();
           System.out.print ("Enter the quantity: ");
          quantity = scan.nextInt();
          itemName = itemName;
          subtotal = quantity * unitPrice;
          tax = subtotal * TAX_RATE;
          totalCost = subtotal + tax;
          // Print output with appropriate formatting
          System.out.println ("Item requested: " + itemName);
          System.out.println ("Price per item: " + fmt1.format(unitPrice));
          System.out.println ("Quantity of requested item: " + quantity);
          System.out.println ("Subtotal: " + fmt1.format(subtotal));
          System.out.println ("Tax: " + fmt1.format(tax) + " at "
                              + fmt2.format(TAX_RATE));
          System.out.println ("Total: " + fmt1.format(totalCost));
    }

  • How to create a job scheduler and send a mail through this

    Hi All
    I working in oracle Apex,with oracle pl/sql
    Here there is one table named as AgreemenBusiness continuity and we are dealing with agreement.Here when we create new agreement With BUSINESSCONTINUITY "ANUALLY" then the agreement startdate is 10.3.2010 and enddate is 11.03.2011 so now i need to send mail to the specific contact person daily form 6-03-2011.
    Can any one give sample data and tell me how to do this
    Thanks & Regards
    Srikkanth.M

    Hi - there's example code in the docs for sending mail from plsql.
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/u_smtp.htm
    Doesn't Apex provide email functionality, I'd be surprised if it didn't include some kind of email mechanism for you to work with.

  • Need to Create Customer Master Data under Multiple Sales Areas

    Hi Gurus,
             My requirement is to create a customer under multiple sales areas by processing the Inbound Idoc function module "IDOC_INPUT_DEBITOR"( After generating Outbound Idoc and outbound is processed successfully).
             But, when I am trying to send the multiple sales areas information in segment "E1KNVVM". It is creating the customer under first sales area filled in first E1KNVVM segment and it is giving error that "Fill all required fields SAPMF02D 0111 ADDR1_DATA-NAME1" and it is not creating the customer under other sales areas.
            Following are the details of the Outbound Idoc which I have processed.
            Idoc Basic type : DEBMAS06
            Message          : DEBMAS
            I have filled required fields in E1KNA1M and E1KNVVM segments. But filled E1KNVVM segments  twice with different sales area data.
          Please help in solving this problem?

    is it really just one IDOC?
    I have never seen that SAP just does a part of one IDOC.
    the structure of DEBMAS ist like this:
    E1KNA1M
    --E1KNVVM
    E1KNVPM
    E1KNVDM
    E1KNVIM
    --E1KNB1M
    which means for your example it should be like this
    E1KNA1M
    --E1KNVVM
    E1KNVPM
    E1KNVDM
    E1KNVIM
    --E1KNVVM
    E1KNVPM
    E1KNVDM
    E1KNVIM
    --E1KNB1M
    and in this case I am very certain that it would never just process and create the part for one sales area.
    Maybe your customer already exists from ealier tests with just one sales area.
    Display your IDOC in WE02 or WE05 and make sure you have a value in name1 field

  • I need to create three different sized posters - how do I do this?  I'm looking for a place to enter specs or know that my design can accommodate specific dimensions.

    I'm not Photoshop saavy, but I can work well in Pages.  I just need to know how to resize for different size printed materials.  For example, how do I change the size of one design to accommodate three printed pieces - 8.5" x 11", a 11" x 17", and then the same image in 24"x36"?
    Any help would be greatly appreciated!!

    Commercial Printing requires images to be 300 dpi (pixels per inch).
    You will have to do the maths as we don't know how big the images are, whether they fill each size or only part of them.
    If they bleed (go off the edge of the paper) they will need an extra 3/8" (.375") on each edge.
    So for an image to fill the largest size and bleed you need an image 7425 x 11025 pixels. I hope you have a good camera. You can aways reduce the dimensions down from that.
    Peter

Maybe you are looking for

  • HELP I'M AN IDIOT!!! AND I CAN'T EXPORT THIS TO MY USB

    Hello I am using the trial version of Adobe Premiere Pro 5.0 and I cannot export my movie (Sequence) anywhere...  I'd like to send it to a friend (who is a mac user) as an MOV file.  But right now I can't even save it to my desktop.  Please help as I

  • Cannot select any objects in CS5.5 - Help

    I built a document in InDesign 5.5 yesterday (the first after upgrading), and had placed several objects and created text boxes in the document. When I opened it up today to make changes, I am unable to select anything on the page. None of the tools

  • Transient vo attribute binding returning null

    i have a editable form with multiple input text components which i created by dropping a collection on page. now i want to add more fields which are transient and read only. i added two transient attributes in VO with Updatable to Never and queryable

  • Need help in booklet printing a pdf???

    hi I have a pdf file with around 200 pages ...I am trying to print a book let out of it but the sequence of pages I need it only available if I select 4pages at a time other setting is duplex printing double sided....the sequence I need it on front p

  • Sample inspection during first time procurement.

    Hi, I have a scenario when ever I start procuring from a new vendor, Plant will be asking for sample say 10 pieces. And when vendor supplies the same, the quantity will go for quality inspection. Once all the parameters are met order will be posted t