Hi to all,
my customer gave to me some xsd schema (I think from his bank) and requested to me to upload them in his system (he said to me that there is a missing field in the actual schema). Someone know how to do that in ECC6?
Hi to all,
my customer gave to me some xsd schema (I think from his bank) and requested to me to upload them in his system (he said to me that there is a missing field in the actual schema). Someone know how to do that in ECC6?
Hi,
I want to delete a batch split line item (900001) from outbound delivery using function module BAPI_OUTB_DELIVERY_CHANGE. I am unable to delete the item. Please help me.
good noon ABAPERS,
IS there any remote function modules(BAPI) for uploading and downloading file concept can be used for 3rd party tool ie other than sap..
note : ws_upload,f4_filename can be used in sap.i need non sap funtion module.
can anyone helpme for this please....
thankyou.
hello all,
in which table does PO number and PO quantity are stored for a given WBS element...
or do i need to use any function module....
i need to use it in an ALV report...
thanks in advance.....
Dear Freinds,
Currently i am using BAPI (BAPI_PO_CREAT1) in my program and purchase order is created.
Now i want to update EAN11(International Article Number) through BAPI.
EAN11 is already standard field available in EKPO table so don't need to add zfields for that.
But it is not there in BAPIMEPOITEM as well as BAPIMEPOITEMX structure.
So i have added append structure and given field nae as EAN11 in BAPIMEPOITEM and BAPIMEPOITEMX.
Now i have passed data from internal table to above mention structure.
So Purchase order created but EAN11 is not updated.
I have seen in existing forum but it is not matched my requirement.
Please reply.
Regards,
Shiv.
I was looking for narrow casting examples to understand concepts better.
what i have seen everywhere is that
after narrow casting that i.e assigining/copying child object to parent object we can use parent object to
call method which exits in sub class though redefined (of course it also exists in super class).
Till here its fine.
But we can't use parent variable to call method in subclass which does not exist in super class.
it's showing syntax error but a little change in that have made its syntax correct.
Take a look at this example....
REPORT ZNEWOO6.
*----------------------------------------------------------------------*
* CLASS vehicle DEFINITION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
class vehicle definition.
public section.
methods: m1 ,
m2.
endclass. "vehicle DEFINITION
*----------------------------------------------------------------------*
* CLASS vehicle IMPLEMENTATION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
class vehicle implementation.
method m1.
write /'method m1 super class imple.'.
endmethod. "m1
method m2.
write /'method m2 super class imple.'.
endmethod. "m1
endclass. "vehicle IMPLEMENTATION
*----------------------------------------------------------------------*
* CLASS truck DEFINITION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
class truck definition inheriting from vehicle.
public section.
methods:
m2 redefinition,
m4.
endclass. "truck DEFINITION
*----------------------------------------------------------------------*
* CLASS truck IMPLEMENTATION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
class truck implementation.
method m2 .
write /'method m2 redefination sub class imple.'.
endmethod. "m2
method m4.
* method m1.
write /'method m4 sub class imple.'.
* endmethod.
endmethod. "m4
endclass. "truck IMPLEMENTATION
start-of-selection .
data : o_super type ref to vehicle,
o_sub type ref to truck.
create object :o_super, o_sub.
call method o_super->m1.
call method o_sub->m1.
call method o_super->m2( ).
o_super = o_sub."up/narrow casting "assigning child to parent
*o_sub ?= o_super. "down/wide casting
create object o_super.
call method o_super->m2.
call method o_sub->m2.
"not possible to access those
*method which are not defined in super class
call method o_super->m4. "throw a syntax error
call method o_super->('m4'). "works fine WHY!!!!!! "Even though m4 is not defined in super class
hi gurus ,
my screen have required fields .
i want to go back without enter values .
for that purpose after PAI at exit command used .
but its not working .
plz any one help me ...
regards
rama
Hi all,
Do we have any BADI or screen exit to add additional tab on shipment transactions.
Thanks,
Ashok.
hello all,
i have an ALV Report requirement like below...
serno network no activity no service code service text units purchase requisition num PR item PR qty Agreement num Agrmt item Agremt qty
----- ---------- ----------- ------------ ---------- ----- ---------------- ----- - ------ ------------- ---------- ---------- ------- ---------------------- ----------- ----------
1 410000001401 0020 SCL10051 **** KM 19000000461 1 20 56000000199 1 200
2 410000001401 0030 SCL10052 **** EA 19000000461 2 30 56000000199 1 500
now my question is i have Purchase Order and PO qty(which i ahve taken from EKPO)...
for a given purchase requisition number there are multiple PO's (say 10 Po's)...
how do i add these PO's to above ALV report....
thanks in advance....
Hi,
I have a report which is run a background job and I'm outputting to the spool. While setting the spool parameters, we set the layout for eg. X_65_255. This is causing only few columns to appear in the screen and my report columns are getting truncated after a particular number. How do I adjust my spool so that I can see all my report columns. Is there a way to do this?
I created layout ZX_65_1023 with 900 columns but still same issue, also i tried all ways suggested on SDN , but still my issue is not resolved.
Please Help Me..
Thanks in Advance.
Regards,
Chintan
This is really a tricky problem, maybe only old ABAP developers know a solution... for this...
FORM routine STRUKTUR_ANLEGEN that contains a Userexit Call
EXIT_SAPFV45S_001
See note 548205
In this case coding is very old, so we have a function module call that is part of this 'old' construction' with global table VBAP VBAK etc...
and EXIT has not enough parameters to implement program logic because logic of return table XSTB depends on VKORG and VTWEG value of VBAK..
So I can only use two approaches:
1. Use 'dirty' assigns in userexit function
2. Use an implicit enhancement point at beginning of form routine STRUKTUR_ANLEGEN and copy complete code to change program behavior before adding a check 1 = 0.
Both approaches are not 'nice' but the secon approach seems to be the nicer one because I have access to all variables...
But now there's a serious problem because my code starts directly after FORM statement and before variables...
To substitute local variables with other named ones and in coding is no problem..
But there are varables defined with
LOCAL: structure,
*vbap,
tvak.
But an obsolete LOCAL definition can only be made directly after a FORM statement, but as a part of an enhancement point implementation it technically seems to be a part of a mthod... so system throws an error that LOCAL is only allowed directly after FORM ..
Is there a way to implement LOCAL logic using other ABAP expressions ?
BR
Thomas
Hi Guys,
1) I want to send data of task list from third party software to SAP. My requirement is to create/Change Functional location task list, Equipment task list, and general task list.
Can anyone please suggest me bapi to do so.. do i need to user different BAPI"s to do this or this can be handled using 1 BAPI only.
2) What all tables and fields do we need to update while sending a task list data to SAP.
3) is there any document which i can refer while mapping my fields with SAP fields?
Thanks in Advance..
Regards,
Ashish
Hi all,
I am looking for User exit for ME21N.
The Issue is,
Whenever user will enter Delivery Date at line item,
The latest GR date in Delivery tab(In Item Details) should show the same date as delivery date
For Ex. if Delivery date for item 10 is 26.07.2014 then Latest GR date field in the Delivery tab should also be 26.07.2014
What is the BADI or User exit to be used.
Thanks
Neha
Hi all,
i am facing a problem in my table which i have created through Table Control wizard, the problem is that when user enter a value in a column and press ENTER button, it creates a a new row, but i don't need it.
Actually when he puts any values into table control wizard it remains as it is, and do not create any row for the previous row. And for the same thing i am not getting how to achieve it. Please tell me what could i do next to stop creating new row. My code is as shown below
MODULE ZLEGAL_MODIFY INPUT.
***** MODIFY IT_ZLNAME
***** FROM WA_ZLNAME
***** INDEX ZLEGAL-CURRENT_LINE.
APPEND WA_ZLNAME TO IT_ZLNAME.
ENDMODULE.
and the problem which i am facing is shown in below screenshot., while entering the value P and pressing ENTER i got a second row automatically and i want to restrict the automatic second row formation for ENTER , and this should be valid for all of my columns in my table control wizards.
Hello Champs,
I am consuming web service using ABAP, configuration done from SOAMANAGER and its working fine when I am testing it from SE80. but same is not working when I have created program from SE38 not Error no Output nothing.
Requesting your inputs on this, below is my program code. do I have to add any thing else in code or any configuration is still missing.
DATA : proxy TYPE REF TO /sen/co_real_time_services_mmd.
DATA : input TYPE /sen/mmdi_get_article_details1,
lt_article TYPE /sen/type_article_tab1,
ls_article TYPE /sen/type_article1,
output TYPE /sen/mmdi_get_article_details,
lr_proxy TYPE REF TO cl_proxy_client,
lr_prot_payload TYPE REF TO cl_wsprotocol_payload.
PARAMETERS : p_matnr TYPE c LENGTH 25,
p_laung TYPE c LENGTH 3,
p_pack TYPE i LENGTH 10,
p_refid TYPE c LENGTH 10,
p_id TYPE c LENGTH 10.
TRY.
CREATE OBJECT proxy
EXPORTING
logical_port_name = 'I_MATERIAL'.
CATCH cx_ai_system_fault .
ENDTRY.
ls_article-article_id = p_matnr.
ls_article-language = p_laung.
ls_article-packetnumber = p_pack.
ls_article-calling_tool_ref_id = p_refid.
ls_article-calling_tool_id = p_id.
ls_article-packetnumber = p_pack.
APPEND ls_article TO lt_article.
input-article[] = lt_article.
TRY.
CALL METHOD proxy->mmdi_get_article_details
EXPORTING
input = input
IMPORTING
output = output.
CATCH cx_ai_system_fault .
CATCH cx_ai_application_fault .
ENDTRY.
If all the variables in a method are global variables/class-data/constants and no importing parameter.
What's the difference between it is defined as a static method or a normal one?
Hi Guys,
1) I want to send data of maintenance plan from third party software to SAP. My requirement is to create/Change Functional location maintenance plan and create /change Equipment maintenance plan.
Can anyone please suggest me bapi to do so.. do i need to use different BAPI"s to do this or this can be handled using 1 BAPI only.
2) What all tables and fields do we need to update while sending a maintenance plan data to SAP.
3) is there any document which i can refer while mapping my fields with SAP fields?
4) Any specific validations i need to apply while sending data.?
Thanks in Advance..
Regards,
Ashish
Hi every one,
We know layouts saved in LTDX table and they assigned to a layout.
but im unable to find the path to move the layout of the characteristics of the class cl02 by giving the class & type ,from one system to another.
I refered old posts but more people show some standered program RSTRANSP to trasfer but it gives some error like "........for local objects".
please show me the solution for this doubt???
Thank you .
Hi all,
I want to add some new fields for the real estate screen of CMS workbench.
I have already done the screen part by creating a Z* function group.
Moreover, I also append a Z* structure(e.g. ZCMS_RE_EXTRA, having all the new fields inside) to CMS_RE_STR_OBJ_HDR_SCR.
What I want to ask is how to store and read the data of ZCMS_RE_EXTRA.
Currently, I write:
TABLES: CMS_RE_STR_OBJ_HDR_SCR.
DATA G_ZCMS_RE_EXTRA TYPE ZCMS_RE_EXTRA.
MOVE-CORRESPONDING G_ZCMS_RE_EXTRA TO CMS_RE_STR_OBJ_HDR_SCR. "PBO
MOVE-CORRESPONDING CMS_RE_STR_OBJ_HDR_SCR TO G_ZCMS_RE_EXTRA. "PAI
But only this does not work, I cannot transfer the value by this.
Please help me to develop user exit plant wise sales invoice number range