Batch Query with Batch but need address lines split by column

Hi folks,
I have the following query I created with the batch number of the sales order:
SELECT T0.[DocDate] as "Date", T1.[DocNum] as "Sales Order Number",  T0.[CardCode] as "Customer Code", T0.[CardName] as "Customer Name",T1.[Address2], T0.[ItemCode],  T0.[ItemName], T0.[BatchNum], T0.[Quantity], T1.pickrmrk FROM IBT1 T0, ORDR T1 WHERE T0.[BaseNum] = T1.[DocNum] and T1.docstatus = 'O' and T0.WHSCODE = '01' order by T0.BaseNum
Now I need to split the address by column so need street, block, city, county, country and zipcode fields from CRD1, but would either need the ship to address of the sales order it is selected or even just the default ship to address of the sales order.  In above query T1.[Adress2] is not quite right for our needs, as this file will have to be exported to 3rd party.  So I have gotten this far:
SELECT T0.[DocDate] as "Date", T1.[DocNum] as "Sales Order Number",  T0.[CardCode] as "Customer Code", T0.[CardName] as "Customer Name",T1.[Address2], T2.[Street], T2.[Street], T2.[Block], T2.[City], T2.[County], T2.[Country], T2.[Zipcode], T0.[ItemCode],  T0.[ItemName], T0.[BatchNum], T0.[Quantity], T1.pickrmrk FROM IBT1 T0, ORDR T1, CRD1 T2 WHERE T0.[BaseNum] = T1.[DocNum] and T1.docstatus = 'O' and T0.WHSCODE = '01' and T0.[CardCode] = T2.[CardCode] and T2.[AdresType] = 'S' order by T0.BaseNum
but will split into multiples if a business partner have more than one shipping address.
Can someone please advise on this one?
Many thanks in advance,

Thanks Agustin, tried it with RDR12 as the following query:
SELECT T0.[DocDate] as "Date", T1.[DocNum] as "Sales Order Number",  T0.[CardCode] as "Customer Code", T0.[CardName] as "Customer Name",T1.[Address2], T2.[StreetS], T2.[BlockS], T2.[CityS], T2.[ZipCodeS], T2.[CountyS], T2.[CountryS], T2.[ZipCodeS], T0.[ItemCode],  T0.[ItemName], T0.[BatchNum], T0.[Quantity], T1.pickrmrk FROM IBT1 T0, ORDR T1, RDR12 T2 WHERE T0.[BaseNum] = T1.[DocNum] and T1.docstatus = 'O' and T0.WHSCODE = '01' order by T0.BaseNum
but has multiple lines for different addresses (and not just shipping addresses of that businss partner sales order).
Anymore ideas or can you spot error in the query?
Thanks again,

