Please answer to this questions..

Hi guys,
Need some clarification on these questions (one of my friend got to know this) I gave him some good ones but need clarifications
Hoping for good answers..
satisfactory answers best rewards..
1. Transaction Code to create a purchase order?
<b>I think it was ME21N do we have any transaction other than that.</b>
2. How to handle Table controls in BDC?
<b>Ans: I think ,Using the counter next to field like vbak-ebeln(i) was that correct, or there is any method to do that.</b>
3. When we create a BDC for Material Creation we have multiple views in creating for different type of products, when we do recording, we get code for only a particular views for the material will be used for creation that time, then how we will transfer data which has got different kind of views other than for which we don't have recording program?
4. If we Add a New text element to MEDRUCK in a page window, to trigger that text element we need to change the driver program or not?
5. Driver programs for MEDRUCK and RVINVOICE01?
6. How to add a field in a Standard Master table?
<b>Ans: I think we need an ACCESS KEY to change any data in Master tables</b>

Hi,
Po create : ME21N
2. Table control in BDC e.g.:
BDC XK01 using Table control:
REPORT Y730_BDC5 .
*HANDLING TABLE CONTROL IN BDC
DATA : BEGIN OF IT_DUMMY OCCURS 0,
       DUMMY(100) TYPE C,
       END OF IT_DUMMY.
DATA : BEGIN OF IT_XK01 OCCURS 0,
       LIFNR(10) TYPE C,
       BUKRS(4)  TYPE C,
       EKORG(4)  TYPE C,
       KTOKK(4)  TYPE C,
       NAME1(30) TYPE C,
       SORTL(10) TYPE C,
       LAND1(3)  TYPE C,
       SPRAS(2)  TYPE C,
       AKONT(6)  TYPE C,
       FDGRV(2)  TYPE C,
       WAERS(3)  TYPE C,
       END OF IT_XK01,
       BEGIN OF IT_BANK OCCURS 0,
       BANKS(3)  TYPE C,
       BANKL(10) TYPE C,
       BANKN(10) TYPE C,
       KOINH(30) TYPE C,
       LIFNR(10) TYPE C,
       END OF IT_BANK.
DATA : IT_BDCDATA LIKE BDCDATA OCCURS 0 WITH HEADER LINE,
       IT_BDCMSGCOLL LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
CALL FUNCTION 'WS_UPLOAD'
EXPORTING
   FILENAME                      = 'C:VENDOR.TXT'
   FILETYPE                      = 'ASC'
TABLES
   DATA_TAB                      = IT_DUMMY.
LOOP AT IT_DUMMY.
  IF IT_DUMMY-DUMMY+0(2) = '11'.
    IT_XK01-LIFNR = IT_DUMMY-DUMMY+2(10).
    IT_XK01-BUKRS = IT_DUMMY-DUMMY+12(4).
    IT_XK01-EKORG = IT_DUMMY-DUMMY+16(4).
    IT_XK01-KTOKK = IT_DUMMY-DUMMY+20(4).
    IT_XK01-NAME1 = IT_DUMMY-DUMMY+24(30).
    IT_XK01-SORTL = IT_DUMMY-DUMMY+54(10).
    IT_XK01-LAND1 = IT_DUMMY-DUMMY+64(3).
    IT_XK01-SPRAS = IT_DUMMY-DUMMY+67(2).
    IT_XK01-AKONT = IT_DUMMY-DUMMY+69(6).
    IT_XK01-FDGRV = IT_DUMMY-DUMMY+75(2).
    IT_XK01-WAERS = IT_DUMMY-DUMMY+77(3).
    APPEND IT_XK01.
  ELSE.
    IT_BANK-BANKS = IT_DUMMY-DUMMY+2(3).
    IT_BANK-BANKL = IT_DUMMY-DUMMY+5(10).
    IT_BANK-BANKN = IT_DUMMY-DUMMY+15(10).
    IT_BANK-KOINH = IT_DUMMY-DUMMY+25(30).
    IT_BANK-LIFNR = IT_DUMMY-DUMMY+55(10).
    APPEND IT_BANK.
  ENDIF.
