Help with substitution decryption plz!!

Hi there,
I'm relatively new to developing with Java, and as a piece of work I have to decrypt a cipher text (which is quite long, near 11,500 characters) that has been encrypted with substitution and is in english.
It consists of upper case letters, and some punctuation symbols, although whether they will actually function as punctuation i'm not sure; they seem to be just breaking the cipher into chunks of the alphabetic characters, and not in any uniform manner (eg every 12 characters). I did think maybe they'll be where spaces will need to go but that would be a little obvious, and some 'chunks' are too large for that to even make sense (over 50 characters). Maybe they're just a kind of wildcard to make it more complicated to analyse.
As i understand it i need to use frequency tables_. I want to deduce the letters for those that have a unique frequency (to be sure i've not substituted with the wrong letter if/when there is a few to choose from at the frequency). I think i know how to do this;
use 2d arrays-
-- one for the frequency table i'll compare the cipher text against
-- i have a few examples of these from the internet that i'll base it on,
since i don't have a piece of the original plaintext to analyse.
-- is there a better way to get the frequency for comparison? There is some variation in the tables i've managed to find so.
-- another table for storing the analysis of the cipher text
The dimensions will be the frequency, and the character.
For the character, do I need to use ASCII representation? or would it be ok just using characters. Just figured i need to convert the ASCII back into characters to an output file is all. Is there an implemented way to do this conversion in Java easily? I've not had to work with it before so.
Once i've done that part, I understand I need to use a wordlist_ to try and find words in what i've decrypted so far, and try to further the decryption with this also; ie if i find a word which adds new characters, add those new characters to the whole cipher. When finding words would i need to represent the cipher i'm working on with just the characters i have deduced, and say '_' as a character to represent one we don't yet have? eg if we had substituted B and T in, and the word being represented was 'better' would i need to hunt for words with a representation like this-> BETTE_ for example.
Hope that bit made sense!!! lol.
Also, i need to insert spaces where relevant (after a discovered word i suppose).
This is the part that is most troubling me, any ideas of where to start?
Firstly, i've not been able to find any wordlist's on the internet, know any sources? Is there a way i could use a dictionary stored on my computer elsewhere? say the dictionary from openOffice? I haven't worked with dictionaries or wordlists before so, any help with this part will greatly improve my understanding/progress.
Is there an implemented way to do this any of this in Java easily? I'm using the Eclipse IDE just so you know.
That's my thoughts and questions for the moment, might have more after i hear advice (sorry if it's rather long, just want to be clear).
Hope you can help,
Thanks in advance!
ps. what is the text called you have when you have decrypted it? simply the decryption text? or just plaintext again? is there a term for when it's part way decrypted? like it's not the plaintext yet?

H84ll1 wrote:
anybody else out there had much experience with doing this kind of decrytion? I'm quite stuck on the worlist part, where can i get a good one!!? lol.lol. did you really try googling? this search
http://www.google.com/search?q=wordlist&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a
produces this result:
http://wordlist.sourceforge.net/
Does anyone know if it's possible to use something already on the computer for the worlist/dictionary part?it looks like the link above will give you better lists
>
I really need help on this,
anyone..?google