Similar Messages

  • There's a black space at the top of my window, and when I open the browser, my home page comes up but the address line is blank. How do I fix this?

    There's a black space at the top of my window, and when I open the browser, my home page comes up but the address line is blank. How do I fix this?

    -> Tap ALT key or press F10 to show the Menu Bar
    -> go to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. Now do this:
    -> Update ALL your Firefox Plug-ins https://www.mozilla.com/en-US/plugincheck/
    -> go to View Menu -> Zoom -> click "Reset" -> Page Style -> select "Basic Page Style"
    -> go to View Menu -> Toolbars -> select Menu Bar and Navigation ToolBar -> unselect All Unwanted toolbars
    -> go Tools Menu -> Clear Recent History -> '''Time range to clear: select EVERYTHING''' -> click Details (small arrow) button -> place Checkmarks on '''Cookies, Cache, Site Preferences''' -> click "Clear Now"
    -> go to Tools Menu -> Options -> General -> When Firefox starts : select "Show My Home Page" -> Type the address of the website which you want to be your HomePage e.g. http://www.google.com
    -> go to Tools Menu -> Options -> Content -> place Checkmarks on:
    1) Block Pop-up windows 2) Load images automatically 3) Enable JavaScript
    -> go to Tools Menu -> Options -> Privacy -> History section -> '''Firefox will: select "Use Custom Settings for History"''' -> REMOVE Checkmark from '''"Permanent Private Browsing mode"''' -> place CHECKMARKS on:
    1) Remember my Browsing History 2) Remember Download History 3) Remember Search History 4) Accept Cookies from sites -> select "Exceptions..." button -> Click "Remove All Sites" at the bottom of "Exception - Cookies" window
    4a) Accept Third-party Cookies -> under "Keep Until" select "They Expire"
    -> '''REMOVE CHECKMARK from CLEAR HISTORY WHEN FIREFOX CLOSES'''
    -> '''When using the Location Bar, suggest: select "History and Bookmarks"'''
    -> go to Tools Menu -> Options -> Security -> place Checkmarks on:
    1) Warn me when sites try to install add-ons 2) Block reported attack sites 3) Block reported web forgeries 4) Remember Passwords for sites
    -> Click OK on Options window
    -> click the Favicon (small drop down menu icon) on Firefox SearchBar (its position is on the Right side of the Address Bar) -> click "Manage Search Engines" -> select all Unwanted Search Engines and click Remove -> click OK
    -> go to Tools Menu -> Add-ons -> Extensions section -> REMOVE All Unwanted/Suspicious Extensions (Add-ons) -> Restart Firefox
    You can enable your Known & Trustworthy Add-ons later. Check and tell if its working.

  • Hi there I have a iPhone 3G and it was with O2 but needed to go onto 3 network so someone on my local market unlocked it and the phone was working fine until I tried to update it through iTunes and it always now stops loading towards the end with an erro

    Hi there
    I ha
    Hi there I have a iPhone 3G and it was with O2 but needed to go onto 3 network so someone on my local market unlocked it and the phone was working fine until I tried to update it through iTunes and it always now stops loading towards the end with an error is there a way to get the phone working again please.

    Shame you had the iPhone hacked as  O2 usually unlock their customers iPhones happily.
    We cannot discuss your problem as it is in breach of the Ts&Cs you agreed to on registering
    However hint ....you have probably trashed it

  • Need multiple lines in single column of header using alv oops

    Hi
    I am using alv oops in a report.
    I need multiple lines in single column of header.   
    In header of my report i am using 9 columns.
    In the second column i need to split the line
    Notification description/activity/work/activity long text/
    as
    Notification description/
    activity/
    work/
    activity long text/
    Please guide me to achieve this functionality.

    It is not possible to break the column description in the ALV  disply.
    Actually, if you have a longer description in one of the seltext_* field of the fiels catalog, it will automatically display it as a tooltip, if you put the mouse over the heading. In ALV OO, you can explicitly set the tooltip text.
    Also you can get more help on the field pressing F1: If you use DDIC fields, it it automatic, otherwise you can do it as you like.

  • JDBC batch query with insert sometimes hangs on executeBatch

    We have the following problem:
    Java client sends through JDBC INSERT query using batch,
    and sometimes this query hangs.
    In V$SESSION ACTIVE session appears, which remains ACTIVE forever.
    Also locked object appears in V$LOCKED_OBJECT and open coursor appears.
    How to know what happens inside the query? Why it hangs?
    This is a thread dump for jdbc thread:
    The thread dump is listed below:
    "SdrWriterThread-1" prio=5 tid=0x184264c8 nid=0x214 runnable [18f1f000..18f1fd94]
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at oracle.net.ns.Packet.receive(Unknown Source)
    at oracle.net.ns.NetInputStream.getNextPacket(Unknown Source)
    at oracle.net.ns.NetInputStream.read(Unknown Source)
    at oracle.net.ns.NetInputStream.read(Unknown Source)
    at oracle.net.ns.NetInputStream.read(Unknown Source)
    at oracle.jdbc.ttc7.MAREngine.unmarshalUB1(MAREngine.java:718)
    at oracle.jdbc.ttc7.MAREngine.unmarshalSB1(MAREngine.java:690)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:373)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1405)
    at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:822)
    - locked <0x10641b80> (a oracle.jdbc.ttc7.TTC7Protocol)
    at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:1446)
    at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1371)
    at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:2883)
    - locked <0x100900d0> (a oracle.jdbc.driver.OraclePreparedStatement)
    at com.jnetx.xr.persistence.DAO.executeBatch(DAO.java:66)

    Anton,
    Why it hangs?It's waiting for a lock to be released. The default behaviour of Oracle is to wait indefinitely for a lock to be released.
    You can see this behaviour if you try to update the same row from tw different "SQL*Plus" sessions, for example (since the default behaviour of "SQL*Plus" is not to automatically commit changes).
    In one "SQL*Plus" session, update a row -- but do not commit. In the second session, try to update the same row -- it "hangs". It will remain like this until the first session releases the lock. The simplest way to release the lock is for the first session to execute either a "commit" or "rollback". As soon as you do that, you will see the first session become unstuck.
    Of-course, from the [lack of] information you have posted, I cannot tell you what is holding the lock, or why.
    Good Luck,
    Avi.

  • Query with key figures on separte lines

    Hello bw experts.  I have a query question.  I am building a query with several structures going down the left side and I want two sets of key figures going across (jan through Dec).  That is easy but what I cannot figure out is how to get key figure 1 to be on line 1 jan through dec and key figure 2 to be on line 2 (jan through dec)  I want key figure 1 to show on the line with plan and key figure 2 to show on the line with actual
                     Jan  Feb  Mar  Apr  etc. etc.
    plan      
    actual
    Thanks in advance for any and all help
      Jim

    Hi,
    When you go for the Cell Editor option, this particular scenario would be pretty easy to achieve and apart from why don't you try for putting the month field in Column and the Plan & Actual Structures in the Rows.
    Regards,
    Mani

  • Query with filters, but Web Appl Designer jumps the previous screen

    Hi all!
    I have a query with a variable selection data screen, all fields are not required.   When I execute the query with query designer the query run Ok.   I designed a web application with this query.   When I execute the query with Web Application Designer the tool jumps the selection data screen and shows the report directly.   Do I have to activate something in Web Aplication Designer tool?
    Thanks in advance!
    Ada.

    Hi,
    In WAD, open your web template.
    Click on anywhere in the template other than on web items (White screen) --> Goto Web item properties of template (present in left pane of WAD) --> Force Variable Screen (Check this option).
    Now Save and execute your query. You will get the variable screen displayed.
    Regards,
    KK.

  • QUERY WITH BATCH IN SAPB1 8.81

    DEAR ALL,
    we have a query and this works ok in 2007A, but when our customer update at 8.81 doesnt work, could you helpeme please?.
    I dont know what happen if this query have an other definition in 8.81. we have to change something?. now this dont work and when w run it thakes 5o gigas in hard disk.
    i hoppe your soon support.
    T2.[PrdDate], T2.[ExpDate], T2.[Located], T2.[Quantity] as 'Kilos obtenidos', T2.[U_Grasa], T2.[U_PH], T2.[U_Acidez], T2.[U_PROT], T2.[U_VOLUMEN], T2.[U_RENDIM], T2.[U_HUMEDAD] FROM OWOR T0 INNER JOIN IGN1 T1 ON T0.[DOCNUM]=T1.[BASEENTRY]
                    INNER JOIN OIBT T2 ON T1.[DOCENTRY]=T2.[BASENUM]
                    INNER JOIN WOR1 T3 ON T0.[DOCNUM]=T3.[DOCENTRY]
                    INNER JOIN OITM T4 ON T3.[ITEMCODE]=T4.[ITEMCODE] WHERE T0.[PostDate] >=[%0] AND  T0.[PostDate] <=[%1]

    Hi,
    I ran the following and was not getting any error/problem with the query :
    select T2.PrdDate, T2.ExpDate, T2.Located, T2.Quantity
    --T2.U_Grasa, T2.U_PH, T2.U_Acidez,
    --T2.U_PROT, T2.U_VOLUMEN, T2.U_RENDIM, T2.U_HUMEDAD
    FROM OWOR T0
    INNER JOIN IGN1 T1 ON T0.DOCNUM=T1.BASEENTRY
    INNER JOIN OIBT T2 ON T1.DOCENTRY=T2.BASENUM
    INNER JOIN WOR1 T3 ON T0.DOCNUM=T3.DOCENTRY
    INNER JOIN OITM T4 ON T3.ITEMCODE=T4.ITEMCODE WHERE T0.PostDate >= '2006.01.01' AND T0.PostDate <= '2006.12.31'
    Please check the UDF's and if you are getting any error do let us know.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Query with results always needed...

    Hi
    Would you please help me to get this query? I noew with Oracle 9i...
    What I need is to create a query Not empty or with rows always.
    I have a list below where I need to get the count and the sum grouped by Source in a Date range.
    - The fact is that if I change my date range (suppouse aprl/01/04 thru apr/30/04) the query will result with No rows, ok.
    I need to create a row for every group (SAP, CAC), with Zeroes on the Count and on the Sum...
    - If any group (SAP/CAC) have rows but the other one not also need to create a Zeroes row for the group that does not fall in the date range, suppose 03/03/2004...
    Source Payment Code_Emp In_Date
    SAP 100.00 001 01/01/2004
    SAP 100.00 001 01/01/2004
    SAP 100.00 001 02/02/2004
    SAP 100.00 001 02/02/2004
    SAP 100.00 001 03/03/2004
    CAC 100.00 001 01/01/2004
    CAC 100.00 001 01/01/2004
    CAC 100.00 001 01/01/2004
    CAC 100.00 001 01/01/2004
    CAC 100.00 001 02/01/2004
    CAC 100.00 001 02/01/2004
    Total for date range from 01/01/2004 to 01/31/2004
    Sum of Count
    Payments
    Totals for SAP 200.00 2
    Totals for CAC 400.00 4
    Difference –200.00 -2
    I GOT SOMETHING LIKE THIS, BUT THIS WILL RETURN ME MORE THAN 2 ROWS, ONE FOR SAP OTHER FOR CACE AND OTHERS WITH NULLS....
    SELECT Source,
    NVL(Count(code_Emp),0) T_Payment_Req,
    NVL(ROUND(Sum(payment),2),0.00) T_Payment_Amount
    FROM ApDetail
    WHERE Reconciliation_Id is Null
    AND In_Date BETWEEN To_Date('01/01/2004','MM/DD/YYYY')
    and To_Date('01/31/2004','MM/DD/YYYY')
    GROUP by Source
    union
    SELECT Source, 0, 0
    FROM ApDetail
    WHERE Reconciliation_Id is Null
    KIND REGARDS.

    SELECT
    Count(SAP.code_Emp) SAP_T_Payment_Req,
    Count(CAC.code_Emp) CAC_T_Payment_Req,
    ROUND(NVL(Sum(SAP.payment),0),2) SAP_T_Payment_Amount,
    ROUND(NVL(Sum(CAC.payment),0),2) CAC_T_Payment_Amount,
    ROUND(NVL(Sum(CAC.payment),0),2) -
    ROUND(NVL(Sum(SAP.payment),0),2) Difference
    FROM ApDetail CAC, ApDetail SAP
    WHERE
    (SAP.Reconciliation_Id is Null
    AND SAP.In_Date BETWEEN To_Date('01/01/2004','MM/DD/YYYY')
    and To_Date('01/31/2004','MM/DD/YYYY')
    AND SAP.SOURCE = 'SAP')
    AND (CAC.Reconciliation_Id is Null
    AND CAC.In_Date BETWEEN To_Date('01/01/2004','MM/DD/YYYY')
    and To_Date('01/31/2004','MM/DD/YYYY')
    AND CAC.SOURCE = 'CAC')
    This Query ALWAYS return ONE record.

  • Generate image with CFIMAGE - but need to use img tag to serve the content

    I create a new image with cfimage, that already works without
    any problems.
    But instead of using the action="writetobrowser" I need to be
    able to use the script inside a img tag:
    Example: <img
    src="myscript.cfm?somedata=iwanttheimagetocreate>
    I found one webpage that deals with that problem (
    http://www.webdevelopernews.com/2007/09/14/serving-up-cfimages-via-image-tags/)
    but the image served to the browser, when using the code below, is
    of a very low quality and another point is that you can't serve
    .gif's to the browser.
    <cfcontent type="image/jpg"
    variable="#ImageGetBlob(backgroundimage)#">
    Any suggestions/solutions?
    Thanks,
    Phil

    In that entry Raymond mentions:
    "The WriteToBrowser action actually generates HTML that points
    to a ‘magic’ URL to serve the image.". ie <img
    src="/CFFileServlet/_cf_image/_cfimg-12345036853711072.PNG" alt=""
    />
    Perhaps you could create a function that captures the
    generated html by using <cfsavecontent>.
    <cfsavecontent variable="imageTagHTML">
    <cfimage action="writeToBrower" ..>
    </cfsavecontent>
    Then uses a regular expression to extract and return the url
    portion only. ie
    "/CFFileServlet/_cf_image/_cfimg-12345036853711072.PNG"
    <cfset ExtractedURLHere = SomeFunction(arguments...)>
    <cfoutput><img
    src="#ExtractedURLHere#"></cfoutput>
    Though you could also use the entire html string directly
    <cfoutput>#imageTagHTML#</cfoutput>

  • Not too tech savy with tablets but need help

    My Nook HD+ uses Adobe Air, tablet says version is 3.3.  One of my games says it needs updated version of Adobe Air.  Go to Google play to d/l and it does and tries to install but I get an error message on tablet saying it "Already Exists."   Tried uninstalling the game app and reinstalling, shutting off tablet, etc., cleared the cache for my Adobe Air in my app settings, not sure about "clearing data" if I should try that, what that will do, and was told not to "disable" the app. by B&N tech support as that would completely wipe it off my system.  I'm trying to avoid doing a factory reset of my tablet.  B&N tech also said it did update, because it says it already exists?? if so then why is it still showing older version, not 13, after shutting down tablet and turning on again.  Google Play tech support says Adobe Air should work, that it's compatible. Somebody? Anybody please help!! Miss my game (Mahjong Time) which worked great before this update request. 
    Thanks in advance,

    Launch iTunes on your computer, plug the phone in & on the "Summary Pane", select "Restore". This will restore the phone to factory settings with all of your son's stuff gone. You can now use it as an iPod touch. To do this REQUIRES the deactivated sim card be still installed in the phone.

  • Results on query with filter, but zero results when filter removed

    I have been handed the below query and I may be missing something blindingly obvious here but if i run it i get no results
    SELECT lipqoh
    FROM f41021 a , f0006 b
              WHERE      b.mcmcu = a.limcu AND
                   b.mcstyl = 'W';
    if i add the filter a.liitm = 105900 like below data is returned (although the entries are 0 as expected at the moment, this is not always the case)
    SELECT lipqoh
    FROM f41021 a , f0006 b
              WHERE      b.mcmcu = a.limcu AND
                   b.mcstyl = 'W'
    a.liitm = 105900;
    the fields for each of the tables mentioned in the query have the following characteristics
    lipqoh Number NULLABLE
    mcmcu Char(12 BYTE) NOT NULLABLE
    mcstyl Char(2 BYTE) NULLABLE
    liitm Number NOT NULLABLE
    Any guidance would be greatly appreciated

    here is a small sample of the output from the query you provided, the explain plan for the query without additional filter does not mention an index just Partition List Table Access F41021 Full
    LIPQOH MC
    DUMP(B.MCSTYL)
    DUMP('W')
    MCMCU
    DUMP(B.MCMCU)
    DUMP(A.LIMCU)
    0 W
    Typ=96 Len=2: 87,32
    Typ=96 Len=1: 87
    CSW
    Typ=96 Len=12: 32,32,32,32,32,32,32,32,32,67,83,87
    Typ=96 Len=12: 32,32,32,32,32,32,32,32,32,67,83,87
    0 W
    Typ=96 Len=2: 87,32
    Typ=96 Len=1: 87
    CSW
    Typ=96 Len=12: 32,32,32,32,32,32,32,32,32,67,83,87
    Typ=96 Len=12: 32,32,32,32,32,32,32,32,32,67,83,87
    0 W
    Typ=96 Len=2: 87,32
    Typ=96 Len=1: 87
    SOL01
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,49
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,49
    0 W
    Typ=96 Len=2: 87,32
    Typ=96 Len=1: 87
    SOL01
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,49
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,49
    0 W
    Typ=96 Len=2: 87,32
    Typ=96 Len=1: 87
    SOL02
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,50
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,50
    0 W
    Typ=96 Len=2: 87,32
    Typ=96 Len=1: 87
    SOL05
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,53
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,53
    0 W
    Typ=96 Len=2: 87,32
    Typ=96 Len=1: 87
    SOL06
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,54
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,54
    0 W
    Typ=96 Len=2: 87,32
    Typ=96 Len=1: 87
    SOL08
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,56
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,56
    0 W
    Typ=96 Len=2: 87,32
    Typ=96 Len=1: 87
    SOL08
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,56
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,48,56
    0 W
    Typ=96 Len=2: 87,32
    Typ=96 Len=1: 87
    SOL22
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,50,50
    Typ=96 Len=12: 32,32,32,32,32,32,32,83,79,76,50,50

  • Surf with 3G, but need wifi to print????? Noooo....

    I am way to far off the road to get any Internet connection other than 3G. 
    I like to print content from the Internet often.  My brand new Epson printer that is air print enabled, apparently is only capable of that air print feature when it is connected to a router.
    Therefore, I must keep switching back and forth in settings between wifi on/off when I was to print or surf.  If there another way!!!!!!!!!!!??????????   There's gotta be another way.  I've tried a couple apps, but I've not been real impressed so far..one of which is "photon" .   Either way, if someone could please shed some light on this topic.....that would be great!

    AirPrint works by using a local network. A 3G connection isn't part of, nor does it create, a local network. That's why you can't print over a 3G connection. Perhaps you can find an app that will allow you to send a document to an email address and print it automatically? Check PrintCentral. I think it offers something like this.

  • TS1424 Hi I am not too bad with tec, but need help as I have paid for a apps from store but its been 2days now and it's still saying waiting, not downloaded. I have done the usual , turned the ipad off but to no avail..help someone..

    Hi can someone help me please, I have paid ... For a apps from store but its still not downloading , it still says waiting After 2days ????? Thanks a bunch for any help..

    Hi can someone help me please, I have paid ... For a apps from store but its still not downloading , it still says waiting After 2days ????? Thanks a bunch for any help..

  • Activate new Iphone with Wifi but need to log-in on Safari first - how do I do this?

    I have just received my new iphone 4S and would like to activate it.  I am trying to use the wifi network we have at work but on my old iphone, every day I would have to open safari which would then pick up The Cloud network and prompt me for a sign-in username and password – no problem.  Unfortunately, when I try and select this network to activate my new phone, it doesn’t allow me to open safari first to sign onto the network and thus allowing the activation to continue.  Is there any way around this??
    Many thanks

    Yes, that's the only options.  If the wi-fi network requires that you authenticate using Safari, then it's not appropriate for activating your iPhone. 
    Use your computer & iTunes to activate your device.

Maybe you are looking for

  • Full ABAP Edition-Trial Problems

    Hi I have downloaded and installed the Full ABAP Edition-Trial (with Web Dynpro for ABAP!) from SDN site.  However I am not able to use it, as I am getting the following error: <b>partner not reached(host 10.10.0.10, service sapdp00) WASECONNREFUSED:

  • Af:table component.

    Hello, I am trying a display the contents of a file in a table, having one column and the no. of rows as many are lines in the file. I am mapping the table to a collection of type string which contains all the lines in the form of a list. Now i want

  • When I try to upload files in my ftp, the ftp sends an error

    Since the last Firefox update, I´ve been unable to upload files to my www.floraciarlo/ftp. Explorer uploads files ok. I use Windows XP 64bit == This happened == Every time Firefox opened == The last firefox update!!! Explorer can upload the files to

  • Change catalog profile in QM02 usinf workflow BUS2078

    Hi All, I have to change the catalog profile when a QN is created from transaction QM02. The system generates a workflow in the background using bus2078. The catalog profile by default is always copied from the material master and then task. I want i

  • Recommended Desktop Software for the 8320

    I am confused, is there a special version for the curve 8320? The CD came with 4.2, but there is a link to download a version for the 8320, and there is the new 4.7. Will this latest version work fine with the 8320? BTW, I've been unable to download