Issue related with using the FM BBP_READ_ATTRIBUTES

Hi all,
We are using SRM 5.0, ECC6 and ECS scenario
We have a requirement where we need to add multiple delivery address in the org structure at the user level. The attribute id is ADDR_SHIPT. there will always be a inherited address available, we need to add more addresses to it and set one of the addresses to a default value.
I had used the FM BBP_READ_ATTRIBUTES, the problem I'm facing is that it is overwriting the inherited addresses. I have checked several threads which mentioned we can set the IMP REPLACE_P and append values but this is not happening even If set or un-set the parameter REPLACE_P.
In one of threads I think by Disha, it was mentioned that the values will always get overwritten, so in case there is an existing value and if we need to append 2 more values then we need to populate 3 entries in the FM and execute. I have tried this but I always end up with 1 value.
I guess I might be doing something wrong .
The following is the code snippet I'm using :
it_attr_tab-attr_id = 'ADDR_SHIPT'
it_attr_tab-value_logsys = space
it_attr_tab-value = '11734'
it_attr_tab-dft_flag = 'X' (this is not set for other records)
CALL FUNCTION 'BBP_READ_ATTRIBUTES'
  EXPORTING
    orgunit_id_p = '50000763'
    scenario_p  = 'BBP'
    start_date_p = sy-datum
    end_date_p  = '99991231'
    replace_p    = <have used both X and space>
  TABLES
    it_attr_p            = lt_attr_tab.
I really appreciate any and all information you can give me on this.
Thanks in advance
Kishan

Hi Vangala,
Thank you for your reply. I have checked the Table T77OMATTR, but I don't see any field such as inheritance type. The following are the values which are maintained in the table T77OMATTR for the attribute ADDR_SHIPT :
ATTRIB = ADDR_SHIPT
REFSTRUCT = BBP_ATTR_F1
REFFIELD = ADDR_SHIPT
REFOBJTYPE = SPACE
RANGE = SPACE
MULTIPLE = X
WITHDEF = X
SUPP_CONV = SPACE
NO_MAINT =  SPACE
REF_ATTRIB = SPACE
INTTYPE = C
INTLEN = 10
OUTPUTLEN = 10
ATEXT = Delivery Address
Please let me know if there is anything else to be checked or done
Regards
Kishan

