Help needed on mapping information for AT701 element in EDI X12 214 Transportation type (X12_00401_214 schema)

Hi all,
As per the EDI defined standard schema, AT701 element takes the following Enumeration values.
<xs:element minOccurs="0" name="AT701" type="X12_ID_1650">
<xs:annotation>
<xs:appinfo>
<b:fieldInfo notes="Shipment Status Code_1650" />
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:simpleType name="X12_ID_1650">
<xs:restriction base="xs:string">
<xs:enumeration value="A3" />
<xs:enumeration value="A7" />
<xs:enumeration value="A9" />
<xs:enumeration value="AF" />
<xs:enumeration value="AG" />
<xs:enumeration value="AH" />
<xs:enumeration value="AI" />
<xs:enumeration value="AJ" />
<xs:enumeration value="AM" />
<xs:enumeration value="AN" />
<xs:enumeration value="AP" />
<xs:enumeration value="AR" />
<xs:enumeration value="AV" />
<xs:enumeration value="B6" />
<xs:enumeration value="BA" />
<xs:enumeration value="BC" />
<xs:enumeration value="C1" />
<xs:enumeration value="CA" />
<xs:enumeration value="CD" />
<xs:enumeration value="CL" />
<xs:enumeration value="CP" />
<xs:enumeration value="D1" />
<xs:enumeration value="I1" />
<xs:enumeration value="J1" />
<xs:enumeration value="K1" />
<xs:enumeration value="L1" />
<xs:enumeration value="OA" />
<xs:enumeration value="OO" />
<xs:enumeration value="P1" />
<xs:enumeration value="PR" />
<xs:enumeration value="R1" />
<xs:enumeration value="RL" />
<xs:enumeration value="S1" />
<xs:enumeration value="SD" />
<xs:enumeration value="X1" />
<xs:enumeration value="X2" />
<xs:enumeration value="X3" />
<xs:enumeration value="X4" />
<xs:enumeration value="X5" />
<xs:enumeration value="X6" />
<xs:enumeration value="X8" />
<xs:enumeration value="XB" />
</xs:restriction>
</xs:simpleType>
Now, in my sample input file I am having a column "MileStone", and for example: If I have
"Picked Up Date" in that column, I need to pass "A3" as the value for
AT701 element as per the above code snippets. 
Please let me know how to map the "Milestone to "AT701" element.
If I straight away map those two fields, I am getting the below error : 
error btm1046: Output validation error: The 'AT701' element is invalid - The value 'MileStone_0' is invalid according to its datatype 'http://schemas.microsoft.com/BizTalk/EDI/X12/2006:X12_ID_1650' - The Enumeration constraint failed.
So, please guide me on how to map the above fields using the functoids. 
Thanks in Advance..

Hi Anand,
You can try
Value Mapping functiod along with Logical Equal functiod for this requirement.
Connect the element “MileStone”
to the Logical Equal functiod as the it’s first parameter. And add “Picked Up Date”
as the second parameter.
Connect output of the Logical Equal functiod as the first parameter to the Value Mapping functiod and “A3"
as the second parameter.
Connect the output of
Value Mapping functiod “AT701”
element.
This maps the value “A3”
to the element “AT701”, if the value of “MileStone” element is
“Picked Up Date”
If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