Similar Messages

  • Help  with DES  decryption

    Hello !
    I wrote the code for DES Encryption , which i have tested and works perfectly, consistent with the results expected.
    But I have not been able to implement the decryption process correctly asI have not yet understood the way i need to shift the order of keys , or their elements.I tried reversing the left shifting sequence , but it didn't solve the problem
    Please suggest something .I just need to understand the exact process used for decryption.
    Many Thanks..

    @dstuz
    I haven't been reinventing the wheel , but I have been working out the DES code on my own.
    I have already coded the application for encryption & it works perfectly- thoroughly verified.
    Now since i have been looking to finish the cipher by implementing the Decryption stage..i am stuck because there isn't enough info available to actually clarify my doubt.Some variation has to be made in the way we apply keys to the Right Expanded array but i haven't quite figured out how..
    I can do the coding on my own..infact 90% of the coding is finished
    FYI.
    Its just this last step , where i have been stuck , trying to figure out how the last step is to be done.
    I just need help to exactly understand the process & lend the finishing touch to the cipher.

  • Help with Homework.. plz reply back

    Here the project is below, i am very new to this computer class and my teacher isnt willing to help me out at all, So iv decided to come online and ask for help. Can anyone show me how to do this?
    CIS 111 Project 2 (50 points)
    Due Wednesday, September 17 by 5:00 pm
    Description
    In this assignment, you will write a simple dice game between the user and the computer. Here is an outline of the game rules:
    Each player (user and computer) rolls two dice (values 1-6)
    If both the user and the computer roll doubles (both dice have the same value), then the player with the highest total wins. In case of a tie, the user wins.
    If just the user rolls doubles, they win.
    If just the computer rolls doubles, they win.
    If nobody rolls doubles, then the player with the highest total wins. In case of a tie, the user wins.
    Here is an example run of the program:
    You rolled: 1 and 6*
    Computer rolled: 2 and 2+
    Computer wins+
    Note: Your program should behave DIFFERENTLY every time you run it, with different values for the dice. We will do that using random numbers.
    Requirements
    This program should contain a single class (called Proj2) with a main method. Your program must compile (by command-line) with the statement:
    javac Proj2.java
    It must then run with the command:
    java Proj2
    Alternatively, your program must compile and run in BlueJ.
    In this program, you will need to generate random numbers to simulate ?rolling? dice. Here?s an example:
    //Do this at the very top of the file:
    import java.util.*;
    //Do this once at the beginning of main:
    Random rand = new Random();
    //Do this every time you want to roll a die:
    int val = rand.nextInt(6) + 1;
    Now, val holds a random integer between 1 and 6 (either 1, 2, 3, 4, 5, or 6). Each time you roll a die, use this technique to generate a random value.
    Here are some additional requirements/tips:
    Your program should look EXACTLY like the example above when
    it runs (except, of course, for the values of the dice)
    Remember that in case of a tie, the user wins
    You will want to use if-statements to figure out which player wins

    Based on your post, you are not asking for help. You are asking for someone to do your homework for you. That is not acceptable. Or, at the very least, you are asking for somebody to read your mind and figure out what you're having problems with.
    If you want help, you need to try to do it yourself, and post your best effort here, using code tags to preserve formatting, and ask a specific question about the specific parts that are giving you problems.
    If you have no idea where to start, then you need to talk to you teacher. If your teacher won't talk to you, then you need to bring that up with the school's administration. It is not this forum's role to teach you what you should be learning in class.

  • Help with my bb plz

    hi guys n girls i am having big problems with my bb 9300 3g phone i can not setup an email account coz it is asking for me to set up an enterprise account and i have contacted o2 my service provider and got no where cozi need the email account to set up my bbm and i need it for work n stuff like that so if people can help me out please do thanks simon

        Hello emusidaru!
    I can help! The reason you're getting that error message, is because there is corrupt data on your memory card. I have a Blackberry article that describes the issue and resolution! http://bit.ly/P4bRJJ That should fix it!
    Thank you!
    Katie H
    VZW Support
    Follow us on Twitter @VZWSupport

  • Help with mysql query plz anyone i am begging!!!

    Hi everyone pls forgive me i am new to java. can someone pls tel me where i am going wrong wit this mysql query?
    <sql:query var="parish" maxRows="1" dataSource="jdbc/gav">
    SELECT ParishName, OwnerOccupierHousehold, OwnerOccupierPercOfOverall, OwnerOccupierCo2Emissions,
    SocialRentedHousehold, SocialRentedPercOfOverall, SocialRentedCo2Emissions, PrivateRentedHousehold,
    PrivateRentedPercOfOverall, PrivateRentedCo2Emission, TotalHouseholds, TotalPerc, Average,
    Total2001, TotalEstimatedTotal2006, EmissionsPerPerson, EmissionPerHousehold, EmissionsPerParish,
    EnergyChampionsNeeded, NumberOfPeopleAtWork, NumberOfSchoolAgeChildren
    FROM base_data as b
    WHERE b.id = ? <sql:param value="${param.id}"/>
    <sql:param value="${param.id}"/>
    </sql:query>
    <c:set var="parish" scope="request" value="${parish.rows[0]}"/>
    here is the error i get:
    java.sql.SQLException: Parameter index out of range (2 > number of parameters, which is 1).
    please any help would be appreciated!!! Thanks in advance guys .

    here is my code for the form on the index page:
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%@taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
    <sql:query var="parish" dataSource="jdbc/gav">
    SELECT id, ParishName FROM base_data
    </sql:query>
    <form action="response.jsp">
    Select a Parish: <select name="id">
    <c:forEach var="parish" items="${parish.rows}">
    <option value="${parish.id}">${parish.ParishName}</option>
    </c:forEach>
    </select><br><input type="submit" value="submit" name="submit" /></form>
    here is the code for the response page:
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%@taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
    <sql:query var="parish" maxRows="1" dataSource="jdbc/gav">
    SELECT b.id, b.ParishName, b.OwnerOccupierHousehold, b.OwnerOccupierPercOfOverall, b.OwnerOccupierCo2Emissions,
    b.SocialRentedHousehold, b.SocialRentedPercOfOverall, b.SocialRentedCo2Emissions, b.PrivateRentedHousehold,
    b.PrivateRentedPercOfOverall, b.PrivateRentedCo2Emission, b.TotalHouseholds, b.TotalPerc, b.Average,
    b.Total2001, b.TotalEstimatedTotal2006, b.EmissionsPerPerson, b.EmissionPerHousehold, b.EmissionsPerParish,
    b.EnergyChampionsNeeded, b.NumberOfPeopleAtWork, b.NumberOfSchoolAgeChildren
    FROM base_data as b
    WHERE b.id = ? <sql:param value="${param.id}"/>
    </sql:query>
    <c:set var="parish" scope="request" value="${parish.rows[0]}"/>
    i display the results like this : ${parish.EmissionsPerParish}
    the user should be able to select a parish from a form and then sql query created and then i want to show the row results on the response page.
    could you tell me where so should be a simple process although not simple enough as it may seem.
    thanks for the advice keith

  • Need help with a query plz

    17.
    hi iam preparing for certification      
    Consider the following query:
    SELECT deptno, ename, salary salary, average,
    salary-average difference
    FROM emp, (SELECT deptno dno, AVG(salary) average FROM emp
    GROUP BY deptno)
    WHERE deptno = dno
    ORDER BY 1, 2;
    Which of the following statements is correct?
    1. The query will fail because no alias name is provided for the subquery.
    2. The query will fail because a column selected inside the subquery is referenced outside the scope of the subquery.
    3. The query will work without errors.
    4. GROUP BY cannot be used inside a subquery.
    ans:c
    when i execute the above query iam receiving an error at line 6
    why?
    thank u
    rajiv

    As a sidenote, the select works on 10g1.
    WITH emp AS (SELECT OBJECT_id deptno, OBJECT_name ename, OBJECT_id salary
                   FROM user_objects)
    SELECT   deptno, ename, salary salary, average, salary - average difference
        FROM emp, (SELECT   deptno dno, AVG (salary) average
                       FROM emp
                   GROUP BY deptno)
       WHERE deptno = dno
    ORDER BY 1, 2;C.

  • Re: can anyone help with this prog plz

    My suggestion is that you code this thing before the due date, and don't forget to turn it in!
    HTH
    Lee

    crap. maybe we take our giro claim and have a proper
    piss up on "15 quid all you can drink nite" at
    Tivoli, to drown our sorrows.There's guy who was out after work for a few pints with his buddy and wound up staying out way too late, getting hammered and barfing on his shirt.
    He was afraid of what his wife would say, so his buddy gave him a &#163;20, stuck it in his pocket and said, "Just tell her I did it, and I gave you a &#163;20 to cover the cleaning bill."
    So the guy gets home to find his wife pissed off beyond redemption. She chastises him for coming home so late, and notices the huge puke stain on his shirt. He says he was busy all night taking care of his drunk buddy, who was the one who unloaded on his shirt, and he reaches into his shirt pocket and explains the &#163;20.
    "But there's &#163;40 here," says the wife.
    "Oh, I forgot," the drunk guy says; "he shit in my pants, too."

  • Hi i need help with iCloud mailing plz help me!

    hi my name its rexhep kamberi am having so many troubels with icloud mail i keep putting paswoord but keeps asking me and asking i dont know why but please help

    Try to delete your account from your device (Settings > iCloud) and then set it up again. This fixes the problem in most cases.

  • Need help with color selector plz

    Ok, I am green to the program illustrator cs4. But, I know its a setting somewhere that I am missing, just not sure of the correct place to check or change. When I create an image, say I select the following hex color  #0039a6 to use as a background color, when I save the image, the actual color is: 1F429B
    why does it convert it and how can i change it to not do that?

    cswd,
    To keep the colour, your File>Document Color Mode should be RGB, not CMYK.
    In the CMYK Color Mode, when a colour is outside the CMYK gamut, it will be changed to the (hopefully) best equivalent colour within the CMYK gamut.
    Obviously, if you need the colour for CMYK print, you should work in CMYK.
    For exclusive web/other screen uses, stay in RGB.
    If you need both CMYK print and RGB screen use, you will (normally) get different appearences unless you start in CMYK.

  • Im DROWNING! need help with a simple java assignment! plz someone help me!

    i need help with my java assignment, with validating a sin number. easy for must who know java. im drowning... please help!

    You will need to store each digit of the social insurance number in a field of its own. To validate the entry you will:
    1. Multiply the 2nd, 4th, 6th and 8th digit by 2.
    2. If the product of any of the four multiplications result in a value greater than 9, add the two resulting digits together to yield a single-digit response. For example 6 * 2 = 12, so you would add the 1 and the 2 to get a result of 3.
    3. Add these four calculated values together, along with the 1st, 3rd, 5th, and 7th digits of the original number.
    4. Subtract this sum from the next highest multiple of 10.
    5. The difference should be equal to the 9th digit, which is considered the check digit.
    Example of validating S.I.N. 765932546
    1st digit 7
    2nd digit (6*2 =12 1+2=) 3
    3rd digit 5
    4th digit (9*2 = 18 1+8 =) 9
    5th digit 3
    6th digit (2*2 = 4) 4
    7th digit 5
    8th digit (4*2 = 8) 8
    Total 44 next multiple of 10 is 50
    50-44 = 6 which is the 9th digit
    Therefore the S.I.N. 765932546 is Valid
    ********* SIN Validation *********
    Welcome - Please enter the first number: 120406780
    Second digit value multiplied by 2 4
    Fourth digit value multiplied by 2 8
    Sixth digit value multiplied by 2 12
    Eighth digit value multiplied by 2 16
    Value derived from 6th digit 3
    Value derived from 8th digit 7
    The total is 30
    Calculated digit is 10
    Check digit must be zero because calculated value is 10
    The SIN 120406780 is Valid
    this is my assignemtn this is what i have! i dont know where to start! please help me!
    /*     File:     sinnumber.java
         Author:     Ashley
         Date:     October 2006
         Purpose: Lab1
    import java.util.Scanner;
    public class Lab1
              public static void main(String[] args)
                   Scanner input = new Scanner(System.in);
                   int sin = 0;
                   int number0, number1, number2, number3, number4, number5, number6, number7, number8;
                   int count = 0;
                   int second, fourth, sixth, eighth;
                   System.out.print("\t\n**********************************");
                   System.out.print("\t\n**********SIN Validation**********");
                   System.out.print("\t\n**********************************");
                   System.out.println("\t\nPlease enter the First sin number: ");
                   sin = input.nextInt();
                   count = int.length(sin);     
                   if (count > 8 || count < 8)
                   System.out.print("Valid: ");
         }

  • Urgent help with simple BPEL process

    Hello there,
    I need help with BPEL project.
    I'm new in JDeveloper&BPEL and i'd like to create process that we'll after sending employee ID return personal details of that employee.
    I did create application, BPEL project and connection to the database properly but somehow i can't deal input and output variable.
    Can someone please describe me step by step what i need to do, how to set up variable etc
    Thx,
    DI

    Me again. This time i hope i'll get some help :(
    Solution to my problem is change to the data-sources.xml and oc4j-ra.xml.
    Since i have database on same machine with BPEL PM Server that uses Olite DB when i tried to make changes i found in tutorials, here on forum and rest of internet
    BPEL PM Server just freeze, didn't start at all.
    Here are data-sources.xml, oc4j-ra.xml and DBAdapter wsdl file. Plz can someone make changes to those files i'll appreciate that.
    HOME\bpel\system\appserver\oc4j\j2ee\home\application-deployments\default\DbAdapter
    oc4j-ra.xml
    <?xml version="1.0"?>
    <oc4j-connector-factories xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.oracle.com/technology/oracleas/schema/oc4j-connector-factories-10_0.xsd" schema-major-version="10" schema-minor-version="0" >
         <imported-shared-libraries>
              <import-shared-library name="oracle.bpel.common"/>
              <import-shared-library name="oc4j.internal"/>
              <import-shared-library name="oracle.xml"/>
              <import-shared-library name="oracle.sqlj"/>
              <import-shared-library name="oracle.toplink"/>
              <import-shared-library name="oracle.jdbc"/>
         </imported-shared-libraries>
         <connector-factory location="eis/DB/DBConn_XE" connector-name="Database Adapter">
              <config-property name="xADataSourceName" value="jdbc/DBConn_XEDataSource"/>
              <config-property name="dataSourceName" value="loc/DBConn_XEDataSource"/>
              <config-property name="platformClassName" value="oracle.toplink.platform.database.Oracle9Platform"/>
              <config-property name="usesNativeSequencing" value="true"/>
              <config-property name="sequencePreallocationSize" value="50"/>
              <config-property name="defaultNChar" value="false"/>
              <config-property name="usesBatchWriting" value="true"/>
              <connection-pooling use="none">
              </connection-pooling>
              <security-config use="none">
              </security-config>
         </connector-factory>
         <connector-factory location="eis/DB/BPELSamples" connector-name="Database Adapter">
              <config-property name="xADataSourceName" value="jdbc/BPELSamplesDataSource"/>
              <config-property name="dataSourceName" value=""/>
              <config-property name="platformClassName" value="oracle.toplink.platform.database.Oracle9Platform"/>
              <config-property name="usesNativeSequencing" value="true"/>
              <config-property name="sequencePreallocationSize" value="50"/>
              <config-property name="defaultNChar" value="false"/>
              <config-property name="usesBatchWriting" value="false"/>
              <connection-pooling use="none">
              </connection-pooling>
              <security-config use="none">
              </security-config>
         </connector-factory>
    </oc4j-connector-factories>
    HOME \bpel\system\appserver\oc4j\j2ee\home\config
    data-sources.xml
    <?xml version="1.0" standalone='yes'?>
    <!DOCTYPE data-sources PUBLIC "Orion data-sources" "http://xmlns.oracle.com/ias/dtds/data-sources-9_04.dtd">
    <data-sources>
    <!-- Connection pool for oracle database -->
    <!--
    <connection-pool name="BPELPM_CONNECTION_POOL">
    <connection-factory factory-class="oracle.jdbc.OracleDriver"
    url="jdbc:oracle:thin:[username]/[password]@[hostname]:[port]:[sid]" />
    </connection-pool>
    -->
    <!-- Connection pool for oracle lite -->
    <connection-pool name="BPELPM_CONNECTION_POOL">
    <connection-factory factory-class="oracle.lite.poljdbc.POLJDBCDriver"
    user="system"
    password="manager"
    url="jdbc:[email protected]:1531:orabpel" />
    </connection-pool>
    <managed-data-source name="BPELServerDataSource"
    connection-pool-name="BPELPM_CONNECTION_POOL"
    jndi-name="jdbc/BPELServerDataSource" tx-level="global"/>
    <managed-data-source name="BPELServerDataSourceWorkflow"
    connection-pool-name="BPELPM_CONNECTION_POOL"
    jndi-name="jdbc/BPELServerDataSourceWorkflow" tx-level="local"/>
    <managed-data-source name="BPELSamplesDataSource"
    connection-pool-name="BPELPM_CONNECTION_POOL"
    jndi-name="jdbc/BPELSamplesDataSource" />
    </data-sources>
    DBAdapter wsdl file
    GetData_WS.wsdl
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
    name="GetData_WS"
    targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/GetData_WS/"
    xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/db/GetData_WS/"
    xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:jca="http://xmlns.oracle.com/pcbpel/wsdl/jca/"
    xmlns:pc="http://xmlns.oracle.com/pcbpel/"
    xmlns:top="http://xmlns.oracle.com/pcbpel/adapter/db/top/GetDataWS"
    xmlns:hdr="http://xmlns.oracle.com/pcbpel/adapter/db/"
    xmlns="http://schemas.xmlsoap.org/wsdl/">
    <import namespace="http://xmlns.oracle.com/pcbpel/adapter/db/" location="DBAdapterOutboundHeader.wsdl"/>
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://xmlns.oracle.com/pcbpel/adapter/db/top/GetDataWS"
    schemaLocation="GetDataWS_table.xsd"/>
    </schema>
    </types>
    <message name="EmpDetailsViewCollection_msg">
    <part name="EmpDetailsViewCollection" element="top:EmpDetailsViewCollection"/>
    </message>
    <message name="GetData_WSSelect_EMP_ID_inparameters">
    <part name="GetData_WSSelect_EMP_ID_inparameters" element="top:GetData_WSSelect_EMP_IDInputParameters"/>
    </message>
    <portType name="GetData_WS_ptt">
    <operation name="GetData_WSSelect_EMP_ID">
    <input message="tns:GetData_WSSelect_EMP_ID_inparameters"/>
    <output message="tns:EmpDetailsViewCollection_msg"/>
    </operation>
    </portType>
    <binding name="GetData_WS_binding" type="tns:GetData_WS_ptt">
    <jca:binding />
    <operation name="GetData_WSSelect_EMP_ID">
    <jca:operation
    InteractionSpec="oracle.tip.adapter.db.DBReadInteractionSpec"
    DescriptorName="GetDataWS.EmpDetailsView"
    QueryName="GetData_WSSelect"
    ReturnSingleResultSet="false"
    MappingsMetaDataURL="GetDataWS_toplink_mappings.xml" />
    <input>
    <jca:header message="hdr:OutboundHeader_msg" part="outboundHeader"/>
    </input>
    </operation>
    </binding>
    <!-- Your runtime connection is declared in
    J2EE_HOME/application-deployments/default/DbAdapter/oc4j-ra.xml
    These 'mcf' properties here are from your design time connection and
    save you from having to edit that file and restart the application server
    if eis/DB/DBConn_XE is missing.
    These 'mcf' properties are safe to remove.
    -->
    <service name="GetData_WS">
    <port name="GetData_WS_pt" binding="tns:GetData_WS_binding">
    <jca:address location="eis/DB/DBConn_XE"
    UIConnectionName="DBConn_XE"
         ManagedConnectionFactory="oracle.tip.adapter.db.DBManagedConnectionFactory"
         mcf.DriverClassName="oracle.jdbc.OracleDriver"
    mcf.PlatformClassName="oracle.toplink.platform.database.oracle.OraclePlatform"
    mcf.ConnectionString="jdbc:oracle:thin:@localhost:1521:xe"
    mcf.UserName="hr"
    mcf.Password="62C32F70E98297522AD97E15439FAC0E"
    />
    </port>
    </service>
    <plt:partnerLinkType name="GetData_WS_plt" >
    <plt:role name="GetData_WS_role" >
    <plt:portType name="tns:GetData_WS_ptt" />
    </plt:role>
    </plt:partnerLinkType>
    </definitions>
    Thx,
    DI

  • Need help with interface development

    Hi i need help with requirement below with developing interface between or online order system and sap plz lemme know what is bapi i use for creating customer, update and assigining partner id to costumer.
    SAP Development
    1.     Using standards SAP functional module (with BAPI), create interface that will create/change Ordering party customer in SAP. Following fields are mandatory for customer creation:
    •     MANDT     Client
    •     VKORG     Sales organization
    •     VTWEG     Distribution Channel
    •     SPART     Division
    •     KDGRP     Customer Group (= “ZORP)
    •     KUNNR     Customer number
    •     NAME1     Name 1
    •     NAME 2     Name 2 (if required)
    •     SORTL     Search term (short description)
    •     ZZALTKN     Search term 2 (old customer number)
    •     LAND1     Country
    •     ORT01     City
    •     PSTLZ      Zip Code
    •     REGIO      Region (state in USA)
    •     STRAS     Street
    •     TELF1     Primary telephone number
    •     TELFX     Primary Fax number
    •     ZZPRPLANS     Payment Plan
    •     CCINS     Payment card: Card type
    •     CCNUM     Payment cards: Card number
    •     CCDEF     Payment Card: Default Card Indicator
    •     ZBDGID     Customer Budget ID
    •     ZHOLD     Budget Hold indicator
    •     ZZCOSTCENT     Cost Center
    2.     Upon successful customer creation system will issues “S” (success) message that customer has been created.
    3.     New ordering party customer created in step ½, will have to be assigned as new partner to its belonging Sold-to/Ship-to customer. Use standard SAP customer functional module in order to perform this partner ID assignment. Partner ID for ordering party should be “ZO”.
    1.7     Enhancement Functionality
    Apart from creating a new interface to do the required functionality, the Order Create Interface also has to be changed to accommodate a field to pass the Ordering Party Number on the Order. The technicalities of how we are going to implement the interface will be laid out in the Tech Specs.
    Thanks
    in advance

    You have double posted, please mark this one as "solved on my own" and refer to this thread
    need help with interface development
    Regards,
    Rich Heilman

  • How to read the 'Input help with fixed values' of domain .

    How to read the 'Input help with fixed values' of domain .
    The domain has a Value range i want to read those values .
    Are these values stored in any table ?
    Plz help me i need it ver badly...
    Thanks in Advance...

    Hi Chandra Shekhar,
    To read the 'Input help with fixed values' of domain , you can use the function module : HR_P_GET_FIXED_VALUE_TEXT.
    iIf you enter the domain name, you will find the fixed values entered in the domain.
    These values are stored in a table DD07L(DD zero 7 L). Here the values are stored based on domain name.
    See if it works for you.
    Award points if its helpful.
    Regards,
    Bhanu

  • My problem started when i connected my iphone5 into mac book and i started restoring data, by that i lost my recent photo's ,i tryed a program but it was recovering the previous photo's not the recent once ... need ur help what to do plz....thank u

    my problem started when i connected my iphone5 into mac book and i started restoring data, by that i lost my recent photo's ,i tryed a program but it was recovering the previous photo's not the recent once ... need ur help what to do plz....thank u

    Not much you can do.  You overwrote your current data with older data when you restored the phone from that backup.  Your data's gone.

  • Error "Conflict with Substitutions (IT 2003/02) from 01.04.2010 to 31.12.99

    Hi Experts,.
    We got a query on approval of leave from Portal. Could you please help me in resolving the issue.
    Manager was unable to approve the leave for one of his reportee on a specific date.
    The reportee applied for Casual leave for a half a day on 29.06.2011.Thje leave request has to come work list of the approver.
    When approver/manager tries to approve this leave for the reportee, system is throwing an error that u201CConflict with Substitutions (IT 2003/02) from 01.04.2010 to 31.12.9999.
    I have checked the IT 2003 for the reportee and found a record from the date 01.04.2010 to 31.12.9999.
    Why the system is throwing an error for the employee. Please share your idea to solve the problem.
    Regards,
    Sairam.

    Hi Dilek,
    Thank you very much  for the reply.
    I went to the path which you mentioned upto below.
    Personnel Management - EMployee self-service - Service-Specific Settings - Working time - Leave Request - Processing Processes - Configure output of messages -
    We did nt maintain any rule group for customizing tab.Sap standard is showing as rule group.No details has been maintained.
    Alot of employees are having substitutions,most of the  approvers are able to approve leaves of the employees who are having substitutions.This is a peculiar case,where the approver is getting an error with conflict with substitutions.
    In R/3 we are getting a warning message and able to save the leave for this employee.
    Even i tried with other employees who are having the substitutions,system is behaving the same.
    Please advice me to resolve the problem.
    Regards,
    Sairam.

Maybe you are looking for