VL10 without ship-to name

Hi,
In transaction VL10E , I have extended the user role 0201 and the flag Extended data selection for ship-to party (Name) is on.
But I cant´see the ship-to name. What do I need to do?
I see the field ship-to address that is the number of the ship-to in ADRC.
But I need to display the ship-to name.
Regards,
                  Enrique

Alright, I'm sure this can be worked out but let me check just one thing; so you have chosen the Name 1 field for your current worklist display layout as well as Address. In the Address field you can see the ADRC number but Name 1 field is empty, right?

Similar Messages

  • I have three different listings for Bob Seger on my iPod (bob Seger, Bob Seger System and Bob Seger and The Silver Bullet Band) How can I put all 3 in the same artist folder without changing artist name?

    I have three different listings for Bob Seger on my iPod (Bob Seger, Bob Seger System and Bob Seger and The Silver Bullet Band) How can I put all 3 in the same artist folder without changing artist name?

    Can you just create a new "Playlist", name it Bob Seger and drag what you want into the Playlist.
    File/New Playlist

  • How can you set up your subdomain pages in a subdirectory to show without the subdirectory name but the subdomain instead

    I am trying to understand how I can set up a series of pages for each of several subdomains such that when you view that web page it shows on the subdomain without the subdirectory name. Essentially I suppose I am wanting to point the subdomain at a folder...
    For example I have my main site with the domain mysite.com.au and have 3 subdomains sub1.mysite.com.au, sub2.mysite.com.au etc... I want to then store the pages relating to each subdomain in their own subdirectories /dir01, /dir02 and /dir03 or otherwise named as something appropriate.
    What want is to I have the page page1.htm in each of these subdirectories such that I can view the page with the url "http://sub1.mysite.com.au/page1.htm" and have the url displayed as such once loaded rather than having to enter http://mysite.com.au/dir01/page1.htm
    Is this a simple or complicated process to put in place?

    Hello Julie.
    Your junk filter appears to not be working properly. Try this first:
    1. Go to Preferences > Junk Mail and disable junk mail filtering.
    2. Quit Mail, then open it again.
    3. Go to Preferences > Junk Mail, enable junk mail filtering, and configure it however you wish -- I recommend you to leave it at the default Automatic settings.
    4. Reset the junk filter database (Preferences > Junk Mail > Reset).

  • How to get the jar file without knowing its name and any class inside it?

    Hello, everybody!
    I would like to know if there's a way to get a reference programatically to the initial jar without knowing its name and any class contained in it. By "initial jar" I mean the jar that was called in the prompt, like this:
    java -jar jarfile.jaror in another way, in a graphical system. To be sincere what I really want is to get a reference to the jar's manifest, but I know if I can get a reference to the jar I can get a reference to its manifest file. Or if you know a way to get the manifest directly, it would also help. So, is there a way to do this?
    Thank you.
    Marcos

    jverd wrote:
    marcos_aps wrote:
    abillconsl wrote:
    Can you be more specific - IOW, can you cite a specific case?Absolutely. I want to access the jar in source code with the java.util.zip.JarFile class, for example.But why? You still haven't provided a use case or explained what you're trying to accomplish. As already pointed out, whatever you're trying to do, this is a brittle solution. If you explain what you're trying to accomplish with this, somebody may be able to suggest a better approach.jverd, I explained for baftos. Anyway, I will try to be more specific. I start my sytem like this, from, say, for example, jar1.jar:
    import br.product.System;
    public static void main(String[] args)
        System.start("NameOfTheSystem");
    }The System class is in util.jar, for example. This jar is used by all systems. I wouldn't like to pass in the name of the system, as above. I would like that the System class could read it from jar1.jar's manifest file. I just would like to have this:
    import br.product.System;
    public static void main(String[] args)
        System.start();
    }It is more elegant and I don't have the name of the system in two places: code and manifest file.
    Marcos

  • How to read a Oracle Forms PARAMLIST without knowing parameter names

    Hi All,
    Is there a way to read a Oracle Forms Paramlist on Oracle Forms (I mean read all parameters on it) without knowing any names of the parameters?
    I´d like to create a command line at run time and put on this command line all the parameters and its values, but I will never know the quantity of parameters and its names and values.
    Example of the command line I want to create:
    rwrun.sh batch=yes destype=file desname=/tmp/cmx_objetos.pdf desformat=pdf userid=***/***@*** module=/d01/oracle/VIS/apps/apps_st/appl/ecomex/fmx/cmx_objetos.rep parameter1=value1, parameter2=value2 ... paramaterN=valueN
    Thanks.

    As Francois said it is not clear if you are talking about Forms or Reports here. If Reports: check Get parameter name and type at runtime thread.
    But if you have no idea of the number or names of the parameters? How do you know which values to assign at all?
    Edited by: InoL on Jan 7, 2010 12:34 PM

  • SQL server query without indicating server name

    I am writing a query  in SSIS and  utilize servername everytime  but it drags every time
    I am authorized to  work in Development area and can indicate deve  server
    But   Senior  officer ask me  not to use Server name  and when  package goes to  production   query  can execute without  indicate  server name any idea 
    thank you very much.
    Vijay
    Vijay Patel

    I think you're using linked server in your queries based on your description.
    While working in SSIS you dont need linked server. You'll just add connection manager to connect to your dev server and database and then use it for your tasks. Inside your query you will just reference objects using schemaname.objectname convention.
    You will make servername and database name configurable by adding them as configurations (parameters in SSIS 2012 if you use project deployment). Then you will be able to pass values for configurations from outside based on variety of options like through
    XML file, from SQLServer table, Environment variables etc
    see
    http://www.mssqltips.com/sqlservertip/1405/sql-server-integration-services-ssis-package-configuration/
    http://nexxtjump.com/2013/01/14/ssis-2012-configuration-guide-part-1-introduction/
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Copy file without retyping its name

    I`m just starting to use Java (in school) so I need help even with simple things like this: I have to copy file without retyping its name in destination. I`ve tried to use substring method for extracting filename, but it gives me an error "The method substring() is undefined for type Copy". Any help?
    import java.io.BufferedReader;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStreamReader;
    public class Copy{
         * @param args
         public static void main(String[] args) {
              try {
                   BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    //Entering the path to the file that I want to copy
                   System.out.println("Enter file path");
                   String filePath= br.readLine();
    //Entering the destination for copied file
                   System.out.println("Enter destination");
                   String destination = br.readLine();
                   FileInputStream fis = new FileInputStream(filePath);
                   FileOutputStream fos = new FileOutputStream(destination);
                   int c=0;
                   while((c=fis.read())!=-1){
                        fos.write(c);
                   fis.close();
                   fos.close();
              } catch (FileNotFoundException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
    }

    cereal_killer wrote:
    No. I expected this (String fileName = substring(filePath.lastIndexOf("/")+1, filePath.length());) to workYou didn't provide a string reference on which to execute substring. As in:
    String str = "blah blah blah";
    String fileName = str.substring(...);
    {code}If you just say *substring(start, end)* how is it supposed to know *which* String object to operate on?
    Without the someStringReference. preceding it, calling a method--in your case substring--is like calling it on this object, i.e., like this.substring. Your class does not define a substring method, so it's a compile time error to try to call that non-existent method.

  • Designer generating CG_REF_CODES inserts without the table name.

    We have upgraded our repository from 9i to 10g and now when we generate DDL we get our insert statements for the CG_REF_CODES table without a table name. I am sure that this must be a setting somewhere but I can't find any reference to it in the help. The following is an example of the generated .avt file from our 10g installation.
    Thanks in advance,
    Chris S.
    DELETE FROM
    WHERE RV_DOMAIN = 'DURATION_VALUE'
    INSERT INTO (RV_DOMAIN, RV_LOW_VALUE, RV_HIGH_VALUE, RV_ABBREVIATION, RV_MEANING)
    VALUES ('DURATION_VALUE', 'D', NULL, 'Days', 'Days')
    INSERT INTO (RV_DOMAIN, RV_LOW_VALUE, RV_HIGH_VALUE, RV_ABBREVIATION, RV_MEANING)
    VALUES ('DURATION_VALUE', 'M', NULL, 'Months', 'Months')
    INSERT INTO (RV_DOMAIN, RV_LOW_VALUE, RV_HIGH_VALUE, RV_ABBREVIATION, RV_MEANING)
    VALUES ('DURATION_VALUE', 'Y', NULL, 'Years', 'Years')
    INSERT INTO (RV_DOMAIN, RV_LOW_VALUE, RV_HIGH_VALUE, RV_ABBREVIATION, RV_MEANING)
    VALUES ('DURATION_VALUE', 'B', NULL, 'Business Days', 'Business Days')
    INSERT INTO (RV_DOMAIN, RV_LOW_VALUE, RV_HIGH_VALUE, RV_ABBREVIATION, RV_MEANING)
    VALUES ('DURATION_VALUE', 'I', NULL, 'Indefinite', 'Indefinite')
    COMMIT
    /

    Sounds like a bug to me, but one thing you can check is the generator options that affect the reference code table. In the Design Editor select your application in the navigator, then the Options menu. Select "Generator Options...", then "General..."
    One thing you might fool with is the File Name Length restriction - mine is blank, but then I tend not to use CG_REF_CODES, so I haven't generated them for quite a while. Try setting it to 30, which would be the right number for Oracle, or to 0, which is supposed to mean "no restriction".

  • Delivery without shipping point

    Hai guru,s
    Can we do delivery without shipping point..........
    In which business process it will work.if yes.........
    any configurations required.........if .yes.....
    thanking  u one and all who are helping me........
    regards
    anjan

    No it is not possible.
    Shipping points are independent organizational entities within which processing and monitoring of the deliveries as well as goods issue is carried out.
    delivery is processed by one shipping point only.
    but in STO Internal Procurement (Stock Transfer from Depot to Plant without Delivery) you can transfer material without delivery
    Regards,
    Vishal

  • Jump to next frame label without specifying a name

    Is it possible to jump to next frame label without specifying
    the name of the frame label?
    For example instead of saying
    on (release) {
    gotoAndPlay("Step_02");
    I wanted it just to go to next available frame label.
    Thanks
    Jonas

    not with actionscript 2.

  • How do i send a group email without showing recipient names?

    hi
    i would like to ask how do i send a group email without showing recipient names - without using bcc!
    i have seen that peple send group emails and only the only info that appers is the: from and to emails are the same as the sender email.
    how do i do that?
    isnt there any app for Gmail to do that?
    i am using gmail
    thank you

    If you address the email to yourself and then put all your recipients in the bcc it appears to each recipient as if they got your email. In other words they will not see anyone else's name or even their own name - just yours.

  • Inserting values for all records except 1 or 2 column ,without specify column names.,?

    Hi,
    for example, in student table i am having 1000 columns,  column names like(id ,name,class, dept,etc,.).
    i want to insert 998 fields to department table from student tables except(id,class).
    i don't want to mention all column names in the insert command,
    is there any possibilities to filter the column names in insert command like (EXCEPT, NOT IN).
    Thanks in advance..

    duplicate of
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/b31fa034-5b8f-42e4-b4e1-592a632ca6a5/inserting-values-for-all-records-except-1-or-2-column-without-specify-column-names?forum=sqlce
    please dont cross post
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to name individual clips without changing the name of the original file...?

    Hi,
    Theres likely to be a really simple solution to this, but i can't find it! I've done my in & out points, i've created a new clip and i'd like to give it a unique name. When i rename the clip the original file name also changes. How can i rename the new clip without changing the original file name?
    Please help,
    Thanks
    Ed

    Either make the clip a subclip or convert it to a new master clip. Both can be done in the Modify menu.

  • Using SAP User name without system/client name

    Hello,
    How to display and use i9d3719 instead of db1~100/i9d3719?
    So if I want to lon on to designer, I want to enter i9d3719 in username instead of db1~100/i9d3719. Same goes for wneh an user logs to Webi, their username should be displayed without the SAP system and client id.
    Thanks,
    Nikhil

    Akhil,
    I hope this will never work. Think about your requirement for a second....
    This would mean an application is able to see my user credentials without my knowledge. It's bad enough the know my IP if I'm not using TOR.
    To get your requirement to work you have to redefine it a bit. The user have to log in to your application. The application holds the name together with an ID of the session to know the user in further requests.
    Thats a basic security theme, described in the dos [Adding Security to a Fusion Web Application|http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/adding_security.htm] .
    Timo

  • Read file without knowing full name

    Dear All,
    I want to read data from a file but without knowing the file's full name.
    For example i have data files from a program that the first letters of the data files are the date and the rest some numbers i cannot predict i.e 20081027_5323621.
    Is it possible to read this file by knowing only the characters that correspond to the date?
    thanks!
    Solved!
    Go to Solution.

    Yes,
    You can set a pattern in the file dialog that points to the date (formatted).
    The output of the file dialog will be the complete file path for the file that was selected..
    One question..  Do you want a popup window to browse for the file?  to allow selecting one of the matching file(s)...
    Because there may be more than one file that has a matching date...
    R
    Message Edited by JoeLabView on 10-27-2008 01:09 PM
    Attachments:
    patternFileDialog.PNG ‏2 KB

Maybe you are looking for

  • How to view thumbnails of open files in elements 12?

    For some reason i cannot figure out how to see my open files as thumbs when editing in elements 12. I am sure it is something i am overlooking. thanks for the help.

  • Help with full screen

    I have created 5 separate swfs, when i publish them i check off html and full screen. when the menu screen opens it still has the menubar and address bar. when i click on my links to go to the specific section nothing changed. In the menubuilder do i

  • The New Media Sync Concept

    Hi, I love my BB and recently updated to the latest version of the Desktop Management Software. It all looks good and it is visually quite a significant upgrade...but the Media Sync functionality unusable. I am not particularly fond of the new way to

  • Rp-pppoe 3.7: can't connect anymore

    hi, I just updated rp-pppoe from 3.5 to 3.7, but now I can't go online with arch anymore and have to use windows /etc/ppp/pppoe.conf was moved to /etc/ppp/pppoe.conf.pacsave. I tried to run adsl-setup again for the new files, but adsl-setup is gone.

  • [SOLVED] No sound cards detected - /proc/asound missing

    Yet another case of 'i've spent too long banging my head on the keyboard so i'm going to run to you for help'. Essentially i've been using OSS since i've installed Arch, worked fine - although there was absolutely no sound in Wine programs no matter