Similar Messages

  • Issues with using the output redirection character with newer NXOS versions?

    Has anyone seen any issues with using the output redirection character with newer NXOS versions?
    Am receiving "Error 0x40870004 while copying."
    Simply copying a file from bootflash to tftp is ok.
    This occurs for both 3CDaemon and Tftpd32 softwares.
    Have tried it on multiple switches - same issue.
    Any known bugs?
    thanks!
    The following is an example of bad (NXOS4.1.1b) and good (SANOS3.2.1a)
    MDS2# sho ver | inc system
      system:    version 4.1(1b)
      system image file is:    bootflash:///m9200-s2ek9-mz.4.1.1b.bin
      system compile time:     10/7/2008 13:00:00 [10/11/2008 09:52:55]
    MDS2# sh int br > tftp://10.73.54.194
    Trying to connect to tftp server......
    Connection to server Established. Copying Started.....
    TFTP put operation failed:Access violation
    Error 0x40870004 while copying tftp://10.73.54.194/
    MDS2# copy bootflash:cpu_logfile tftp://10.73.54.194
    Trying to connect to tftp server......
    Connection to server Established. Copying Started.....
    |
    TFTP put operation was successful
    MDS2#
    ck-ci9216-001# sho ver | inc system
      system:    version 3.2(1a)
      system image file is:    bootflash:/m9200-ek9-mz.3.2.1a.bin
      system compile time:     9/25/2007 18:00:00 [10/06/2007 06:46:51]
    ck-ci9216-001# sh int br > tftp://10.73.54.194
    Trying to connect to tftp server......
    |
    TFTP put operation was successful

    Please check with new version of TFTPD 32 server. The error may be due to older version of TFPT server, the new version available solved this error. Files are getting uploaded with no issues.
    1. Download tftpd32b.zip from:
    http://tftpd32.jounin.net/tftpd32_download.html
    2. Copy the tftpd32b.zip file into an empty directory and extract it.
    3. Copy the file you want to transver into the directory containing tftpd32.exe.
    4. Run tftpd32.exe from that directory. The "Base Directory" field should show the path to the directory containing the file you want to transfer.
    At this point, the tftpserver is ready to begin serving files. As devices request files, the main tftpd32 window will log the requests.
    Best Regards...

  • Will the new 10.6.8 update fix SATA3 issues related with 2011 MacBook Pros?

    Will the new 10.6.8 update fix SATA3 issues related with 2011 MacBook Pros?

    It is against TOU to speculate on these message board.  Suggest you post your question on the Mac Rumors site.
    As I already stated, there is no 10.6.8 update.  If there was, it would be listed in Software Update.

  • How can i plot a histogram with using the results of Line Length

    PLS HELP.How can i prepare a histogram with using the results of line length code(It is somewhere in the middle).
    This is a final exam take-home question. I would appreciate if you can help?
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import java.text.*;
    import java.io.File;
    public class WordAnalyser extends JFrame implements ActionListener
    private JMenuItem jmiAc, jmiSil, jmiCikis, jmiAnaliz, jmiHakkinda, jmiKullanim;
    private JTextArea jta1, jta2;
    private JFileChooser jFileChooser = new JFileChooser();
    File hafizada;
    File aktarilan = new File("Sonuc.txt");
    // Main method
    public static void main(String[] args)
    WordAnalyser frame = new WordAnalyser(); /* Ana ekran olusturulur */
    frame.setSize(400, 300); /* Degerleri belirlenir */
    frame.setVisible(true); /* Gorunebilirligi ayarlanir */
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    public WordAnalyser()
    setTitle("Serkan Ozgen Dosya Inceleme Programina Hos Geldiniz");
    JMenuBar mb = new JMenuBar();
    setJMenuBar(mb);
    JMenu fileMenu = new JMenu("Dosya");
    fileMenu.setMnemonic('F');
    mb.add(fileMenu);
    JMenu helpMenu = new JMenu("Degerlendirme");
    helpMenu.setMnemonic('H');
    mb.add(helpMenu);
    JMenu kullanimMenu = new JMenu("Kullanim Kilavuzu");
    mb.add(kullanimMenu);     
    fileMenu.add(jmiAc = new JMenuItem("Ac", 'A'));
    fileMenu.add(jmiSil = new JMenuItem("Sil", 'S'));
    fileMenu.add(jmiCikis = new JMenuItem("Cikis", 'C'));
    helpMenu.add(jmiAnaliz = new JMenuItem("Analiz", 'D'));
    helpMenu.add(jmiHakkinda = new JMenuItem("Hakkinda", 'H'));
    kullanimMenu.add(jmiKullanim = new JMenuItem("Kullanim"));     
    getContentPane().add(new JScrollPane(jta1 = new JTextArea()), BorderLayout.CENTER);
    getContentPane().add(jta2 = new JTextArea(), BorderLayout.SOUTH);
    jmiAc.addActionListener(this);
    jmiSil.addActionListener(this);
    jmiCikis.addActionListener(this);
    jmiAnaliz.addActionListener(this);
    jmiHakkinda.addActionListener(this);
    jmiKullanim.addActionListener(this);
    public void actionPerformed(ActionEvent e)
    String actionCommand = e.getActionCommand();
    if (e.getSource() instanceof JMenuItem)
    if ("Ac".equals(actionCommand))
    Ac();
    else if ("Sil".equals(actionCommand))
    Sil();
    else if ("Cikis".equals(actionCommand))
    System.exit(0);
    else if ("Analiz".equals(actionCommand))
    sayim();
    else if ("Hakkinda".equals(actionCommand))
    JOptionPane.showMessageDialog(this,
    "!!!! Bu program text analizi gerceklestirir. Her hakki saklidir SERKAN OZGEN!!!!",
    "Bu program hakkinda",
    JOptionPane.INFORMATION_MESSAGE);
    else if ("Kullanim".equals(actionCommand))
         JOptionPane.showMessageDialog(this,
         " Ilk once dosya menusunden Ac i tiklayarak analiz etmek istediginiz Dosyayi seciniz (Lutfen uzantisi *.txt \nveya *.log olsun). Daha sonra Degerlendirme menusunden analizi tiklarsaniz dosyanizda kac adet rakam, harf, \ncumle ve kelime oldugunu gorebilirsiniz. Simdiden kolay gelsin",
         "Programin kullanim detaylari",
         JOptionPane.INFORMATION_MESSAGE);
    private void Ac()
    if (jFileChooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION)
    hafizada = jFileChooser.getSelectedFile();
    Ac(hafizada);
    // Acilan Dosyayi ana ekranda gostermeye yariyan bir method
    private void Ac(File file)
    try
    // Acilan dosyayi okuma ve ana ekranda gosterme
    BufferedInputStream in = new BufferedInputStream(new FileInputStream(file));
    byte[] b = new byte[in.available()];
    in.read(b, 0, b.length);
    jta1.append(new String(b, 0, b.length));
    in.close();
    catch (IOException ex)
    // Temizle tusunun hangi ekranlara etki edecegini secme
    private void Sil()
    jta1.setText("");
    jta2.setText("");
    private void sayim()
    int buff;
    int sayac = 0;
    int Cumleler = 0;
    int Kelimeler = 0;
    int Karakterler = 0;
    int Satirlar = 0;
    int Rakamlar = 0;     
    boolean start = true;
    int linenum = 0;     
    try
    FileInputStream instream = new FileInputStream(hafizada);
    FileOutputStream outstream = new FileOutputStream(aktarilan);
         BufferedReader infile = new BufferedReader(new InputStreamReader(new FileInputStream(hafizada)));
    PrintStream out = new PrintStream(outstream);
         out.println("---Kelime Avcisinin Sonuclari---");
         String line = infile.readLine();
         while (line != null){
         int len = line.length();
         linenum++;
         line = infile.readLine();
         out.println("Line Length :"     + linenum + "\t" +len);
    while ((buff=instream.read()) != -1)
    switch((char)buff)
    case '?': case '.': case '!': /* Eger "?", "." veya "!" gorurse program cumleleri ve kelimeleri arttirir*/
    if (start == false)
    Cumleler++;
    Kelimeler++;
    start = true;
    break;
    case ' ': case '\t': case ',': case ';': case ':': case'\"': case'\'': /* Eger /t,;:\ ve \" bu isarteleri goruruse program kelimeleri arttirir */
    if (start == false)
    Kelimeler++;
    start = true;
    break;
              case 'n': case '\n': /* Eger \n gorurse satirlari arttirir */
              if (start == false)
                   Satirlar++;
                   Kelimeler++;
                   start = true;
              break;
    default:
    if (((char)buff >= 'a' && (char)buff<='z')|| /*a-z, A-Z veya - degerlerini gorurse karakterler arttirilir */
    ((char)buff >= 'A' && (char)buff<='Z')||
    ((char)buff == '-'))
    Karakterler++;
    if ((Kelimeler % 50) == 49)
    if (start == true)
                   out.println();     
    out.print((Kelimeler+1) + " ");
    out.print((char)buff);
    start = false;
              if ((char)buff >='0' && (char)buff <='9') {  /* 0-9 gorurse rakamlari arttiri */
                   Rakamlar++; }
    }// switch
         }//while
    instream.close();
    out.println();
    out.println();
    out.println("Karakter sayisi: " + Karakterler);
         out.println("Kelime sayisi: " + Kelimeler);
    out.println("Cumle sayisi: " + Cumleler);
         out.println("Satir sayisi: "+ Satirlar);
         out.println("Rakam sayisi: "+ Rakamlar);
    outstream.close();
    try
    BufferedInputStream in = new BufferedInputStream(new FileInputStream(aktarilan));
    byte[] b = new byte[in.available()];
    in.read(b, 0, b.length);
    jta2.append(new String(b, 0, b.length));
    in.close();
    catch (IOException ex)
    catch (Exception e)
    System.out.println(e);
    }

    Why is it that you're not interested in IOExceptions?
    catch (IOException ex)
    } Empty catch blocks is a hallmark of foolish Java code. At least print out the stack trace.
    %

  • I don't understand why i cant log in to my fb account using mozilla but with googlechrome i am able to do that.. mozilla can load up the fb site but cannot log in to my fb account.. i am comfortable with using the mozilla as my browser.. pls help thanks

    i don't understand why i cant log in to my fb account using mozilla but with googlechrome i am able to do that.. mozilla can load up the fb site but cannot log in to my fb account.. i am comfortable with using the mozilla as my browser.. pls help thanks

    hey thanks alot.. it helped me alot!! bring it on!!! cheers!!!

  • I am having problem with using the Basic brush definition

    I am having problem with using the Basic brush definition. When I try to click on it will not allow me to use it and will automatically use the 5 pt. oval brush definition. The only way I can use the basic brush is after I have already drawn something and then I have to click on the stroke and then press basic. This is incredibly annoying and if anyone could help I would greatly appreciate it. (I have Adobe CS6)

    for whatever reason, the basic 'brush' you see in the brushes palette effectively means removing any brush from a path. to draw with the brush tool you need a brush defined. in your case the last one selected being the 5 pt oval one.

  • Issue Related to limit the result in prompt by using SQL statement.

    Hello Gurus,
    I am facing one issue rite now with our testing environment in some Dashboard Prompt. it seems like they are working fine in our Development environment.
    basically I am using SQL statement in prompt to limit the values for current + last 2 years in drop down.
    Here is the SQL that I am using SELECT Time."Fiscal Year" FROM "Financials - AP Overview" where Time."Fiscal Year" <= VALUEOF(NQ_SESSION.CURRENT_FSCL_YEAR) AND Time."Fiscal Year" >= (VALUEOF(NQ_SESSION.CURRENT_FSCL_YEAR)-2) ORDER BY TIme."Fiscal Year" desc
    Now it's working fine in our Dev but geeting failed in Test environment.
    it's giving below error.
    Odbc driver returned an error (SQLExecDirectW).
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43119] Query Failed:
    [nQSError: 22023] An arithmetic operation is being carried out on a non-numeric type. (HY000)
    SQL Issued: SELECT Time."Fiscal Year" FROM "Financials - AP Overview" where Time."Fiscal Year" <= VALUEOF(NQ_SESSION.CURRENT_FSCL_YEAR) AND Time."Fiscal Year" >= (VALUEOF(NQ_SESSION.CURRENT_FSCL_YEAR)-2) ORDER BY TIme."Fiscal Year" desc
    Please let me know your output.
    Thanking You..

    Couple of possibilities..
    1. environments may be at different patch sets, may be causing the issue.
    2. data in working environment is fine but in other environment.
    to further debug use the same logical sql in both environments and compare the results..
    hope this helps..

  • Issues with using the system restore discs from Acer

    I am trying to restore an Acer laptop using the restore CD's that I ordered from Acer. Everything works fine until the restore gets to 93% copy progress and 24% copying progress and then the restore locks up. I have tried it 3-4 times with the same issue happening each time. Any ideas?
    Thank you,
    Richard
    [edited for privacy-please do not post personal or unique information such as but not limited to full names, email addresses, phone numbers, serial numbers, etc.]

    I did try the reinstall process using the ALT+TAB keys and this did not fix the issue. The system is locking in the same place of the restore every time. I feel this may be an issue with the hard drive and therefore I feel it will be necessary to replace it. Does this sound like and accurate assumption?

  • Issue with using the archive/deploy feature in CF10

    Hello, I have created a backup archive using the archive wizard under the packaging and deployment wizard.   This archive is from the parent instance and shows everything that I need to backup in the summary window properly, when I try to deploy this archive to a child instance I notice a few of the settings do not migrate over.   For example I did a deploy and noticed the mail, web services settings did not migrate over properly, they don't even show up in the summary window pre deploy.    If I try to manually add those options in the child instance I receive a generic error and it kicks me back out to the CF Admin login window.   Anyone run into an issue like this before?

    So I tried to create an archive file where only the mail settings were selected and named it mail.car from the parent instance.   The migration windows shows only mail settings have been chosen but when I chose to migrate that archive back into a child instance it still fails to carry over the mail server.   This is odd because in the deploy summary window it does show mail settings is being migrated yet the setting never actually does show up correctly.

  • Issues related with the current update kitkat

    A week earlier i updated my tab to kitkat version and now i am facing the problem to transfer my internal storage data to my hp pc
    Want a solution for this issue

    Hey @shreynirvick ,
    Welcome to the HP Forums!
    I understand you're not able to access the internal storage on your Voice Tab from your PC.
    Google started enforcing a security protocol on the KitKat operating system that has caused drastic changes in how storage works on your device.
    Essentially, nothing has access to manage files that is not installed in the same directory as the file itself. The biggest issue was with managing SD storage which you can read about here:
    KitKat and SD cards — what's fixed, what's broken and what's misunderstood.
    How can I get Android KitKat to work with my SD cards?
    You can also check your storage settings. Go to Settings > Storage > Menu button (top right corner) > USB Computer Connection > Ensure MTP is selected.
    Thanks.
    Please click the "Kudos, Thumbs Up" at the bottom of this post if you want to say "Thanks" for helping!
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    The Great Deku Tree
    I work on behalf of HP.

  • License issues related to use of SMO libraries in commercial product

    I have a question related to the use of SMO libraries in a commercial product. I read the license provided along with SMO (License_SMO.txt) and found following information. 
    • distribute Distributable Code included in a setup program only as part of that setup program without modification;
    Does this mean that I am not allowed to include only some of the libraries (.dll files) in my program?

    Hi Can,
    Thank you for your post.
    For more detailed information regarding to the license issue, please call
    1-800-426-9400,
    Monday through Friday, 6:00 A.M. to 6:00 P.M. (Pacific Time) to speak directly to a Microsoft licensing specialist. For international customers, please use the Guide to Worldwide Microsoft Licensing Sites to find contact information in your locations.
    Regards,
    Eric Zhang
    TechNet Community Support

  • There is a problem with using the new Hotmail attachment buttons with firefox 3.6.8

    I use firefox 3.6.8 browser and was unable to use the new attach file buttons in the newest version of hotmail. .
    I sent a help request to microsoft and got back a 'generic' answer that the new hotmail works with all browers; ie, safari, chrome and firefox 3.0+.
    Well, that is not exactly true. Because I then troubleshot the problem by opening hotmail in ie vice firefox I was able to attach multiple files (pics/documents) with no problem.
    I then went back to firefox and still had the same problem.
    The mouse pointer just hovers over each icon where there should be a button and no clicking is there to be clicked....so, there is no way to attach.
    hopefully you'll get it worked out soon.
    regards, rob N

    Although possibly not related to your problem, I have to remind you that the version of Firefox you are using at the moment has been discontinued and is no longer supported. On top of this, it has known unpatched bugs and security problems. I urge you to update to the latest version of Firefox, for maximum security, stability, performance and usability. You can get it for free, as always, at [http://www.getfirefox.com getfirefox.com].
    As for your problem, hopefully this support article is what you need:
    http://support.mozilla.com/en-US/kb/Websites+look+wrong
    In any case, it's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem does not disappear when all add-ons are disabled, please tell me, so we can work from there. Please have no fear of following my instructions to the line, as all can be easily undone.

  • Help with using the WRT54G as an Access Point

    Ever since I've been using the WRT54G as an access point behind another router I have been experiencing intermittent disconnects and reconnects from the internet anywhere from once every 5 to 60 minutes.  I get the message notifcation that the Local Area Network is disconnected for a split second before everything reconnects and works fine.  This has been happening on my desktop which is wired directly to the WRT54G which itself is wired directly to the other router, but I have also experienced these disconnects with my iPhone and laptops which have been using the wireless signal. 
    When I was connected directly to the original router I hadn't experienced any of these problems.  I've also tried changing settings and even disabling the wireless broadcast of the WRT54G but to no avail.  I can't figure out what the issue is, but it seems to also be affecting the wireless broadcast of the original router. 
    I've updated firmware for the Linksys, and I've done a reset for the Linksys as well.
    Any help would be much appreciated to get rid of these disconnects.

    OK, so I've tried a different setting to see if it'll work. 
    Previously I had not configured the WAN of the Linksys router at all and left it on Auto (DHCP) even though I disabled the DHCP for the LAN.  I've now set the WAN up to a random Static IP and hopefully this will solve the problem, but I'm not sure as of yet, if anyone could look over the settings to see if they're correct please let me know.
    Router 1- (Router)
    WAN - Configured to ISP
    LAN - DHCP
    IP: 192.168.1.1
    Subnet: 255.255.255.0
    IP Range: 192.168.1.100 - 192.168.1.150
    Router 2 - Linksys (AP)
    WAN - Static IP
    IP: 64.XXX.XXX.1 (made up value)
    Subnet: 255.255.255.0
    Gateway: 64.XXX.XXX.254 (made up value)
    DNS: XX.XXX.XXX.X (made up value)
    LAN - DHCP disabled
    IP: 192.168.1.2
    Subnet: 255.255.255.252
    The WRT54G was a bit of a pain in terms of what Static IP and Gateway values they would accept, so I had to randomly put in values until I found something that worked.  So far no disconnects, but it's only been half an hour.  I can't seem to access the admin page for my Linksys router at 192.168.1.2 anymore though.

  • Student subscription issue, impossible to use the softwares.

    Hello,
    I have a serious issue,
    I have a student subscription that I pay 19,50€/months but I can't use it anymore, I subscribed since 27th march 2015.
    The problem is that I have a message as if I was using a trial version of the Adobe Suite (But clearly I wouldn't pay for a trial one, who will..)
    I'm using a Mac and I have already tried to uninstall all of the softwares and then to set up back. I also have tried to install App Manager to find a "Deactivate" in the "Help" but I have nothing.
    Unless to say, that I do really need the Creative Cloud for studies and work... May someone help me ?
    Cordially,
    Florian B.

    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page
    If yes
    Some general information for a Cloud subscription
    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp
    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html
    If no
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • Help with using the pen tool

    I have a few different problems with the pen tool.
    1. When using the pen tool I keep finding that the shape I'm doing is slightly overlapping where I've already gone with the pen tool.
    If I try and go over that area again the path I've just drawn then jumps and ruins the shape I was creating.
    How can I stop this from happening?
    2. Also is there a limit to the amount of paths you can create and add text to? I created two paths and typed on them fine but when I added a third path it refused to type. The cursor didn't change to show I could type and if I did click on the path line and try to type jumped to my other path and typed there. All paths were on different layers and none were overlapping, but it is 3 circles inside each other that get smaller if this makes a difference.
    How can I type on the third path?
    3. When I have done a path and clicked stroke it is only a thin line. How can I make this line thicker?
    Thanks.

    Ok, the first example would be something like this. Pretending the lines go elsewhere, say I've drawn a path with the pen tool, gone round the bottom box and that then goes round the two lines going down. So if I go down the one on the left side it hits the previous path I did, but to go up the line on the right side I'd need to go across there. But if I make a point where the two lines meet to do this it then throws the line off elsewhere.
    I did have snap vector tools on but it does that without it on.
    The next one I was creating a car speedometer so it has lines on the outside, dots inside of that and then, where I've done the blue circle, would be the third path where I then write the numbers in. But I can never write on that third path.
    And finally, the pen tool and I think it dd have Shape Dynamics set. I've changed a couple of things and it looks a bit better now so I think that should be ok. Thanks
    I know I haven't shown the panels but I haven't got any for the first as it won't go right so I deleted what I was doing. And each thing I've done is on a different layer for the speedometer, all just paths created with the circle tool with the text on.

Maybe you are looking for

  • When trying to play a song from a play list on my phone it automatically skips to another song

    This is happening on my ipod and iphone; I'll select a song to start playing from a playlist and it automatically skips ahead 1-3 songs and starts playing, and whenever I try to play that song it does it again. Some songs we put into itunes from disk

  • Have SB Audigy 2 ZS Platinum Pro - trying to use 2 inp

    Hello: I am using Cakewalk - Guitar Tracks Pro and I am trying to record 2 inputs at once. The problem is that I cannot get the 2nd input to show up. I can find no option to select for it. I notice that in the place where I can choose input, it says

  • Regarding pricing procedure

    Dear Gurus,     I am having doubt on the pricing procedure for factory sales.    I have maintained condition types in Jinfac using v/08 and if i am  maintaing condition records in fv11 i am not getting condition types which i have maintained in prici

  • Procesess

    Experts:-   in fi business process we can tell ( g/l AR,AP,AA, as the same way we are also tell the client business process) In the same way) WHAT IS THE  PRODUCT COSTING BUSINESS PROCESS, assinge the points for u.

  • Delete issue

    Hi guys , oracle 11g.2 ASM with RAC under RHEL 5 i have 2 tables old and new i copt the data from DEC 2012 from new to old i use nologging and append hint i copy 13,000,000 rows and it's take 30 min to copy the data , now i want to delete from the or