Similar Messages

  • Warning Messages - Could not find schema information for the element applicationSettings - App.Config of a console app

    This is my app.config file
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
        <configSections>
            <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
                <section name="IntelBrandFX.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
            </sectionGroup>
        </configSections>
      <appSettings>
        <add key="connStr" value="Data Source=tmvnasql1.tmvn.com;Initial Catalog=brandplan;Integrated Security=True"/>
      </appSettings>
      <applicationSettings>
        <IntelBrandFX.Properties.Settings>
          <setting name="IntelBrandFX_rollupViewerService_extract" serializeAs="String">
            <value>https://viewer.rollup.com/omdsp2008/extract.asmx</value>
          </setting>
        </IntelBrandFX.Properties.Settings>
      </applicationSettings>
    </configuration>
    And the Warning messages  are
    Message 1 Could not find schema information for the element 'applicationSettings'.
    Message 2 Could not find schema information for the element 'IntelBrandFX.Properties.Settings'.
    Message 3 Could not find schema information for the element 'setting'.
    Message 4 Could not find schema information for the attribute 'name'.
    Message 5 Could not find schema information for the attribute 'serializeAs'.
    Message 6 Could not find schema information for the element 'value'.
    Althought they do no hinder me from successfully running the project. these messages are annoying. I have seen many articles on the web but could nowhere find the exact schemas for that the above elements that I could add to the  DotNetConfig.xsd file.
    Could somebody give me an idea how to create xsds for the elements above and include in the dotnetConfig.xsd.
    I understand what needs to be done but not sure of the exact way to do it.
    Thanks,

    You don't need to modify the dotnetconfig.xsd.  All you need to do is generate an XSD for your section and let VS know where it is at.
    1) Create your XSD using any of the various tools available or by hand.
    2) Copy your XSD into the <VSDir>\Xml\Schemas directory.
    3) Create a catalog file for your schema.
    4) Restart VS and it'll load the XSD and give you Intellisense.
    Here's the MSDN documentation for it: http://msdn.microsoft.com/en-us/library/ms255821.aspx
    Michael Taylor - 8/18/09
    http://p3net.mvps.org

  • Using Project Settings creates an app.config and dozens of errors about "Could not find schema information for the element...

    I am trying to work with Application settings.  I would just like to put together a very simple example of using these, but I can't get the most basic example to work.  Virtually every tag regarding the new Settings produces an Error "Could not find the schema information for the element "applicationSettings". or the element "Settings" etc. etc.  I am not using IIS, this is not a Web Project, and I am not working with User Settings.  Just simple read-only Application Settings.  I've read every MSDN page regarding this subject, I don't see that I am missing a reference - HELP !!!
    REPRODUCING THE PROBLEM:
    Step 1. Create a new C# solution and Windows Forms project. 
    Step 2. Add a reference to System.configuration
    Step 3. Right click the project, choose Properties, then Settings.
    Step 4. Using the Settings Designer, create ONE setting called "MySetting" as a String with the value "MyValue".
    RESULT: Observe the Errors like these, complaining about all of the Settings tags and elements.
    Message 1 Could not find schema information for the element 'applicationSettings'. 
    Message 2 Could not find schema information for the element 'LoadOriginalLists.Properties.Settings'. 
    Message 3 Could not find schema information for the element 'setting'. 
     HERE IS MY APP.CONFIG, AS GENERATED BY THE SETTING DESIGNER TOOL:
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <configSections>
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
    <section name="LoadOriginalLists.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </sectionGroup>
    </configSections>
    <applicationSettings>
    <LoadOriginalLists.Properties.Settings>
    <setting name="MySetting" serializeAs="String">
    <value>MyValue</value>
    </setting>
    </LoadOriginalLists.Properties.Settings>
    </applicationSettings>
    </configuration>

    Ummmm... okay so these are Messages that are in the Error List.  Whether or not they are actually Errors is debatable.  They are in the Error List, so they are errors. 
    The application runs, so my question is slightly changed to the following.
    I would like to use Application Settings.  However, having settings in my app.config pollutes my Error List with a bunch of meaningless messages like "Could not find the schema information for...".  These messages then hide real errors. 
    Am I missing some setting or is there something I can do to make Visual Studio not show me these messages? 

  • Disable Technical Information for UI Element in WEB DYNPRO ABAP

    Hi expert,
    I want to disable  Technical Information for UI Element in  my web-dynpro application i am alredy disable  in user setting by parameters WDDISABLEUSERPERSONALIZATION by i want to disbale other two options 1 Display quick help.
                2 More field help.
    KINDLY GIVE ME SUTIABLE SOULATION.
    REGARD'S
    Vikash

    Hi Vikash,
    Check this thread, may be you'll get some clues from here.
    [How to restrict right click to show user setting in WebDynpro ALV?;.
    Regards
    Manas Dua

  • Help need my mac pro for school..it has Grey screen..spinning wheel...repaid disk ok...repair disk permission all repaired but one warning...

    Help need my mac pro for school..it has Grey screen..spinning wheel...
    I think I have  mountain lion OS X....I have done I think almost every suggestion I've seen in discussion boards.
    Boot in recovery repaired disk...ok...repair disk permission...all repaired but one warning...I've tried to reinstall lion (without losing data) and it Got all the way to one minute to be done and then the time change back two hours and kept doing this all night long.  I haven't done a back up due to no external for time machine.
    I hope someone can please help me I've been going crazy for a week now trying to figure this out.  I use my computer for school and I'm currently very behind from in my school work  thank you
    Also I've checked my available space  424.91 free of 750 gigs....disk is verified

    Welcome to the Apple Support Communities
    Try holding the Shift key while your Mac is starting to start into safe mode. Then, after starting in safe mode, open Finder, select Go menu (on the menu bar) > Go to Folder, and type /Library/StartupItems. Then, empty this folder and restart the Mac.
    If your Mac starts after doing this, it was a problem with a third-party app that starts automatically when you turn on the computer. It won't start automatically anymore after doing that

  • Help needed to "map" HRMS fields for reporting

    Hi all,
    I have been asked to map for reporting purposes all the fields in the HRMS person and assignment forms, plus vacany requisition and absence.
    For example, on the people form in HRMS the "last Name" field would translate into sql as "per_people_F.last_name".
    I have found all the person/assignment/absence and vacancy fields but cannot find any of the following:
    Bank account/ pay method information.
    Salary previous/ salary proposal form information
    Anything from the element entries screen or the tax information fields.
    Anyone have any ideas which tables would hold this information for querying using developer or toad??

    Hi Michel, Vijaya, Praksh
    Thanks for all the replies. I will be a bit more detailed in my Query and Vijaya if u cud explain me the same way then it wud be helpful...
    Idoc Structure:
    GLMAST01
    IDOC
      BEGIN
    --EDI_DC40
         SEGEMENT
        TABNAM
    --E1SKA1M
         SEGMENT
        MSGFN
        KTOPl
        SAKNR
      --E1SKATM
         SEGMENT
         MSGFN
      --E1SKB1M
         SEGMENT
         MSGFN
    The Message type is
    FCC_MSGTYPE
    -MOVEMENT
      -Row
        MANDT
        KTOPL
        SAKNR
    I am not sure whether to Map the MOVEMENT part. Tell me what I should do. The requirement is to populate the R/3 with the MANDT, KTOPL, SAKNR etc which all occur in the E1SKA1M segemnt and the nothing to the subsegments under it.
    Please tell me how to do that.
    Thanking all in anticipation.
    Best Regards
    Chakra and Somnath

  • Help Needed in mapping business scenario

    Hi All,
    I have a RM inter unit despatches for this we are using STO. While doing inter unit despatches we have to pay freight on per kg (Gross Weight) for a source and destination. This has already been mapped by creating a condition type and condition record.
    But there is a scenario where in when inter unit despatches happens there is an agreement b/w transporter and company if the company does not load full truck then the company needs to pay a minimum amount which has been negotiated with the transporter in this case, the freight condition is not being payed only minimum gurantee amount is payed to the transporter.
    Could any of us help me in mapping only the minimum gurantee scenario in R/3.
    We are using STO to do inter unit despatches.
    Regards,
    Sreekanth

    hai
    i think u can use condition type AMIW

  • Help needed in inbound IDoc for ORDERS....

    Hello all,
    I need help in IDoc for ORDERS.. Here is the situation. I have an ORDERS IDoc coming to my SAP system from my customer. When I see the SO it creates.. it says that it has incomplete data.. Information like pricing, inco terms, payment terms. load data, load date etc. is not filled in. How do get those filled automatically.. my customer can not, obviously, give me all the information needed for the SO.. Where do I configure and how?
    Thanks,
    Charles

    Hi,
    You can use user exits available in FM IDOC_INPUT_ORDERS to populate additional information.
    Also you can use form CUSTOMER_FUNCTION_DYNPRO to populate additional information for BDC screens of VA01. This form is available in FM IDOC_INPUT_ORDERS as well.
    Regards,
    Ferry Lianto
    Please reward points if helpful.

  • Help Needed: Enable local currency for Customer Invoicing

    We are needing to enable local currency for customer invoicing on a project coming very soon.  Does anyone have any information on the best way to get this done and/or documentation to look over?  Any help would be greatly appreciated!!
    Thank You in Advance!
    Jay Esparza
    SAP Functional Consultant

    Hi
    Local currency automatically gets activated as you set your company code currency.
    No need to enable separately for customer invoicing
    Plz assign points if it is helpful.
    Regards
    Tapan

  • Desperate help needed to configure WVC210 for remote access?

    Hi, I'm new and desperately need some help on setting up my WVC210 for remote access.
    I manage to setup and see images from my WVC210 using my home LAN via both wired and also wireless.
    I have 2 questions:
    (a) for wireless connection, i only manage to get connection to my WVC210 if i disable the wireless security from my router. But that means i'm opening my wireless LAN to everyone. How can i still get connection to the camera if i enable the wireless security from my router. (FYI: my router is 2Wire ADSL  from Singnet Mio)
    (b) how can i get connection to my WVC210 from outside or in my office? I type in the camera Fixed IP address (displayed on the front screen) on the web browser, by it shows a error page. Is there some setting that i might need to adjust ?
    Pls kindly help me
    Thank you.

    Bernard,
    For Item (2) is there any difference between the camera built-in dyndns updater versus the software updater? I am under the impression that the software updater is easier to manage.
    The biggest difference for you is that the camera always stays at the same location, and the laptop goes with you. Every time you access the internet from a different location with the laptop the software updater is sending the new IP address to dyndns.com. This causes you to lose access to your camera because the FQDN doesn't point to your home IP address anymore. Once the dyndns credentials are in the camera (or router) there is no management needed. The device will automatically update dyndns.com with your new IP address as it changes, and you do not need to do anything.
    For Item (3), are you saying port forward 1025 is it for the 2nd camera only or for both? Or is it 2nd camera use 1025 and first camera use 8080?
    Here's an example of what I mean:
    Camera 1: 192.168.1.210 port 1024. In router, forward port 1024 to 192.168.1.210
    Local Access: http://192.168.1.210:1024
    Remote Access: http://bernards210.dyndns.org:1024 (Example)
    Camera 2: 192.168.1.211 port 1025. In router, forward port 1025 to 192.168.1.211
    Local Access: http://192.168.1.211:1025
    Remote Access: http://bernards210.dyndns.org:1025 (Example)
    Camera 3: 192.168.1.212 port 1026. In router, forward port 1026 to 192.168.1.212
    Local Access: http://192.168.1.212:1026
    Remote Access: http://bernards210.dyndns.org:1026 (Example)
    to access the 2 camera outside, do i have to have another dyndns host name or can i use the current one for both camera?
    As you can see in the above example, the dyndns name remains the same for remote access to all three cameras. The only change is the port number at the end. Your router will translate the port number to the IP address that the port is forwarded to, allowing you to select the camera that you wish to view by changing the port number in the address.
    I was actually thinking that the camera web browser can show 2 camera at the same time. Is it possible?
    No. Each browser window will display a single camera. You can however opens multiple instances of your browser to allow viewing of more than one camera simultaneously. A better solution is to install the Video Monitoring Software that is included with the camera which allows you to view multiple cameras in the same window.

  • Need Seeburger Mapping name for DESADV .

    Hi All,
    I want the Seeburger mapping name for DESADV .
    The format of the file is ANSI file.
    Also i want the folder name or standard number for DESADV ??
    I mean like for Orders the folder name will be " ANSIX12_V3020_850 "
    Kindly let me know asap.
    Thank You.
    Regards
    Seema.

    Hi,
        These are the few naming conventions that will be followed while doing mapping in SEEBURGER BIC mapping designer.Let me know if they help u in any way..
    ADOPTED NAMING CONVENTIONS
    1 - For Application Rules:
    DOCUMENT_APLLICATION_DIRECTION_DATA (FILE EXTENSION FOR REFERENCE)
    Length for each:
      Document = 3     Samples of:  PUR, POC, POA, ASN, TXT            
      Application = 4   Samples of:  RECL, SOMS, HRMS, CORP, COMS, CONT  
      Direction = 1       Samples of:  I or  O
      Data = 3              Samples of: DAT, XML, RPT
      NOTE:  Since spaces are not allowed in the names,  ‘S’  will be used as filler .
    Sample Application Naming:
    For 824 for Banking doc   – TXT_CORP_I_RPT
    2 - For Project Rules:
    We decided that we would group these by related documents.  Ex. All PO’s would be together.
    Following are the Project definitions:
    ORDERS (PURCHASING) = 850, 880
    BANKING = 820, 824 (Related to the banking 820 only)
    TRANSPORTATION = 404, 858, 856, 940, 945, 990, ..
    INVOICING = 810, 857
    TEXT = 824, 864, 870
    INVENTORY = 852, 830, 846,..
    3 – General  Rules:
    1- IF mapping is the same with HRMS & COMS
          THEN Use CONT for Application
        ELSE  Use HRMS or COMS (which ever is appropriate)
    2- IF document is the same for the entire corporation
           THEN Use CORP as the Application
    3- IF Generic
          THEN  No Suffix is required
         ELSE Trading Partner Specific maps add the suffix
    For Trading Partner specific rules, add the Name extension to the end of the rule
    Thanks .

  • Help Needed-Connection Url String for Oracle8i

    DriverManager.getConnection(Url , username ,password);
    In the above , I need the connection url for Oracle8i Database.
    Thanks..

    This works for me:
    jdbc:oracle:thin:@HOST:1521:INSTANCE
    Where HOST and INSTANCE represent the machine running oracle and DB instance. 1521 is the default port but may be changed.
    Mike

  • NEED BIOS BACKDOOR PASSWORD FOR HP PROBOOK 6540b. Have tried all types of bios resets, no luck.

    NEED BIOS BACKDOOR PASSWORD FOR HP LAPTOP PROBOOK 6540b. Have tried all types of bios resets, doesn't work.
    The password stay's no error code for entering wrong ones.

    Hi, 
    I too have been pulling my hair out with this problem on the 6540B. However after  2 days of various driver combinations I've finally found a working fix. I don't have the luxury of reinstalling Windows XP as the machine is custom configured with apps which will take over a week to configure again.
    If you've got no audio it's probably because you've installed the IDT High Def Audio Driver. You may have tried a whole bunch of other options also to try and rectify the problem as I did.
    The solution is fairly simple:
    Goto to add/remove programs and remove "SoundMax".
    Reboot
    The audio driver may try to reinstall on boot up... allow it to install. It will still not work and will still show exclamation mark against IDT driver in Device Manager.
    Goto run... then type regedit and hit enter. Windows registry opens.
    Goto My Computer>HKEY_LOCAL_MACHINE>SYSTEM>CurrentControlSet>Services>
    Delete the WHOLE KEY for AEAudio and then exit regedit
    Go to device manager and uninstall the IDT High Def Audio device from Device Manager
    Then using the original HP Application and Driver Recovery DVD supplied with the notebook, run the autoplay, choose Hardware Enabling Drivers, tick only the IDT High Def Audio driver and follow the installation instruction on screen. You will be prompted to reboot after which Windows will find new hardware. The IDT will install itself and you will find that the sound works!
    Good Luck!
    For those that cannot find their original disk, the IDT Audio Driver from the original disk is available at http://tinyurl.com/IDTAudio6540b or http://www.4shared.com/file/RxXn5afj/IDTAUDIO.html

  • Help needed in mapping BI query output to use as input for BAPI

    Hi,
    After wrestling with it for quite some time I choose to ask yet another question here. I want to use the output of a BI query I use as input for a BAPI. I just can not get the mapping correctly:
    The query delivers: 104908BA092F7501F5E1008000829000AC
    I need: 104908BA092F7501F5E1008000829000AC
    How can I lose the two first digits? Thanks in advance!
    Best regards,
    Jan

    Nevermind. I found out myself. I am now using the statement MID(@GUID,2,32) in the connection.

  • Need help with a Silent Installer for Photoshop Elements 10

    I can't seem to get the silent installer working. I've used the Elements 9 instructions for 10 but I still get pop-ups requesting info:
    http://helpx.adobe.com/photoshop-elements/kb/silent-install-volume-license-photoshop.html
    I cannot find any info at all relating specifically to Elements 10. Before I go digging into the msi with ORCA (preferable to have something I can deploy in Active Directory through GPO) I tought I'd ask here

    @mtarggart
    Delete the blank between /UL and 1033, and it will work. :-)
    @Davide M, thanks a lot for your helpful article!
    mtarggart wrote:
    I've tried the above command and I keep getting prompted to select an Install Language. I'm trying to install this on Windows 7 x64 Enterprise. From an elevated command prompt pointed to the directory of the Elements install files (C:\PSE 10), this is what I am typing: start /wait setup.exe /UL 1033 /V"SERIALNUMBER=xxxx-xxxx-xxxx-xxxx-xxxx".
    For the ones who want to use installation from a server share,
    change "Setup.exe" by using \\Servername\Share\Setup.exe
    and set \\Servername\Share to your Servershare.
    The last thing I've been searching for was setting the right country
    and stopping PSE from asking me which country I am living in.
    Seems as if there was an additional switch e.g. "Country=244" for US.

