Different output in different systems

I have a question that when I write the following LOC in my smart form the output is correctly visible in the development system (my system) but not in the user system (a different server):
"here>> g_po and w_curr_desc is
  "of type vbak-vbeln and vbak-waerk
"respectively.
set country space.                                                  
g_po = wa_vbak-vbeln.
w_curr_desc  = wa_vbak-waerk.
select single dcpfm from usr01 into (w_dec_note)
  where bname = sy-uname.
" here>>W_DEC_NOTE TYPE XUDCPFM
" here>> l_char type char20
<i>MOVE w_total_vat to l_char.</i>
condense l_char no-gaps.
if w_dec_note = 'X'.                                          
  replace all occurences of ',' in l_char with ''.
elseif w_dec_note = 'Y'.
  replace all occurences of ',' in l_char with '.'.
  condense l_char no-gaps.
elseif w_dec_note = space.
  replace all occurences of '.' in l_char with ''.
  replace all occurences of ',' in l_char with '.'.
endif.
condense l_char no-gaps.
Now instead of the code line mentioned above in italics I write the following code-linethe problem goes away,I did that to recrify the problem but dont know the reason for it:
<i>write w_total_vat to l_char currency wa_vbak-waerk.</i>
1.Can anybody please explain me the reason for exactly what  happened before and after theis change is made?
If the output is  say as '180' 'currency'  which we see on our systems.The user sees it as '18000' 'currency'.

Whenever currency is involved, the system determines the number of decimal places in the output according to the currency , say C, If the contents of C exist in table TCURX as currency key CURRKEY, the system sets the number of decimal places according to the entry CURRDEC in TCURX. Otherwise, it uses the default setting of two decimal places. This means that table TCURX must contain only exceptions where the number of decimal places is unequal to 2.
The output format for currencies does not depend on the decimal places of a number that may exist in the program. The system uses only the sequence of digits. This sequence of digits thus represents an amount specified in the smallest unit of the currency in use, for example Cents for US Dollar (USD) or Francs for Belgian Francs (BEF). For processing currency amounts in ABAP programs, SAP therefore recommends that you use data type P without decimal places.
I think that for the currencies you use, there is an entry in your TCURX table and none in your client end, may be thats why this addition of two zeros occur.