ENDLOOP.
LOOP AT IT_XK01.
REFRESH IT_BDCDATA.
perform bdc_dynpro      using 'SAPMF02K' '0100'.
perform bdc_field       using 'BDC_CURSOR'
                              'RF02K-REF_LIFNR'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'RF02K-LIFNR'
                              IT_XK01-LIFNR.
perform bdc_field       using 'RF02K-BUKRS'
                              IT_XK01-BUKRS.
perform bdc_field       using 'RF02K-EKORG'
                              IT_XK01-EKORG.
perform bdc_field       using 'RF02K-KTOKK'
                              IT_XK01-KTOKK.
perform bdc_dynpro      using 'SAPMF02K' '0110'.
perform bdc_field       using 'BDC_CURSOR'
                              'LFA1-TELX1'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'LFA1-NAME1'
                              IT_XK01-NAME1.
perform bdc_field       using 'LFA1-SORTL'
                              IT_XK01-SORTL.
perform bdc_field       using 'LFA1-LAND1'
                              IT_XK01-LAND1.
perform bdc_field       using 'LFA1-SPRAS'
                              IT_XK01-SPRAS.
perform bdc_dynpro      using 'SAPMF02K' '0120'.
perform bdc_field       using 'BDC_CURSOR'
                              'LFA1-KUNNR'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_dynpro      using 'SAPMF02K' '0130'.
perform bdc_field       using 'BDC_CURSOR'
                              'LFBK-KOINH(02)'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTR'.
DATA : FNAM(20) TYPE C,
       IDX      TYPE C.
  MOVE 1 TO IDX.
LOOP AT IT_BANK WHERE LIFNR = IT_XK01-LIFNR.
  CONCATENATE 'LFBK-BANKS(' IDX ')' INTO FNAM.
  perform bdc_field       using FNAM
                                IT_BANK-BANKS.
  CONCATENATE 'LFBK-BANKL(' IDX ')' INTO FNAM.
  perform bdc_field       using FNAM
                                IT_BANK-BANKL.
  CONCATENATE 'LFBK-BANKN(' IDX ')' INTO FNAM.
  perform bdc_field       using FNAM
                                IT_BANK-BANKN.
  CONCATENATE 'LFBK-KOINH(' IDX ')' INTO FNAM.
  perform bdc_field       using FNAM
                                IT_BANK-KOINH.
  IDX = IDX + 1.
ENDLOOP.
perform bdc_dynpro      using 'SAPMF02K' '0130'.
perform bdc_field       using 'BDC_CURSOR'
                              'LFBK-BANKS(01)'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTR'.
perform bdc_dynpro      using 'SAPMF02K' '0210'.
perform bdc_field       using 'BDC_CURSOR'
                              'LFB1-FDGRV'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'LFB1-AKONT'
                              IT_XK01-AKONT.
perform bdc_field       using 'LFB1-FDGRV'
                              IT_XK01-FDGRV.
perform bdc_dynpro      using 'SAPMF02K' '0215'.
perform bdc_field       using 'BDC_CURSOR'
                              'LFB1-ZTERM'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_dynpro      using 'SAPMF02K' '0220'.
perform bdc_field       using 'BDC_CURSOR'
                              'LFB5-MAHNA'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_dynpro      using 'SAPMF02K' '0310'.
perform bdc_field       using 'BDC_CURSOR'
                              'LFM1-WAERS'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'LFM1-WAERS'
                              IT_XK01-WAERS.
perform bdc_dynpro      using 'SAPMF02K' '0320'.
perform bdc_field       using 'BDC_CURSOR'
                              'WYT3-PARVW(01)'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTR'.
perform bdc_dynpro      using 'SAPLSPO1' '0300'.
perform bdc_field       using 'BDC_OKCODE'
                              '=YES'.