Maybe you are looking for

  • Writing file output on arbitrary lines

    Hi, I'd like to know whether it is possible to select the line number on which I am writing the next output string when making a .txt or .csv file. Background: I am writing a survey, for which I need to record people's responses. The survey questions

  • How to code-select subitems in TreeView CS3

    Hi, I have a treeview listing all system fonts, grouped in families (being nodes). Now I try to programmatically expand a given family (this works fine through setting the '.expanded' property) and then select an item within an expanded group. This g

  • Account Based PA Billing Qty

    Hello Guruu2019s: If I have multiple condition types in a pricing procedure, when I release billing to accounting in account based PA, I see Sales Qty associated with the account mapped to first condition type in my procedure. Is there anyway to repl

  • Mp4 QuickTime/iTunes AC3 5.1

    Hi, I just convert 300 DVDs to Mp4 with AC3 5.1 with Nero Recode 2, the problem is I have NO sound and thats because QuickTime dont support AC3 5.1 Can some one please help me, I need to play those Mp4 in iTunes, I don´t care if those Mp4 plays in 2

  • Problem on "error: modeler error: model error" by using wscompile

    When I use wscompile to generate the client stub, I get the follwoing error: error: modeler error: model error: invalid entity name: "BaseFaultType" (in name space: "http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-BaseFaults-1.2-draft-01.xsd") What i