Similar Messages

  • Same code but different output on different cpu

    Hi to all,
    I realized a simple class to receive data from a tcp server.
    In the code I allocate a bytebuffer with dimension of x byte. I receive this byte from a server.
    the problem is: if I use a x86 processor class run correctly. If I use x86_64 processor a receive from the server a great value and then when the application try tu run ByteBuffer.allocate I receive a memory excedeed error.
    Why is there a different running mode if I change cpu?
    I would to attach code but in wich way I can? this forum has a limited number of words.

    I have problem at the line where is
    dati = ByteBuffer.allocate(tot_byte);
    I post you the code: sorry but it isn't optimized ....
    int numero_canali = canals.size();
            ByteBuffer packet5 = ByteBuffer.allocate(12);
            ByteBuffer packet2 = ByteBuffer.allocate(24 + 4 * numero_canali);
            packet2.putInt(0x7ABCDE0F);
            packet2.putInt(124);
            packet2.putInt(12 + 4 * numero_canali);
            packet2.putInt(0);
            for(int i = 0; i < numero_canali; i++)
                ArrayList appoggio = (ArrayList)canals.get(i);
                String s = String.valueOf(appoggio.get(3));
                int s1 = Integer.valueOf(s).intValue();
                packet2.putInt(s1);
            packet2.putInt(0);
            packet2.putInt(0);
            packet2.rewind();
            packet2.rewind();
            while(packet2.hasRemaining())
                try
                     out.write(packet2);
                catch(IOException ex)
                    ex.printStackTrace();
            do
                ByteBuffer dati = null;
                //packet.rewind();
                int total_byte;
                try
                    total_byte = in.read(packet5);
                    System.out.println ("Numero Byte letti : " + total_byte );
                catch(IOException ex)
                    ex.printStackTrace();
                packet5.rewind();
               //packet.reset();
                System.out.println((new StringBuilder()).append("Signature messaggio : ").append(Integer.toHexString(packet5.getInt())).toString());
                System.out.println((new StringBuilder()).append("Tipo Messaggio : ").append(packet5.getInt()).toString());
                int tot_byte = 0;
                tot_byte = packet5.getInt();
                //tot_byte=0;
                System.out.println("Lung mess : " + tot_byte);
                System.out.println((new StringBuilder()).append("Lunghezza del messaggio : ").append(tot_byte).toString());
                dati = ByteBuffer.allocate(tot_byte);
                dati.rewind();
                while(dati.hasRemaining())
                    try
                        in.read(dati);
                    catch(IOException ex)
                        ex.printStackTrace();
                dati.rewind();
                dati.rewind();
                byte b4 = dati.get();
                byte b3 = dati.get();
                byte b2 = dati.get();
                byte b1 = dati.get();
                long older_sequence_number = ((long)b1 & 255L) << 24 | ((long)b2 & 255L) << 16 | ((long)b3 & 255L) << 8 | (long)b4 & 255L;
                System.out.println((new StringBuilder()).append("Older Sequencial Number : ").append(older_sequence_number).toString());
                System.out.println((new StringBuilder()).append("Tipo pacchetto : ").append(dati.get()).toString());
                b4 = dati.get();
                b3 = dati.get();
                b2 = dati.get();
                b1 = dati.get();
                long seconds = ((long)b1 & 255L) << 24 | ((long)b2 & 255L) << 16 | ((long)b3 & 255L) << 8 | (long)b4 & 255L;
                System.out.println((new StringBuilder()).append("Secondi : ").append(seconds * 1000L).toString());
                Date prova = new Date(seconds * 1000L);
                System.out.println((new StringBuilder()).append("Data : ").append(prova.toString()).toString());
                long sub_second = ((long)dati.get() & 255L) << 8 | (long)dati.get() & 255L;
                System.out.println((new StringBuilder()).append("Sub second : ").append(sub_second).toString());
                b2 = dati.get();
                b1 = dati.get();
                long instrument = ((long)b1 & 255L) << 8 | (long)b2 & 255L;
                System.out.println((new StringBuilder()).append("Instrument ID : ").append(instrument).toString());
                ArrayList array_temp = new ArrayList(numero_canali);
                for(int s = 0; s < numero_canali; s++)
                    ArrayList appoggio = (ArrayList)canals.get(s);
                    boolean add = array_temp.add(appoggio.get(0));
                b4 = dati.get();
                b3 = dati.get();
                b2 = dati.get();
                b1 = dati.get();
                long sequence_number = ((long)b1 & 255L) << 24 | ((long)b2 & 255L) << 16 | ((long)b3 & 255L) << 8 | (long)b4 & 255L;
                System.out.println((new StringBuilder()).append("Sequece Number : ").append(sequence_number).toString());
                b2 = dati.get();
                b1 = dati.get();
                long payload = ((long)b1 & 255L) << 8 | (long)b2 & 255L;
                System.out.println((new StringBuilder()).append("Byte Payload : ").append(payload).toString());
                int posizione_id = array_temp.indexOf(Long.valueOf(instrument));
                System.out.println((new StringBuilder()).append("instrument \350 alla posizione : ").append(posizione_id).toString());
                ArrayList appoggio = (ArrayList)canals.get(posizione_id);
                Object set6 = appoggio.set(5, Long.valueOf(older_sequence_number));
                Object set5 = appoggio.set(6, Long.valueOf(seconds));
                Object set4 = appoggio.set(7, Long.valueOf(sequence_number));
                Object set3 = appoggio.set(8, Long.valueOf(payload));
                Object set2 = appoggio.set(9, prova.toString());
                Object set = canals.set(posizione_id, appoggio);
            } while(true);

  • Print priview and spool print output are different

    Hi Friends,
    there is problem with purchase order print priview and spool print output are different.
    mean : in me23n .. for a perticular po .. in po priview one amount value is 120 coming..
    when i am giving print with spool.. the amount value is showing
    is  443..why it is showing wrong..
    this is for perticular output type.
    why perticular values are showing different in print view and
    spool print.
    regards,

    make this setting change:
    in SPAD > In the menu Settings -> Spool System
    In the others tab check the first check box in the Output Controller block, SAVE and exit

  • Java-puzzlers...Why 2 different outputs for the same line

    Here, why it is giving 2 different outputs for the same set of lines
    Line-1 and Line-2 are both same.But giving 2 different results ???
    /*java-puzzlers*/
    public class Elementary {
        public static void main(String[] args) {
             System.out.println(12345 + 5432l);  /*Line-1: Original statement- didn't modify*/
          System.out.println(12345 + 54321);  /*Line-2: I wrote - I delete 12345 + 54321 and wrote the same thing again*/
    }

    kjshikal wrote:
    one of them is a longkjshikal,
    For the third and final time. Please stop resurrecting old threads like this.
    Thank you for your co-operation.

  • Cd c:\java gives me different output and javac doesnt work

    Dear friends;
    once I type cd c:\java it gives me different output and after that javac doesn't work
    Like
    javac filename.java
    doesnt compile.
    Any comments, please.
    C:\Program Files>java
    Usage: java [-options] class [args...]
    (to execute a class)
    or java [-options] -jar jarfile [args...]
    (to execute a jar file)
    where options include:
    -client to select the "client" VM
    -server to select the "server" VM
    -hotspot is a synonym for the "client" VM [deprecated]
    The default VM is client.
    -cp <class search path of directories and zip/jar files>
    -classpath <class search path of directories and zip/jar files>
    A ; separated list of directories, JAR archives,
    and ZIP archives to search for class files.
    -D<name>=<value>
    set a system property
    -verbose[:class|gc|jni]
    enable verbose output
    -version print product version and exit
    -showversion print product version and continue
    -? -help print this help message
    -X print help on non-standard options
    -ea[:<packagename>...|:<classname>]
    -enableassertions[:<packagename>...|:<classname>]
    enable assertions
    -da[:<packagename>...|:<classname>]
    -disableassertions[:<packagename>...|:<classname>]
    disable assertions
    -esa | -enablesystemassertions
    enable system assertions
    -dsa | -disablesystemassertions
    disable system assertions
    C:\Program Files>

    That error means that the file does not exist or you got the filename wrong (which means it does not exist)...
    recheck the location of your file and verify that it actually there...
    Step 2, now that we know that the J2SDK1.4.2_03 is installed in C:\j2sdk1.4.2_03\bin...
    We can now set you path... If you have an Windows 2000 or XP then check this link in the forum...
    http://forum.java.sun.com/thread.jsp?forum=54&thread=491703&tstart=0&trange=15
    So what you do is right click on My Computer (icon) which will give you a menu...
    Select Properties at which point you will see the System Properties Dialog window...
    Select the Advanced Tab (called Details in Win2000) Click on the Environment Variables button...
    Which will open the Environment Variable Dialog window... then in the second little window labeled System Variables, select Path and click on the edit button...
    you will now see the Edit System Variable dialog window...
    in Variable Value goto the the end of that line (make sure that nothing is selected/highlighted), type
    ";c:\j2sdk1.4.2_3\bin
    make sure that you include the semicolon...
    click ok to make the change, and via the ok buttons exit System Properties...
    reopen DOS and now you should be able to run Javac.exe anywhere...
    Hope this helps...
    -MaxxDmg...
    -' He who never sleeps...'

  • Different output for each running(Thread or Runnable)

    When i run a program which extends Thread or implement Runnable interface, i get different output each time i run from either of the program. Why this can happen? Why the output from the program which extends Thread different from the output which implementing Runnable? i really can't figure out..can someone explain it to me?? thank you!! Belows are the program im trying to run..
    <code>
    public class RunThreads
         public static void main (String [] args)
              SomeThread p1 = new SomeThread(1);
              p1.start();
              SomeThread p2 = new SomeThread(2);
              p2.start();
              SomeThread p3 = new SomeThread(3);
              p3.start();
    } //end class RunThreads
    public class SomeThread extends Thread
         int myID;
         SomeThread(int id)
              this.myID = id;
         public void run()
              int i;
              for(i=1;i<11;i++)
              System.out.println("Thread" + myID + ": " + i);
    } //end class SomeThread
    </code>
    <code>
    public class RunThreads2
         public static void main (String [] args)
              Thread p1 = new Thread(new SomeThread2(1));
              p1.start();
              Thread p2 = new Thread(new SomeThread2(2));
              p2.start();
              Thread p3 = new Thread(new SomeThread2(3));
              p3.start();
    } //end class RunThreads2
    public class SomeThread2 implements Runnable
         int myID;
         SomeThread2(int id)
              this.myID = id;
         public void run()
              int i;
              for(i=1;i<11;i++)
              System.out.println("Thread" + myID + ": " + i);
    } //end class SomeThread2
    </code>

    Umm, could you explain the differences in the output first?

  • Combing output from different cmdlet to single worksheet

    I am having 2 one liner and 2 script which provide me the required output. I am looking to export them to a single worksheet one below one
    All 4 script produces output with different number of row and columns. Is it possible to combine arrays with different layouts (columns) to a single Export-Csv or XLS?

    Hi Aravind,
    Sorry for the delay.
    To append all the output to one .csv file, please try this function, which add the "-append" switch to the cmdlet "Export-CSV":
    function Export-CSV {
    [CmdletBinding(DefaultParameterSetName='Delimiter',
    SupportsShouldProcess=$true, ConfirmImpact='Medium')]
    param(
    [Parameter(Mandatory=$true, ValueFromPipeline=$true,
    ValueFromPipelineByPropertyName=$true)]
    [System.Management.Automation.PSObject] ${InputObject},
    [Parameter(Mandatory=$true, Position=0)]
    [Alias('PSPath')]
    [System.String] ${Path},
    #region -Append (added by Dmitry Sotnikov)
    [Switch] ${Append},
    #endregion
    [Switch] ${Force},
    [Switch] ${NoClobber},
    [ValidateSet('Unicode','UTF7','UTF8','ASCII','UTF32','BigEndianUnicode','Default','OEM')]
    [System.String] ${Encoding},
    [Parameter(ParameterSetName='Delimiter', Position=1)]
    [ValidateNotNull()]
    [System.Char] ${Delimiter},
    [Parameter(ParameterSetName='UseCulture')]
    [Switch] ${UseCulture},
    [Alias('NTI')]
    [Switch] ${NoTypeInformation})
    begin
    # This variable will tell us whether we actually need to append
    # to existing file
    $AppendMode = $false
    try {
    $outBuffer = $null
    if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer))
    $PSBoundParameters['OutBuffer'] = 1
    $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand('Export-Csv',
    [System.Management.Automation.CommandTypes]::Cmdlet)
    #String variable to become the target command line
    $scriptCmdPipeline = ''
    # Add new parameter handling
    #region Dmitry: Process and remove the Append parameter if it is present
    if ($Append) {
    $PSBoundParameters.Remove('Append') | Out-Null
    if ($Path) {
    if (Test-Path $Path) {
    # Need to construct new command line
    $AppendMode = $true
    if ($Encoding.Length -eq 0) {
    # ASCII is default encoding for Export-CSV
    $Encoding = 'ASCII'
    # For Append we use ConvertTo-CSV instead of Export
    $scriptCmdPipeline += 'ConvertTo-Csv -NoTypeInformation '
    # Inherit other CSV convertion parameters
    if ( $UseCulture ) {
    $scriptCmdPipeline += ' -UseCulture '
    if ( $Delimiter ) {
    $scriptCmdPipeline += " -Delimiter '$Delimiter' "
    # Skip the first line (the one with the property names)
    $scriptCmdPipeline += ' | Foreach-Object {$start=$true}'
    $scriptCmdPipeline += '{if ($start) {$start=$false} else {$_}} '
    # Add file output
    $scriptCmdPipeline += " | Out-File -FilePath '$Path' -Encoding '$Encoding' -Append "
    if ($Force) {
    $scriptCmdPipeline += ' -Force'
    if ($NoClobber) {
    $scriptCmdPipeline += ' -NoClobber'
    $scriptCmd = {& $wrappedCmd @PSBoundParameters }
    if ( $AppendMode ) {
    # redefine command line
    $scriptCmd = $ExecutionContext.InvokeCommand.NewScriptBlock(
    $scriptCmdPipeline
    } else {
    # execute Export-CSV as we got it because
    # either -Append is missing or file does not exist
    $scriptCmd = $ExecutionContext.InvokeCommand.NewScriptBlock(
    [string]$scriptCmd
    # standard pipeline initialization
    $steppablePipeline = $scriptCmd.GetSteppablePipeline($myInvocation.CommandOrigin)
    $steppablePipeline.Begin($PSCmdlet)
    } catch {
    throw
    process
    try {
    $steppablePipeline.Process($_)
    } catch {
    throw
    end
    try {
    $steppablePipeline.End()
    } catch {
    throw
    <#
    .ForwardHelpTargetName Export-Csv
    .ForwardHelpCategory Cmdlet
    #>
    Reference from:
    Export-CSV -Append
    I hope this helps.

  • TS4559 I don't know if this was already asked, but every time I put my headphones on my iMac OSX (2007 version) I always hear it on a different output then my headphones. But they worked last time...  I just don't know what the problem is...

    It just happen to me today... while I was listening to music it went to a different output. But strangely... it works on my ipad 2 wifi.
    If this happen to you PLEASE reply. Thank You.

    Hello pagtaljav1,
    It sounds like you're not hearing audio from you headphones when connected to your iMac.  You may want to check the output settings in System Preferences.  You can find the steps to do this in this article:
    OS X Mountain Lion: Change your computer’s sound output device
    http://support.apple.com/kb/PH11235
    If the setting is correct there, and you are still not getting audio from the headphones, I recommend resetting the NVRAM / PRAM:
    About NVRAM and PRAM
    http://support.apple.com/kb/HT1379
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Same report, 2 identical servers, 2 different outputs???

    We have a report that is produced correctly on our Staging server, but when we promote the same report to our Production server (which is a mirror of our Staging server), we get different output. The machines are identical in every respect except for the name. The same queues, fonts, and version of Crystal Report (10.2.3600.0) is installed on both. I wish I could upload the 2 versions of the pdfs that are outputted for you to see the differences, but there doesn't seem to be a way to do that here. Any ideas of what could be causing the discrepancies?

    Hi Amanda,
    Can I back track a bit here?  I would like a bit more clarification on how this is being tested.  From what I understand:
    1)  You have the same application running on 2 different servers which are mirrors of each other. 
    2)  The report is exported to PDF directly, not previewed or printed first. 
    3)  The PDF is opened locally on the client machine. 
    A couple of questions I have: 
    1)  Is the client machine viewing the PDFs from both servers or are these 2 different clients as well?  If the clients are different, then can you try opening the PDF from the second server onto your original client and see if they formatting is the same?  I say this because I want to make sure the Acrobat reader is the same version on both machines and to eliminate the possibility that the PDF is fine but the reader may be the culprit. 
    2)  You've removed the printer in the report I see.  On the client machine, is there default printer installed and is it something other than the Generic Text Driver? 
    3)  Same question as above but on the second server?  A printer is important to Crystal even if you are not printing.  Many years ago if a printer was not installed, the print engine would crash the report when you tried to run it.  That's when the No Printer option was added but that's a different story.  I just needed to stress the importance of having a printer installed. 
    Thanks,
    Brian

  • Purchase order print priview and spool print output are different.

    Hi Friends,
    there is problem with purchase order print priview and spool print output are different.
    mean : in me23n .. for a perticular po .. in po priview the TAX VALUES value is 120 coming..
    when i am giving print with spool.. the amount value is showing  TAX VALUE
    is 443..why it is showing wrong..
    this is for perticular output type.
    why TAX VALUES are showing different in print view and
    spool print.
    help me.
    regards,

    Hi Neil,
    thanks for your reply.
    but the valiadtions are happening in standard functional module PRICING.
    it is realted script(medruck)...but there is no code point for spool or printer side..
    and the issue is realted one PO OUTPUT TYPE..
    it is sap standard debugging... when i am debugging the functional module PRICING.
    the values are coming dynammically.
    help me.
    regards,

  • Different output observed in IE8 and IE11 for same HTML file

    when I open the below html code in ie8 and ie11 the output is different.
    <div style=" color: EAE6F1; " id="Screen147">
    <img style=" width: 1280; height: 1020; " id="item1" src="Desert.jpg" border="0"/>
    <div style=" background-color: FFFFFF; color: 000000; font-family: 'Arial'; font-size: 31px; layout-grid: both fixed 51px 32px; white-space: nowrap; " id="item2">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    </div>
    <div style=" background-color: FFFFFF; color: 000000; font-family: 'Arial'; font-size: 31px; layout-grid: both fixed 51px 32px; white-space: nowrap; " id="item3">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    </div>
    <div style=" background-color: FFFFFF; color: 000000; font-family: 'Arial'; font-size: 31px; layout-grid: both fixed 51px 32px; white-space: nowrap; " id="item4">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    </div>
    I want to display a white block in the image. but when run in IE8 the white block appears bigger as compared to when displayed in IE11. 
    I wanted to know why is this behaviour and if the code is same then the output should also be the same. can anyone help me to understand this behaviour?
    thank you very much in advance for your replies.

    Hi yashajmera,
    Same script gets different results ,just as Greg said this may be related to the different rendering pages methods between different Internet Explorer versions.
    Here is a link for reference :
    Specifying legacy document modes
    https://msdn.microsoft.com/en-us/library/jj676915(v=vs.85).aspx
    We also can try to choose different view mode by F12 tool to have a check .
    To get more detailed information ,it is recommended to look for help from our MSDN forum for help.
     https://social.msdn.microsoft.com/Forums/ie/en-US/home?forum=iewebdevelopment
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to choose between different audio output in different programs

    I want to choose between the audio outputs in different programs.
    For example; I want to hear spotify/iTunes with my plugged-in speakers and skype with the build-in/intern speakers.
    It is possiple to control this on Windows but can I do it on Mac?
    Does anyone know an app for this problem?
    Thanks for help!

    I'd assume you'd want to set the sequence to "slur" notes and then just calculate the notes between a top & bottom value based on a float and generate NOTE_ON messages appropriately.
    The pitch bend is designed to emulate / support the bend wheel found on sound keyboards...and it just modifies the pitch associated with a given note. A pitch bend of +2 would turn an A into B, etc...
    So, you'd want to do...
    SET_SLUR (however you do that, I'm not a MIDI expert)
    pitch = bottom_pitch + ((top_pitch-bottom_pitch) * sliderValue);
    NOTE_ON(pitch)

  • Create multiple files in different directories for receiver system

    Hi,
    My scenario is File-XI-File. Based on a value of a field(1...Unbounded) & its occurance in source file XI needs to create same file number of times(based on occurance of field in source file) in different directories on receiver system(Single Business System).
    What different ways/solutions are available to achieve this?
    Regards,
    Bharat
    Edited by: Bharat Rathod on Nov 21, 2009 5:24 PM

    Hi Bharath,
    >>Based on a value of a field(1...Unbounded) & its occurance in source file XI needs to create same file number of times(based on occurance of field in source file) in different directories on receiver system(Single Business System).
    This logic needs to be handled in message mapping ... and you need to use multimapping..check the link here
    http://help.sap.com/saphelp_nw04/helpdata/en/42/f3b31d48fb1bc8e10000000a11466f/content.htm
    Regards
    Suraj

  • Different Output of the template from Template Builder and Oracle Apps.

    Hi,
    I have created a template with a page layout of 11" X 17" this template has around 18 columns.
    When i load the XML data and run it from XML Template builder 5.6.2 the output is fine but when I run it through oracle applications i get different output basically the output from oracle applications comes in 7 pages (First page has half page output , 2 nd page has 3/4th page output.....) where as from XML template builder the output comes in 6 Full pages.
    Wher am i going wrong.
    Thanks in Advance.

    The output is in PDF format.

  • Different Output's for PO's

    Is it possible to have different Output options for PO in the backend, like for example if PO is created based on PR coming from SRM SC then the output must be of say type 1, but if the PO is created from the back-end PR or with no connection at all to the PR coming out of SRM then the output must be of type 2??, if yes can some one please tell me how ?? thanks in advance.

    Hi. You could link your reqs from SRM to a new PO doc type in R/3.
    That way the POs from EBP reqs would have a different doc type to other POs created in R/3.
    Then you can have a new output type with a new form and use condition records in MN04 and MN05 to point to different outputs per PO type.
    An even easier way would be to have different pruchasing groups for your reqs from EBP, and base the output type on purchasing group.
    Regards,
    Dave.

Maybe you are looking for

  • Export Adobe PDF (print ) BasicTextAdornment

    Hello, We have a plugin that uses Text Adornments very much like the BasicTextAdornment sample plugin. When we choose to export to PDF our adornments are not being printed, the sample plugin BasicTextAdornment does not print either. Does any one know

  • Catching SOAP Faults

    Hello all, I need to be able to catch the standard SOAP Fault defined at http://schemas.xmlsoap.org/soap/envelope/ I expected to be able to do it in the same way as you can for remoteFault example: <faultHandlers> <catch faultName="bpelx:remoteFault"

  • Is this a Viable option??

    I work for a School who would like us to force someone to sign an AUP (acceptable use policy) or the computer shuts down. They want this done after log in so they can track who signed it. Is using Java a viable option for something like this?

  • Unexpected form error when saving as PDF

    I created a form and when I tried to save as PDF for offline input, I get an unexpected form error message. I only added open ended questions and name, email in the form. I used an existing template form and modified it (Market Research template)

  • CREATIVE'S TELPHONE TECH SUPPORT IS GARB

    I have tried to call numerous times and from what I have read, so have many others. For me, all it does is ring and ring and then nothing! This has got to be the worst tech support on the planet!