CALL TRANSACTION 'XK01' USING IT_BDCDATA
                        MODE  'A'
                       UPDATE 'S'
                     MESSAGES INTO IT_BDCMSGCOLL.
ENDLOOP.
FORM BDC_DYNPRO USING PROG SCR.
  CLEAR IT_BDCDATA.
  IT_BDCDATA-PROGRAM = PROG.
  IT_BDCDATA-DYNPRO  = SCR.
  IT_BDCDATA-DYNBEGIN = 'X'.
  APPEND IT_BDCDATA.
ENDFORM.
FORM BDC_FIELD USING FNAM FVAL.
  CLEAR IT_BDCDATA.
  IT_BDCDATA-FNAM = FNAM.
  IT_BDCDATA-FVAL  = FVAL.
  APPEND IT_BDCDATA.
ENDFORM.
3. ---
4.  that text elemnt must be populated in driver program OR we can defind it in script as /:DEFINE var... command.
5. yes
6. using append structue  or include through table exit.
Jogdand M B

Similar Messages

  • HT201209 HOW CAN I ACCESS MY ITUNES CREDIT DOLLARS TO BUY A LIFE  ON CANDY CRUSH???WILL SOMEONE PLEASE ANSWER ME THIS QUESTION?

    WILL SOMEONE PLEASE TELL ME HOW I CAN ACCESS MY ITUNES CREDIT DOLLARS TO BUY A LIFE FOR CANDY CRUSH???

    There is no need to shout.
    What happens when you to try to buy it ? If you have a balance on your account then that should be automatically used, you can't/don't need to specify how it's charged.

  • Please answer for this question

    public class Qcb90 {
    int a;
    int b;
    public void f() {
    a = 0;
    b = 0;
    int[] c = { 0 };
    g(b, c);
    System.out.println(a + " " + b + " " + c[0] + " ");
    public void g(int b, int[] c) {
    a = 1;
    b = 1;
    c[0] = 1;
    public static void main(String[] args) {
    Qcb90 obj = new Qcb90();
    obj.f();
    I answered 001 as o/p
    But the o/p is 101
    How can this be possible.

    First I have to say: whoever wrote this code need some extensive lessons in HUMAN FRIENDY CODE. Use useful variables name other than one letter.
    You have two methods:
    Method f
    And method g.
    You have to global or public variables a and b.
    Now, in the main method you call the first method f () which assigns zeros to the public variables a and b. it also creates a new array c[] with one slot containing the number 0;
    After that, you call the method g. and pass both b and c[]. Notice that you have over ridden the values of b and c[] because you redefined them again in the header of the method
    public void g(int b, int[] c)So now both b and c[] are not initialized and contain basically nothing.
    Inside the g() method, you assign the public variable a with 1, and the ENTERNAL variable b with 1 (note that b now is not the same after it has been redefined again in the header of the g() method).
    After this, you have printed the out put. a = 1, b = 0, c = 1.

  • What is the correct answer is this question is sql ?

    hi .. please i need correct answer in this question ..
    View the Exhibit and examine the structure of the PRODUCTS table.
    Using the PRODUCTS table, you issue the following query to generate the names, current list price, and
    discounted list price for all those products whose list price falls below $10 after a discount of 25% is applied
    on it.
    SQL>SELECT prod_name, prod_list_price,
    prod_list_price - (prod_list_price * .25) "DISCOUNTED_PRICE"
    FROM products
    WHERE discounted_price < 10;
    The query generates an error.
    What is the reason for the error?
    A-The parenthesis should be added to enclose the entire expression.
    B-The double quotation marks should be removed from the column alias.
    C-The column alias should be replaced with the expression in the WHERE clause.
    D-The column alias should be put in uppercase and enclosed with in double quotation marks in the WHERE clause.

    Hi,
    Have you taken the time to determine what happens when you perform the requested actions?
    If you have access to Oracle Database it should be less than a 10 minute exercise.
    At a minimum, using hosted Oracle Application Express you have access to Oracle Database.
    If you've done it, what were the results? There should be a telling error message.
    Regards,
    Mark

  • HT5569 Hi is it possible to install and setup a modem with an iPad only, I would appreciate  an answer to this question thanks

    Hi is it possible to install and setup a modem with an iPad only, I would appreciate  an answer to this question thanks

    The configuration page of my router on Safari (tap to enlarge)
    See IP Adress at the top (center)

  • Please answer asap install question post

    https://support.mozilla.org/en-US/forums/firefoxaurora/708210?last=46112#post-46112
    please answer asap install question post

    Hi C,
    No, you should wait till the end of the Welcome video, when the message says it will restart to finish installation it means installation is still in progress, conclude the procedures.
    Happy installing, good luck.

  • Could you please answer to this?

    [object array|http://i218.photobucket.com/albums/cc298/curseofgoldendragon/code-1.png] Could you please answer to this?

    Inserting text is better than linking to external images.
    Anyway, look up autoboxing.

  • TS2446 I do not have the answers Please answer your security questions.

    I do not have the answers Please answer your security questions.
    1.What was the first car you owned?
    2. What was the first concert you attended?

    Start here, and reset your security questions, you will receive an email to your rescue address, use the link in the email and reset your security questions.
    If that doesn't help or you don't have a rescue address, you might try contacting Apple through iTunes Store Support

  • HT5312 Please answer your security questions.

    Please answer your security questions.
    Password and Security
    Ghlb Al ghlb
    <Personal Information Edited by Host>

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple - I've asked the hosts to remove your email address and phone number from your post (it's not a good idea to post personal info on any public forum).
    If you've forgotten your answers then the HT5312 page that you posted from has instructions for how to reset them i.e. if you have a rescue email address (which is not the same thing as an alternate email address) on your account then steps 1 to 5 half-way down that page should give you a reset link.
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will need to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • View All Answers to this Question

    When viewing answers of a question, when the button 'View All Answers to this Question' was pressed this would display all the answers and comments posted to a question. Since the update to the web site this no longer seems the case. Can you return this function back to displaying all answers and comments.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

    Hi Ray,
    The behavior of the buttons actually have not changed. The button "View All Answers to this Question" appears when you are viewing the comments to an answer. All the other answers to the question are hidden. If you click on the button, you will return back to the default view which displays only the question and all the answers to the question. In the default view, all comments are hidden.
    The button "Show All Comments" appears when you are in the default view. If you click on it, then all the answers and the associated comments are displayed. The button "Hide All Comments" will then return you back to the default view.
    Best Regards,
    Wilbur Shen
    National Instruments

  • Can someone please have the answer to this question!!!?!?!?

    i had my ipod for 2 years and its a 2nd generation and i was useing my old computer for itunes..but then i got a new laptop so i downloaded itunes again.i bought songs from itunes for my ipod...and i connected up to my laptop and everything was working but i notices that none of the new songs were on my ipod.i really need help on this question,idk if its the old email address i used or its the laptop itself.but i really hope that someone can help!

    See your other post.
    http://discussions.apple.com/messageview.jspa?messageID=9394213&stqc=true
    (and if you work for apple.com why can't you ask someone at Apple yourself )

  • I lost my Download Stacks option. Now it is just a Download folder. Need to find out how to get the Download Stacks option back. Previous answers to this question don't make any sense to me. Please help in explicit detail. PS I'm using Mountain Lion.

    Need to know how to get it back to its original Download Stack. Previous answers to this questionin Apple Support just don't make any sense to me. I'd appreciate explicit directions on how to restore this feature. Currently it's just a Download folder... must have accidently poofed it away.
    Help!

    And if what WZZZ suggests doesn't work (and hopefully it will) move the file name below to the desktop, log out or restart and the Dock preferences with its defaults should be recreated. You'll need to re-configure it as you like it:
    com.apple.dock.plist
    It's located: in Finder hold the Alt/Option key and from the Go menu select Library>Preferences.
    If it fixes things, delete the file on your desktop.

  • Not getting any straight answers for this question!!!!!

    Hi All,
    This question i've posted before, but i didn't get correct answer. I'm posting it again!!!!!
    I'm very confused about the flow of process.
    right now i'm working on webmethods. I did worked on lots of message types like 850, 810,856,832,940,997 in X12 and also EDIFACT.......for that past 2 1/2 years.
    This question is completely related to SEEBURGER ADAPTER NOT ANY CONVERSION AGENT:
    1.
    when an EDI message comes into XI it will be converted into EDI-XML format bye seeburger adapter. where we get the prototype of EDI message? Do we have a package or namespace in repository from seeburger which gives all EDI prototypes? or we import as an XSD doc from our local system generated by 3rd party tools?
    2.
    Do we write a mapping program(EDI-XML 2 IDOC-XML)  with graphical tool or do we have a tool provided by seeburger to write mapping program? I heard that seeburger provides mapping programs(not those modules which converts standard EDI to XML EDI)  which will convert EDI XML 2 IDOC-XML. is this is true?
    3.
    how do we process EDI file sent by customer? is it ISA level or ST level? because there may be many situations where one ISA has multiple ST's.
    Please explain me if possible with one scenario......i read all the links provided about this question so i need a practical example.........
    Thanks in advance.

    Hi,
    Go thru this might help you
    http://www.seeburger.com/fileadmin/com/pdf/AS2_General_Overview.pdf
    http://www.seeburger.it/fileadmin/it/pdf/2005_04_sapphire_Ferrero_transcript.pdf
    http://www.seeburger.com/fileadmin/com/pdf/SEEBURGER_SAP_Adapter_engl.pdf
    http://www.seeburger.com/fileadmin/com/pdf/Butler_Group_SEEBURGER_Technology_Audit.pdf
    http://www.sap.com/france/company/events/2006/02-01-Automotive-Seeburger.pdf
    http://h41123.www4.hp.com/presentations/ISUG/XISeeBurger.ppt
    http://www.sap.com/asia/company/events/nwtechdays/presentation/australia-slides/Pre-Built_Integration.pdf
    Regards
    Agasthuri Doss

  • Yo, Bappers, let's win one for the Geeks with an answer to this question!

    Yo, Bappers -
    My good friend and colleague Ted Smith posted this question in the Document Management forum:
    Hi SAP Consultants,
    We are in the process of linking DMS with BOM.
    While Creating a DIR in CV01n we are unable to link a BOM because when we click the Object links tab it is displaying the following message:
    Object link to STKO_DOC cannot be changed in this transaction
    We also tried on the Other side. We created a BOM and linked a document to that. While opening that Document in CV03N, we are unable to view the linked BOM and gives the error same error.
    Kindly provide the support for the above issues.
    But surprise surprise - he ain't gettin' no help from the suits!
    NADA, ZILCH, NUTTIN !!!
    So would one of you geeks who knows everything a suit is SUPPOSED to know please help the poor suits out here by answering Ted's question ?
    In loving geekship,
    djh

    - Please use proper subject titles...
    - Please do not cross-post...
    - The thread is here => DMS link  BOM object ...
    Thread locked.

  • CV01N- Nobody is answering to this question

    In CV01n when we upload any excel file data the data get save in SAP system. Now suppose if we delete the particular excel file data or replace the data then can the system show us the delete or replace file history, so that the changes made can be catched.
    I required this because in our company labels artwork are uploaded by QC department in PDF form in CV01n and our label department print the labels by taking labels artwork display from CV03n.
    But in some case if the labels are got rejected due to some mistake from our QC department then the changes made by our QC department can't get identified by our label department. Our QC department say that we have not made any changes in labels artwork the labels got rejected because the labels department didn't followed the correct artwork which was available in SAP system.
    Please provide your solution to this or suggest some other reliable system for proper system.
    Thanking You...........

    Hi,
    Can you post this question in Document Management (DMS) forum so that u may get correct answer, thanks for your understanding.
    Regards,
    BK

Maybe you are looking for