Import Discharge transit not reflecting

Hello Team,
I have created a PO and entered the Previous document type and MRN number in Foreign trade Import data of PO and Inbound Delivery but still my document is not reflecting in Transit procedure.
am I missing somewhere? please help me in this regards.
Thanks & Regards
Rahul

Hi Rahul,
Please re-check the steps in the Configuration Guide.  Also check for logs in SM58 and in GTS.
Regards,
Dave

Similar Messages

  • Aliases of members are not reflected at dimension

    Hi guys
    I was facing a problem using table interfaces to load information. When the member that has aliases are imported it does not reflect the
    alias on source system.
    Any help will be appreciated.

    Are you sure the associations are correct in EPMA or maybe the format of your import tables are not correct.
    Cheers
    John

  • Free goods not reflecting in PO from Info Record

    Hi,
    My requirement is , when ever i order 100 qty from a vendor 10 qty should be delivered free of cost.
    I am trying to maintain Info record for the same..
    Now when i created PO for the same...I entered 100 qty..it is not reflecting 10 qty in another line in PO..
    Where i am wrong?
    Uts

    HI,
    Have maintained the values in
    *Spro-Purchasing-Discount in kind-Define & assign discount in kind schema-Maintain free goods schema*
    It will be available in standard SAP if not do the following configuration
    Here
    Usage -N
    Application -M
    create procedure NR0001
    In control data
    step-10
    Cond Type-NR00
    Then save.
    Next
    Define free good schema
    Here assign ur schema grp of vendor
    Then assign the procedure created previously (i-e) NR001 & THEN SAVE.
    The above configuration is very important for the free goods scenario to work.
    Then go to MM and in purchasing view and give the value 2.
    Then in MBN1 create the condition record for the IR -0.
    Then create the PO it will work definetly.
    9884057038
    murugan
    Edited by: Murugan mgl on Jun 17, 2009 6:58 AM
    Edited by: Murugan mgl on Jun 17, 2009 6:59 AM

  • DataGrid not reflecting changes after INSERT into Table. Delete from Table does.

    Wow, it's been a while.
    Hope you guys can help.
    This is my DataGrid:
    <DataGrid DataContext="{StaticResource TableAssetsViewSource}" ItemsSource="{Binding}" x:Name="TableAssetsDataGrid" AutoGenerateColumns="False" EnableRowVirtualization="True" Margin="15,10,10,10" RowDetailsVisibilityMode="VisibleWhenSelected" Grid.Column="1" HeadersVisibility="Column" CanUserResizeRows="False" IsReadOnly="True">
    <DataGrid.CellStyle>
    <Style TargetType="DataGridCell">
    <Setter Property="BorderThickness" Value="0"/>
    </Style>
    </DataGrid.CellStyle>
    <DataGrid.Columns>
    <DataGridTextColumn x:Name="NodeColumn" Binding="{Binding node}" Header="VS Number" Width="*"/>
    <DataGridTextColumn x:Name="SerialColumn" Binding="{Binding serial}" Header="Serial Number" Width="*"/>
    <DataGridTextColumn x:Name="NameColumn" Binding="{Binding name}" Header="Asset Name" Width="*"/>
    <DataGridTextColumn x:Name="TypeColumn" Binding="{Binding type}" Header="Asset Type" Width="*"/>
    <DataGridTextColumn x:Name="_dateColumn" Binding="{Binding date}" Header="Date Allocated" Width="*"/>
    <DataGridTextColumn x:Name="PoColumn" Binding="{Binding po}" Header="Purchase Order" Width="*"/>
    </DataGrid.Columns>
    </DataGrid>
    This is where I add a new Row to the Table:
    Private Sub Button_Click_1(sender As Object, e As RoutedEventArgs)
    Dim cbblocation As ComboBox = Me.FindName("LocationComboBox")
    Dim row As DataRowView = DirectCast(cbblocation.SelectedItem, DataRowView)
    Dim cbbtext As String = row.Item("node")
    Dim cbbtype As ComboBox = Me.FindName("comboBoxType")
    Dim cbbtext2 As String = cbbtype.Text
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.AddNewAsset(cbbtext, txbSerial.Text, txbName.Text, cbbtext2, Date.Today, txbPO.Text)
    node = cbbtext
    Dim mp As New MainPage
    mp.RefreshGrid(node)
    Me.Close()
    End Sub
    The RefreshGrid method:
    Public Sub RefreshGrid(node As String)
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.FillByNode(RETAILISOAMDDataSet.tableAssets, node)
    Dim TableAssetsViewSource As System.Windows.Data.CollectionViewSource = CType(Me.FindResource("TableAssetsViewSource"), System.Windows.Data.CollectionViewSource)
    Dim be As BindingExpression = BindingOperations.GetBindingExpression(TableAssetsViewSource, CollectionViewSource.SourceProperty)
    be.UpdateTarget()
    End Sub
    And this is what I use to delete a row from the table (and without doing anything special, the DataGrid auto-updates with the changes):
    Private Sub Button_Click_4(sender As Object, e As RoutedEventArgs)
    If TableAssetsDataGrid.SelectedIndex = -1 Then
    MsgBox("You have selected nothing to Delete!", MsgBoxStyle.OkOnly, "Nothing Selected")
    Else
    Dim dgv As DataGridTextColumn = Me.FindName("NodeColumn")
    Dim row As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText As String = row.Item("node")
    Dim dgv2 As DataGridTextColumn = Me.FindName("SerialColumn")
    Dim row2 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText2 As String = row.Item("serial")
    Dim dgv3 As DataGridTextColumn = Me.FindName("NameColumn")
    Dim row3 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText3 As String = row.Item("name")
    Dim dgv4 As DataGridTextColumn = Me.FindName("TypeColumn")
    Dim row4 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText4 As String = row.Item("type")
    Dim dgv5 As DataGridTextColumn = Me.FindName("_dateColumn")
    Dim row5 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText5 As String = row.Item("date")
    Dim dgv6 As DataGridTextColumn = Me.FindName("POColumn")
    Dim row6 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText6 As String = row.Item("po")
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.RemoveAsset(dgvText, dgvText2, dgvText3, dgvText4, dgvText5, dgvText6)
    Dim cbb As ComboBox = Me.FindName("cbbLocation")
    Dim row7 As DataRowView = DirectCast(cbb.SelectedItem, DataRowView)
    Dim cbbtext As String = row.Item("node")
    RefreshGrid(cbbtext)
    End If
    End Sub
    --------- End of Edit
    It is bound to a Dataset which gets it's data from a SQL Database.
    Loading the Data and Filtering the data based on certain conditions work 100%. The problem I am having is as follows:
    I have a form on the Page that takes input and inserts a row into the Database. When this happens, the DataGrid won't automatically reflect the changes (even if I recall the Fill Method of the Dataset). No matter what I do, I have to refresh the entire page
    and THEN Fill the Dataset to see any changes.
    This is what strikes me as odd...
    When I do a delete row operation on the Database (Custom Method on the Dataset with conditions), and just Fill the Dataset again (without doing anything special), the row deletes and the changes is reflected IMMEDIATELY.
    What am I doing wrong here? Why would Delete Row reflect the changes on the DataGrid but no Insert Row?
    Thanks in Advance.
    (P.S. I am very rusty with my developing skills, I haven't done this in YEARS)

    >>And what about the the most important question, how exactly is TableAssetsViewSource defined in the XAML markup and what is
    its Source property set or bound to? And what about the reproducable sample...?
    Here is the Markup of the TableAssetsViewSource:
    <Page.Resources>
    <local:RETAILISOAMDDataSet x:Key="RETAILISOAMDDataSet"/>
    <CollectionViewSource x:Key="TableRegionsViewSource" Source="{Binding tableRegions, Source={StaticResource RETAILISOAMDDataSet}}"/>
    <CollectionViewSource x:Key="TableLocationsViewSource" Source="{Binding tableLocations, Source={StaticResource RETAILISOAMDDataSet}}"/>
    <CollectionViewSource x:Key="TableAssetsViewSource" Source="{Binding tableAssets, Source={StaticResource RETAILISOAMDDataSet}}"/>
    </Page.Resources>
    The ItemsSource of the DataGrid is bound to the TableAssetsViewSource:
    <DataGrid DataContext="{StaticResource TableAssetsViewSource}" ItemsSource="{Binding}" x:Name="TableAssetsDataGrid" AutoGenerateColumns="False" EnableRowVirtualization="True" Margin="15,10,10,10" RowDetailsVisibilityMode="VisibleWhenSelected" Grid.Column="1" HeadersVisibility="Column" CanUserResizeRows="False" IsReadOnly="True">
    Just remember, this code was auto-generated with the drag & drop onto the Page, so I did little in terms of setting the actual bindings.
    All in all, what I have done so far works as intended, except that when I want to add a row to the table it does not reflect, and that it only shows after refreshing/restarting the application.
    I will try and put together a reproducable sample.

  • Sharepoint 2013 Active Directory Import- Manager field not updating

    Hi,
      SharePoint 2013 Active directory import  -Manager field not updating
    Concern/Issue-
     We are using SharePoint and configured the Active Directory Import .First import it seems everything is working fine and OOB Organization chart  built using User profile data is coming out right.
    Now the user is moved from one Organization Unit to Another.
    Now our Manager field is not Updating .There is change in AD manager attribute but not reflecting in the SharePoint User profile.
    Manger field is mapped to "manager" attribute in SharePoint.
    We tried removing the user and Re-Import using Incremental import but no luck.
    Thanks for help in advance
    Sachin

    Moving a user from one OU to another in AD won't normally change the Manager attribute in AD.  You would need to edit the user's organization settings to change the manager value in AD.  I've also seen these changes not be picked up unless something
    other than just the manager field in AD changing.  Try changing something like Office location and see if the manager change is picked up by AD Import.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Front End not reflecting previously deleted entry while entering into Staging table

    Lets say I have table named 'Sales' as my Source. It contains columns Sal_ID and Sal_DESC
    There is Front End Entity created as Master Sales in Model Project. According staging table in database is ' stg.Sales_Leaf '.
    Now, I have entered data into stg.Sales_Leaf from Sales table for 'CODE' and 'NAME' value as Sal_ID and Sal_DESC, and my ImportType is '0'.
    As Sales table contains 23 rows, these are imported to stg.Sales_Leaf with ImportType '0'.
    I am able to see it in Front End also.
    Problem starts now. I delete some rows from Front END directly which contains CODE value  as 22 and 23.
    These gets deleted from Front End View, but now again I load Same 23 rows to stg.Sales_Leaf with same data (after truncating it).
    I should be able to see 23 records in Front End, but it is showing only 21 records.
    Two records with CODE value as 22 and 23 are not reflecting in Fornt End.
    I think it is because 'mdm.<table_code>' table associated with stg.Sales_Leaf, is reflecting Status_ID as 2.
    Please provide the way, how can I get data reflected in Front End.

    All error numbers between -20000 and -20999 are not Oracle errors but rather application errors coded by whoever wrote your software.
    As previously suggested ... see your DBA or manager.

  • Import - user preset not applied 'fully'

    This is update of problem reported in previous entry 'duplicate imports'.  Have now tracked the cause of this observation.
    The problem dates back to at least Lightroom 3.
    I use different import presets for my set of cameras so that the file name reflects the camera.
    I also have pairs of presets where the only difference is that a duplicate backup is created or not.
    On my PC the default path for backup files has the drive letter of my card reader.
    What I notice is that if I select the 'backup' preset then change my mind and select the 'non-backup' preset the flag enabling the creation of a backup copy remains selected.  On then proceeding with the import a backup copy is made on the card using the default path.
    This is not normally a problem as I then re-format the card in the camera, but it could be a problem if the card is nearly full as the backup copy process will fail due to lack of space on the card.
    This became apparent because I initially imported files into my LR3 catalogue and thus unknowingly created duplicates on the card.
    Then on importing into my LR4_beta catalogue two copies of each file appeared, the original in the location set by the camera and the duplicate/backup created by LR3.  The import dialog does not show paths on cards so it is not apparent that the duplicate files are in different folders.
    This looks like a bug in the handling of presets, that some settings, in this case the flag to enable backup file creation, are not updated on selecting the preset.
    The pairs of preset names are similar eg c41_backup and c41_nobackup.
    For the softies benefit I also note that if I select the 'non backup' preset for a different camera the flag does get cleared, suggesting the bug is something to do with recognising a change of pre-set.
    I have not checked but this may be the cause of other mysterious import issues.
    Message was edited by: gp7024

    Do you have "Apply Auto Tone adjustments" checked in the Preferences>Presets tab? If yes, uncheck it. If not:
    Take one image into the Develop module, press and hold the Shift key and the "Reset" button bottom-right will change to "Reset (Adobe)", then click on that button. Does the image reset to the way you expected it? If so, you've (inadvertently) changed the default develop settings, to reset them go to Develop menu>Set Default Settings>click on "Restore Adobe Default Settings".

  • Changes are not reflecting on Script layout

    Hi Gurus,
         I made chandes in SO10 standard include this include can be used in Script,
    when ever I copied script from DEV client to Test Client changes are visible in SO10 include text But not reflecting while executing the Script through Transaction.Please suggest.
    Thank You,
    Usha.G

    >
    ushasri gadipally wrote:
    > I copied script using scc4 and created a transport request even so10 include also, But not reflecting on Script layout.t
    Check if the std. text changes are reflected in your testing server in SO10. If not you have to import the Std. Text using SCC4 as well.

  • Changes made in LR 1.3 to psd files are not reflected in ACR 4.3, Bridge 2.1.1.9, or Photoshop CS3

    I have repeatedly imported several psd images into LR 1.3, made changes in the develop mode, and saved metadata to file manually in addition to having the auto write metadata option on in LR and ACR. Any changes I have made in LR are not reflecting in Bridge previews or in ACR or Photoshop. I don't believe I should have to utilize the write to xmp options (even though I have been) since the files in question are psd and the metadata gets written directly into the file. If I delete the photo from LR, and even delete the LR catalog (new user trying to make it work with 1 photo at least before importing all images) and re-import the psd to LR it appears with the changes and can backlog in the history panel to it's original state upon import into LR. I would have to be in LR though to know that anything was altered as the other Adobe programs will not display the changes.
    If anyone has any help - I would greatly appreciate it!
    Thanks,
    Ann
    System=
    160 GB hard drive
    Intel core duo T7500
    2 GB Ram
    Windows Vista 32 bit
    ACR 4.3
    LR 1.3
    Bridge 2.1.1.9
    PS CS3 (updated last week)

    I don't think the problem lies in the name. LR is after all meant to function as a data base of images and be a companion program to PS - with PS doing the heavy editing lifting. I do understand that PS is a pixel editing file and LR is not. I like the idea of the non-destructive editing that LR has to offer and for a lot of image "developing" I prefer LR's interface to ACR.
    In my humble opinion, I just think that the Photoshop family of products should all be able to read the same metadata. If I am starting in LR with a psd file (with layers) and I continue to process the image further in LR and save the metadata - therefore saving the changes - I want to be able to open that same file (not another copy) in ACR, PS, or Bridge and have those changes reflected. The only way to do that currently is to export the file and when you do that you lose the PS layers and the LR history panel or another way around it is you can have edit copies of the same file. If at a later date you wanted to go back and change something, you can't just pull out a layer in PS or undo a history state in LR and with the multiple copies of essentially the same image you end us with any editing history scattered amongst multiple files. I already keep 2-4 (original, psd, jpeg print, jpeg web) files for one image which I think is more than adequate. Which is why I find the current set up so frustrating. For now I have just settled for exporting jpegs so I can see the changes.

  • Adobe Camera Raw changes not reflecting in Premiere Pro

    I was super excited to try out the new CNDG support in Premiere Pro CC 2014, but I have to be honest - I am a bit disappointed...
    I am using 16bit Cinema DNG files and the source settings sliders really aren't doing it for me (notice the pink highlights)
    That's alright though, I would much rather use Adobe Camera Raw!
    Right click > Edit Original
    There we go, that looks nice - no pink highlights, nicely recovered details in the shadows and highlights. 
    PERFECT, click DONE!
    Nothing...For whatever reason, changes are not reflecting.
    Adobe - please allow us to use Adobe Camera Raw, there are so many folks out there that want to incorporate it into their workflow.  I have tried SpeedGrade and various other color correcting tools and I have found Adobe Camera Raw to work the best IMHO
    Thank you for your time.
    -Loyal Paying Customer

    Hi Ekombokom,
    ekombokom wrote:
    Hello! I too am having this same problem. I used Camera Raw (both in Bridge and Photoshop to make sure) to adjust and correct the Cinema DNG files I shot with my BMPCC; however, the video sequence in Premiere does not reflect any of the changes made. Why would Adobe not support Camera Raw settings in Premiere?
    Sorry, but Premiere Pro does not have a camera raw importer. You adjust the settings in the Source Settings dialog box instead (for RED, ARRI Raw, BMCC and BM Pocket Camera DNG files). You do have access to some controls for these formats, but in some cases, Camera Raw has more controls.
    ekombokom wrote:
    Camera Raw is an amazing tool for refining an image and gives me the best results compared to SG and Davinci. I was so excited to be able to use it once Premiere supported CinemaDNGs but now I'm confused as to why it's not supported.
    Cinema DNG from the Blackmagic Cameras are supported, you just adjust settings in Source Settings, as I mentioned. Have you tried that? The reasoning behind this is that Cinema DNG video coming from camera raw is too difficult to playback and edit with.
    That said, some users bring Cinema DNG footage to After Effects, adjust the video there, then render out files that are suitable to edit with.
    ekombokom wrote:
    I thought the point of using Adobe was that all their products worked together seamlessly? I really hope they fix this.
    You can always make a request here: http://adobe.ly/feature_request, however, I don't see a camera raw importer going into Premiere Pro any time soon (if ever) because of the reasons I previously mentioned (editing with camera raw would be too cumbersome). I think the more realistic feature request would be to add more controls in Source Settings.
    Thanks,
    Kevin

  • Output error:the name of the package "greet" does not reflect the location of this file...

    output error: The name of package 'greet' does not reflect the location of this file. Please change the package definition's name inside this file, or move the file. C:\Documents and Settings\Igal\My Documents\meiran\greet\Greeter.as
    I keep on recieving this output error although my source path is set to C:\Documents and Settings\Igal\My Documents\meiran\greet.
    any suggestions why this happens?

    The classpaths you define in your Flash software tell the compiler where to look when it needs to find a class.  According to your as file, the very top line indicates the Greeter.as file should be at a location specified by the path...
    one-of-your-classpaths\com\example\quickstart\
    So if one of your classpaths is:  C:\Documents and Settings\Igal\My Documents\meiran\greet\
    and you placed the file in the greet folder, then in your AS document you should not have the "com\example\quickstart" and your import statement in the fla should not be using that (should just be... import Greeter;)

  • Message sent from RWB but not reflected in SXMB_MONI

    Hello Experts,
    I have a SOAP - RFC synchronous scenario. I am sending a message from RWB to PI system.It shows message sent in RWB and the message details are reflected in the RWB->message monitoring ->Adapter Engine as 'Successfull'. But no in RWB->message monitoring->Integration Engine.
    The message does not reflect in SXMB_MONI either. All other scenarios are working fine except this.
    Also on checking the status of Sender communication channels in RWB it shows 'yellow' with reason channel may be inactive or unitialised. Whereas i have checked the communiaction channels in ID, their status is Active.
    Kindly advice a solution.
    Thanks in advance,
    Elizabeth.

    Hi,
    Your message processed from sender adapter. But seems there is some problem in reaching IE. Check out your wsdl file. check when define a web service, have u given right url. Is it like this
    http://[server]:[port]/XISOAPAdapter/MessageServlet?channel=:[sender communication channel service]:[sender communication channel name]
    and also make sure whether you given the right http port name, sender business system name , sender message interface in the following step of define web service.  and the port name is important you can fine http port for your PI server by going to SMICM tcode. in that press shift + F1
    You altova xmlspy software for testing purpose. You can download free 30 day trial version from altova website. once you installed in it.
    Go to xmlspy software. the menu you can find a "SOAP". underthis menu you can find create soap request. select that it will ask the wsdl file. give the wsdl file which you are created in define web service step. after that in xmlspy
    menu->soap->send request to server. then it ill ask user name and password to connect with the PI server.  then you will get the rfc response if u successfully connected with PI sever.
    for more details,
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417200)ID1437447550DB12110496670821140257End?blog=/pub/wlg/4550
    but in this website they didnt use xmlspy some other third party software. good luck
    Regards,
    Balaji

  • MIME Images not reflecting in PDF

    Hi All
    I have inserted image in MIME Repository [ SE80- MIME Repository-BW-Customer-Images-right click-Import MIME objects] its successfully reflecting in WAD application on runtime, but when i exporting to PDFin the PDF result file the image is not reflecting. advise me on this
    regards
    Prashanth Shetty M

    Hi,
    I resolved it.
    regards
    Prashanth Shetty M

  • Changes are not reflecting in QA after transport

    Hi Everyone,
    I am having an issue with the transport in PI. After making the changes in development, i exported the tpz file to Quality. The changes got reflected. Then for testing purpose some changes were done in the Quality IR. Now i again exported the tpz file from dev to QA. But the same changes are not reflecting.
    Has anyone faced such a problem? Need your help experts.

    Hello,
    Check in IR > Environment> cache status overview. Is it in green status??
    Check if the import of .tpz file is successful in quality IR??
    >>Then for testing purpose some changes were done in the Quality IR
    Also, check if there are any conflicts in the IR of quality system??
    -Rahul

  • Changes are not reflecting in Quality server

    Dear All,
    We have recently installed the Portal 7.4 servers.
    Currently we are having two servers Development and Quality.We have Configured NWDI using CMS and created tracks(Defined run-time systems as Development and Consolidation)  we are able to checkin the activities at NWDS , when we are selecting the component in the consolidation and on  click of  import we are getting the message as import finished, but the changes are not reflecting at the Quality server. i.e in earlier 7.01 version when we imported , the ear was deployed automatically in quality but it is not getting deployed in the new version 7.4
    Regards,
    Ramana.

    Dear Ervin/Jun Wu,
    Thanks for the Responce.
    As per the given link the track is configured  with out any issues (When we are clicking on Deployment in the Transport studio it is opening new tab like below and we are not having any errors when we click on Start deployment nothing is happening)
    http://hostname:50000/webdynpro/dispatcher/sap.com/tc~SL~CMS~WebUI/Deployer?BS=EPD_PRTADEV_C
    Please check the below log regarding deployment when we do the import
    SDM-deployment-notification  Log file.
    20141028125231 Info :Starting Step SDM-deployment-notification at 2014-10-28 12:52:31.0994 +5:00
    20141028125231 Info :Deployment is performed asynchronously.
    20141028125231 Info :Following DCs are marked for deployment (buildspace = EPD_PRTADEV_C):
    20141028125231 Info :
    20141028125231 Info :RequestId: 152
    20141028125231 Info :==> no resulting DCs for deployment
    20141028125231 Info :Follow-up requests:
    20141028125231 Info :
    20141028125231 Info :
    20141028125231 Info :Step SDM-deployment-notification ended with result 'success' at 2014-10-28 12:52:31.0995 +5:00
    Regards,
    Ramana.

Maybe you are looking for

  • Migration from tomcat to weblogic 10.3.2

    Hi, I am developing a web application, its a servlet which basically acts as a front end for a web service, and I use CXF for the web service client, tested under a development tomcat instance and worked fine. I have the spring framework and the rest

  • Unable to install photoshop elements on windows 8

    When trying to instal I receive the following errors. Can anyone help? windows 8 photoshop elements 10 and premiere elements 10 the trial version 11 seems to install fine with no errors poping up but i have not tested that

  • How To Fix Jrun Crashes in ColdFusion 8

    I have ColdFusion 8 running on Windows Server 2008 with IIS 7.  Lately JRun has been crashing every few minutes.  I don't know what the cause could be.  Can anyone give advice on how to fix it? The jron error I am getting in the server log mentions M

  • Does CS6 Bridge apply bogus metadata to DxO output images?

    When I use Bridge to examine JPEGs output from DxO Optics Pro 7, the images are randomly cropped and severely over-exposed. They can be restored via Develop settings/ clear. I am running OS X 10.6.8 on an Intel iMac. Lightroom 4 does not show this pr

  • Does iphone 6 plus support bluetooth texting with Ford F150

    Iphone  6 Plus Does it support bluetooth texting on a Ford F 150